Repository: aliyun/aliyun-oss-cpp-sdk Branch: master Commit: c42600fb0b20 Files: 612 Total size: 6.5 MB Directory structure: gitextract_dz4dljta/ ├── .github/ │ └── workflows/ │ ├── linux-clang.yml │ ├── linux-gcc.yml │ ├── mac.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_zh.md ├── VERSION ├── ptest/ │ ├── CMakeLists.txt │ └── src/ │ ├── Config.cc │ ├── Config.h │ └── Program.cc ├── sample/ │ ├── CMakeLists.txt │ └── src/ │ ├── Config.cc │ ├── Config.h │ ├── LiveChannel/ │ │ ├── LiveChannelSample.cc │ │ └── LiveChannelSample.h │ ├── Program.cc │ ├── bucket/ │ │ ├── BucketSample.cc │ │ └── BucketSample.h │ ├── encryption/ │ │ ├── EncryptionSample.cc │ │ └── EncryptionSample.h │ ├── object/ │ │ ├── ObjectSample.cc │ │ └── ObjectSample.h │ ├── presignedurl/ │ │ ├── PresignedUrlSample.cc │ │ └── PresignedUrlSample.h │ └── service/ │ ├── ServiceSample.cc │ └── ServiceSample.h ├── sdk/ │ ├── CMakeLists.txt │ ├── include/ │ │ └── alibabacloud/ │ │ └── oss/ │ │ ├── Config.h │ │ ├── Const.h │ │ ├── Export.h │ │ ├── Global.h │ │ ├── OssClient.h │ │ ├── OssEncryptionClient.h │ │ ├── OssError.h │ │ ├── OssFwd.h │ │ ├── OssRequest.h │ │ ├── OssResponse.h │ │ ├── OssResult.h │ │ ├── ServiceRequest.h │ │ ├── ServiceResult.h │ │ ├── Types.h │ │ ├── auth/ │ │ │ ├── Credentials.h │ │ │ └── CredentialsProvider.h │ │ ├── client/ │ │ │ ├── AsyncCallerContext.h │ │ │ ├── ClientConfiguration.h │ │ │ ├── Error.h │ │ │ ├── RateLimiter.h │ │ │ └── RetryStrategy.h │ │ ├── encryption/ │ │ │ ├── Cipher.h │ │ │ ├── ContentCryptoMaterial.h │ │ │ ├── CryptoConfiguration.h │ │ │ └── EncryptionMaterials.h │ │ ├── http/ │ │ │ ├── HttpClient.h │ │ │ ├── HttpInterceptor.h │ │ │ ├── HttpMessage.h │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.h │ │ │ ├── HttpType.h │ │ │ └── Url.h │ │ ├── model/ │ │ │ ├── AbortBucketWormRequest.h │ │ │ ├── AbortMultipartUploadRequest.h │ │ │ ├── AppendObjectRequest.h │ │ │ ├── AppendObjectResult.h │ │ │ ├── Bucket.h │ │ │ ├── CORSRule.h │ │ │ ├── CompleteBucketWormRequest.h │ │ │ ├── CompleteMultipartUploadRequest.h │ │ │ ├── CompleteMultipartUploadResult.h │ │ │ ├── CopyObjectRequest.h │ │ │ ├── CopyObjectResult.h │ │ │ ├── CreateBucketRequest.h │ │ │ ├── CreateSelectObjectMetaRequest.h │ │ │ ├── CreateSelectObjectMetaResult.h │ │ │ ├── CreateSymlinkRequest.h │ │ │ ├── CreateSymlinkResult.h │ │ │ ├── DeleteBucketCorsRequest.h │ │ │ ├── DeleteBucketEncryptionRequest.h │ │ │ ├── DeleteBucketInventoryConfigurationRequest.h │ │ │ ├── DeleteBucketLifecycleRequest.h │ │ │ ├── DeleteBucketLoggingRequest.h │ │ │ ├── DeleteBucketPolicyRequest.h │ │ │ ├── DeleteBucketQosInfoRequest.h │ │ │ ├── DeleteBucketRequest.h │ │ │ ├── DeleteBucketTaggingRequest.h │ │ │ ├── DeleteBucketWebsiteRequest.h │ │ │ ├── DeleteLiveChannelRequest.h │ │ │ ├── DeleteObjectRequest.h │ │ │ ├── DeleteObjectResult.h │ │ │ ├── DeleteObjectTaggingRequest.h │ │ │ ├── DeleteObjectTaggingResult.h │ │ │ ├── DeleteObjectVersionsRequest.h │ │ │ ├── DeleteObjectVersionsResult.h │ │ │ ├── DeleteObjectsRequest.h │ │ │ ├── DeleteObjectsResult.h │ │ │ ├── DownloadObjectRequest.h │ │ │ ├── ExtendBucketWormRequest.h │ │ │ ├── GeneratePresignedUrlRequest.h │ │ │ ├── GenerateRTMPSignedUrlRequest.h │ │ │ ├── GetBucketAclRequest.h │ │ │ ├── GetBucketAclResult.h │ │ │ ├── GetBucketCorsRequest.h │ │ │ ├── GetBucketCorsResult.h │ │ │ ├── GetBucketEncryptionRequest.h │ │ │ ├── GetBucketEncryptionResult.h │ │ │ ├── GetBucketInfoRequest.h │ │ │ ├── GetBucketInfoResult.h │ │ │ ├── GetBucketInventoryConfigurationRequest.h │ │ │ ├── GetBucketInventoryConfigurationResult.h │ │ │ ├── GetBucketLifecycleRequest.h │ │ │ ├── GetBucketLifecycleResult.h │ │ │ ├── GetBucketLocationRequest.h │ │ │ ├── GetBucketLocationResult.h │ │ │ ├── GetBucketLoggingRequest.h │ │ │ ├── GetBucketLoggingResult.h │ │ │ ├── GetBucketPaymentRequest.h │ │ │ ├── GetBucketPaymentResult.h │ │ │ ├── GetBucketPolicyRequest.h │ │ │ ├── GetBucketPolicyResult.h │ │ │ ├── GetBucketQosInfoRequest.h │ │ │ ├── GetBucketQosInfoResult.h │ │ │ ├── GetBucketRefererRequest.h │ │ │ ├── GetBucketRefererResult.h │ │ │ ├── GetBucketStatRequest.h │ │ │ ├── GetBucketStatResult.h │ │ │ ├── GetBucketStorageCapacityRequest.h │ │ │ ├── GetBucketStorageCapacityResult.h │ │ │ ├── GetBucketTaggingRequest.h │ │ │ ├── GetBucketTaggingResult.h │ │ │ ├── GetBucketVersioningRequest.h │ │ │ ├── GetBucketVersioningResult.h │ │ │ ├── GetBucketWebsiteRequest.h │ │ │ ├── GetBucketWebsiteResult.h │ │ │ ├── GetBucketWormRequest.h │ │ │ ├── GetBucketWormResult.h │ │ │ ├── GetLiveChannelHistoryRequest.h │ │ │ ├── GetLiveChannelHistoryResult.h │ │ │ ├── GetLiveChannelInfoRequest.h │ │ │ ├── GetLiveChannelInfoResult.h │ │ │ ├── GetLiveChannelStatRequest.h │ │ │ ├── GetLiveChannelStatResult.h │ │ │ ├── GetObjectAclRequest.h │ │ │ ├── GetObjectAclResult.h │ │ │ ├── GetObjectByUrlRequest.h │ │ │ ├── GetObjectMetaRequest.h │ │ │ ├── GetObjectRequest.h │ │ │ ├── GetObjectResult.h │ │ │ ├── GetObjectTaggingRequest.h │ │ │ ├── GetObjectTaggingResult.h │ │ │ ├── GetSymlinkRequest.h │ │ │ ├── GetSymlinkResult.h │ │ │ ├── GetUserQosInfoRequest.h │ │ │ ├── GetUserQosInfoResult.h │ │ │ ├── GetVodPlaylistRequest.h │ │ │ ├── GetVodPlaylistResult.h │ │ │ ├── HeadObjectRequest.h │ │ │ ├── InitiateBucketWormRequest.h │ │ │ ├── InitiateBucketWormResult.h │ │ │ ├── InitiateMultipartUploadRequest.h │ │ │ ├── InitiateMultipartUploadResult.h │ │ │ ├── InputFormat.h │ │ │ ├── InventoryConfiguration.h │ │ │ ├── LifecycleRule.h │ │ │ ├── ListBucketInventoryConfigurationsRequest.h │ │ │ ├── ListBucketInventoryConfigurationsResult.h │ │ │ ├── ListBucketsRequest.h │ │ │ ├── ListBucketsResult.h │ │ │ ├── ListLiveChannelRequest.h │ │ │ ├── ListLiveChannelResult.h │ │ │ ├── ListMultipartUploadsRequest.h │ │ │ ├── ListMultipartUploadsResult.h │ │ │ ├── ListObjectVersionsRequest.h │ │ │ ├── ListObjectVersionsResult.h │ │ │ ├── ListObjectsRequest.h │ │ │ ├── ListObjectsResult.h │ │ │ ├── ListObjectsV2Request.h │ │ │ ├── ListObjectsV2Result.h │ │ │ ├── ListPartsRequest.h │ │ │ ├── ListPartsResult.h │ │ │ ├── MultiCopyObjectRequest.h │ │ │ ├── MultipartUploadCryptoContext.h │ │ │ ├── ObjectCallbackBuilder.h │ │ │ ├── ObjectMetaData.h │ │ │ ├── OutputFormat.h │ │ │ ├── Owner.h │ │ │ ├── Part.h │ │ │ ├── PostVodPlaylistRequest.h │ │ │ ├── ProcessObjectRequest.h │ │ │ ├── PutLiveChannelRequest.h │ │ │ ├── PutLiveChannelResult.h │ │ │ ├── PutLiveChannelStatusRequest.h │ │ │ ├── PutObjectByUrlRequest.h │ │ │ ├── PutObjectRequest.h │ │ │ ├── PutObjectResult.h │ │ │ ├── QosConfiguration.h │ │ │ ├── RestoreObjectRequest.h │ │ │ ├── RestoreObjectResult.h │ │ │ ├── SelectObjectRequest.h │ │ │ ├── SetBucketAclRequest.h │ │ │ ├── SetBucketCorsRequest.h │ │ │ ├── SetBucketEncryptionRequest.h │ │ │ ├── SetBucketInventoryConfigurationRequest.h │ │ │ ├── SetBucketLifecycleRequest.h │ │ │ ├── SetBucketLoggingRequest.h │ │ │ ├── SetBucketPaymentRequest.h │ │ │ ├── SetBucketPolicyRequest.h │ │ │ ├── SetBucketQosInfoRequest.h │ │ │ ├── SetBucketRefererRequest.h │ │ │ ├── SetBucketStorageCapacityRequest.h │ │ │ ├── SetBucketTaggingRequest.h │ │ │ ├── SetBucketVersioningRequest.h │ │ │ ├── SetBucketWebsiteRequest.h │ │ │ ├── SetObjectAclRequest.h │ │ │ ├── SetObjectAclResult.h │ │ │ ├── SetObjectTaggingRequest.h │ │ │ ├── SetObjectTaggingResult.h │ │ │ ├── Tagging.h │ │ │ ├── UploadObjectRequest.h │ │ │ ├── UploadPartCopyRequest.h │ │ │ ├── UploadPartCopyResult.h │ │ │ ├── UploadPartRequest.h │ │ │ └── VoidResult.h │ │ └── utils/ │ │ ├── Executor.h │ │ ├── Outcome.h │ │ └── Runnable.h │ └── src/ │ ├── Config.h.in │ ├── OssClient.cc │ ├── OssClientImpl.cc │ ├── OssClientImpl.h │ ├── OssRequest.cc │ ├── OssResponse.cc │ ├── OssResult.cc │ ├── ServiceRequest.cc │ ├── auth/ │ │ ├── Credentials.cc │ │ ├── CredentialsProvider.cc │ │ └── SimpleCredentialsProvider.cc │ ├── client/ │ │ ├── AsyncCallerContext.cc │ │ ├── Client.cc │ │ ├── Client.h │ │ └── ClientConfiguration.cc │ ├── encryption/ │ │ ├── Cipher.cc │ │ ├── CipherOpenssl.cc │ │ ├── CipherOpenssl.h │ │ ├── ContentCryptoMaterial.cc │ │ ├── CryptoConfiguration.cc │ │ ├── CryptoModule.cc │ │ ├── CryptoModule.h │ │ ├── CryptoStreamBuf.cc │ │ ├── CryptoStreamBuf.h │ │ ├── EncryptionMaterials.cc │ │ └── OssEncryptionClient.cc │ ├── external/ │ │ ├── json/ │ │ │ ├── json-forwards.h │ │ │ ├── json.h │ │ │ └── jsoncpp.cpp │ │ └── tinyxml2/ │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h │ ├── http/ │ │ ├── CurlHttpClient.cc │ │ ├── CurlHttpClient.h │ │ ├── HttpClient.cc │ │ ├── HttpMessage.cc │ │ ├── HttpRequest.cc │ │ ├── HttpResponse.cc │ │ └── Url.cc │ ├── model/ │ │ ├── AbortBucketWormRequest.cc │ │ ├── AbortMultipartUploadRequest.cc │ │ ├── AppendObjectRequest.cc │ │ ├── AppendObjectResult.cc │ │ ├── Bucket.cc │ │ ├── CompleteBucketWormRequest.cc │ │ ├── CompleteMultipartUploadRequest.cc │ │ ├── CompleteMultipartUploadResult.cc │ │ ├── CopyObjectRequest.cc │ │ ├── CopyObjectResult.cc │ │ ├── CreateBucketRequest.cc │ │ ├── CreateSelectObjectMetaRequest.cc │ │ ├── CreateSelectObjectMetaResult.cc │ │ ├── CreateSymlinkRequest.cc │ │ ├── CreateSymlinkResult.cc │ │ ├── DeleteBucketCorsRequest.cc │ │ ├── DeleteBucketEncryptionRequest.cc │ │ ├── DeleteBucketInventoryConfigurationRequest.cc │ │ ├── DeleteBucketLifecycleRequest.cc │ │ ├── DeleteBucketLoggingRequest.cc │ │ ├── DeleteBucketPolicyRequest.cc │ │ ├── DeleteBucketQosInfoRequest.cc │ │ ├── DeleteBucketTaggingRequest.cc │ │ ├── DeleteBucketWebsiteRequest.cc │ │ ├── DeleteLiveChannelRequest.cc │ │ ├── DeleteObjectResult.cc │ │ ├── DeleteObjectTaggingRequest.cc │ │ ├── DeleteObjectVersionsRequest.cc │ │ ├── DeleteObjectVersionsResult.cc │ │ ├── DeleteObjectsRequest.cc │ │ ├── DeleteObjectsResult.cc │ │ ├── ExtendBucketWormRequest.cc │ │ ├── GeneratePresignedUrlRequest.cc │ │ ├── GenerateRTMPSignedUrlRequest.cc │ │ ├── GetBucketAclRequest.cc │ │ ├── GetBucketAclResult.cc │ │ ├── GetBucketCorsRequest.cc │ │ ├── GetBucketCorsResult.cc │ │ ├── GetBucketEncryptionRequest.cc │ │ ├── GetBucketEncryptionResult.cc │ │ ├── GetBucketInfoRequest.cc │ │ ├── GetBucketInfoResult.cc │ │ ├── GetBucketInventoryConfigurationRequest.cc │ │ ├── GetBucketInventoryConfigurationResult.cc │ │ ├── GetBucketLifecycleRequest.cc │ │ ├── GetBucketLifecycleResult.cc │ │ ├── GetBucketLocationRequest.cc │ │ ├── GetBucketLocationResult.cc │ │ ├── GetBucketLoggingRequest.cc │ │ ├── GetBucketLoggingResult.cc │ │ ├── GetBucketPaymentRequest.cc │ │ ├── GetBucketPaymentResult.cc │ │ ├── GetBucketPolicyRequest.cc │ │ ├── GetBucketPolicyResult.cc │ │ ├── GetBucketQosInfoRequest.cc │ │ ├── GetBucketQosInfoResult.cc │ │ ├── GetBucketRefererRequest.cc │ │ ├── GetBucketRefererResult.cc │ │ ├── GetBucketStatRequest.cc │ │ ├── GetBucketStatResult.cc │ │ ├── GetBucketStorageCapacityRequest.cc │ │ ├── GetBucketStorageCapacityResult.cc │ │ ├── GetBucketTaggingRequest.cc │ │ ├── GetBucketTaggingResult.cc │ │ ├── GetBucketVersioningRequest.cc │ │ ├── GetBucketVersioningResult.cc │ │ ├── GetBucketWebsiteRequest.cc │ │ ├── GetBucketWebsiteResult.cc │ │ ├── GetBucketWormRequest.cc │ │ ├── GetBucketWormResult.cc │ │ ├── GetLiveChannelHistoryRequest.cc │ │ ├── GetLiveChannelHistoryResult.cc │ │ ├── GetLiveChannelInfoRequest.cc │ │ ├── GetLiveChannelInfoResult.cc │ │ ├── GetLiveChannelStatRequest.cc │ │ ├── GetLiveChannelStatResult.cc │ │ ├── GetObjectAclRequest.cc │ │ ├── GetObjectAclResult.cc │ │ ├── GetObjectByUrlRequest.cc │ │ ├── GetObjectMetaRequest.cc │ │ ├── GetObjectRequest.cc │ │ ├── GetObjectResult.cc │ │ ├── GetObjectTaggingRequest.cc │ │ ├── GetObjectTaggingResult.cc │ │ ├── GetSymlinkRequest.cc │ │ ├── GetSymlinkResult.cc │ │ ├── GetUserQosInfoRequest.cc │ │ ├── GetUserQosInfoResult.cc │ │ ├── GetVodPlaylistRequest.cc │ │ ├── GetVodPlaylistResult.cc │ │ ├── InitiateBucketWormRequest.cc │ │ ├── InitiateBucketWormResult.cc │ │ ├── InitiateMultipartUploadRequest.cc │ │ ├── InitiateMultipartUploadResult.cc │ │ ├── InputFormat.cc │ │ ├── InventoryConfiguration.cc │ │ ├── LifecycleRule.cc │ │ ├── ListBucketInventoryConfigurationsRequest.cc │ │ ├── ListBucketInventoryConfigurationsResult.cc │ │ ├── ListBucketsRequest.cc │ │ ├── ListBucketsResult.cc │ │ ├── ListLiveChannelRequest.cc │ │ ├── ListLiveChannelResult.cc │ │ ├── ListMultipartUploadsRequest.cc │ │ ├── ListMultipartUploadsResult.cc │ │ ├── ListObjectVersionsResult.cc │ │ ├── ListObjectsRequest.cc │ │ ├── ListObjectsResult.cc │ │ ├── ListObjectsV2Request.cc │ │ ├── ListObjectsV2Result.cc │ │ ├── ListPartsRequest.cc │ │ ├── ListPartsResult.cc │ │ ├── ModelError.cc │ │ ├── ModelError.h │ │ ├── ObjectCallbackBuilder.cc │ │ ├── ObjectMetaData.cc │ │ ├── OutputFormat.cc │ │ ├── PostVodPlaylistRequest.cc │ │ ├── ProcessObjectRequest.cc │ │ ├── PutLiveChannelRequest.cc │ │ ├── PutLiveChannelResult.cc │ │ ├── PutLiveChannelStatusRequest.cc │ │ ├── PutObjectByUrlRequest.cc │ │ ├── PutObjectRequest.cc │ │ ├── PutObjectResult.cc │ │ ├── RestoreObjectRequest.cc │ │ ├── RestoreObjectResult.cc │ │ ├── SelectObjectRequest.cc │ │ ├── SetBucketAclRequest.cc │ │ ├── SetBucketCorsRequest.cc │ │ ├── SetBucketEncryptionRequest.cc │ │ ├── SetBucketInventoryConfigurationRequest.cc │ │ ├── SetBucketLifecycleRequest.cc │ │ ├── SetBucketLoggingRequest.cc │ │ ├── SetBucketPaymentRequest.cc │ │ ├── SetBucketPolicyRequest.cc │ │ ├── SetBucketQosInfoRequest.cc │ │ ├── SetBucketRefererRequest.cc │ │ ├── SetBucketStorageCapacityRequest.cc │ │ ├── SetBucketTaggingRequest.cc │ │ ├── SetBucketVersioningRequest.cc │ │ ├── SetBucketWebsiteRequest.cc │ │ ├── SetObjectAclRequest.cc │ │ ├── SetObjectAclResult.cc │ │ ├── SetObjectTaggingRequest.cc │ │ ├── Tagging.cc │ │ ├── UploadPartCopyRequest.cc │ │ ├── UploadPartCopyResult.cc │ │ └── UploadPartRequest.cc │ ├── resumable/ │ │ ├── DownloadObjectRequest.cc │ │ ├── MultiCopyObjectRequest.cc │ │ ├── ResumableBaseWorker.cc │ │ ├── ResumableBaseWorker.h │ │ ├── ResumableCopier.cc │ │ ├── ResumableCopier.h │ │ ├── ResumableDownloader.cc │ │ ├── ResumableDownloader.h │ │ ├── ResumableUploader.cc │ │ ├── ResumableUploader.h │ │ └── UploadObjectRequest.cc │ ├── signer/ │ │ ├── HmacSha1Signer.cc │ │ ├── HmacSha1Signer.h │ │ ├── Signer.cc │ │ ├── Signer.h │ │ ├── SignerV1.cc │ │ └── SignerV4.cc │ └── utils/ │ ├── Crc32.cc │ ├── Crc32.h │ ├── Crc64.cc │ ├── Crc64.h │ ├── Executor.cc │ ├── FileSystemUtils.cc │ ├── FileSystemUtils.h │ ├── LogUtils.cc │ ├── LogUtils.h │ ├── Runnable.cc │ ├── SignUtils.cc │ ├── SignUtils.h │ ├── StreamBuf.h │ ├── ThreadExecutor.cc │ ├── ThreadExecutor.h │ ├── Utils.cc │ └── Utils.h ├── test/ │ ├── CMakeLists.txt │ ├── data/ │ │ ├── ca-certificates.crt │ │ └── sample_data.csv │ ├── external/ │ │ └── gtest/ │ │ ├── gtest-all.cc │ │ └── gtest.h │ └── src/ │ ├── AccessKey/ │ │ └── AccessKeyTest.cc │ ├── Bucket/ │ │ ├── BucketAclSettingsTest.cc │ │ ├── BucketBasicOperationTest.cc │ │ ├── BucketCorsSettingsTest.cc │ │ ├── BucketEncryptionTest.cc │ │ ├── BucketInventoryConfigurationTest.cc │ │ ├── BucketLifecycleSettingsTest.cc │ │ ├── BucketLoggingSettingsTest.cc │ │ ├── BucketPolicySettingsTest.cc │ │ ├── BucketQosInfoTest.cc │ │ ├── BucketRefersSettingsTest.cc │ │ ├── BucketRequestPaymentTest.cc │ │ ├── BucketStorageCapacityTest.cc │ │ ├── BucketTaggingtTest.cc │ │ ├── BucketVersioningTest.cc │ │ ├── BucketWebsiteSettingsTest.cc │ │ └── BucketWormSettings.cc │ ├── Config.cc │ ├── Config.h │ ├── Encryption/ │ │ ├── CipherTest.cc │ │ ├── CryptoObjectTest.cc │ │ ├── CryptoObjectVersioningTest.cc │ │ ├── CryptoResumableObjectTest.cc │ │ └── CryptoStreamBufTest.cc │ ├── LiveChannel/ │ │ ├── DeleteLiveChannelTest.cc │ │ ├── GenerateRTMPSignatrueUrlTest.cc │ │ ├── GetLiveChannelHistoryTest.cc │ │ ├── ListLiveChannelTest.cc │ │ ├── PostAndGetVodPlayListTest.cc │ │ ├── PutAndGetLiveChannelStatusTest.cc │ │ └── PutAndGetLiveChannelTest.cc │ ├── MultipartUpload/ │ │ ├── CallableTest.cc │ │ ├── MultipartUploadTest.cc │ │ ├── ObjectAsyncTest.cc │ │ └── ResumableObjectTest.cc │ ├── Object/ │ │ ├── ObjectAclTest.cc │ │ ├── ObjectAppendTest.cc │ │ ├── ObjectBasicOperationTest.cc │ │ ├── ObjectCallbackTest.cc │ │ ├── ObjectCopyTest.cc │ │ ├── ObjectEncodingTypeTest.cc │ │ ├── ObjectHashCheckTest.cc │ │ ├── ObjectProcessTest.cc │ │ ├── ObjectProgressTest .cc │ │ ├── ObjectRequestPaymentTest.cc │ │ ├── ObjectRestoreTest.cc │ │ ├── ObjectSignedUrlTest.cc │ │ ├── ObjectSymlinkTest.cc │ │ ├── ObjectTaggingTest.cc │ │ ├── ObjectTrafficLimitTest.cc │ │ ├── ObjectVersioningTest.cc │ │ └── SelectObjectTest.cc │ ├── Other/ │ │ ├── Crc64Test.cc │ │ ├── EndpointTest.cc │ │ ├── FileSystemUtilsFunctionTest.cc │ │ ├── HttpClientTest.cc │ │ ├── HttpsTest.cc │ │ ├── IpEndpointTest.cc │ │ ├── LogTest.cc │ │ ├── RateLimiterTest.cc │ │ ├── SignerTest.cc │ │ └── UtilsFunctionTest.cc │ ├── Program.cc │ ├── Utils.cc │ └── Utils.h └── third_party/ ├── include/ │ ├── curl/ │ │ ├── config-win32.h │ │ ├── curl.h │ │ ├── curlbuild.h │ │ ├── curlrules.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ └── typecheck-gcc.h │ └── openssl/ │ ├── aes.h │ ├── applink.c │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h └── lib/ ├── Win32/ │ ├── libcurl.lib │ ├── libeay32.lib │ └── ssleay32.lib └── x64/ ├── libcurl.lib ├── libeay32.lib └── ssleay32.lib ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/linux-clang.yml ================================================ name: Ubuntu (clang) on: push: branches: [ master, develop ] pull_request: branches: [ master, develop ] jobs: build: strategy: matrix: mode: [ Debug, Release ] cpp_version: [11, 20] runs-on: ubuntu-22.04 steps: - name: check out uses: actions/checkout@v3 - name: Install Dependencies run: | sudo apt-get update sudo apt-get install curl libssl-dev libcurl4-openssl-dev - name: configure cmake run: CXX=clang++ CC=clang cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DCMAKE_CXX_STANDARD=${{ matrix.cpp_version }} - name: build project run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.mode }} ================================================ FILE: .github/workflows/linux-gcc.yml ================================================ name: Ubuntu (gcc) on: push: branches: [ master, develop ] pull_request: branches: [ master, develop ] jobs: ubuntu_gcc: strategy: matrix: mode: [ Debug, Release ] cpp_version: [11, 20] runs-on: ubuntu-22.04 steps: - name: check out uses: actions/checkout@v3 - name: Install Dependencies run: | sudo apt-get update sudo apt-get install curl libssl-dev libcurl4-openssl-dev - name: checkout gcc version run: gcc --version - name: configure cmake run: CXX=g++ CC=gcc cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DCMAKE_CXX_STANDARD=${{ matrix.cpp_version }} - name: build project run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.mode }} ================================================ FILE: .github/workflows/mac.yml ================================================ name: macOS Monterey 12 on: push: branches: [ master, develop ] pull_request: branches: [ master, develop ] jobs: build: strategy: matrix: mode: [ Debug ] #mode: [Release, Debug] cpp_version: [11, 20] runs-on: macos-latest steps: - name: check out uses: actions/checkout@v4 - name: Install Dependencies run: HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install openssl - name: configure cmake run: OPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 CXX=clang++ CC=clang cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DCMAKE_CXX_STANDARD=${{ matrix.cpp_version }} - name: build project run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.mode }} ================================================ FILE: .github/workflows/windows.yml ================================================ name: Windows Server 2022 on: push: branches: [ master, develop ] pull_request: branches: [ master, develop ] jobs: build: runs-on: windows-latest strategy: matrix: mode: [Debug, Release] cpp_version: [11, 20] arch: [x64] env: CXX: cl.exe CC: cl.exe steps: - name: check out uses: actions/checkout@v3 - name: generate project run: cmake -B ${{ github.workspace }}\build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -A${{ matrix.arch }} -DCMAKE_CXX_STANDARD=${{ matrix.cpp_version }} - name: build project run: cmake --build ${{ github.workspace }}\build --config ${{ matrix.mode }} ================================================ FILE: .gitignore ================================================ .cache .vs .vscode build winbuild ================================================ FILE: CHANGELOG ================================================ 2018-10-08 Version: 1.0.0 1. pre-release version for oss sdk ================================================ FILE: CMakeLists.txt ================================================ # # Copyright 2009-2017 Alibaba Cloud All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # cmake_minimum_required(VERSION 3.5) cmake_policy(SET CMP0048 NEW) set_property(GLOBAL PROPERTY USE_FOLDERS ON) #Project setting file(STRINGS "VERSION" version) project(alibabacloud-oss-cpp-sdk VERSION ${version}) message(STATUS "Project version: ${PROJECT_VERSION}") set(SDK_ROOT "${CMAKE_CURRENT_SOURCE_DIR}") set(TARGET_OUTPUT_NAME_PREFIX "alibabacloud-oss-" CACHE STRING "The target's output name prefix") #Options option(BUILD_SHARED_LIBS "Enable shared library" OFF) option(BUILD_SAMPLE "Build sample" ON) option(BUILD_TESTS "Build unit and perfermence tests" OFF) option(ENABLE_COVERAGE "Flag to enable/disable building code with -fprofile-arcs and -ftest-coverage. Gcc only" OFF) option(ENABLE_RTTI "Flag to enable/disable building code with RTTI information" ON) #Platform if (CMAKE_CROSSCOMPILING) if (${CMAKE_SYSTEM_NAME} STREQUAL "Android") set(PLATFORM_ANDROID 1) set(TARGET_OS "ANDROID") else() message(FATAL_ERROR "Do not support target platform") endif() else() if(CMAKE_HOST_APPLE) set(PLATFORM_APPLE 1) set(TARGET_OS "APPLE") elseif(CMAKE_HOST_UNIX) set(PLATFORM_LINUX 1) set(TARGET_OS "LINUX") elseif(CMAKE_HOST_WIN32) set(PLATFORM_WINDOWS 1) set(TARGET_OS "WINDOWS") else() message(FATAL_ERROR "Do not support unknown host OS") endif() endif() message(STATUS "TARGET_OS: ${TARGET_OS}") add_definitions(-DPLATFORM_${TARGET_OS}) #Find dependency Library, curl, openssl if (${TARGET_OS} STREQUAL "WINDOWS") set(WLIB_TARGET "Win32") if (CMAKE_CL_64) set(WLIB_TARGET "x64") endif() set(CRYPTO_LIBS ${CMAKE_SOURCE_DIR}/third_party/lib/${WLIB_TARGET}/ssleay32.lib ${CMAKE_SOURCE_DIR}/third_party/lib/${WLIB_TARGET}/libeay32.lib) set(CRYPTO_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/third_party/include) set(CLIENT_LIBS ${CMAKE_SOURCE_DIR}/third_party/lib/${WLIB_TARGET}/libcurl.lib) set(CLIENT_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/third_party/include) else() include(FindCURL) include(FindOpenSSL) if(NOT CURL_FOUND) message(FATAL_ERROR "Could not find curl") endif() if(NOT OPENSSL_FOUND) message(FATAL_ERROR "Could not find openssl") endif() set(CRYPTO_LIBS ${OPENSSL_LIBRARIES}) set(CRYPTO_INCLUDE_DIRS ${OPENSSL_INCLUDE_DIR}) set(CRYPTO_LIBS_ABSTRACT_NAME crypto ssl) set(CLIENT_LIBS ${CURL_LIBRARIES}) set(CLIENT_INCLUDE_DIRS ${CURL_INCLUDE_DIRS}) set(CLIENT_LIBS_ABSTRACT_NAME curl) endif() #Compiler flags set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard to use") message(STATUS "CXX Standard: ${CMAKE_CXX_STANDARD}") if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") list(APPEND SDK_COMPILER_FLAGS "/MP") if (NOT ENABLE_RTTI) list(APPEND SDK_COMPILER_FLAGS "/GR-") endif() # disable some warning list(APPEND SDK_COMPILER_FLAGS "/D_CRT_SECURE_NO_WARNINGS") if(CMAKE_CXX_STANDARD GREATER_EQUAL 17) list(APPEND SDK_COMPILER_FLAGS "/D_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING") endif() elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang") list(APPEND SDK_COMPILER_FLAGS "-fno-exceptions" "-fPIC") if (NOT ENABLE_RTTI) list(APPEND SDK_COMPILER_FLAGS "-fno-rtti") endif() list(APPEND SDK_COMPILER_FLAGS "-Wall" "-Werror" "-pedantic" "-Wextra") else() list(APPEND SDK_COMPILER_FLAGS "-fno-exceptions" "-fPIC") if (NOT ENABLE_RTTI) list(APPEND SDK_COMPILER_FLAGS "-fno-rtti") endif() list(APPEND SDK_COMPILER_FLAGS "-Wall" "-Werror" "-pedantic" "-Wextra") if (ENABLE_COVERAGE) SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fprofile-arcs -ftest-coverage") SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fprofile-arcs -ftest-coverage") SET(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} -fprofile-arcs -ftest-coverage") endif() endif() if (BUILD_SHARED_LIBS) set(STATIC_LIB_SUFFIX "-static") else() set(STATIC_LIB_SUFFIX "") endif() include(ExternalProject) include(GNUInstallDirs) add_subdirectory(sdk) if(BUILD_SAMPLE) add_subdirectory(sample) endif() if(BUILD_TESTS) add_subdirectory(test) add_subdirectory(ptest) endif() ================================================ FILE: LICENSE ================================================ Copyright 2009-2017 Alibaba Cloud All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # Alibaba Cloud OSS C++ Software Development Kit [中文文档](./README_zh.md) Alibaba Cloud Object Storage Service (OSS) is a cloud storage service provided by Alibaba Cloud, featuring massive capacity, security, a low cost, and high reliability. You can upload and download data on any application anytime and anywhere by calling APIs, and perform simple management of data through the web console. The OSS can store any type of files and therefore applies to various websites, development enterprises and developers. The OSS SDK for C++ provides a variety of modern C++ (version C++ 11 or later) interfaces for convenient use of the OSS. This document introduces how to obtain and call Alibaba Cloud OSS C++ SDK. If you have any problem while using C++ SDK, please contact us. ## Prerequisites To use Alibaba Cloud OSS C++ SDK, you must: * Have an Alibaba Cloud account and an AccessKey. The AccessKey is required when initializing the client. You can create an AccessKey in the Alibaba Cloud console. For more information, see [Create an AccessKey](https://usercenter.console.aliyun.com/?spm=5176.doc52740.2.3.QKZk8w#/manage/ak) > **Note:** To increase the security of your account, we recommend that you use the AccessKey of the RAM user to access Alibaba Cloud services. * Install a compiler that supports C + + 11 or later: * Visual Studio 2013 or later: * or GCC 4.8 or later: * or Clang 3.3 or later: ## Building the SDK 1. Download or clone from GitHub [aliyun-oss-cpp-sdk](https://github.com/aliyun/aliyun-oss-cpp-sdk) * Download https://github.com/aliyun/aliyun-oss-cpp-sdk/archive/master.zip * Clone source codes ``` git clone https://github.com/aliyun/aliyun-oss-cpp-sdk.git ``` 2. Install CMake 3.1 or later, enter SDK to create build files required for the build ``` cd mkdir build cd build cmake .. ``` ### Windows Enter build folder, open alibabacloud-oss-cpp-sdk.sln with Visual Studio. Or run the the following commands to build and install: ``` msbuild ALL_BUILD.vcxproj msbuild INSTALL.vcxproj ``` ### Linux Install third-party libraries on the Linux platform, including `libcurl` and `libopenssl`. Run the following commands on the Redhat/Fedora system to install third-party libraries. ``` sudo dnf install libcurl-devel openssl-devel ``` Run the following commands on the Debian/Ubuntu system to install third-party libraries. ``` sudo apt-get install libcurl4-openssl-dev libssl-dev ``` Run the following commands to build and install sdk: ``` make sudo make install ``` ### Mac On Mac you should specify openssl path. For example, openssl is installed in /usr/local/Cellar/openssl/1.0.2p, run the following commands ``` cmake -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2p \ -DOPENSSL_LIBRARIES=/usr/local/Cellar/openssl/1.0.2p/lib \ -DOPENSSL_INCLUDE_DIRS=/usr/local/Cellar/openssl/1.0.2p/include/ .. make ``` ### Android Build and install third-party libraries, including `libcurl` and `libopenssl` to `$ANDROID_NDK/sysroot`, run the following commands ``` cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \ -DANDROID_NDK=$ANDROID_NDK \ -DANDROID_ABI=armeabi-v7a \ -DANDROID_TOOLCHAIN=clang \ -DANDROID_PLATFORM=android-21 \ -DANDROID_STL=c++_shared .. make ``` ### CMake Option #### BUILD_SHARED_LIBS (Default OFF) If turned on, both static and shared libraries are built, and the static library name has a -static suffix. At the same time, the sample project will be linked to the shared library. ``` cmake .. -DBUILD_SHARED_LIBS=ON ``` #### BUILD_TESTS (Default OFF) If turned on, both test and ptest project will be built. ``` cmake .. -DBUILD_TESTS=ON ``` #### ENABLE_RTTI (Default ON) If turned off, the SDK is built without RTTI information. ``` cmake .. -DENABLE_RTTI=OFF ``` #### OSS_DISABLE_BUCKET (Default OFF) If turned ON, the SDK is built without the bucket's API. ``` cmake .. -DOSS_DISABLE_BUCKET=ON ``` #### OSS_DISABLE_LIVECHANNEL (Default OFF) If turned ON, the SDK is built without the livechannel's API. ``` cmake .. -DOSS_DISABLE_LIVECHANNEL=ON ``` #### OSS_DISABLE_RESUAMABLE (Default OFF) If turned ON, the SDK is built without the resumable operation feature. ``` cmake .. -DOSS_DISABLE_RESUAMABLE=ON ``` #### OSS_DISABLE_ENCRYPTION (Default OFF) If turned ON, the SDK is built without the client-side encryption feature. ``` cmake .. -DOSS_DISABLE_ENCRYPTION=ON ``` ## Use the C++ SDK The following code shows how to list buckets owned by the requester. > **Note:** Please replace the your-region-id,your-access-key-id and your-access-key-secret in the sample. ``` #include using namespace AlibabaCloud::OSS; int main(int argc, char** argv) { // Initialize the SDK InitializeSdk(); // Configure the instance ClientConfiguration conf; OssClient client("your-region-id", "your-access-key-id", "your-access-key-secret", conf); // Create an API request ListBucketsRequest request; auto outcome = client.ListBuckets(request); if (!outcome.isSuccess()) { // Handle exceptions std::cout << "ListBuckets fail" << ",code:" << outcome.error().Code() << ",message:" << outcome.error().Message() << ",requestId:" << outcome.error().RequestId() << std::endl; ShutdownSdk(); return -1; } // Close the SDK ShutdownSdk(); return 0; } ``` ## License See the LICENSE file (Apache 2.0 license). ================================================ FILE: README_zh.md ================================================ # 阿里云OSS C++工具套件 阿里云对象存储(Object Storage Service,简称OSS),是阿里云对外提供的海量、安全、低成本、高可靠的云存储服务。用户可以通过调用API,在任何应用、任何时间、任何地点上传和下载数据,也可以通过用户Web控制台对数据进行简单的管理。OSS适合存放任意文件类型,适合各种网站、开发企业及开发者使用。 适用于阿里云OSS的 C++ SDK提供了一组现代化的 C++(C++ 11)接口,让您不用复杂编程即可访问阿里云OSS服务。 如果您在使用SDK的过程中遇到任何问题,欢迎前往阿里云SDK问答社区提问,提问前请阅读提问引导。亦可在当前GitHub提交Issues。 完成本文档中的操作开始使用 C++ SDK。 ## 前提条件 在使用 C++ SDK 前,确保您已经: * 注册了阿里云账号并获取了访问密钥(AccessKey)。 > **说明:** 为了保证您的账号安全,建议您使用RAM账号来访问阿里云服务。阿里云账号对拥有的资源有全部权限。RAM账号由阿里云账号授权创建,仅有对特定资源限定的操作权限。详情[参见RAM](https://help.aliyun.com/document_detail/28647.html)。 * 安装支持 C++ 11 或更高版本的编译器: * Visual Studio 2013 或以上版本 * 或 GCC 4.8 或以上版本 * 或 Clang 3.3 或以上版本 ## 从源代码构建 SDK 1. 从 GitHub 下载或 Git 克隆 [aliyun-oss-cpp-sdk](https://github.com/aliyun/aliyun-oss-cpp-sdk) * 直接下载 https://github.com/aliyun/aliyun-oss-cpp-sdk/archive/master.zip * 使用 Git 命令获取 ``` git clone https://github.com/aliyun/aliyun-oss-cpp-sdk.git ``` 2. 安装 cmake 3.1 或以上版本,进入 SDK 创建生成必要的构建文件 ``` cd mkdir build cd build cmake .. ``` ### Windows 进入 build 目录使用 Visual Studio 打开 alibabacloud-oss-cpp-sdk.sln 生成解决方案。 或者您也可以使用 VS 的开发人员命令提示符,执行以下命令编译并安装: ``` msbuild ALL_BUILD.vcxproj msbuild INSTALL.vcxproj ``` ### Linux 要在 Linux 平台进行编译, 您必须安装依赖的外部库文件 libcurl、libopenssl, 通常情况下,系统的包管理器中的会有提供。 例如:在基于 Redhat / Fedora 的系统上安装这些软件包 ``` sudo dnf install libcurl-devel openssl-devel ``` 例如:在基于 Debian / Ubuntu 的系统上安装这些软件包 ``` sudo apt-get install libcurl4-openssl-dev libssl-dev ``` 在安装依赖库后执行以下命令编译并安装: ``` make sudo make install ``` ### Mac 在Mac平台编译时,需要指定openssl 库的路径。例如 openssl安装在 /usr/local/Cellar/openssl/1.0.2p, 请使用如下命令 ``` cmake -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2p \ -DOPENSSL_LIBRARIES=/usr/local/Cellar/openssl/1.0.2p/lib \ -DOPENSSL_INCLUDE_DIRS=/usr/local/Cellar/openssl/1.0.2p/include/ .. make ``` ### Android 例如,在linux 环境下,基于android-ndk-r16 工具链构建工程。可以先把第三方库 `libcurl` 和 `libopenssl` 编译并安装到 `$ANDROID_NDK/sysroot` 下,然后使用如下命令 ``` cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \ -DANDROID_NDK=$ANDROID_NDK \ -DANDROID_ABI=armeabi-v7a \ -DANDROID_TOOLCHAIN=clang \ -DANDROID_PLATFORM=android-21 \ -DANDROID_STL=c++_shared .. make ``` ### CMake 选项 #### BUILD_SHARED_LIBS (默认为关,即OFF) 如果打开,会同时构建静态库和动态库, 静态库名字增加-static后缀。同时,sample工程会链接到sdk的动态库上。 ``` cmake .. -DBUILD_SHARED_LIBS=ON ``` #### BUILD_TESTS (默认为关,即OFF) 如果打开,会构建出test 及 ptest两个测试工程。 ``` cmake .. -DBUILD_TESTS=ON ``` #### ENABLE_RTTI (默认为开,即ON) 如果关闭, 构建的库不会添加运行时类型信息. ``` cmake .. -DENABLE_RTTI=OFF ``` #### OSS_DISABLE_BUCKET (默认为关,即OFF) 如果打开, 构建的库不会包含和 bucket 有关的接口. ``` cmake .. -DOSS_DISABLE_BUCKET=ON ``` #### OSS_DISABLE_LIVECHANNEL (默认为关,即OFF) 如果打开, 构建的库不会包含和 livechannel 有关的接口. ``` cmake .. -DOSS_DISABLE_LIVECHANNEL=ON ``` #### OSS_DISABLE_RESUAMABLE (默认为关,即OFF) 如果打开, 构建的库不会包含断点续传功能. ``` cmake .. -DOSS_DISABLE_RESUAMABLE=ON ``` #### OSS_DISABLE_ENCRYPTION (默认为关,即OFF) 如果打开, 构建的库不会包含客户端加密功能. ``` cmake .. -DOSS_DISABLE_ENCRYPTION=ON ``` ## 如何使用 C++ SDK 以下代码展示了如何获取请求者拥有的Bucket。 > **说明:** 您需要替换示例中的 your-region-id、your-access-key-id 和 your-access-key-secret 的值。 ``` #include using namespace AlibabaCloud::OSS; int main(int argc, char** argv) { // 初始化SDK InitializeSdk(); // 配置实例 ClientConfiguration conf; OssClient client("your-region-id", "your-access-key-id", "your-access-key-secret", conf); // 创建API请求 ListBucketsRequest request; auto outcome = client.ListBuckets(request); if (!outcome.isSuccess()) { // 异常处理 std::cout << "ListBuckets fail" << ",code:" << outcome.error().Code() << ",message:" << outcome.error().Message() << ",requestId:" << outcome.error().RequestId() << std::endl; ShutdownSdk(); return -1; } // 关闭SDK ShutdownSdk(); return 0; } ``` ## 许可协议 请参阅 LICENSE 文件(Apache 2.0 许可证)。 ================================================ FILE: VERSION ================================================ 1.10.1 ================================================ FILE: ptest/CMakeLists.txt ================================================ # # Copyright 2009-2017 Alibaba Cloud All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # project(cpp-sdk-ptest VERSION ${version}) file(GLOB ptest_src "src/*") add_executable(${PROJECT_NAME} ${ptest_src}) target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_SOURCE_DIR}/sdk/include) target_link_libraries(${PROJECT_NAME} cpp-sdk${STATIC_LIB_SUFFIX}) target_link_libraries(${PROJECT_NAME} ${CRYPTO_LIBS}) target_link_libraries(${PROJECT_NAME} ${CLIENT_LIBS}) if (${TARGET_OS} STREQUAL "LINUX") target_link_libraries(${PROJECT_NAME} pthread) endif() target_compile_options(${PROJECT_NAME} PRIVATE "${SDK_COMPILER_FLAGS}") ================================================ FILE: ptest/src/Config.cc ================================================ #include #include #include "Config.h" #include #include #include #include using namespace AlibabaCloud::OSS::PTest; std::string Config::Version = "cpp-sdk-perf-test-1.0.0 "; std::string Config::Endpoint = ""; std::string Config::AccessKeyId = ""; std::string Config::AccessKeySecret = ""; std::string Config::BucketName = ""; std::string Config::OssCfgFile = "oss.ini"; std::string Config::Command = ""; std::string Config::BaseLocalFile = ""; std::string Config::BaseRemoteKey = ""; int Config::PartSize = 100 * 1024 * 1024; int Config::Parallel = 5; int Config::Multithread = 1; int Config::LoopTimes = 1; int Config::LoopDurationS = -1; bool Config::Persistent = false; bool Config::DifferentSource = false; bool Config::CrcCheck = true; int Config::SpeedKBPerSec = 0; // bool Config::Debug = false; bool Config::DumpDetail = false; bool Config::PrintPercentile = false; static std::string LeftTrim(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](unsigned char ch) { return !::isspace(ch); })); return copy; } static std::string RightTrim(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](unsigned char ch) { return !::isspace(ch); }).base(), copy.end()); return copy; } static std::string Trim(const char* source) { return LeftTrim(RightTrim(source).c_str()); } static std::string LeftTrimQuotes(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](int ch) { return !(ch == '"'); })); return copy; } static std::string RightTrimQuotes(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](int ch) { return !(ch == '"'); }).base(), copy.end()); return copy; } static std::string TrimQuotes(const char* source) { return LeftTrimQuotes(RightTrimQuotes(source).c_str()); } void Config::PrintHelp() { std::cout << "\n"; std::cout << "Usage: cpp-sdk-ptest [-h] [-v] [-c COMMAND] [-f LOCALFILE] \n"; std::cout << " [-k REMOTEKEY] [-p PARALLEL] \n"; std::cout << " [-m MULTITHREAD] [--partSize PARTSIZE] \n"; std::cout << " [-loopTimes TIMES]|[--loopDuration SEC]|[--persistent] \n"; std::cout << " [--differentsource] \n"; std::cout << "Optional arguments: \n"; std::cout << " -h, --help show this help mestd::coutage and exit. \n"; std::cout << " -v show program's version number and exit. \n"; std::cout << " -c COMMAND Command Type : upload(up), upload_resumable(upr), upload_async(upa), download(dn), download_async(dna) . \n"; std::cout << " -b BUCKETNAME bucket name. \n"; std::cout << " -f LOCALFILE local filename to transfer. \n"; std::cout << " -k REMOTEKEY remote object key. \n"; std::cout << " -p PARALLEL parallel threads parameter for resumable breakpoint transfer. \n"; std::cout << " -m MULTITHREAD multithread number for transfer. \n"; std::cout << " --partSize PARTSIZE part size parameter for resume breakpoint transfer. \n"; std::cout << " --loopTimes TIMES how many times to do test. \n"; std::cout << " --loopDuration SEC how many seconds to do test. \n"; std::cout << " --persistent Whether run the command persistantly. \n"; std::cout << " --differentsource Whether transfer from different source files. \n"; std::cout << " --limit SPEED Whether to limit the upload or download speed, in kB/s. \n"; std::cout << " --detail print detail inforamtion for each testcase. \n"; std::cout << " --percentile print the 90th and 95th percentile value. \n"; std::cout << "\nExamples : \n"; std::cout << " cpp-sdk-ptest -c upload -f mylocalfilename -k myobjectkeyname \n"; std::cout << " cpp-sdk-ptest -c up -f mylocalfilename -k myobjectkeyname -b mybucketname\n"; std::cout << " cpp-sdk-ptest -c upload_resumable -f mylocalfilename -k myobjectkeyname -p 5 \n"; std::cout << " cpp-sdk-ptest -c upload_multipart -f mylocalfilename -k myobjectkeyname -p 5 \n"; std::cout << " cpp-sdk-ptest -c upr -f mylocalfilename -k myobjectkeyname -p 10 \n"; std::cout << " cpp-sdk-ptest -c upload_async -f mylocalfilename -k myobjectkeyname \n"; std::cout << " cpp-sdk-ptest -c upa -f mylocalfilename -k myobjectkeyname -m 5 \n"; std::cout << " cpp-sdk-ptest -c up -f mylocalfilename -k myobjectkeyname -m 5 \n"; std::cout << " cpp-sdk-ptest -c download -f mylocalfilename -k myobjectkeyname \n"; std::cout << " cpp-sdk-ptest -c download_resumable -f mylocalfilename -k myobjectkeyname -p 5 \n"; std::cout << " cpp-sdk-ptest -c dnr -f mylocalfilename -k myobjectkeyname \n"; std::cout << " cpp-sdk-ptest -c dnr -f mylocalfilename -k myobjectkeyname -p 5 \n"; std::cout << " cpp-sdk-ptest -c download_async -f mylocalfilename -k myobjectkeyname \n"; std::cout << " cpp-sdk-ptest -c dna -f mylocalfilename -k myobjectkeyname -m 5 \n"; std::cout << " cpp-sdk-ptest -c dn -f mylocalfilename -k myobjectkeyname -m 5 \n"; } void Config::PrintCfgInfo() { std::cout << "\n"; std::cout << "version : " << Config::Version << std::endl; std::cout << "endpoint : " << Config::Endpoint << std::endl; std::cout << "accessKeyId : " << Config::AccessKeyId << std::endl; std::cout << "bucketName : " << Config::BucketName << std::endl; std::cout << "command : " << Config::Command << std::endl; std::cout << "localfile : " << Config::BaseLocalFile << std::endl; std::cout << "remotekey : " << Config::BaseRemoteKey << std::endl; if (!Config::Command.compare("upload_resumable") || Config::Command.compare("download_resumable")) { std::cout << "parallel : " << Config::Parallel << std::endl; std::cout << "partSize : " << Config::PartSize << std::endl; } std::cout << "multithread : " << Config::Multithread << std::endl; std::cout << "loopTimes : " << Config::LoopTimes << std::endl; std::cout << "loopDuration : " << Config::LoopDurationS << std::endl; std::cout << "persistent : " << Config::Persistent << std::endl; std::cout << "differentsource : " << Config::DifferentSource << std::endl; std::cout << "limit speed : " << Config::SpeedKBPerSec << std::endl; } int Config::ParseArg(int argc, char **argv) { if (argc < 2) { PrintHelp(); return -1; } int i = 1; while (i < argc) { if (argv[i][0] == '-') { if (!strcmp("--help", argv[i]) || !strcmp("-h", argv[i])) { PrintHelp(); return -1; } else if (!strcmp("-v", argv[i])) { std::cout << Config::Version << std::endl; return -1; } else if (!strcmp("-c", argv[i])) { Config::Command = argv[i + 1]; if (Config::Command == "up") { Config::Command = "upload"; } else if (Config::Command == "upr") { Config::Command = "upload_resumable"; } else if (Config::Command == "upa") { Config::Command = "upload_async"; } else if (Config::Command == "dn") { Config::Command = "download"; } else if (Config::Command == "dnr") { Config::Command = "download_resumable"; } else if (Config::Command == "dna") { Config::Command = "download_async"; } i++; } else if (!strcmp("-b", argv[i])) { Config::BucketName = argv[i + 1]; i++; } else if (!strcmp("-f", argv[i])) { Config::BaseLocalFile = argv[i + 1]; i++; } else if (!strcmp("-k", argv[i])) { Config::BaseRemoteKey = argv[i + 1]; i++; } else if (!strcmp("-p", argv[i])) { Config::Parallel = std::atoi(argv[i + 1]); i++; } else if (!strcmp("-m", argv[i])) { Config::Multithread = std::atoi(argv[i + 1]); i++; } else if (!strcmp("-d", argv[i])) { Config::Debug = true; } else if (!strcmp("--partSize", argv[i])) { Config::PartSize = std::atoi(argv[i + 1]); i++; } else if (!strcmp("--loopTimes", argv[i])) { Config::LoopTimes = std::atoi(argv[i + 1]); Config::LoopDurationS = -1; i++; } else if (!strcmp("--loopDuration", argv[i])) { Config::LoopDurationS = std::atoi(argv[i + 1]); Config::LoopTimes = -1; i++; } else if (!strcmp("--persistent", argv[i])) { Config::Persistent = true; i++; } else if (!strcmp("--differentsource", argv[i])) { i++; } else if (!strcmp("--limit", argv[i])) { Config::SpeedKBPerSec = std::atoi(argv[i + 1]); i++; } else if (!strcmp("--detail", argv[i])) { Config::DumpDetail = true; } else if (!strcmp("--percentile", argv[i])) { Config::PrintPercentile = true; } } i++; }; return 0; } int Config::LoadCfgFile() { std::fstream in(Config::OssCfgFile, std::ios::in | std::ios::binary); if (!in.good()) { std::cout << "Open oss.ini file fail." << std::endl; return 1; } char buffer[256]; char *ptr; while (in.getline(buffer, 256)) { ptr = strchr(buffer, '='); if (!ptr) { continue; } if (!strncmp(buffer, "AccessKeyId", 11)) { Config::AccessKeyId = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "AccessKeySecret", 15)) { Config::AccessKeySecret = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "Endpoint", 8)) { Config::Endpoint = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "BucketName", 10)) { Config::BucketName = TrimQuotes(Trim(ptr + 1).c_str()); } } if (Config::AccessKeyId.empty() || Config::AccessKeySecret.empty() || Config::Endpoint.empty() || Config::BucketName.empty()) { std::cout << "one of AK, SK, endpoint and BucketName is not config, please set the oss.ini file." << std::endl; return 1; } return 0; } ================================================ FILE: ptest/src/Config.h ================================================ #include namespace AlibabaCloud { namespace OSS { namespace PTest { class Config { public: Config() = default; static void PrintHelp(); static void PrintCfgInfo(); static int ParseArg(int argc, char **argv); static int LoadCfgFile(); public: static std::string Version; static std::string Endpoint; static std::string AccessKeyId; static std::string AccessKeySecret; static std::string BucketName; static std::string OssCfgFile; static std::string Command; static std::string BaseLocalFile; static std::string BaseRemoteKey; static int PartSize; static int Parallel; static int Multithread; static int LoopTimes; static int LoopDurationS; static bool Persistent; static bool DifferentSource; static bool CrcCheck; static int SpeedKBPerSec; static bool Debug; static bool DumpDetail; static bool PrintPercentile; }; } } } ================================================ FILE: ptest/src/Program.cc ================================================ #include #include #include #include #include "Config.h" #include #include #include #include #include #include #include using namespace AlibabaCloud::OSS; using namespace AlibabaCloud::OSS::PTest; static std::chrono::system_clock::time_point totalStartTimePoint; static std::chrono::system_clock::time_point totalStopTimePoint; static int64_t totalTransferSize; static int64_t totalTransferDurationMS; static int64_t minTransferDurationMS; static int64_t maxTransferDurationMS; static int totalSucessCnt; static int totalFailCnt; static std::mutex logMtx; static std::mutex updateMtx; static uint64_t uploadFileCRC64; struct taskResult { int taskId; bool success; int64_t seqNum; int64_t transferSize; std::chrono::system_clock::time_point startTimePoint; std::chrono::system_clock::time_point stopTimePoint; }; using TaskResultVector = std::vector; static std::vector totalResults; class DefaultRateLimiter : public RateLimiter { public: DefaultRateLimiter() :rate_(0) {}; ~DefaultRateLimiter() {}; virtual void setRate(int rate) { rate_ = rate; }; virtual int Rate() const { return rate_; }; private: int rate_; }; static std::string to_datetime_string(const std::chrono::system_clock::time_point tp) { auto tt = std::chrono::system_clock::to_time_t(tp); struct tm tm; char date[60] = { 0 }; #ifdef _WIN32 localtime_s(&tm, &tt); sprintf_s(date, "%d-%02d-%02d %02d:%02d:%02d", #else localtime_r(&tt, &tm); sprintf(date, "%d-%02d-%02d %02d:%02d:%02d", #endif // _WIN32 (int)tm.tm_year + 1900, (int)tm.tm_mon + 1, (int)tm.tm_mday, (int)tm.tm_hour, (int)tm.tm_min, (int)tm.tm_sec); return std::string(date); } static int64_t get_file_size(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } static uint64_t get_file_crc64(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); const int buffer_size = 2048; char streamBuffer[buffer_size]; uint64_t initcrc = 0; while (f.good()) { f.read(streamBuffer, buffer_size); auto bytesRead = f.gcount(); if (bytesRead > 0) { initcrc = ComputeCRC64(initcrc, static_cast(streamBuffer), static_cast(bytesRead)); } } f.close(); return initcrc; } static int calculate_part_count(int64_t totalSize, int singleSize) { auto partCount = totalSize / singleSize; if (totalSize % singleSize != 0) { partCount++; } return static_cast(partCount); } static bool is_test_done(int loopcnt, std::chrono::system_clock::time_point startTp) { if (Config::Persistent) return false; if ((Config::LoopTimes > 0) && (loopcnt <= Config::LoopTimes)) return false; if (Config::LoopDurationS > 0) { auto currTp = std::chrono::system_clock::now(); int diff = (int)(std::chrono::duration_cast(currTp - startTp)).count(); if (diff < Config::LoopDurationS) return false; } return true; } static void log_msg(std::ostream & out, const std::string &msg) { std::unique_lock lck(logMtx); out << msg; out.flush(); } static void log_result_detail_msg(std::ostream& out) { std::unique_lock lck(logMtx); std::stringstream ss; out << "Dump Detail:" << std::endl; out << "Result, TaskId, SeqNum, DurationMs, TransferSize, TransferRate MB/s" << std::endl; for (const auto& results : totalResults) { for (const auto& result : results) { ss.str(""); ss << std::setiosflags(std::ios::fixed) << std::setprecision(2); int64_t durationMs = (std::chrono::duration_cast(result.stopTimePoint - result.startTimePoint)).count(); ss << (result.success ? "OK" : "NG") << "," << result.taskId << "," << result.seqNum << "," << durationMs; if (result.success) { ss << "," << result.transferSize; ss << "," << ((double)result.transferSize / 1024.0f / 1024.0f) / ((double)durationMs / 1000.0f); } else { ss << ", ,"; } ss << std::endl; out << ss.str(); } } out.flush(); } static void get_90th_95th_latency_percentile(int64_t &per90, int64_t &per95) { std::vector latentcy; for (const auto& results : totalResults) { for (const auto& result : results) { int64_t durationMs = (std::chrono::duration_cast(result.stopTimePoint - result.startTimePoint)).count(); latentcy.push_back(durationMs); } } std::sort(latentcy.begin(), latentcy.end()); per90 = latentcy[latentcy.size() * 90 / 100]; per95 = latentcy[latentcy.size() * 95 / 100]; } static std::string get_task_key(int taskId) { std::string key(Config::BaseRemoteKey); if (Config::Command == "upload") { key.append("-").append(std::to_string(taskId)); } else if (Config::Command == "upload_resumable") { key.append("-resumable").append(std::to_string(taskId)); } else if (Config::Command == "upload_async") { key.append("-async").append(std::to_string(taskId)); } return key; } static std::string get_task_fileName(int taskId) { std::string fileName(Config::BaseLocalFile); if (Config::Command == "download") { fileName.append("-").append(std::to_string(taskId)); } else if (Config::Command == "download_resumable") { fileName.append("-resumable").append(std::to_string(taskId)); } else if (Config::Command == "download_async") { fileName.append("-async").append(std::to_string(taskId)); } return fileName; } static taskResult upload(const OssClient &client, const std::string &key, const std::string &fileToUpload) { taskResult result; std::stringstream ss; result.transferSize = get_file_size(fileToUpload); result.startTimePoint = std::chrono::system_clock::now(); auto outcome = client.PutObject(Config::BucketName, key, fileToUpload); result.success = outcome.isSuccess(); result.stopTimePoint = std::chrono::system_clock::now(); return result; } static taskResult upload_async(const OssClient &client, const std::string &key, const std::string &fileToUpload) { taskResult result; result.transferSize = get_file_size(fileToUpload); std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in|std::ios::binary); auto outcomeCallable = client.PutObjectCallable(PutObjectRequest(Config::BucketName, key, content)); auto outcome = outcomeCallable.get(); result.startTimePoint = std::chrono::system_clock::now(); result.success = outcome.isSuccess(); result.stopTimePoint = std::chrono::system_clock::now(); return result; } static taskResult upload_resumable(const OssClient &client, const std::string &key, const std::string &fileToUpload) { taskResult result; result.transferSize = get_file_size(fileToUpload); UploadObjectRequest request(Config::BucketName, key, fileToUpload); request.setPartSize(Config::PartSize); request.setThreadNum(Config::Parallel); result.startTimePoint = std::chrono::system_clock::now(); auto outcome = client.ResumableUploadObject(request); result.stopTimePoint = std::chrono::system_clock::now(); result.success = outcome.isSuccess(); return result; } struct SubTaskInfo { int partNum; int64_t offset; }; static taskResult upload_multipart(const OssClient &client, const std::string &key, const std::string &fileToUpload) { taskResult result; result.transferSize = get_file_size(fileToUpload); result.startTimePoint = std::chrono::system_clock::now(); // Set the part size const int partSize = Config::PartSize; const int64_t fileLength = result.transferSize; auto partCount = calculate_part_count(fileLength, partSize); std::vector< SubTaskInfo> SubTaskInfos; for (auto i = 0; i < partCount; i++) { SubTaskInfo subinfo; subinfo.partNum = i + 1; subinfo.offset = partSize; subinfo.offset *= i; SubTaskInfos.push_back(subinfo); } std::vector outcomes; bool failed = false; std::string code; std::string message; InitiateMultipartUploadRequest imuRequest(Config::BucketName, key); auto initOutcome = client.InitiateMultipartUpload(imuRequest); if (initOutcome.isSuccess()) { while (!SubTaskInfos.empty() && !failed) { if (outcomes.size() < static_cast(Config::Parallel)) { SubTaskInfo subinfo = *SubTaskInfos.begin(); SubTaskInfos.erase(SubTaskInfos.begin()); std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in | std::ios::binary); content->seekg(subinfo.offset); UploadPartRequest request(Config::BucketName, key, content); request.setPartNumber(subinfo.partNum); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(Config::PartSize); auto outcomeCallable = client.UploadPartCallable(request); outcomes.emplace_back(std::move(outcomeCallable)); } //check all outcomes for (auto it = outcomes.begin(); !failed && it != outcomes.end();) { auto status = it->wait_for(std::chrono::milliseconds(100)); if (status == std::future_status::ready) { auto outcome = it->get(); if (!outcome.isSuccess()) { failed = true; code = outcome.error().Code(); message = outcome.error().Message(); } it = outcomes.erase(it); } else { it++; } } } for (auto it = outcomes.begin(); !failed && it != outcomes.end(); it++) { auto outcome = it->get(); if (!outcome.isSuccess()) { failed = true; code = outcome.error().Code(); message = outcome.error().Message(); } } if (!failed) { auto listOutcome = client.ListParts(ListPartsRequest(Config::BucketName, key, initOutcome.result().UploadId())); if (listOutcome.isSuccess()) { auto cOutcome = client.CompleteMultipartUpload( CompleteMultipartUploadRequest(Config::BucketName, key, listOutcome.result().PartList(), initOutcome.result().UploadId())); if (!cOutcome.isSuccess()) { failed = true; code = listOutcome.error().Code(); message = listOutcome.error().Message(); } else { if (cOutcome.result().CRC64() != uploadFileCRC64) { failed = true; code = "CRC64 check fail."; message = "CRC64 check fail."; } } } else { failed = true; code = listOutcome.error().Code(); message = listOutcome.error().Message(); } } } else { failed = true; code = initOutcome.error().Code(); message = initOutcome.error().Message(); } result.stopTimePoint = std::chrono::system_clock::now(); result.success = !failed; return result; } static taskResult download(const OssClient &client, const std::string &key, const std::string &fileToSave) { taskResult result; result.startTimePoint = std::chrono::system_clock::now(); auto outcome = client.GetObject(Config::BucketName, key, fileToSave); result.stopTimePoint = std::chrono::system_clock::now(); result.success = outcome.isSuccess(); if (outcome.isSuccess()) { result.transferSize = outcome.result().Metadata().ContentLength(); } return result; } static taskResult download_async(const OssClient &client, const std::string &key, const std::string &fileToSave) { taskResult result; GetObjectRequest request(Config::BucketName, key); request.setResponseStreamFactory([=]() {return std::make_shared(fileToSave, std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); result.startTimePoint = std::chrono::system_clock::now(); auto outcomeCallable = client.GetObjectCallable(request); auto outcome = outcomeCallable.get(); result.stopTimePoint = std::chrono::system_clock::now(); result.success = outcome.isSuccess(); if (outcome.isSuccess()) { result.transferSize = outcome.result().Metadata().ContentLength(); } return result; } static taskResult download_resumable(const OssClient &client, const std::string &key, const std::string &fileToSave) { taskResult result; DownloadObjectRequest request(Config::BucketName, key, fileToSave); request.setPartSize(Config::PartSize); request.setThreadNum(Config::Parallel); result.startTimePoint = std::chrono::system_clock::now(); auto outcome = client.ResumableDownloadObject(request); result.stopTimePoint = std::chrono::system_clock::now(); result.success = outcome.isSuccess(); if (outcome.isSuccess()) { result.transferSize = outcome.result().Metadata().ContentLength(); } return result; } static void runSingleTask(int taskId) { taskResult result; TaskResultVector &resultVec = totalResults[taskId]; std::string key = get_task_key(taskId); std::string fileName = get_task_fileName(taskId); std::stringstream ss; auto startTime = std::chrono::system_clock::now(); int64_t taskMinTransferDurationMs = 0x7FFFFFFF; int64_t taskMaxTransferDurationMs = -1; int64_t taskAvgTrasnferDurationMs = -1; int64_t taskTransferSize = 0; int64_t taskTransferDurationMs = 0; int taskSucessCnt = 0; int taskFailCnt = 0; ClientConfiguration conf; auto rateLimiter = std::make_shared(); if (Config::SpeedKBPerSec > 0) { rateLimiter->setRate(Config::SpeedKBPerSec); conf.sendRateLimiter = rateLimiter; conf.recvRateLimiter = rateLimiter; } OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); if (Config::LoopTimes == 0) { Config::Persistent = true; } auto _ = ss.str(); ss << "\n++++ START " << Config::Command << " : taskID=" << taskId << ", LocalFile=" << fileName << ", RemoteKey=" << key << ", StartTime=" << to_datetime_string(startTime) << std::endl; log_msg(std::cout, ss.str()); int runIndex = 1; //while ((runIndex <= Config::LoopTimes) || Config::Persistent) while (!is_test_done(runIndex, startTime)) { if (Config::Command == "upload") { result = upload(client, key, fileName); } else if (Config::Command == "upload_resumable") { result = upload_resumable(client, key, fileName); } else if (Config::Command == "upload_async") { result = upload_async(client, key, fileName); } else if (Config::Command == "upload_multipart") { result = upload_multipart(client, key, fileName); } else if (Config::Command == "download") { result = download(client, key, fileName); } else if (Config::Command == "download_resumable") { result = download_resumable(client, key, fileName); } else if (Config::Command == "download_async") { result = download_async(client, key, fileName); } else { std::cout << "The Command Type Error " << Config::Command << std::endl; Config::PrintHelp(); break; } if (result.success) { int64_t trasnferDuration = (std::chrono::duration_cast(result.stopTimePoint - result.startTimePoint)).count(); taskTransferSize += result.transferSize; taskTransferDurationMs += trasnferDuration; taskSucessCnt += 1; taskMinTransferDurationMs = std::min(trasnferDuration, taskMinTransferDurationMs); taskMaxTransferDurationMs = std::max(trasnferDuration, taskMaxTransferDurationMs); } else { taskFailCnt += 1; } if (Config::DumpDetail || Config::PrintPercentile) { result.taskId = taskId; result.seqNum = runIndex; resultVec.push_back(result); } runIndex++; } if (taskSucessCnt > 0) { taskAvgTrasnferDurationMs = taskTransferDurationMs / taskSucessCnt; } double taskTransferRateMBPerS = ((double)taskTransferSize / 1024.0f / 1024.0f) / ((double)taskTransferDurationMs / 1000.0f); ss.str(""); ss << "\n---- STOP " << Config::Command << " : taskID=" << taskId << ", LocalFile=" << fileName << ", RemoteKey=" << key << ", StopTime=" << to_datetime_string(result.stopTimePoint) << " " << ", runTimes=" << runIndex << ", OK=" << taskSucessCnt << ", NG=" << taskFailCnt << std::setiosflags(std::ios::fixed) << std::setprecision(2) << ", AvgTransferRate="<< taskTransferRateMBPerS << " MB / S" << ", Latency(min,max,avg)=(" << taskMinTransferDurationMs << "," << taskMaxTransferDurationMs << "," << taskAvgTrasnferDurationMs << ") Ms"<< std::endl; log_msg(std::cout, ss.str()); { std::unique_lock lck(updateMtx); totalTransferSize += taskTransferSize; totalTransferDurationMS += taskTransferDurationMs; totalSucessCnt += taskSucessCnt; totalFailCnt += taskFailCnt; minTransferDurationMS = std::min(minTransferDurationMS, taskMinTransferDurationMs); maxTransferDurationMS = std::max(maxTransferDurationMS, taskMaxTransferDurationMs); } } void statistic_report_begin() { //calc upload file crc64 for if (Config::Command.compare(0, 6, "upload") == 0) { uploadFileCRC64 = get_file_crc64(Config::BaseLocalFile); } totalTransferDurationMS = 1; minTransferDurationMS = 0x7FFFFFFF; maxTransferDurationMS = -1; totalTransferSize = 0; totalStartTimePoint = std::chrono::system_clock::now(); totalSucessCnt = 0; totalFailCnt = 0; totalResults.resize(Config::Multithread); std::stringstream ss; ss << std::endl <<"The Begin : StartTime =" << to_datetime_string(totalStartTimePoint) << std::endl; log_msg(std::cout, ss.str()); } void statistic_report_end() { totalStopTimePoint = std::chrono::system_clock::now(); auto tp_diff = std::chrono::duration_cast(totalStopTimePoint - totalStartTimePoint); int64_t totalTimeMS = tp_diff.count(); std::stringstream ss; ss << std::endl << std::setiosflags(std::ios::fixed) << std::setprecision(2); ss << std::endl << "The End : StopTime =" << to_datetime_string(totalStopTimePoint) << ", TotalTime= " << tp_diff.count()/1000LL << " S" << ", Command=" << Config::Command << ", LocalFile=" << Config::BaseLocalFile << ", RemoteKey=" << Config::BaseRemoteKey << ", Parallel=" << Config::Parallel << ", Multithread=" << Config::Multithread << std::endl << ", LimitSpeed=" << Config::SpeedKBPerSec << " KB/S" << std::endl; double transferSizeMB = (double)totalTransferSize / 1024.0f / 1024.0f; double transferDurationS = (double)totalTimeMS / 1000.0f; double transferRateMBPerS = transferSizeMB / transferDurationS; int64_t avgTrasnferDurationMs = totalSucessCnt ? (totalTransferDurationMS / totalSucessCnt) : -1; ss << "#### StatisticReport: AvgTransferRate="<< transferRateMBPerS << " MB/S" << ", TotalSize=" << transferSizeMB << " MB" ", TotalDuration=" << transferDurationS << " Seconds." << ", OK=" << totalSucessCnt << ", NG=" << totalFailCnt << ", Latency(min,max,avg)=(" << minTransferDurationMS << "," << maxTransferDurationMS << "," << avgTrasnferDurationMs << ") Ms"; if (Config::PrintPercentile) { int64_t per90, per95; get_90th_95th_latency_percentile(per90, per95); ss << ", Latency Percentile(90th, 95th) Ms=(" << per90 << "," << per95 << ")"; } ss << std::endl; log_msg(std::cout, ss.str()); if (Config::DumpDetail) { log_result_detail_msg(std::cout); } } void LogCallbackFunc(LogLevel level, const std::string &stream) { if (level == LogLevel::LogOff) return; std::cout << stream; } int main(int argc, char **argv) { std::vector> taskVec; if (Config::ParseArg(argc, argv) != 0) { return 0; } if (Config::LoadCfgFile() != 0) { return 0; } AlibabaCloud::OSS::InitializeSdk(); if (Config::Debug) { AlibabaCloud::OSS::SetLogLevel(AlibabaCloud::OSS::LogLevel::LogAll); AlibabaCloud::OSS::SetLogCallback(LogCallbackFunc); } statistic_report_begin(); for (int i = 0; i < Config::Multithread; i++) { auto task = std::async(std::launch::async, runSingleTask, i); taskVec.emplace_back(std::move(task)); } for (int i = 0; i < Config::Multithread; i++) { taskVec[i].get(); } statistic_report_end(); AlibabaCloud::OSS::ShutdownSdk(); return 0; } ================================================ FILE: sample/CMakeLists.txt ================================================ # # Copyright 2009-2017 Alibaba Cloud All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # project(cpp-sdk-sample VERSION ${version}) file(GLOB sample_src "src/*") if (NOT OSS_DISABLE_BUCKET) file(GLOB sample_service_src "src/service/*") file(GLOB sample_bucket_src "src/bucket/*") endif() file(GLOB sample_object_src "src/object/*") file(GLOB sample_presignedurl_src "src/presignedurl/*") if (NOT OSS_DISABLE_LIVECHANNEL) file(GLOB sample_livechannel_src "src/LiveChannel/*") endif() if (NOT OSS_DISABLE_ENCRYPTION) file(GLOB sample_encryption_src "src/encryption/*") endif() add_executable(${PROJECT_NAME} ${sample_src} ${sample_service_src} ${sample_bucket_src} ${sample_object_src} ${sample_presignedurl_src} ${sample_livechannel_src} ${sample_encryption_src}) target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_SOURCE_DIR}/sdk/include) target_link_libraries(${PROJECT_NAME} cpp-sdk) target_link_libraries(${PROJECT_NAME} ${CRYPTO_LIBS}) target_link_libraries(${PROJECT_NAME} ${CLIENT_LIBS}) if (${TARGET_OS} STREQUAL "LINUX") target_link_libraries(${PROJECT_NAME} pthread) endif() target_compile_options(${PROJECT_NAME} PRIVATE "${SDK_COMPILER_FLAGS}") install(TARGETS ${PROJECT_NAME} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) ================================================ FILE: sample/src/Config.cc ================================================ #include #include "Config.h" std::string Config::AccessKeyId = ""; std::string Config::AccessKeySecret = ""; std::string Config::Endpoint = ""; std::string Config::DirToDownload = ""; std::string Config::FileToUpload = ""; std::string Config::FileDownloadTo = ""; std::string Config::BigFileToUpload = ""; std::string Config::ImageFileToUpload = ""; std::string Config::CallbackServer = ""; std::string Config::CheckpointDir = ""; std::string Config::PublicKeyPath = ""; std::string Config::PrivateKeyPath = ""; ================================================ FILE: sample/src/Config.h ================================================ #include class Config { public: static std::string AccessKeyId; static std::string AccessKeySecret; static std::string Endpoint; static std::string DirToDownload; static std::string FileToUpload; static std::string FileDownloadTo; static std::string BigFileToUpload; static std::string ImageFileToUpload; static std::string CallbackServer; static std::string CheckpointDir; static std::string PublicKeyPath; static std::string PrivateKeyPath; }; ================================================ FILE: sample/src/LiveChannel/LiveChannelSample.cc ================================================ #include #include #include "../Config.h" #include "LiveChannelSample.h" #ifdef _WIN32 #include #else #include #endif using namespace AlibabaCloud::OSS; static void waitTimeinSec(int time) { #ifdef _WIN32 Sleep(time * 1000); #else sleep(time); #endif } LiveChannelSample::LiveChannelSample(const std::string& bucket, const std::string& channelName):bucket_(bucket),channelName_(channelName), timeStart_(0),timeEnd_(0),isSuccess_(false) { ClientConfiguration conf; client = new OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); //CreateBucketRequest request(bucket_); //client->CreateBucket(request); } LiveChannelSample::~LiveChannelSample() { if(nullptr != client) { delete client; client = nullptr; } } int LiveChannelSample::PutLiveChannel() { PutLiveChannelRequest request(bucket_, channelName_, "HLS"); auto putOutcome = client->PutLiveChannel(request); if(putOutcome.isSuccess()) { isSuccess_ = true; rtmpUrl_ = putOutcome.result().PublishUrl(); std::cout << "rtmp publish url is "+rtmpUrl_ << std::endl; std::cout << "rtmp play url is " + putOutcome.result().PlayUrl() << std::endl; return 0; } return -1; } int LiveChannelSample::GetLiveChannelInfo() { isSuccess_ = false; GetLiveChannelInfoRequest request(bucket_, channelName_); auto getOutcome= client->GetLiveChannelInfo(request); if(getOutcome.isSuccess()) { isSuccess_ = true; const GetLiveChannelInfoResult& result = getOutcome.result(); std::cout << "LiveChannel Info :" << std::endl; std::cout << "Description: " << result.Description() << std::endl; std::cout << "Status: " << result.Status() << std::endl; std::cout << "ChannelType: " << result.Type() << std::endl; std::cout << "FragDuration: " << result.FragDuration() << std::endl; std::cout << "FragCount: " << result.FragCount() << std::endl; std::cout << "PlaylistName: " << result.PlaylistName() << std::endl; return 0; } return -1; } int LiveChannelSample::GetLiveChannelStat() { isSuccess_ = false; GetLiveChannelStatRequest request(bucket_, channelName_); auto getOutcome = client->GetLiveChannelStat(request); if(getOutcome.isSuccess()) { isSuccess_ = true; const GetLiveChannelStatResult& result = getOutcome.result(); // before push rtmp stream, the live channel is in Idle status std::cout << "LiveChannelStatus: " << result.Status() << std::endl; return 0; } return -1; } int LiveChannelSample::ListLiveChannel() { isSuccess_ = false; ListLiveChannelRequest request(bucket_); auto listOutcome = client->ListLiveChannel(request); if(listOutcome.isSuccess()) { isSuccess_ = true; const ListLiveChannelResult& result = listOutcome.result(); std::cout << "ListLiveChannelResult: " << std::endl; std::cout << "Prefix: " << result.Prefix() << std::endl; std::cout << "Marker: " << result.Marker() << std::endl; std::cout << "NextMarker: " << result.NextMarker() << std::endl; std::cout << "IsTruncated: " << result.IsTruncated() << std::endl; std::cout << "MaxKeys: " << result.MaxKeys() << std::endl; std::vector vec = result.LiveChannelList(); for(std::size_t i=0; iGenerateRTMPSignedUrl(request); if(!generateOutcome.isSuccess()) { std::cout << "GenerateRTMPSignedUrl fail" <MAX_LOOP_TIMES) break; auto getOutcome = client->GetLiveChannelHistory(GetLiveChannelHistoryRequest(bucket_, channelName_)); if(getOutcome.isSuccess()) { std::vector vec = getOutcome.result().LiveRecordList(); if(vec.size() > 0) { isSuccess_ = true; result = getOutcome.result(); std::cout << "LiveRecordList size " << vec.size() << std::endl; for(size_t j=0; j PostVodPlaylist(request); if(postOutcome.isSuccess()) { isSuccess_ = true; std::cout << "PostVodPlayList Success " << std::endl; } return 0; } int LiveChannelSample::GetVodPlayList() { isSuccess_ = false; uint64_t startTime = time(NULL) - 3600; uint64_t endTime = time(NULL) + 3600; GetVodPlaylistRequest request(bucket_, channelName_, startTime, endTime); auto getOutcome = client->GetVodPlaylist(request); if(getOutcome.isSuccess()) { isSuccess_ = true; std::cout << "GetVodPlayList Success " << std::endl; std::cout << "GetVodPlaylist result " << getOutcome.result().PlaylistContent() << std::endl; } return 0; } int LiveChannelSample::PutLiveChannelStatus() { isSuccess_ = false; PutLiveChannelStatusRequest request(bucket_, channelName_, LiveChannelStatus::DisabledStatus); auto putOutcome = client->PutLiveChannelStatus(request); if(putOutcome.isSuccess()) { isSuccess_ = true; std::cout << "PutLiveChannelStatus Success " << std::endl; } return 0; } int LiveChannelSample::DeleteLiveChannel() { isSuccess_ = false; DeleteLiveChannelRequest request(bucket_, channelName_); auto deleteOutcome = client->DeleteLiveChannel(request); if(deleteOutcome.isSuccess()) { isSuccess_ = true; std::cout << "DeleteLiveChannelSuccess " << std::endl; } return 0; } ================================================ FILE: sample/src/LiveChannel/LiveChannelSample.h ================================================ #include #include #define MAX_LOOP_TIMES 60 class LiveChannelSample { public: LiveChannelSample(const std::string& bucket, const std::string& channeName); ~LiveChannelSample(); int PutLiveChannel(); int GetLiveChannelInfo(); int GetLiveChannelStat(); int ListLiveChannel(); int GetLiveChannelHistory(); int PostVodPlayList(); int GetVodPlayList(); int PutLiveChannelStatus(); int DeleteLiveChannel(); private: AlibabaCloud::OSS::OssClient *client; std::string bucket_; std::string channelName_; std::string rtmpUrl_; std::string signedRTMPUrl_; time_t timeStart_; time_t timeEnd_; bool isSuccess_; }; ================================================ FILE: sample/src/Program.cc ================================================ #include #include #include "Config.h" #if !defined(OSS_DISABLE_BUCKET) #include "service/ServiceSample.h" #include "bucket/BucketSample.h" #endif #include "object/ObjectSample.h" #include "presignedurl/PresignedUrlSample.h" #if !defined(OSS_DISABLE_LIVECHANNEL) #include "LiveChannel/LiveChannelSample.h" #endif #if !defined(OSS_DISABLE_ENCRYPTION) #include "encryption/EncryptionSample.h" #endif using namespace AlibabaCloud::OSS; void LogCallbackFunc(LogLevel level, const std::string &stream) { if (level == LogLevel::LogOff) return; std::cout << stream; } int main(void) { std::cout << "oss-cpp-sdk samples" << std::endl; std::string bucketName = ""; InitializeSdk(); SetLogLevel(LogLevel::LogDebug); SetLogCallback(LogCallbackFunc); #if !defined(OSS_DISABLE_BUCKET) ServiceSample serviceSample; serviceSample.ListBuckets(); serviceSample.ListBucketsWithMarker(); serviceSample.ListBucketsWithPrefix(); BucketSample bucketSample(bucketName); bucketSample.InvalidBucketName(); bucketSample.CreateAndDeleteBucket(); bucketSample.SetBucketAcl(); bucketSample.SetBucketLogging(); bucketSample.SetBucketWebsite(); bucketSample.SetBucketReferer(); bucketSample.SetBucketLifecycle(); bucketSample.SetBucketCors(); bucketSample.GetBucketCors(); bucketSample.DeleteBucketLogging(); bucketSample.DeleteBucketWebsite(); bucketSample.DeleteBucketLifecycle(); bucketSample.DeleteBucketCors(); bucketSample.GetBucketAcl(); bucketSample.GetBucketLocation(); bucketSample.GetBucketLogging(); bucketSample.GetBucketWebsite(); bucketSample.GetBucketReferer(); bucketSample.GetBucketStat(); bucketSample.GetBucketLifecycle(); //bucketSample.DeleteBucketsByPrefix(); #endif ObjectSample objectSample(bucketName); objectSample.PutObjectFromBuffer(); objectSample.PutObjectFromFile(); objectSample.GetObjectToBuffer(); objectSample.GetObjectToFile(); objectSample.DeleteObject(); objectSample.DeleteObjects(); objectSample.HeadObject(); objectSample.GetObjectMeta(); objectSample.AppendObject(); objectSample.PutObjectProgress(); objectSample.GetObjectProgress(); objectSample.PutObjectCallable(); objectSample.GetObjectCallable(); objectSample.CopyObject(); //objectSample.RestoreArchiveObject("your-archive", "oss_archive_object.PNG", 1); objectSample.ListObjects(); objectSample.ListObjectWithMarker(); objectSample.ListObjectWithEncodeType(); #if !defined(OSS_DISABLE_RESUAMABLE) objectSample.UploadObjectProgress(); objectSample.MultiCopyObjectProcess(); objectSample.DownloadObjectProcess(); #endif PresignedUrlSample signedUrlSample(bucketName); signedUrlSample.GenGetPresignedUrl(); signedUrlSample.PutObjectByUrlFromBuffer(); signedUrlSample.PutObjectByUrlFromFile(); signedUrlSample.GetObjectByUrlToBuffer(); signedUrlSample.GetObjectByUrlToFile(); #if !defined(OSS_DISABLE_LIVECHANNEL) // LiveChannel LiveChannelSample liveChannelSample(bucketName, "test_channel"); liveChannelSample.PutLiveChannel(); liveChannelSample.GetLiveChannelInfo(); liveChannelSample.GetLiveChannelStat(); liveChannelSample.ListLiveChannel(); liveChannelSample.GetLiveChannelHistory(); liveChannelSample.PostVodPlayList(); liveChannelSample.GetVodPlayList(); liveChannelSample.PutLiveChannelStatus(); liveChannelSample.DeleteLiveChannel(); #endif #if !defined(OSS_DISABLE_ENCRYPTION) // Encryption EncryptionSample encryptionSample(bucketName); encryptionSample.PutObjectFromBuffer(); encryptionSample.PutObjectFromFile(); encryptionSample.GetObjectToBuffer(); encryptionSample.GetObjectToFile(); #if !defined(DISABLE_RESUAMABLE) encryptionSample.UploadObjectProgress(); encryptionSample.DownloadObjectProcess(); encryptionSample.MultipartUploadObject(); #endif #endif ShutdownSdk(); return 0; } ================================================ FILE: sample/src/bucket/BucketSample.cc ================================================ #include #include "../Config.h" #include "BucketSample.h" #ifdef _WIN32 #include #else #include #endif using namespace AlibabaCloud::OSS; static void waitTimeinSec(int time) { #ifdef _WIN32 Sleep(time * 1000); #else sleep(time); #endif } BucketSample::BucketSample(const std::string &bucket): bucket_(bucket) { ClientConfiguration conf; client = new OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); CreateBucketRequest request(bucket_); client->CreateBucket(request); } BucketSample::~BucketSample() { delete client; } void BucketSample::PrintError(const std::string &funcName, const OssError &error) { std::cout << funcName << " fail" << ",code:" << error.Code() << ",message:" << error.Message() << ",request_id:" << error.RequestId() << std::endl; } void BucketSample::InvalidBucketName() { SetBucketAclRequest request("invalid-BucketName", CannedAccessControlList::Private); auto outcome = client->SetBucketAcl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " to private success " << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } SetBucketLoggingRequest log_request("invalid-BucketName", bucket_, "LogPrefix"); auto log_outcome = client->SetBucketLogging(log_request); if (log_outcome.isSuccess()) { std::cout << __FUNCTION__ << " success " << std::endl; } else { PrintError(__FUNCTION__, log_outcome.error()); } } void BucketSample::CreateAndDeleteBucket() { std::string bucket = bucket_ + "-createbucketsample"; CreateBucketRequest request(bucket, StorageClass::IA, CannedAccessControlList::PublicReadWrite); auto outcome = client->CreateBucket(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " create bucket success " << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } DeleteBucketRequest drequest(bucket); auto doutcome = client->DeleteBucket(drequest); if (doutcome.isSuccess()) { std::cout << __FUNCTION__ << " delete bucket success " << std::endl; } else { PrintError(__FUNCTION__, doutcome.error()); } } void BucketSample::SetBucketAcl() { SetBucketAclRequest request(bucket_, CannedAccessControlList::Private); auto outcome = client->SetBucketAcl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " to private success " << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } request.setAcl(CannedAccessControlList::PublicReadWrite); auto outcome1 = client->SetBucketAcl(request); if (outcome1.isSuccess()) { std::cout << __FUNCTION__ << " to public-read-write success " << std::endl; } else { PrintError(__FUNCTION__, outcome1.error()); } } void BucketSample::SetBucketLogging() { SetBucketLoggingRequest request(bucket_, bucket_, "LogPrefix"); auto outcome = client->SetBucketLogging(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId().c_str() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::SetBucketWebsite() { SetBucketWebsiteRequest request(bucket_); request.setIndexDocument("index.html"); request.setIndexDocument("error.html"); auto outcome = client->SetBucketWebsite(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::SetBucketReferer() { SetBucketRefererRequest request(bucket_); request.addReferer("http://www.referersample.com"); request.addReferer("https://www.referersample.com"); request.addReferer("https://www.?.referersample.com"); request.addReferer("https://www.*.cn"); auto outcome = client->SetBucketReferer(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::SetBucketLifecycle() { SetBucketLifecycleRequest request(bucket_); std::string date("2022 - 10 - 12T00:00 : 00.000Z"); auto rule1 = LifecycleRule(); rule1.setID("rule1"); rule1.setPrefix("test/"); rule1.setStatus(RuleStatus::Enabled); rule1.setExpiration(3); auto rule2 = LifecycleRule(); rule2.setID("rule2"); rule2.setPrefix("test/"); rule2.setStatus(RuleStatus::Disabled); rule2.setExpiration(date); auto rule3 = LifecycleRule(); rule3.setID("rule3"); rule3.setPrefix("test1/"); rule3.setStatus(RuleStatus::Enabled); rule3.setAbortMultipartUpload(3); auto rule4 = LifecycleRule(); rule4.setID("rule4"); rule4.setPrefix("test1/"); rule4.setStatus(RuleStatus::Enabled); rule4.setAbortMultipartUpload(date); LifecycleRuleList list{rule1, rule2, rule3, rule4}; request.setLifecycleRules(list); auto outcome = client->SetBucketLifecycle(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::SetBucketCors() { SetBucketCorsRequest request(bucket_); auto rule1 = CORSRule(); // Note: AllowedOrigin & AllowdMethod must not be empty. rule1.addAllowedOrigin("http://www.a.com"); rule1.addAllowedMethod("POST"); rule1.addAllowedHeader("*"); rule1.addExposeHeader("x-oss-test"); request.addCORSRule(rule1); auto rule2 = CORSRule(); rule2.addAllowedOrigin("http://www.b.com"); rule2.addAllowedMethod("GET"); rule2.addExposeHeader("x-oss-test2"); rule2.setMaxAgeSeconds(100); request.addCORSRule(rule2); auto outcome = client->SetBucketCors(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::DeleteBucketLogging() { DeleteBucketLoggingRequest request(bucket_); auto outcome = client->DeleteBucketLogging(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::DeleteBucketWebsite() { DeleteBucketWebsiteRequest request(bucket_); auto outcome = client->DeleteBucketWebsite(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::DeleteBucketLifecycle() { DeleteBucketLifecycleRequest request(bucket_); auto outcome = client->DeleteBucketLifecycle(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::DeleteBucketCors() { auto outcome = client->DeleteBucketCors(bucket_); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, request_id:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketAcl() { GetBucketAclRequest request(bucket_); auto outcome = client->GetBucketAcl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ori acl: " << outcome.result().Acl() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } SetBucketAclRequest request1(bucket_, CannedAccessControlList::PublicRead); client->SetBucketAcl(request1); waitTimeinSec(1); outcome = client->GetBucketAcl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set public-read, acl:" << outcome.result().Acl() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketLocation() { GetBucketLocationRequest request(bucket_); auto outcome = client->GetBucketLocation(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, location: " << outcome.result().Location() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } outcome = client->GetBucketLocation(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, location: " << outcome.result().Location() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketLogging() { GetBucketLoggingRequest request(bucket_); auto outcome = client->GetBucketLogging(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, default TargetBucket: " << outcome.result().TargetBucket() << ",TargetPrefix: " << outcome.result().TargetPrefix() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } SetBucketLoggingRequest request1(bucket_, bucket_, "LogPrefix-00"); client->SetBucketLogging(request1); waitTimeinSec(1); outcome = client->GetBucketLogging(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set itself with LogPrefix-00 , TargetBucket: " << outcome.result().TargetBucket() << " ,TargetPrefix: " << outcome.result().TargetPrefix() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } std::string bucket_01 = bucket_ + "01"; CreateBucketRequest request0(bucket_01); client->CreateBucket(request0); SetBucketLoggingRequest request2(bucket_, bucket_01, "LogPrefix-01"); client->SetBucketLogging(request2); waitTimeinSec(1); outcome = client->GetBucketLogging(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set other with LogPrefix-01 TargetBucket: " << outcome.result().TargetBucket() << " ,TargetPrefix: " << outcome.result().TargetPrefix() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketWebsite() { GetBucketWebsiteRequest request(bucket_); auto outcome = client->GetBucketWebsite(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, default, IndexDocument: " << outcome.result().IndexDocument() << " ,ErrorDocument: " << outcome.result().ErrorDocument() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } SetBucketWebsiteRequest request0(bucket_); request0.setIndexDocument("index.html"); client->SetBucketWebsite(request0); waitTimeinSec(15); outcome = client->GetBucketWebsite(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set index.html, IndexDocument: " << outcome.result().IndexDocument() << " ,ErrorDocument: " << outcome.result().ErrorDocument() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } request0.setIndexDocument("index1.html"); request0.setErrorDocument("error1.html"); client->SetBucketWebsite(request0); waitTimeinSec(15); outcome = client->GetBucketWebsite(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set index1.html, error1.html,IndexDocument: " << outcome.result().IndexDocument() << " ,ErrorDocument: " << outcome.result().ErrorDocument() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketReferer() { GetBucketRefererRequest request(bucket_); auto outcome = client->GetBucketReferer(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, deffault AllowEmptyReferer: " << outcome.result().AllowEmptyReferer() << " ,Referer size: " << outcome.result().RefererList().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } SetBucketRefererRequest request0(bucket_); request0.addReferer("http://www.referersample.com"); request0.addReferer("https://www.referersample.com"); request0.addReferer("https://www.?.referersample.com"); request0.addReferer("https://www.*.cn"); client->SetBucketReferer(request0); waitTimeinSec(15); outcome = client->GetBucketReferer(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set 4 refer, AllowEmptyReferer: " << outcome.result().AllowEmptyReferer() << " ,Referer size: " << outcome.result().RefererList().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } request0.clearRefererList(); request0.addReferer("https://www.?.referersample.com"); request0.addReferer("https://www.*.cn"); client->SetBucketReferer(request0); waitTimeinSec(15); outcome = client->GetBucketReferer(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, after set 2 refer, AllowEmptyReferer: " << outcome.result().AllowEmptyReferer() << " ,Referer size: " << outcome.result().RefererList().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketLifecycle() { auto outcome = client->GetBucketLifecycle(bucket_); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, rule size:%d, rules:" << std::endl; for (auto const& rule : outcome.result().LifecycleRules()) { std::cout << "rule:" << rule.ID() << "," << rule.Prefix() << "," << rule.Status() << "," "hasExpiration:" << rule.hasExpiration() << "," << "hasTransitionList:" << rule.hasTransitionList() << "," << "hasAbortMultipartUpload:" << rule.hasAbortMultipartUpload() << std::endl; } } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketStat() { GetBucketStatRequest request(bucket_); auto outcome = client->GetBucketStat(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, storage: " << outcome.result().Storage() << " ,ObjectCount: " << outcome.result().ObjectCount() << " ,MultipartUploadCount:" << outcome.result().MultipartUploadCount() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::GetBucketCors() { auto outcome = client->GetBucketCors(bucket_); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success" << std::endl; for (auto const& rule : outcome.result().CORSRules()) { std::cout << "Get Bucket Cors List:" << std::endl; for (auto const& origin : rule.AllowedOrigins()) { std::cout << "Allowed origin:" << origin << std::endl; } } } else { PrintError(__FUNCTION__, outcome.error()); } } void BucketSample::CleanAndDeleteBucket(const std::string &bucket) { if (!client->DoesBucketExist(bucket)) return; //versioning auto infoOutcome = client->GetBucketInfo(bucket); if (infoOutcome.isSuccess() && infoOutcome.result().VersioningStatus() != VersioningStatus::NotSet) { //list objects by ListObjectVersions and delete object with versionId ListObjectVersionsRequest request(bucket); bool IsTruncated = false; do { auto outcome = client->ListObjectVersions(request); if (outcome.isSuccess()) { for (auto const &marker : outcome.result().DeleteMarkerSummarys()) { client->DeleteObject(DeleteObjectRequest(bucket, marker.Key(), marker.VersionId())); } for (auto const &obj : outcome.result().ObjectVersionSummarys()) { client->DeleteObject(DeleteObjectRequest(bucket, obj.Key(), obj.VersionId())); } } else { break; } request.setKeyMarker(outcome.result().NextKeyMarker()); request.setVersionIdMarker(outcome.result().NextVersionIdMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); } //abort in progress multipart uploading auto listOutcome = client->ListMultipartUploads(ListMultipartUploadsRequest(bucket)); if (listOutcome.isSuccess()) { for (auto const &upload : listOutcome.result().MultipartUploadList()) { client->AbortMultipartUpload(AbortMultipartUploadRequest(bucket, upload.Key, upload.UploadId)); } } //List And Delete Object ListObjectsRequest request(bucket); bool IsTruncated = false; do { auto outcome = client->ListObjects(request); if (outcome.isSuccess()) { for (auto const &obj : outcome.result().ObjectSummarys()) { auto dOutcome = client->DeleteObject(DeleteObjectRequest(bucket, obj.Key())); std::cout << __FUNCTION__ << "Delete Object:" << obj.Key() << ", result:" << dOutcome.isSuccess() << std::endl; } } else { PrintError(__FUNCTION__, outcome.error()); break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); // Delete the bucket. client->DeleteBucket(DeleteBucketRequest(bucket)); std::cout << __FUNCTION__ << " done" << std::endl; } void BucketSample::DeleteBucketsByPrefix() { std::string prefix = "cpp-sdk-"; ListBucketsRequest request; request.setPrefix(prefix); auto outcome = client->ListBuckets(request); if (!outcome.isSuccess()) { PrintError(__FUNCTION__, outcome.error()); return; } for (auto const &bucket : outcome.result().Buckets()) { CleanAndDeleteBucket(bucket.Name()); } std::cout << __FUNCTION__ << " done, and total is " << outcome.result().Buckets().size() << std::endl; } void BucketSample::DoesBucketExist() { auto outcome = client->DoesBucketExist(bucket_); std::cout << __FUNCTION__ << " success, Bucket exist ? " << outcome << std::endl; } ================================================ FILE: sample/src/bucket/BucketSample.h ================================================ #include class BucketSample { public: BucketSample(const std::string &bucket); ~BucketSample(); void DoesBucketExist(); void InvalidBucketName(); void CreateAndDeleteBucket(); void SetBucketAcl(); void SetBucketLogging(); void SetBucketWebsite(); void SetBucketReferer(); void SetBucketLifecycle(); void SetBucketCors(); void DeleteBucketLogging(); void DeleteBucketWebsite(); void DeleteBucketLifecycle(); void DeleteBucketCors(); void GetBucketAcl(); void GetBucketLocation(); void GetBucketLogging(); void GetBucketWebsite(); void GetBucketReferer(); void GetBucketLifecycle(); void GetBucketStat(); void GetBucketCors(); void CleanAndDeleteBucket(const std::string &bucket); void DeleteBucketsByPrefix(); private: void PrintError(const std::string &funcName, const AlibabaCloud::OSS::OssError &error); AlibabaCloud::OSS::OssClient *client; std::string bucket_; }; ================================================ FILE: sample/src/encryption/EncryptionSample.cc ================================================ #include #include "../Config.h" #include "EncryptionSample.h" #include #include #include #include #include using namespace AlibabaCloud::OSS; static int64_t getFileSize(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } static std::string readFromFile(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); std::stringstream ss; ss << f.rdbuf(); return ss.str(); } EncryptionSample::EncryptionSample(const std::string &bucket) : bucket_(bucket) { std::string publicKey = readFromFile(Config::PublicKeyPath); std::string privateKey = readFromFile(Config::PrivateKeyPath); ClientConfiguration conf; CryptoConfiguration cryptoConf; auto materials = std::make_shared(publicKey, privateKey); client = new OssEncryptionClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf, materials, cryptoConf); //CreateBucketRequest request(bucket_); } EncryptionSample::~EncryptionSample() { delete client; } void EncryptionSample::PrintError(const std::string &funcName, const OssError &error) { std::cout << funcName << " fail" << ",code:" << error.Code() << ",message:" << error.Message() << ",request_id:" << error.RequestId() << std::endl; } void EncryptionSample::PutObjectFromBuffer() { std::shared_ptr content = std::make_shared(); *content << __FUNCTION__; PutObjectRequest request(bucket_, "PutObjectFromBuffer", content); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void EncryptionSample::PutObjectFromFile() { std::shared_ptr content = std::make_shared(Config::FileToUpload, std::ios::in | std::ios::binary); PutObjectRequest request(bucket_, "PutObjectFromFile", content); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void EncryptionSample::GetObjectToBuffer() { GetObjectRequest request(bucket_, "PutObjectFromBuffer"); auto outcome = client->GetObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Content-Length:" << outcome.result().Metadata().ContentLength() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void EncryptionSample::GetObjectToFile() { GetObjectRequest request(bucket_, "PutObjectFromFile"); request.setResponseStreamFactory([=]() {return std::make_shared("GetObjectToFile", std::ios_base::out | std::ios_base::in | std::ios_base::trunc| std::ios_base::binary); }); auto outcome = client->GetObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success" << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { std::cout << "ProgressCallback[" << userData << "] => " << increment <<" ," << transfered << "," << total << std::endl; } #if !defined(DISABLE_RESUAMABLE) void EncryptionSample::UploadObjectProgress() { //case 1: checkpoint dir is not enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 2: checkpoint dir is enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload, Config::CheckpointDir); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 3: checkpoint dir, multi threads is enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload, Config::CheckpointDir, DefaultPartSize, 4); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } void EncryptionSample::DownloadObjectProcess() { //case 1: no checkpoint dir is coinfig { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 2: checkpoint dir is config { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo, Config::CheckpointDir); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 3: checkpoint dir is config, multi threads is config { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo, Config::CheckpointDir, DefaultPartSize, 4); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } #endif void EncryptionSample::MultipartUploadObject() { std::string fileToUpload = Config::BigFileToUpload; std::string key = "MultipartUploadObject"; auto fileSize = getFileSize(fileToUpload); //must be 16 bytes alignment int64_t partSize = 100 * 1024; MultipartUploadCryptoContext cryptoCtx; cryptoCtx.setPartSize(partSize); cryptoCtx.setDataSize(fileSize); InitiateMultipartUploadRequest initUploadRequest(bucket_, key); auto uploadIdResult = client->InitiateMultipartUpload(initUploadRequest, cryptoCtx); auto uploadId = uploadIdResult.result().UploadId(); PartList partETagList; int partCount = static_cast(fileSize / partSize); // Calculate how many parts to be divided if (fileSize % partSize != 0) { partCount++; } // Upload multiparts to bucket for (int i = 1; i <= partCount; i++) { auto skipBytes = partSize * (i - 1); auto size = (partSize < fileSize - skipBytes) ? partSize : (fileSize - skipBytes); std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in|std::ios::binary); content->seekg(skipBytes, std::ios::beg); UploadPartRequest uploadPartRequest(bucket_, key, content); uploadPartRequest.setContentLength(size); uploadPartRequest.setUploadId(uploadId); uploadPartRequest.setPartNumber(i); auto uploadPartOutcome = client->UploadPart(uploadPartRequest, cryptoCtx); if (uploadPartOutcome.isSuccess()) { Part part(i, uploadPartOutcome.result().ETag()); partETagList.push_back(part); } else { PrintError(__FUNCTION__, uploadPartOutcome.error()); } } // Complete to upload multiparts CompleteMultipartUploadRequest request(bucket_, key); request.setUploadId(uploadId); request.setPartList(partETagList); auto outcome = client->CompleteMultipartUpload(request, cryptoCtx); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, UploadID : " << uploadId << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } ================================================ FILE: sample/src/encryption/EncryptionSample.h ================================================ #include class EncryptionSample { public: EncryptionSample(const std::string &bucket); ~EncryptionSample(); void PutObjectFromBuffer(); void PutObjectFromFile(); void GetObjectToBuffer(); void GetObjectToFile(); void MultipartUploadObject(); #if !defined(OSS_DISABLE_RESUAMABLE) void UploadObjectProgress(); void DownloadObjectProcess(); #endif private: void PrintError(const std::string &funcName, const AlibabaCloud::OSS::OssError &error); AlibabaCloud::OSS::OssEncryptionClient *client; std::string bucket_; }; ================================================ FILE: sample/src/object/ObjectSample.cc ================================================ #include #include "../Config.h" #include "ObjectSample.h" #include #include #include #include #include static void waitTimeinSec(int time) { std::this_thread::sleep_for(std::chrono::seconds(time)); } static int64_t getFileSize(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } using namespace AlibabaCloud::OSS; ObjectSample::ObjectSample(const std::string &bucket) : bucket_(bucket) { ClientConfiguration conf; client = new OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); //CreateBucketRequest request(bucket_); //client->CreateBucket(request); } ObjectSample::~ObjectSample() { delete client; } void ObjectSample::PrintError(const std::string &funcName, const OssError &error) { std::cout << funcName << " fail" << ",code:" << error.Code() << ",message:" << error.Message() << ",request_id:" << error.RequestId() << std::endl; } void ObjectSample::DoesObjectExist() { auto outcome = client->DoesObjectExist(bucket_, "DoesObjectExist"); std::cout << __FUNCTION__ << " success, Object exist ? " << outcome << std::endl; } void ObjectSample::PutFolder() { const std::string key("yourfolder/"); std::shared_ptr content = std::make_shared(); auto outcome = client->PutObject(bucket_, key, content); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, dir : " << key << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::PutObjectFromBuffer() { std::shared_ptr content = std::make_shared(); *content << __FUNCTION__; PutObjectRequest request(bucket_, "PutObjectFromBuffer", content); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::PutObjectFromFile() { std::shared_ptr content = std::make_shared(__FILE__, std::ios::in | std::ios::binary); PutObjectRequest request(bucket_, "PutObjectFromFile", content); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::GetObjectToBuffer() { GetObjectRequest request(bucket_, "PutObjectFromBuffer"); auto outcome = client->GetObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Content-Length:" << outcome.result().Metadata().ContentLength() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::GetObjectToFile() { GetObjectRequest request(bucket_, "PutObjectFromFile"); request.setResponseStreamFactory([=]() {return std::make_shared("GetObjectToFile.txt", std::ios_base::out | std::ios_base::in | std::ios_base::trunc| std::ios_base::binary); }); auto outcome = client->GetObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success" << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::DeleteObject() { std::shared_ptr content = std::make_shared(); PutObjectRequest request(bucket_, "DeleteObject", content); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Put Object ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } GetObjectRequest getRequest(bucket_, "DeleteObject"); auto getOutcome = client->GetObject(getRequest); if (getOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Get Object ETag:" << getOutcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, getOutcome.error()); } DeleteObjectRequest delRequest(bucket_, "DeleteObject"); auto delOutcome = client->DeleteObject(delRequest); if (delOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Del Object" << std::endl; } else { PrintError(__FUNCTION__, delOutcome.error()); } getOutcome = client->GetObject(getRequest); if (getOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ReGet Object ETag:" << getOutcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, getOutcome.error()); } } void ObjectSample::DeleteObjects() { std::shared_ptr content = std::make_shared(); *content << __FUNCTION__; PutObjectRequest request(bucket_, "", content); for (int i = 0; i < 10; i++) { std::string key("DeleteObjects-"); key.append(std::to_string(i)).append(".txt"); request.setKey(key); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Gen Object:" << key << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } DeleteObjectsRequest delRequest(bucket_); for (int i = 0; i < 5; i++) { std::string key("DeleteObjects-"); key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } auto outcome = client->DeleteObjects(delRequest); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, no quiet mode, Deleted Object count:" << outcome.result().keyList().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } delRequest.clearKeyList(); delRequest.setQuiet(true); for (int i = 5; i < 10; i++) { std::string key("DeleteObjects-"); key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } outcome = client->DeleteObjects(delRequest); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, quiet mode" << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::HeadObject() { // uploads the file std::shared_ptr content = std::make_shared(); *content << "Thank you for using Aliyun Object Storage Service!"; client->PutObject(bucket_, "HeadObject", content); auto outcome = client->HeadObject(bucket_, "HeadObject"); if (outcome.isSuccess()) { auto headMeta = outcome.result(); std::cout << __FUNCTION__ << " success, ContentType:" << headMeta.ContentType() << "; ContentLength:" << headMeta.ContentLength() << "; CacheControl:" << headMeta.CacheControl() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } // delete the object client->DeleteObject(bucket_, "HeadObject"); } void ObjectSample::GetObjectMeta() { auto meta = ObjectMetaData(); // sets the content type. meta.setContentType("text/plain"); // sets the cache control meta.setCacheControl("max-age=3"); // sets the custom metadata. meta.UserMetaData()["meta"] = "meta-value"; // uploads the file std::shared_ptr content = std::make_shared(); *content << "Thank you for using Aliyun Object Storage Service!"; client->PutObject(bucket_, "GetObjectMeta", content); // get the object meta information auto outcome = client->GetObjectMeta(bucket_, "GetObjectMeta"); if (outcome.isSuccess()) { auto metadata = outcome.result(); std::cout << __FUNCTION__ << " success, ETag:" << metadata.ETag() << "; LastModified:" << metadata.LastModified() << "; Size:" << metadata.ContentLength() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } // delete the object client->DeleteObject(bucket_, "GetObjectMeta"); } void ObjectSample::AppendObject() { auto meta = ObjectMetaData(); meta.setContentType("text/plain"); std::string key("AppendObject"); // Append an object from buffer, keep in mind that position should be set to zero at first time. std::shared_ptr content1 = std::make_shared(); *content1 << __FUNCTION__; AppendObjectRequest request(bucket_, key, content1, meta); request.setPosition(0L); auto result = client->AppendObject(request); // Continue to append the object from file descriptor at last position std::shared_ptr content2 = std::make_shared(); *content2 << __FUNCTION__; auto position = result.result().Length(); AppendObjectRequest appendObjectRequest(bucket_, key, content2); appendObjectRequest.setPosition(position); auto outcome = client->AppendObject(appendObjectRequest); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, CRC64:" << outcome.result().CRC64() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } // View object content auto object = client->GetObject(bucket_, key); if (object.isSuccess()) { char ch[100]; *(object.result().Content()) >> ch; std::string str = ch; std::cout << "AppendObject Content:" << str << std::endl; } // Delete the appendable object client->DeleteObject(bucket_, key); } static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { std::cout << "ProgressCallback[" << userData << "] => " << increment <<" ," << transfered << "," << total << std::endl; } void ObjectSample::PutObjectProgress() { std::shared_ptr content = std::make_shared(__FILE__, std::ios::in|std::ios::binary); PutObjectRequest request(bucket_, "PutObjectProgress", content); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ <<"[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } #if !defined(OSS_DISABLE_RESUAMABLE) void ObjectSample::UploadObjectProgress() { //case 1: checkpoint dir is not enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 2: checkpoint dir is enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload, Config::CheckpointDir); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 3: checkpoint dir, multi threads is enabled { UploadObjectRequest request(bucket_, "UploadObjectProgress", Config::FileToUpload, Config::CheckpointDir, DefaultPartSize, 4); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableUploadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } void ObjectSample::MultiCopyObjectProcess() { //case 1: checkpoint dir is not enabled { MultiCopyObjectRequest request(bucket_, "MultiCopyObjectProcess", bucket_, "MultiCopyObjectProcess_Src"); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableCopyObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 2: checkpoint dir is config { MultiCopyObjectRequest request(bucket_, "MultiCopyObjectProcess", bucket_, "MultiCopyObjectProcess_Src", Config::CheckpointDir); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableCopyObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 3: checkpoint dir is config, multi threads is config { MultiCopyObjectRequest request(bucket_, "MultiCopyObjectProcess", bucket_, "MultiCopyObjectProcess_Src", Config::CheckpointDir, DefaultPartSize, 4); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableCopyObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } void ObjectSample::DownloadObjectProcess() { //case 1: no checkpoint dir is coinfig { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 2: checkpoint dir is config { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo, Config::CheckpointDir); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } //case 3: checkpoint dir is config, multi threads is config { DownloadObjectRequest request(bucket_, "DownloadObjectProgress", Config::FileDownloadTo, Config::CheckpointDir, DefaultPartSize, 4); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcome = client->ResumableDownloadObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } #endif void ObjectSample::GetObjectProgress() { GetObjectRequest request(bucket_, "PutObjectProgress"); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); request.setRange(0, 99); auto outcome = client->GetObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().RequestId() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::PutObjectCallable() { std::vector outcomes; for (int i = 0; i < 5; i++) { std::string key = "PutObjectCallable_"; key.append(std::to_string(i)); //std::shared_ptr content = std::make_shared(__FILE__, std::ios::in | std::ios::binary); std::shared_ptr content = std::make_shared(); *content << __FUNCTION__ << __FILE__ << std::endl; PutObjectRequest request(bucket_, key, content); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); auto outcomeCallable = client->PutObjectCallable(request); outcomes.emplace_back(std::move(outcomeCallable)); } std::cout << __FUNCTION__ << "[" << this << "]" << " start put object" << std::endl; waitTimeinSec(10); for (size_t i = 0; i < outcomes.size(); i++) { auto outcome = outcomes[i].get(); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, ETag:" << outcome.result().ETag().c_str() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } void ObjectSample::GetObjectCallable() { std::vector outcomes; std::shared_ptr content = std::make_shared(); *content << __FUNCTION__ << __FILE__ << __FILE__ << __FILE__ << __FILE__ << __FILE__ << std::endl; client->PutObject(PutObjectRequest(bucket_, "GetObjectCallable", content)); GetObjectRequest request(bucket_, "GetObjectCallable"); TransferProgress progressCallback = { ProgressCallback , this }; request.setTransferProgress(progressCallback); //request.setRange(0, 29); for (int i = 0; i < 5; i++) { auto outcomeCallable = client->GetObjectCallable(request); outcomes.emplace_back(std::move(outcomeCallable)); } std::cout << __FUNCTION__ << "[" << this << "]" << " start get object" << std::endl; waitTimeinSec(5); for (size_t i = 0; i < outcomes.size(); i++) { auto outcome = outcomes[i].get(); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << "[" << this << "]" << " success, RequestId:" << outcome.result().RequestId().c_str() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } } void ObjectSample::MultipartUploadObject() { std::string key = "MultipartUploadObject"; InitiateMultipartUploadRequest initUploadRequest(bucket_, key); auto uploadIdResult = client->InitiateMultipartUpload(initUploadRequest); auto uploadId = uploadIdResult.result().UploadId(); std::string fileToUpload = Config::BigFileToUpload; int64_t partSize = 100 * 1024; PartList partETagList; auto fileSize = getFileSize(fileToUpload); int partCount = static_cast(fileSize / partSize); // Calculate how many parts to be divided if (fileSize % partSize != 0) { partCount++; } // Upload multiparts to bucket for (int i = 1; i <= partCount; i++) { auto skipBytes = partSize * (i - 1); auto size = (partSize < fileSize - skipBytes) ? partSize : (fileSize - skipBytes); std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in|std::ios::binary); content->seekg(skipBytes, std::ios::beg); UploadPartRequest uploadPartRequest(bucket_, key, content); uploadPartRequest.setContentLength(size); uploadPartRequest.setUploadId(uploadId); uploadPartRequest.setPartNumber(i); auto uploadPartOutcome = client->UploadPart(uploadPartRequest); if (uploadPartOutcome.isSuccess()) { Part part(i, uploadPartOutcome.result().ETag()); partETagList.push_back(part); } else { PrintError(__FUNCTION__, uploadPartOutcome.error()); } } // Complete to upload multiparts CompleteMultipartUploadRequest request(bucket_, key); request.setUploadId(uploadId); request.setPartList(partETagList); auto outcome = client->CompleteMultipartUpload(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, UploadID : " << uploadId << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::ResumableObject() { } void ObjectSample::RestoreArchiveObject(const std::string bucket, const std::string key, int maxWaitTimeInSeconds = 600) { auto result = client->RestoreObject(bucket, key); if (!result.isSuccess()) { // not the archive object PrintError(__FUNCTION__, result.error()); return ; } std::string onGoingRestore("ongoing-request=\"false\""); while (maxWaitTimeInSeconds > 0) { auto meta = client->HeadObject(bucket, key); std::string restoreStatus = meta.result().HttpMetaData()["x-oss-restore"]; std::transform(restoreStatus.begin(), restoreStatus.end(), restoreStatus.begin(), ::tolower); if (!restoreStatus.empty() && restoreStatus.compare(0, onGoingRestore.size(), onGoingRestore)==0) { std::cout << __FUNCTION__ << " success, restore status:" << restoreStatus << std::endl; // success to restore archive object break; } std::cout << __FUNCTION__ << " info, WaitTime:" << maxWaitTimeInSeconds << "; restore status:" << restoreStatus << std::endl; waitTimeinSec(10); maxWaitTimeInSeconds--; } if (maxWaitTimeInSeconds == 0) { std::cout << __FUNCTION__ << " fail, TimeoutException" << std::endl; } } void ObjectSample::CopyObject() { // put a object as source object key std::shared_ptr content = std::make_shared(); *content << __FUNCTION__; PutObjectRequest putObjectRequest(bucket_, "CopyObjectSourceKey", content); client->PutObject(putObjectRequest); CopyObjectRequest request(bucket_, "CopyObjectTargetKey"); request.setCopySource(bucket_, "CopyObjectSourceKey"); auto outcome = client->CopyObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::PutObjectCallback() { std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody, "", ObjectCallbackBuilder::Type::URL); std::string value = builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("x:var1", "value1"); varBuilder.addCallbackVariable("x:var2", "value2"); std::string varValue = varBuilder.build(); std::shared_ptr content = std::make_shared(); *content << __FUNCTION__; PutObjectRequest request(bucket_, "PutObjectCallback", content); request.MetaData().addHeader("x-oss-callback", value); request.MetaData().addHeader("x-oss-callback-var", varValue); auto outcome = client->PutObject(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, ETag:" << outcome.result().ETag(); if (outcome.result().Content() != nullptr) { std::istreambuf_iterator isb(*outcome.result().Content().get()), end; std::cout << ", callback data:" << std::string(isb, end); } std::cout << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::ListObjects() { ListObjectsRequest request(bucket_); auto outcome = client->ListObjects(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success " << "and object count is " << outcome.result().ObjectSummarys().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ObjectSample::ListObjectWithMarker() { ListObjectsRequest request(bucket_); request.setMaxKeys(1); bool IsTruncated = false; size_t total = 0; do { auto outcome = client->ListObjects(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, " << "and object count is " << outcome.result().ObjectSummarys().size() << "next marker is " << outcome.result().NextMarker() << std::endl; total += outcome.result().ObjectSummarys().size(); } else { PrintError(__FUNCTION__, outcome.error()); break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); std::cout << __FUNCTION__ << " done, and total is " << total << std::endl; } void ObjectSample::ListObjectWithEncodeType() { ListObjectsRequest request(bucket_); request.setEncodingType("url"); bool IsTruncated = false; size_t total = 0; request.setMaxKeys(1); ListObjectOutcome outcome; do { outcome = client->ListObjects(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, " << "and object count is " << outcome.result().ObjectSummarys().size() << "next marker is " << outcome.result().NextMarker() << std::endl; total += outcome.result().ObjectSummarys().size(); } else { PrintError(__FUNCTION__, outcome.error()); break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); std::cout << __FUNCTION__ << " done, and total is " << total << std::endl; } ================================================ FILE: sample/src/object/ObjectSample.h ================================================ #include class ObjectSample { public: ObjectSample(const std::string &bucket); ~ObjectSample(); void DoesObjectExist(); void PutFolder(); void PutObjectFromBuffer(); void PutObjectFromFile(); void GetObjectToBuffer(); void GetObjectToFile(); void DeleteObject(); void DeleteObjects(); void HeadObject(); void GetObjectMeta(); void AppendObject(); void MultipartUploadObject(); void ResumableObject(); void PutObjectProgress(); void GetObjectProgress(); void PutObjectCallable(); void GetObjectCallable(); #if !defined(OSS_DISABLE_RESUAMABLE) void UploadObjectProgress(); void MultiCopyObjectProcess(); void DownloadObjectProcess(); #endif void CopyObject(); void RestoreArchiveObject(const std::string bucket, const std::string key, int maxWaitTimeInSeconds); void PutObjectCallback(); void ListObjects(); void ListObjectWithMarker(); void ListObjectWithEncodeType(); private: void PrintError(const std::string &funcName, const AlibabaCloud::OSS::OssError &error); AlibabaCloud::OSS::OssClient *client; std::string bucket_; }; ================================================ FILE: sample/src/presignedurl/PresignedUrlSample.cc ================================================ #include #include "../Config.h" #include "PresignedUrlSample.h" #include #include #include #include using namespace AlibabaCloud::OSS; PresignedUrlSample::PresignedUrlSample(const std::string &bucket) : bucket_(bucket) { ClientConfiguration conf; client = new OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); //CreateBucketRequest request(bucket_); //client->CreateBucket(request); key_ = "PresignedUrlSample"; auto content = std::make_shared("PresignedUrlSample For Test"); client->PutObject(PutObjectRequest(bucket_, key_, content)); } PresignedUrlSample::~PresignedUrlSample() { delete client; } void PresignedUrlSample::PrintError(const std::string &funcName, const OssError &error) { std::cout << funcName << " fail" << ",code:" << error.Code() << ",message:" << error.Message() << ",request_id:" << error.RequestId() << std::endl; } void PresignedUrlSample::GenPutPresignedUrl() { std::string key = "GenPutPresignedUrl"; GeneratePresignedUrlRequest request(bucket_, key, Http::Put); std::time_t t = std::time(nullptr) + 1200; request.setExpires(t); auto outcome = client->GeneratePresignedUrl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, url:" << outcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void PresignedUrlSample::GenGetPresignedUrl() { GeneratePresignedUrlRequest request(bucket_, key_, Http::Get); std::time_t t = std::time(nullptr) + 1200; request.setExpires(t); auto outcome = client->GeneratePresignedUrl(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, url:" << outcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void PresignedUrlSample::PutObjectByUrlFromBuffer() { std::time_t t = std::time(nullptr) + 1200; auto genOutcome = client->GeneratePresignedUrl(bucket_, "PutObjectByUrlFromBuffer", t, Http::Put); if (genOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Gen url:" << genOutcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, genOutcome.error()); } auto content = std::make_shared(); *content << __FILE__ << __FUNCTION__ << std::endl; auto outome = client->PutObjectByUrl(genOutcome.result(), content); if (outome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << outome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } } void PresignedUrlSample::PutObjectByUrlFromFile() { std::time_t t = std::time(nullptr) + 1200; auto genOutcome = client->GeneratePresignedUrl(bucket_, "PutObjectByUrlFromFile", t, Http::Put); if (genOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Gen url:" << genOutcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, genOutcome.error()); } auto outome = client->PutObjectByUrl(genOutcome.result(), __FILE__); if (outome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << outome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } } void PresignedUrlSample::GetObjectByUrlToBuffer() { std::time_t t = std::time(nullptr) + 1200; auto genOutcome = client->GeneratePresignedUrl(bucket_, "GetObjectByUrlToBuffer", t, Http::Put); if (genOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Gen url:" << genOutcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, genOutcome.error()); } auto content = std::make_shared(); *content << __FILE__ << __FUNCTION__ << std::endl; auto outome = client->PutObjectByUrl(genOutcome.result(), content); if (outome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << outome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } genOutcome = client->GeneratePresignedUrl(bucket_, "GetObjectByUrlToBuffer", t, Http::Get); auto getOutome = client->GetObjectByUrl(genOutcome.result()); if (getOutome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << getOutome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } } void PresignedUrlSample::GetObjectByUrlToFile() { std::time_t t = std::time(nullptr) + 1200; auto genOutcome = client->GeneratePresignedUrl(bucket_, "GetObjectByUrlToFile", t, Http::Put); if (genOutcome.isSuccess()) { std::cout << __FUNCTION__ << " success, Gen url:" << genOutcome.result().c_str() << std::endl; } else { PrintError(__FUNCTION__, genOutcome.error()); } auto outome = client->PutObjectByUrl(genOutcome.result(), __FILE__); if (outome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << outome.result().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } genOutcome = client->GeneratePresignedUrl(bucket_, "GetObjectByUrlToFile", t, Http::Get); auto getOutome = client->GetObjectByUrl(genOutcome.result(), "GetObjectByUrlToFile_Donwload"); if (getOutome.isSuccess()) { std::cout << __FUNCTION__ << " success, eTag:" << getOutome.result().Metadata().ETag() << std::endl; } else { PrintError(__FUNCTION__, outome.error()); } } ================================================ FILE: sample/src/presignedurl/PresignedUrlSample.h ================================================ #include class PresignedUrlSample { public: PresignedUrlSample(const std::string &bucket); ~PresignedUrlSample(); void GenPutPresignedUrl(); void GenGetPresignedUrl(); void PutObjectByUrlFromBuffer(); void PutObjectByUrlFromFile(); void GetObjectByUrlToBuffer(); void GetObjectByUrlToFile(); private: void PrintError(const std::string &funcName, const AlibabaCloud::OSS::OssError &error); AlibabaCloud::OSS::OssClient *client; std::string bucket_; std::string key_; }; ================================================ FILE: sample/src/service/ServiceSample.cc ================================================ #include #include "../Config.h" #include "ServiceSample.h" using namespace AlibabaCloud::OSS; ServiceSample::ServiceSample() { ClientConfiguration conf; client = new OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); } ServiceSample::~ServiceSample() { delete client; } void ServiceSample::PrintError(const std::string &funcName, const OssError &error) { std::cout << funcName << " fail" << ",code:" << error.Code() << ",message:" << error.Message() << ",request_id:" << error.RequestId() << std::endl; } void ServiceSample::ListBuckets() { ListBucketsRequest request; auto outcome = client->ListBuckets(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ <<" success, and bucket count is" << outcome.result().Buckets().size() << std::endl; } else { PrintError(__FUNCTION__, outcome.error()); } } void ServiceSample::ListBucketsWithMarker() { ListBucketsRequest request; request.setMaxKeys(100); bool IsTruncated = false; size_t total = 0; do { auto outcome = client->ListBuckets(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, " << "and bucket count is " << outcome.result().Buckets().size() << "next marker is " << outcome.result().NextMarker() << std::endl; total += outcome.result().Buckets().size(); } else { PrintError(__FUNCTION__, outcome.error()); break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); std::cout << __FUNCTION__ <<" done, and total is " << total << std::endl; } void ServiceSample::ListBucketsWithPrefix() { ListBucketsRequest request; request.setMaxKeys(1); request.setPrefix("cpp-sdk"); bool IsTruncated = false; size_t total = 0; do { auto outcome = client->ListBuckets(request); if (outcome.isSuccess()) { std::cout << __FUNCTION__ << " success, " << "and bucket count is " << outcome.result().Buckets().size() << "next marker is " << outcome.result().NextMarker() << std::endl; total += outcome.result().Buckets().size(); } else { PrintError(__FUNCTION__, outcome.error()); break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); std::cout << __FUNCTION__ << " done, and total is " << total << std::endl; } ================================================ FILE: sample/src/service/ServiceSample.h ================================================ #include class ServiceSample { public: ServiceSample(); ~ServiceSample(); void ListBuckets(); void ListBucketsWithMarker(); void ListBucketsWithPrefix(); private: void PrintError(const std::string &funcName, const AlibabaCloud::OSS::OssError &error); AlibabaCloud::OSS::OssClient *client; }; ================================================ FILE: sdk/CMakeLists.txt ================================================ # # Copyright 2009-2017 Alibaba Cloud All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # project(cpp-sdk VERSION ${version}) configure_file(src/Config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/include/alibabacloud/oss/Config.h @ONLY) #common header file(GLOB sdk_auth_header "include/alibabacloud/oss/auth/*.h") file(GLOB sdk_client_header "include/alibabacloud/oss/client/*.h") file(GLOB sdk_http_header "include/alibabacloud/oss/http/*.h") file(GLOB sdk_utils_header "include/alibabacloud/oss/utils/*.h") file(GLOB sdk_model_header "include/alibabacloud/oss/model/*.h") file(GLOB sdk_encryption_header "include/alibabacloud/oss/encryption/*.h") file(GLOB sdk_public_header "include/alibabacloud/oss/*.h") #all header file(GLOB sdk_header ${sdk_auth_header} ${sdk_client_header} ${sdk_http_header} ${sdk_utils_header} ${sdk_model_header} ${sdk_encryption_header} ${sdk_public_header} ) #common source file(GLOB sdk_auth_src "src/auth/*.cc") file(GLOB sdk_client_src "src/client/*.cc") file(GLOB sdk_http_src "src/http/*.cc") file(GLOB sdk_utils_src "src/utils/*.cc") file(GLOB sdk_signer_src "src/signer/*.cc") file(GLOB sdk_public_src "src/*.cc") #add source by DISABLE_XX option file(GLOB sdk_model_common_src "src/model/ModelError.cc" ) if (NOT OSS_DISABLE_BUCKET) file(GLOB sdk_model_bucket_src "src/model/*Bucket*.cc" "src/model/GetUserQos*.cc" "src/model/LifecycleRule.cc" "src/model/InventoryConfiguration.cc" "src/model/Tagging.cc" ) endif() file(GLOB sdk_model_object_src "src/model/*Object*.cc" "src/model/*Symlink*.cc" "src/model/InputFormat.cc" "src/model/OutputFormat.cc" "src/model/Tagging.cc" "src/model/GeneratePresignedUrlRequest.cc" ) file(GLOB sdk_model_multipart_src "src/model/*MultipartUpload*.cc" "src/model/UploadPart*.cc" "src/model/ListPart*.cc" ) if (NOT OSS_DISABLE_LIVECHANNEL) file(GLOB sdk_model_livechannel_src "src/model/*LiveChannel*.cc" "src/model/GetVod*.cc" "src/model/PostVod*.cc" "src/model/GenerateRTMPSignedUrlRequest.cc" ) endif() file(GLOB sdk_model_src ${sdk_model_common_src} ${sdk_model_bucket_src} ${sdk_model_object_src} ${sdk_model_multipart_src} ${sdk_model_livechannel_src} ) if (NOT OSS_DISABLE_RESUAMABLE) file(GLOB sdk_resumable_src "src/resumable/*.cc") endif() if (NOT OSS_DISABLE_ENCRYPTION) file(GLOB sdk_encryption_src "src/encryption/*.cc") endif() #external source file(GLOB sdk_external_tinnyxml2_src "src/external/tinyxml2/*.cpp") if (NOT OSS_DISABLE_ENCRYPTION OR NOT OSS_DISABLE_RESUAMABLE) file(GLOB sdk_external_json_src "src/external/json/*.cpp") endif() #all source file(GLOB sdk_src ${sdk_auth_src} ${sdk_client_src} ${sdk_http_src} ${sdk_utils_src} ${sdk_signer_src} ${sdk_model_src} ${sdk_public_src} ${sdk_resumable_src} ${sdk_encryption_src} ${sdk_external_json_src} ${sdk_external_tinnyxml2_src} ) #extra define pass to source code if (BUILD_TESTS) set(EXTRA_DEFINE "-DENABLE_OSS_TEST") else() set(EXTRA_DEFINE "") endif() #static lib add_library(${PROJECT_NAME}${STATIC_LIB_SUFFIX} STATIC ${sdk_header} ${sdk_src}) set_target_properties(${PROJECT_NAME}${STATIC_LIB_SUFFIX} PROPERTIES LINKER_LANGUAGE CXX ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib OUTPUT_NAME ${TARGET_OUTPUT_NAME_PREFIX}${PROJECT_NAME}${STATIC_LIB_SUFFIX} ) target_include_directories(${PROJECT_NAME}${STATIC_LIB_SUFFIX} PRIVATE include PRIVATE include/alibabacloud/oss PRIVATE src/external/) target_include_directories(${PROJECT_NAME}${STATIC_LIB_SUFFIX} PRIVATE ${CRYPTO_INCLUDE_DIRS} PRIVATE ${CLIENT_INCLUDE_DIRS}) target_compile_options(${PROJECT_NAME}${STATIC_LIB_SUFFIX} PRIVATE "${SDK_COMPILER_FLAGS}" "${EXTRA_DEFINE}") #shared lib if (BUILD_SHARED_LIBS) add_library(${PROJECT_NAME} SHARED ${sdk_header} ${sdk_src}) set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib OUTPUT_NAME ${TARGET_OUTPUT_NAME_PREFIX}${PROJECT_NAME} ) target_include_directories(${PROJECT_NAME} PRIVATE include PRIVATE include/alibabacloud/oss PRIVATE src/external/) target_include_directories(${PROJECT_NAME} PRIVATE ${CRYPTO_INCLUDE_DIRS} PRIVATE ${CLIENT_INCLUDE_DIRS}) target_compile_options(${PROJECT_NAME} PRIVATE "${SDK_COMPILER_FLAGS}" -DALIBABACLOUD_SHARED -DALIBABACLOUD_OSS_LIBRARY) if(NOT CMAKE_CXX_COMPILER_ID MATCHES "MSVC") target_compile_options(${PROJECT_NAME} PRIVATE "-fvisibility=hidden") endif() target_link_libraries(${PROJECT_NAME} ${CRYPTO_LIBS}) target_link_libraries(${PROJECT_NAME} ${CLIENT_LIBS}) endif() #install install(FILES ${sdk_auth_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/auth) install(FILES ${sdk_client_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/client) install(FILES ${sdk_http_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/http) install(FILES ${sdk_utils_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/utils) install(FILES ${sdk_model_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/model) install(FILES ${sdk_encryption_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss/encryption) install(FILES ${sdk_public_header} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/oss) install(TARGETS ${PROJECT_NAME}${STATIC_LIB_SUFFIX} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) if (BUILD_SHARED_LIBS) install(TARGETS ${PROJECT_NAME} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) endif() ================================================ FILE: sdk/include/alibabacloud/oss/Config.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once // version = (major << 16) + (minor << 8) + patch #define ALIBABACLOUD_OSS_VERSION ((1 << 16) + (10 << 8) + 1) #define ALIBABACLOUD_OSS_VERSION_STR "1.10.1" // auto generated by cmake option /* #undef OSS_DISABLE_BUCKET */ /* #undef OSS_DISABLE_LIVECHANNEL */ /* #undef OSS_DISABLE_RESUAMABLE */ /* #undef OSS_DISABLE_ENCRYPTION */ ================================================ FILE: sdk/include/alibabacloud/oss/Const.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { const int64_t MaxFileSize = 5LL * 1024LL * 1024LL * 1024LL; const int32_t MaxPrefixStringSize = 1024; const int32_t MaxMarkerStringSize = 1024; const int32_t MaxDelimiterStringSize = 1024; const int32_t MaxReturnedKeys = 1000; const int32_t MaxUploads = 1000; const int32_t DeleteObjectsUpperLimit = 1000; const int32_t BucketCorsRuleLimit = 10; const int32_t LifecycleRuleLimit = 1000; const int32_t ObjectNameLengthLimit = 1023; const int32_t PartNumberUpperLimit = 10000; const int32_t DefaultPartSize = 8 * 1024 * 1024; const int32_t PartSizeLowerLimit = 100 * 1024; const int32_t MaxPathLength = 124; const int32_t MinPathLength = 4; const int32_t DefaultResumableThreadNum = 3; const uint32_t MaxLiveChannelNameLength = 1023; const uint32_t MaxLiveChannelDescriptionLength = 128; const uint32_t MinLiveChannelFragCount = 1; const uint32_t MaxLiveChannelFragCount = 100; const uint32_t MinLiveChannelFragDuration = 1; const uint32_t MaxLiveChannelFragDuration = 100; const uint32_t MinLiveChannelPlayListLength = 6; const uint32_t MaxLiveChannelPlayListLength = 128; const uint32_t MinLiveChannelInterval = 1; const uint32_t MaxLiveChannelInterval = 100; const uint64_t SecondsOfDay = 24*60*60; const uint32_t MaxListLiveChannelKeys = 1000; const uint32_t TagKeyLengthLimit = 128; const uint32_t TagValueLengthLimit = 256; const uint32_t MaxTagSize = 10; #ifdef _WIN32 const char PATH_DELIMITER = '\\'; const wchar_t WPATH_DELIMITER = L'\\'; #else const char PATH_DELIMITER = '/'; const wchar_t WPATH_DELIMITER = L'/'; #endif } } ================================================ FILE: sdk/include/alibabacloud/oss/Export.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "Global.h" #if defined(ALIBABACLOUD_SHARED) # if defined(ALIBABACLOUD_OSS_LIBRARY) # define ALIBABACLOUD_OSS_EXPORT ALIBABACLOUD_DECL_EXPORT # else # define ALIBABACLOUD_OSS_EXPORT ALIBABACLOUD_DECL_IMPORT # endif #else # define ALIBABACLOUD_OSS_EXPORT #endif ================================================ FILE: sdk/include/alibabacloud/oss/Global.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "Config.h" #if defined(_WIN32) # ifdef _MSC_VER # pragma warning(disable : 4251) # endif // _MSC_VER # define ALIBABACLOUD_DECL_EXPORT __declspec(dllexport) # define ALIBABACLOUD_DECL_IMPORT __declspec(dllimport) #elif __GNUC__ >= 4 # define ALIBABACLOUD_DECL_EXPORT __attribute__((visibility("default"))) # define ALIBABACLOUD_DECL_IMPORT __attribute__((visibility("default"))) #endif #if !defined(ALIBABACLOUD_DECL_EXPORT) # define ALIBABACLOUD_DECL_EXPORT #endif #if !defined(ALIBABACLOUD_DECL_IMPORT) # define ALIBABACLOUD_DECL_IMPORT #endif ================================================ FILE: sdk/include/alibabacloud/oss/OssClient.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { /*Global Init/Deinit*/ void ALIBABACLOUD_OSS_EXPORT InitializeSdk(); bool ALIBABACLOUD_OSS_EXPORT IsSdkInitialized(); void ALIBABACLOUD_OSS_EXPORT ShutdownSdk(); /*Log*/ void ALIBABACLOUD_OSS_EXPORT SetLogLevel(LogLevel level); void ALIBABACLOUD_OSS_EXPORT SetLogCallback(LogCallback callback); /*Utils*/ std::string ALIBABACLOUD_OSS_EXPORT ComputeContentMD5(const char *data, size_t size); std::string ALIBABACLOUD_OSS_EXPORT ComputeContentMD5(std::istream& stream); std::string ALIBABACLOUD_OSS_EXPORT ComputeContentETag(const char* data, size_t size); std::string ALIBABACLOUD_OSS_EXPORT ComputeContentETag(std::istream& stream); std::string ALIBABACLOUD_OSS_EXPORT UrlEncode(const std::string& src); std::string ALIBABACLOUD_OSS_EXPORT UrlDecode(const std::string& src); std::string ALIBABACLOUD_OSS_EXPORT Base64Encode(const std::string& src); std::string ALIBABACLOUD_OSS_EXPORT Base64Encode(const char* src, int len); std::string ALIBABACLOUD_OSS_EXPORT Base64EncodeUrlSafe(const std::string& src); std::string ALIBABACLOUD_OSS_EXPORT Base64EncodeUrlSafe(const char* src, int len); std::string ALIBABACLOUD_OSS_EXPORT ToGmtTime(std::time_t& t); std::string ALIBABACLOUD_OSS_EXPORT ToUtcTime(std::time_t& t); std::time_t ALIBABACLOUD_OSS_EXPORT UtcToUnixTime(const std::string& t); uint64_t ALIBABACLOUD_OSS_EXPORT ComputeCRC64(uint64_t crc, void* buf, size_t len); uint64_t ALIBABACLOUD_OSS_EXPORT CombineCRC64(uint64_t crc1, uint64_t crc2, uintmax_t len2); /*Aysnc APIs*/ class OssClient; using ListObjectAsyncHandler = std::function&)>; using GetObjectAsyncHandler = std::function&)>; using PutObjectAsyncHandler = std::function&)>; using UploadPartAsyncHandler = std::function&)>; using UploadPartCopyAsyncHandler = std::function&)>; /*Callable*/ using ListObjectOutcomeCallable = std::future; using GetObjectOutcomeCallable = std::future; using PutObjectOutcomeCallable = std::future; using UploadPartCopyOutcomeCallable = std::future; class OssClientImpl; class ALIBABACLOUD_OSS_EXPORT OssClient { public: OssClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const ClientConfiguration& configuration); OssClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const std::string& securityToken, const ClientConfiguration& configuration); OssClient(const std::string& endpoint, const Credentials& credentials, const ClientConfiguration& configuration); OssClient(const std::string& endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration& configuration); virtual ~OssClient(); #if !defined(OSS_DISABLE_BUCKET) /*Service*/ ListBucketsOutcome ListBuckets() const; ListBucketsOutcome ListBuckets(const ListBucketsRequest& request) const; /*Bucket*/ CreateBucketOutcome CreateBucket(const std::string& bucket, StorageClass storageClass = StorageClass::Standard) const; CreateBucketOutcome CreateBucket(const std::string& bucket, StorageClass storageClass, CannedAccessControlList acl) const; CreateBucketOutcome CreateBucket(const CreateBucketRequest& request) const; ListBucketInventoryConfigurationsOutcome ListBucketInventoryConfigurations(const ListBucketInventoryConfigurationsRequest& request) const; VoidOutcome SetBucketAcl(const std::string& bucket, CannedAccessControlList acl) const; VoidOutcome SetBucketAcl(const SetBucketAclRequest& request) const; VoidOutcome SetBucketLogging(const std::string& bucket, const std::string& targetBucket, const std::string& targetPrefix) const; VoidOutcome SetBucketLogging(const SetBucketLoggingRequest& request) const; VoidOutcome SetBucketWebsite(const std::string& bucket, const std::string& indexDocument) const; VoidOutcome SetBucketWebsite(const std::string& bucket, const std::string& indexDocument, const std::string& errorDocument) const; VoidOutcome SetBucketWebsite(const SetBucketWebsiteRequest& request) const; VoidOutcome SetBucketReferer(const std::string& bucket, const RefererList& refererList, bool allowEmptyReferer) const; VoidOutcome SetBucketReferer(const SetBucketRefererRequest& request) const; VoidOutcome SetBucketLifecycle(const SetBucketLifecycleRequest& request) const; VoidOutcome SetBucketCors(const std::string& bucket, const CORSRuleList& rules) const; VoidOutcome SetBucketCors(const SetBucketCorsRequest& request) const; VoidOutcome SetBucketStorageCapacity(const std::string& bucket, int64_t storageCapacity) const; VoidOutcome SetBucketStorageCapacity(const SetBucketStorageCapacityRequest& request) const; VoidOutcome SetBucketPolicy(const SetBucketPolicyRequest& request) const; VoidOutcome SetBucketRequestPayment(const SetBucketRequestPaymentRequest& request) const; VoidOutcome SetBucketEncryption(const SetBucketEncryptionRequest& request) const; VoidOutcome SetBucketTagging(const SetBucketTaggingRequest& request) const; VoidOutcome SetBucketQosInfo(const SetBucketQosInfoRequest& request) const; VoidOutcome SetBucketVersioning(const SetBucketVersioningRequest& request) const; VoidOutcome SetBucketInventoryConfiguration(const SetBucketInventoryConfigurationRequest& request) const; VoidOutcome DeleteBucket(const std::string& bucket) const; VoidOutcome DeleteBucket(const DeleteBucketRequest& request) const; VoidOutcome DeleteBucketLogging(const std::string& bucket) const; VoidOutcome DeleteBucketLogging(const DeleteBucketLoggingRequest& request) const; VoidOutcome DeleteBucketPolicy(const DeleteBucketPolicyRequest& request) const; VoidOutcome DeleteBucketWebsite(const std::string& bucket) const; VoidOutcome DeleteBucketWebsite(const DeleteBucketWebsiteRequest& request) const; VoidOutcome DeleteBucketLifecycle(const std::string& bucket) const; VoidOutcome DeleteBucketLifecycle(const DeleteBucketLifecycleRequest& request) const; VoidOutcome DeleteBucketCors(const std::string& bucket) const; VoidOutcome DeleteBucketCors(const DeleteBucketCorsRequest& request) const; VoidOutcome DeleteBucketEncryption(const DeleteBucketEncryptionRequest& request) const; VoidOutcome DeleteBucketTagging(const DeleteBucketTaggingRequest& request) const; VoidOutcome DeleteBucketQosInfo(const DeleteBucketQosInfoRequest& request) const; VoidOutcome DeleteBucketInventoryConfiguration(const DeleteBucketInventoryConfigurationRequest& request) const; GetBucketAclOutcome GetBucketAcl(const std::string& bucket) const; GetBucketAclOutcome GetBucketAcl(const GetBucketAclRequest& request) const; GetBucketLocationOutcome GetBucketLocation(const std::string& bucket) const; GetBucketLocationOutcome GetBucketLocation(const GetBucketLocationRequest& request) const; GetBucketInfoOutcome GetBucketInfo(const std::string& bucket) const; GetBucketInfoOutcome GetBucketInfo(const GetBucketInfoRequest& request) const; GetBucketLoggingOutcome GetBucketLogging(const std::string& bucket) const; GetBucketLoggingOutcome GetBucketLogging(const GetBucketLoggingRequest& request) const; GetBucketWebsiteOutcome GetBucketWebsite(const std::string& bucket) const; GetBucketWebsiteOutcome GetBucketWebsite(const GetBucketWebsiteRequest& request) const; GetBucketRefererOutcome GetBucketReferer(const std::string& bucket) const; GetBucketRefererOutcome GetBucketReferer(const GetBucketRefererRequest& request) const; GetBucketLifecycleOutcome GetBucketLifecycle(const std::string& bucket) const; GetBucketLifecycleOutcome GetBucketLifecycle(const GetBucketLifecycleRequest& request) const; GetBucketStatOutcome GetBucketStat(const std::string& bucket) const; GetBucketStatOutcome GetBucketStat(const GetBucketStatRequest& request) const; GetBucketCorsOutcome GetBucketCors(const std::string& bucket) const; GetBucketCorsOutcome GetBucketCors(const GetBucketCorsRequest& request) const; GetBucketStorageCapacityOutcome GetBucketStorageCapacity(const std::string& bucket) const; GetBucketStorageCapacityOutcome GetBucketStorageCapacity(const GetBucketStorageCapacityRequest& request) const; GetBucketPolicyOutcome GetBucketPolicy(const GetBucketPolicyRequest& request) const; GetBucketPaymentOutcome GetBucketRequestPayment(const GetBucketRequestPaymentRequest& request) const; GetBucketEncryptionOutcome GetBucketEncryption(const GetBucketEncryptionRequest& request) const; GetBucketTaggingOutcome GetBucketTagging(const GetBucketTaggingRequest& request) const; GetBucketQosInfoOutcome GetBucketQosInfo(const GetBucketQosInfoRequest& request) const; GetUserQosInfoOutcome GetUserQosInfo(const GetUserQosInfoRequest& request) const; GetBucketVersioningOutcome GetBucketVersioning(const GetBucketVersioningRequest& request) const; GetBucketInventoryConfigurationOutcome GetBucketInventoryConfiguration(const GetBucketInventoryConfigurationRequest& request) const; InitiateBucketWormOutcome InitiateBucketWorm(const InitiateBucketWormRequest& request) const; VoidOutcome AbortBucketWorm(const AbortBucketWormRequest& request) const; VoidOutcome CompleteBucketWorm(const CompleteBucketWormRequest& request) const; VoidOutcome ExtendBucketWormWorm(const ExtendBucketWormRequest& request) const; GetBucketWormOutcome GetBucketWorm(const GetBucketWormRequest& request) const; #endif /*Object*/ ListObjectOutcome ListObjects(const std::string& bucket) const; ListObjectOutcome ListObjects(const std::string& bucket, const std::string& prefix) const; ListObjectOutcome ListObjects(const ListObjectsRequest& request) const; ListObjectsV2Outcome ListObjectsV2(const ListObjectsV2Request& request) const; ListObjectVersionsOutcome ListObjectVersions(const std::string& bucket) const; ListObjectVersionsOutcome ListObjectVersions(const std::string& bucket, const std::string& prefix) const; ListObjectVersionsOutcome ListObjectVersions(const ListObjectVersionsRequest& request) const; GetObjectOutcome GetObject(const std::string& bucket, const std::string& key) const; GetObjectOutcome GetObject(const std::string& bucket, const std::string& key, const std::shared_ptr& content) const; GetObjectOutcome GetObject(const std::string& bucket, const std::string& key, const std::string& fileToSave) const; GetObjectOutcome GetObject(const GetObjectRequest& request) const; PutObjectOutcome PutObject(const std::string& bucket, const std::string& key, const std::shared_ptr& content) const; PutObjectOutcome PutObject(const std::string& bucket, const std::string& key, const std::string& fileToUpload) const; PutObjectOutcome PutObject(const std::string& bucket, const std::string& key, const std::shared_ptr& content, const ObjectMetaData& meta) const; PutObjectOutcome PutObject(const std::string& bucket, const std::string& key, const std::string& fileToUpload, const ObjectMetaData& meta) const; PutObjectOutcome PutObject(const PutObjectRequest& request) const; DeleteObjectOutcome DeleteObject(const std::string& bucket, const std::string& key) const; DeleteObjectOutcome DeleteObject(const DeleteObjectRequest& request) const; DeleteObjecstOutcome DeleteObjects(const std::string bucket, const DeletedKeyList &keyList) const; DeleteObjecstOutcome DeleteObjects(const DeleteObjectsRequest& request) const; DeleteObjecVersionstOutcome DeleteObjectVersions(const std::string bucket, const ObjectIdentifierList &objectList) const; DeleteObjecVersionstOutcome DeleteObjectVersions(const DeleteObjectVersionsRequest& request) const; ObjectMetaDataOutcome HeadObject(const std::string& bucket, const std::string& key) const; ObjectMetaDataOutcome HeadObject(const HeadObjectRequest& request) const; ObjectMetaDataOutcome GetObjectMeta(const std::string& bucket, const std::string& key) const; ObjectMetaDataOutcome GetObjectMeta(const GetObjectMetaRequest& request) const; AppendObjectOutcome AppendObject(const AppendObjectRequest& request) const; CopyObjectOutcome CopyObject(const CopyObjectRequest& request) const; RestoreObjectOutcome RestoreObject(const std::string& bucket, const std::string& key) const; RestoreObjectOutcome RestoreObject(const RestoreObjectRequest& request) const; SetObjectAclOutcome SetObjectAcl(const SetObjectAclRequest& request) const; GetObjectAclOutcome GetObjectAcl(const GetObjectAclRequest& request) const; CreateSymlinkOutcome CreateSymlink(const CreateSymlinkRequest& request) const; GetSymlinkOutcome GetSymlink(const GetSymlinkRequest& request) const; GetObjectOutcome ProcessObject(const ProcessObjectRequest& request) const; GetObjectOutcome SelectObject(const SelectObjectRequest& request) const; CreateSelectObjectMetaOutcome CreateSelectObjectMeta(const CreateSelectObjectMetaRequest& request) const; SetObjectTaggingOutcome SetObjectTagging(const SetObjectTaggingRequest& request) const; DeleteObjectTaggingOutcome DeleteObjectTagging(const DeleteObjectTaggingRequest& request) const; GetObjectTaggingOutcome GetObjectTagging(const GetObjectTaggingRequest& request) const; /*MultipartUpload*/ InitiateMultipartUploadOutcome InitiateMultipartUpload(const InitiateMultipartUploadRequest& request) const; PutObjectOutcome UploadPart(const UploadPartRequest& request) const; UploadPartCopyOutcome UploadPartCopy(const UploadPartCopyRequest& request) const; CompleteMultipartUploadOutcome CompleteMultipartUpload(const CompleteMultipartUploadRequest& request) const; VoidOutcome AbortMultipartUpload(const AbortMultipartUploadRequest& request) const; ListMultipartUploadsOutcome ListMultipartUploads(const ListMultipartUploadsRequest& request) const; ListPartsOutcome ListParts(const ListPartsRequest& request) const; /*Generate URL*/ StringOutcome GeneratePresignedUrl(const GeneratePresignedUrlRequest& request) const; StringOutcome GeneratePresignedUrl(const std::string& bucket, const std::string& key) const; StringOutcome GeneratePresignedUrl(const std::string& bucket, const std::string& key, int64_t expires) const; StringOutcome GeneratePresignedUrl(const std::string& bucket, const std::string& key, int64_t expires, Http::Method method) const; GetObjectOutcome GetObjectByUrl(const GetObjectByUrlRequest& request) const; GetObjectOutcome GetObjectByUrl(const std::string& url) const; GetObjectOutcome GetObjectByUrl(const std::string& url, const std::string& file) const; PutObjectOutcome PutObjectByUrl(const PutObjectByUrlRequest& request) const; PutObjectOutcome PutObjectByUrl(const std::string& url, const std::string& file) const; PutObjectOutcome PutObjectByUrl(const std::string& url, const std::string& file, const ObjectMetaData& metaData) const; PutObjectOutcome PutObjectByUrl(const std::string& url, const std::shared_ptr& content) const; PutObjectOutcome PutObjectByUrl(const std::string& url, const std::shared_ptr& content, const ObjectMetaData& metaData) const; /*Generate Post Policy*/ /*Resumable Operation*/ #if !defined(OSS_DISABLE_RESUAMABLE) PutObjectOutcome ResumableUploadObject(const UploadObjectRequest& request) const; CopyObjectOutcome ResumableCopyObject(const MultiCopyObjectRequest& request) const; GetObjectOutcome ResumableDownloadObject(const DownloadObjectRequest& request) const; #endif #if !defined(OSS_DISABLE_LIVECHANNEL) /*Live Channel*/ VoidOutcome PutLiveChannelStatus(const PutLiveChannelStatusRequest& request) const; PutLiveChannelOutcome PutLiveChannel(const PutLiveChannelRequest& request) const; VoidOutcome PostVodPlaylist(const PostVodPlaylistRequest& request) const; GetVodPlaylistOutcome GetVodPlaylist(const GetVodPlaylistRequest& request) const; GetLiveChannelStatOutcome GetLiveChannelStat(const GetLiveChannelStatRequest& request) const; GetLiveChannelInfoOutcome GetLiveChannelInfo(const GetLiveChannelInfoRequest& request) const; GetLiveChannelHistoryOutcome GetLiveChannelHistory(const GetLiveChannelHistoryRequest& request) const; ListLiveChannelOutcome ListLiveChannel(const ListLiveChannelRequest& request) const; VoidOutcome DeleteLiveChannel(const DeleteLiveChannelRequest& request) const; StringOutcome GenerateRTMPSignedUrl(const GenerateRTMPSignedUrlRequest& request) const; #endif /*Aysnc APIs*/ void ListObjectsAsync(const ListObjectsRequest& request, const ListObjectAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void GetObjectAsync(const GetObjectRequest& request, const GetObjectAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void PutObjectAsync(const PutObjectRequest& request, const PutObjectAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void UploadPartAsync(const UploadPartRequest& request, const UploadPartAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void UploadPartCopyAsync(const UploadPartCopyRequest& request, const UploadPartCopyAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; /*Callable APIs*/ ListObjectOutcomeCallable ListObjectsCallable(const ListObjectsRequest& request) const; GetObjectOutcomeCallable GetObjectCallable(const GetObjectRequest& request) const; PutObjectOutcomeCallable PutObjectCallable(const PutObjectRequest& request) const; PutObjectOutcomeCallable UploadPartCallable(const UploadPartRequest& request) const; UploadPartCopyOutcomeCallable UploadPartCopyCallable(const UploadPartCopyRequest& request) const; /*Extended APIs*/ #if !defined(OSS_DISABLE_BUCKET) bool DoesBucketExist(const std::string& bucket) const; #endif bool DoesObjectExist(const std::string& bucket, const std::string& key) const; CopyObjectOutcome ModifyObjectMeta(const std::string& bucket, const std::string& key, const ObjectMetaData& meta); /*Requests control*/ void DisableRequest(); void EnableRequest(); /*Others*/ void SetRegion(const std::string& region); void SetCloudBoxId(const std::string& cloudboxId); protected: std::shared_ptr client_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/OssEncryptionClient.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class EncryptionResumableDownloader; class EncryptionResumableUploader; class ALIBABACLOUD_OSS_EXPORT OssEncryptionClient : public OssClient { public: OssEncryptionClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); OssEncryptionClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const std::string& securityToken, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); OssEncryptionClient(const std::string& endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); virtual ~OssEncryptionClient(); /*Object*/ GetObjectOutcome GetObject(const GetObjectRequest& request) const; GetObjectOutcome GetObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const; GetObjectOutcome GetObject(const std::string &bucket, const std::string &key, const std::string &fileToSave) const; PutObjectOutcome PutObject(const PutObjectRequest& request) const; PutObjectOutcome PutObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const; PutObjectOutcome PutObject(const std::string &bucket, const std::string &key, const std::string &fileToUpload) const; /*MultipartUpload*/ InitiateMultipartUploadOutcome InitiateMultipartUpload(const InitiateMultipartUploadRequest& request, MultipartUploadCryptoContext& ctx) const; PutObjectOutcome UploadPart(const UploadPartRequest& request, const MultipartUploadCryptoContext& ctx) const; CompleteMultipartUploadOutcome CompleteMultipartUpload(const CompleteMultipartUploadRequest& request, const MultipartUploadCryptoContext& ctx) const; #if !defined(OSS_DISABLE_RESUAMABLE) /*Resumable Operation*/ PutObjectOutcome ResumableUploadObject(const UploadObjectRequest& request) const; GetObjectOutcome ResumableDownloadObject(const DownloadObjectRequest& request) const; #endif /*Aysnc APIs*/ void GetObjectAsync(const GetObjectRequest& request, const GetObjectAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void PutObjectAsync(const PutObjectRequest& request, const PutObjectAsyncHandler& handler, const std::shared_ptr& context = nullptr) const; void UploadPartAsync(const UploadPartRequest& request, const UploadPartAsyncHandler& handler, const MultipartUploadCryptoContext& cryptoCtx, const std::shared_ptr& context = nullptr) const; /*Callable APIs*/ GetObjectOutcomeCallable GetObjectCallable(const GetObjectRequest& request) const; PutObjectOutcomeCallable PutObjectCallable(const PutObjectRequest& request) const; PutObjectOutcomeCallable UploadPartCallable(const UploadPartRequest& request, const MultipartUploadCryptoContext& cryptoCtx) const; protected: AppendObjectOutcome AppendObject(const AppendObjectRequest& request) const; UploadPartCopyOutcome UploadPartCopy(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& ctx) const; void UploadPartCopyAsync(const UploadPartCopyRequest& request, const UploadPartCopyAsyncHandler& handler, const MultipartUploadCryptoContext& cryptoCtx, const std::shared_ptr& context = nullptr) const; UploadPartCopyOutcomeCallable UploadPartCopyCallable(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& cryptoCtx) const; CopyObjectOutcome ResumableCopyObject(const MultiCopyObjectRequest& request) const; GetObjectOutcome GetObjectByUrl(const GetObjectByUrlRequest& request) const; PutObjectOutcome PutObjectByUrl(const PutObjectByUrlRequest& request) const; private: friend class EncryptionResumableDownloader; friend class EncryptionResumableUploader; GetObjectOutcome GetObjectInternal(const GetObjectRequest& request, const ObjectMetaData& meta) const; private: std::shared_ptr encryptionMaterials_; CryptoConfiguration cryptoConfig_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/OssError.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT OssError { public: OssError() = default; OssError(const std::string& code, const std::string& message) : code_(code), message_(message) { } OssError(const OssError& rhs) : code_(rhs.code_), message_(rhs.message_), requestId_(rhs.requestId_), host_(rhs.host_) { } OssError(OssError&& lhs) : code_(std::move(lhs.code_)), message_(std::move(lhs.message_)), requestId_(std::move(lhs.requestId_)), host_(std::move(lhs.host_)) { } OssError& operator=(OssError&& lhs) { code_ = std::move(lhs.code_); message_ = std::move(lhs.message_); requestId_ = std::move(lhs.requestId_); host_ = std::move(lhs.host_); return *this; } OssError& operator=(const OssError& rhs) { code_ = rhs.code_; message_ = rhs.message_; requestId_ = rhs.requestId_; host_ = rhs.host_; return *this; } ~OssError() = default; const std::string& Code()const { return code_; } const std::string& Message() const { return message_; } const std::string& RequestId() const { return requestId_; } const std::string& Host() const { return host_; } void setCode(const std::string& value) { code_ = value; } void setCode(const char *value) { code_ = value; } void setMessage(const std::string& value) { message_ = value; } void setMessage(const char *value) { message_ = value; } void setRequestId(const std::string& value) { requestId_ = value; } void setRequestId(const char *value) { requestId_ = value; } void setHost(const std::string& value) { host_ = value; } void setHost(const char *value) { host_ = value; } private: std::string code_; std::string message_; std::string requestId_; std::string host_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/OssFwd.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include #if !defined(OSS_DISABLE_BUCKET) #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if !defined(OSS_DISABLE_RESUAMABLE) #include #include #include #endif #if !defined(OSS_DISABLE_LIVECHANNEL) #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif namespace AlibabaCloud { namespace OSS { using OssOutcome = Outcome; using VoidOutcome = Outcome; using StringOutcome = Outcome; #if !defined(OSS_DISABLE_BUCKET) using ListBucketsOutcome = Outcome; using CreateBucketOutcome = Outcome; using ListBucketInventoryConfigurationsOutcome = Outcome; using GetBucketAclOutcome = Outcome; using GetBucketLocationOutcome = Outcome; using GetBucketInfoOutcome = Outcome; using GetBucketLoggingOutcome = Outcome; using GetBucketWebsiteOutcome = Outcome; using GetBucketRefererOutcome = Outcome; using GetBucketLifecycleOutcome = Outcome; using GetBucketStatOutcome = Outcome; using GetBucketCorsOutcome = Outcome; using GetBucketStorageCapacityOutcome = Outcome; using GetBucketPolicyOutcome = Outcome; using GetBucketPaymentOutcome = Outcome; using GetBucketEncryptionOutcome = Outcome; using GetBucketTaggingOutcome = Outcome; using GetBucketQosInfoOutcome = Outcome; using GetUserQosInfoOutcome = Outcome; using GetBucketVersioningOutcome = Outcome; using GetBucketInventoryConfigurationOutcome = Outcome; using InitiateBucketWormOutcome = Outcome; using GetBucketWormOutcome = Outcome; #endif using ListObjectOutcome = Outcome; using ListObjectsV2Outcome = Outcome; using ListObjectVersionsOutcome = Outcome; using GetObjectOutcome = Outcome; using PutObjectOutcome = Outcome; using DeleteObjectOutcome = Outcome; using DeleteObjecstOutcome = Outcome; using DeleteObjecVersionstOutcome = Outcome; using ObjectMetaDataOutcome = Outcome; using GetObjectAclOutcome = Outcome; using SetObjectAclOutcome = Outcome; using AppendObjectOutcome = Outcome; using CopyObjectOutcome = Outcome; using RestoreObjectOutcome = Outcome; using GetSymlinkOutcome = Outcome; using CreateSymlinkOutcome = Outcome; using CreateSelectObjectMetaOutcome = Outcome; using SetObjectTaggingOutcome = Outcome; using GetObjectTaggingOutcome = Outcome; using DeleteObjectTaggingOutcome = Outcome; /*multipart*/ using InitiateMultipartUploadOutcome = Outcome; using UploadPartCopyOutcome = Outcome; using CompleteMultipartUploadOutcome = Outcome; using ListMultipartUploadsOutcome = Outcome; using ListPartsOutcome = Outcome; #if !defined(OSS_DISABLE_LIVECHANNEL) /*livechannel*/ using PutLiveChannelOutcome = Outcome; using GetLiveChannelStatOutcome = Outcome; using GetLiveChannelInfoOutcome = Outcome; using GetLiveChannelHistoryOutcome = Outcome; using ListLiveChannelOutcome = Outcome; using GetVodPlaylistOutcome = Outcome; #endif } } ================================================ FILE: sdk/include/alibabacloud/oss/OssRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class OssClientImpl; class OssEncryptionClient; class ALIBABACLOUD_OSS_EXPORT OssRequest : public ServiceRequest { public: OssRequest(); virtual ~ OssRequest() = default; virtual HeaderCollection Headers() const; virtual ParameterCollection Parameters() const; virtual std::shared_ptr Body() const; protected: OssRequest(const std::string& bucket, const std::string& key); friend class OssClientImpl; friend class OssEncryptionClient; virtual int validate() const; const char *validateMessage(int code) const; virtual std::string payload() const; virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; const std::string& bucket() const; const std::string& key() const; protected: std::string bucket_; std::string key_; }; class ALIBABACLOUD_OSS_EXPORT OssBucketRequest : public OssRequest { public: OssBucketRequest(const std::string& bucket): OssRequest(bucket, "") {} void setBucket(const std::string& bucket); const std::string& Bucket() const; protected: virtual int validate() const; }; class ALIBABACLOUD_OSS_EXPORT OssObjectRequest : public OssRequest { public: OssObjectRequest(const std::string& bucket, const std::string& key) : OssRequest(bucket, key), requestPayer_(AlibabaCloud::OSS::RequestPayer::NotSet), versionId_() {} void setBucket(const std::string& bucket); const std::string& Bucket() const; void setKey(const std::string& key); const std::string& Key() const; void setRequestPayer(AlibabaCloud::OSS::RequestPayer value); AlibabaCloud::OSS::RequestPayer RequestPayer() const; void setVersionId(const std::string& versionId); const std::string& VersionId() const; protected: virtual int validate() const; virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; AlibabaCloud::OSS::RequestPayer requestPayer_; std::string versionId_; }; class ALIBABACLOUD_OSS_EXPORT OssResumableBaseRequest : public OssRequest { public: OssResumableBaseRequest(const std::string& bucket, const std::string& key, const std::string& checkpointDir, const uint64_t partSize, const uint32_t threadNum) : OssRequest(bucket, key), partSize_(partSize), checkpointDir_(checkpointDir), requestPayer_(AlibabaCloud::OSS::RequestPayer::NotSet), trafficLimit_(0), versionId_() { threadNum_ = threadNum == 0 ? 1 : threadNum; } OssResumableBaseRequest(const std::string& bucket, const std::string& key, const std::wstring& checkpointDir, const uint64_t partSize, const uint32_t threadNum) : OssRequest(bucket, key), partSize_(partSize), checkpointDirW_(checkpointDir), requestPayer_(AlibabaCloud::OSS::RequestPayer::NotSet), trafficLimit_(0), versionId_() { threadNum_ = threadNum == 0 ? 1 : threadNum; } void setBucket(const std::string& bucket); const std::string& Bucket() const; void setKey(const std::string& key); const std::string& Key() const; void setPartSize(uint64_t partSize); uint64_t PartSize() const; void setObjectSize(uint64_t objectSize); uint64_t ObjectSize() const; void setThreadNum(uint32_t threadNum); uint32_t ThreadNum() const; void setCheckpointDir(const std::string& checkpointDir); const std::string& CheckpointDir() const; void setCheckpointDir(const std::wstring& checkpointDir); const std::wstring& CheckpointDirW() const; bool hasCheckpointDir() const; void setObjectMtime(const std::string& mtime); const std::string& ObjectMtime() const; void setRequestPayer(RequestPayer value); AlibabaCloud::OSS::RequestPayer RequestPayer() const; void setTrafficLimit(uint64_t value); uint64_t TrafficLimit() const; void setVersionId(const std::string& versionId); const std::string& VersionId() const; protected: friend class OssClientImpl; friend class OssEncryptionClient; virtual int validate() const; const char *validateMessage(int code) const; protected: uint64_t partSize_; uint64_t objectSize_; uint32_t threadNum_; std::string checkpointDir_; std::wstring checkpointDirW_; std::string mtime_; AlibabaCloud::OSS::RequestPayer requestPayer_; uint64_t trafficLimit_; std::string versionId_; }; class ALIBABACLOUD_OSS_EXPORT LiveChannelRequest : public OssRequest { public: LiveChannelRequest(const std::string &bucket, const std::string &channelName) : OssRequest(bucket, channelName), channelName_(channelName) {} void setBucket(const std::string &bucket); const std::string& Bucket() const; void setChannelName(const std::string &channelName); const std::string& ChannelName() const; protected: virtual int validate() const; protected: std::string channelName_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/OssResponse.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT OssResponse { public: OssResponse(); explicit OssResponse(const std::string& payload); ~OssResponse(); std::string payload()const; private: std::string payload_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/OssResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { using CommonPrefixeList = std::vector; class OssClientImpl; class ALIBABACLOUD_OSS_EXPORT OssResult { public: OssResult(); OssResult(const HeaderCollection& value); virtual ~OssResult() {}; const std::string& RequestId() const {return requestId_;} protected: friend class OssClientImpl; bool ParseDone() { return parseDone_; }; bool parseDone_; std::string requestId_; }; class ALIBABACLOUD_OSS_EXPORT OssObjectResult : public OssResult { public: OssObjectResult(); OssObjectResult(const HeaderCollection& value); virtual ~OssObjectResult() {}; const std::string& VersionId() const { return versionId_; } protected: std::string versionId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/ServiceRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { const int REQUEST_FLAG_CONTENTMD5 = (1 << 0); const int REQUEST_FLAG_PARAM_IN_PATH = (1 << 1); const int REQUEST_FLAG_CHECK_CRC64 = (1 << 2); const int REQUEST_FLAG_SAVE_CLIENT_CRC64 = (1 << 3); const int REQUEST_FLAG_CHUNKED_ENCODING = (1 << 4); class ALIBABACLOUD_OSS_EXPORT ServiceRequest { public: virtual ~ServiceRequest() = default; std::string Path() const; virtual HeaderCollection Headers() const = 0; virtual ParameterCollection Parameters() const = 0; virtual std::shared_ptr Body() const = 0; int Flags() const; void setFlags(int flags); const IOStreamFactory& ResponseStreamFactory() const; void setResponseStreamFactory(const IOStreamFactory& factory); const AlibabaCloud::OSS::TransferProgress& TransferProgress() const; void setTransferProgress(const AlibabaCloud::OSS::TransferProgress& arg); protected: ServiceRequest(); void setPath(const std::string &path); private: int flags_; std::string path_; IOStreamFactory responseStreamFactory_; AlibabaCloud::OSS::TransferProgress transferProgress_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/ServiceResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ServiceResult { public: ServiceResult() {} virtual ~ServiceResult() {}; inline const std::string& RequestId() const {return requestId_;} inline const std::shared_ptr& payload() const {return payload_;} inline const HeaderCollection& headerCollection() const {return headerCollection_;} inline int responseCode() const {return responseCode_;} void setRequestId(const std::string& requestId) {requestId_ = requestId;} void setPlayload(const std::shared_ptr& payload) {payload_ = payload;} void setHeaderCollection(const HeaderCollection& values) { headerCollection_ = values;} void setResponseCode(const int code) { responseCode_ = code;} private: std::string requestId_; std::shared_ptr payload_; HeaderCollection headerCollection_; int responseCode_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/Types.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { enum StorageClass { Standard, // Standard bucket IA, // Infrequent Access bucket Archive, // Archive bucket ColdArchive // Cold Archive bucket }; enum CannedAccessControlList { Private = 0, PublicRead, PublicReadWrite, Default }; enum CopyActionList { Copy = 0, Replace }; enum EncodingType { STRING_ANY, URL, }; enum RequestResponseHeader { ContentType, ContentLanguage, Expires, CacheControl, ContentDisposition, ContentEncoding, }; enum RuleStatus { Enabled, Disabled }; enum LogLevel { LogOff = 0, LogFatal, LogError, LogWarn, LogInfo, LogDebug, LogTrace, LogAll, }; enum LiveChannelStatus { EnabledStatus, DisabledStatus, IdleStatus, LiveStatus, UnknownStatus=99 }; enum class RequestPayer { NotSet = 0, BucketOwner, Requester }; enum class SSEAlgorithm { NotSet = 0, KMS, AES256 }; enum class DataRedundancyType { NotSet = 0, LRS, ZRS }; enum class VersioningStatus { NotSet, Enabled, Suspended }; enum class InventoryFormat { NotSet, CSV }; enum class InventoryFrequency { NotSet, Daily, Weekly }; enum class InventoryOptionalField { NotSet, Size, LastModifiedDate, ETag, StorageClass, IsMultipartUploaded, EncryptionStatus }; enum class InventoryIncludedObjectVersions { NotSet, All, Current }; enum class TierType { Expedited, Standard, Bulk }; enum class SignatureVersionType { V1, V4, }; typedef void(*LogCallback)(LogLevel level, const std::string& stream); struct ALIBABACLOUD_OSS_EXPORT caseSensitiveLess { bool operator() (const std::string& lhs, const std::string& rhs) const { return lhs < rhs; } }; struct ALIBABACLOUD_OSS_EXPORT caseInsensitiveLess { bool operator() (const std::string& lhs, const std::string& rhs) const { auto first1 = lhs.begin(), last1 = lhs.end(); auto first2 = rhs.begin(), last2 = rhs.end(); while (first1 != last1) { if (first2 == last2) return false; auto first1_ch = ::tolower(*first1); auto first2_ch = ::tolower(*first2); if (first1_ch != first2_ch) { return (first1_ch < first2_ch); } ++first1; ++first2; } return (first2 != last2); } }; using TransferProgressHandler = std::function; struct ALIBABACLOUD_OSS_EXPORT TransferProgress { TransferProgressHandler Handler; void *UserData; }; using RefererList = std::vector; using MetaData = std::map; using HeaderCollection = std::map; using ParameterCollection = std::map; using IOStreamFactory = std::function< std::shared_ptr(void)>; using ByteBuffer = std::vector; using HeaderSet = std::set; } } ================================================ FILE: sdk/include/alibabacloud/oss/auth/Credentials.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Credentials { public: Credentials(const std::string& accessKeyId, const std::string& accessKeySecret, const std::string& sessionToken=""); ~Credentials(); const std::string& AccessKeyId () const; const std::string& AccessKeySecret () const; const std::string& SessionToken () const; void setAccessKeyId(const std::string& accessKeyId); void setAccessKeySecret(const std::string& accessKeySecret); void setSessionToken (const std::string& sessionToken); private: std::string accessKeyId_; std::string accessKeySecret_; std::string sessionToken_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/auth/CredentialsProvider.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "Credentials.h" namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CredentialsProvider { public: CredentialsProvider() = default; virtual ~CredentialsProvider(); virtual Credentials getCredentials() = 0; private: }; class ALIBABACLOUD_OSS_EXPORT SimpleCredentialsProvider : public CredentialsProvider { public: SimpleCredentialsProvider(const Credentials& credentials); SimpleCredentialsProvider(const std::string& accessKeyId, const std::string& accessKeySecret, const std::string& securityToken = ""); ~SimpleCredentialsProvider(); virtual Credentials getCredentials() override; private: Credentials credentials_; }; class ALIBABACLOUD_OSS_EXPORT EnvironmentVariableCredentialsProvider : public CredentialsProvider { public: Credentials getCredentials() override; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/client/AsyncCallerContext.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT AsyncCallerContext { public: AsyncCallerContext(); explicit AsyncCallerContext(const std::string &uuid); virtual ~AsyncCallerContext(); const std::string &Uuid()const; void setUuid(const std::string &uuid); private: std::string uuid_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/client/ClientConfiguration.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class RetryStrategy; class RateLimiter; class ALIBABACLOUD_OSS_EXPORT ClientConfiguration { public: ClientConfiguration(); ~ClientConfiguration() = default; public: /** * User Agent string user for http calls. */ std::string userAgent; /** * Http scheme to use. E.g. Http or Https. */ Http::Scheme scheme; /** * Max concurrent tcp connections for a single http client to use. */ unsigned maxConnections; /** * Socket read timeouts. Default 3000 ms. */ long requestTimeoutMs; /** * Socket connect timeout. */ long connectTimeoutMs; /** * Strategy to use in case of failed requests. */ std::shared_ptr retryStrategy; /** * The proxy scheme. Default HTTP */ Http::Scheme proxyScheme; /** * The proxy host. */ std::string proxyHost; /** * The proxy port. */ unsigned int proxyPort; /** * The proxy username. */ std::string proxyUserName; /** * The proxy password */ std::string proxyPassword; /** * set false to bypass SSL check. */ bool verifySSL; /** * your Certificate Authority path. */ std::string caPath; /** * your certificate file. */ std::string caFile; /** * enable or disable cname, default is false. */ bool isCname; /** * enable or disable crc64 check. */ bool enableCrc64; /** * enable or disable auto correct http request date. */ bool enableDateSkewAdjustment; /** * Rate limit data upload speed. */ std::shared_ptr sendRateLimiter; /** * Rate limit data download speed. */ std::shared_ptr recvRateLimiter; /** * The interface for outgoing traffic. E.g. eth0 in linux */ std::string networkInterface; /** * Your executor's implement */ std::shared_ptr executor; /** * Your http client' implement */ std::shared_ptr httpClient; /** * enable or disable path style, default is false. */ bool isPathStyle; /** * enable or disable verify object name strictly. defualt is true */ bool isVerifyObjectStrict; /** * signature version. default is V1. */ SignatureVersionType signatureVersion; /** * Your http interceptor implement */ std::shared_ptr httpInterceptor; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/client/Error.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { /* The status comes from the following modules: client, server, httpclient(ex. curl). server: [100-600) client: [100000-199999] curl : [200000-299999], 200000 + CURLcode it's sucessful only if the status/100 equals to 2. */ const int ERROR_CLIENT_BASE = 100000; const int ERROR_CRC_INCONSISTENT = ERROR_CLIENT_BASE + 1; const int ERROR_REQUEST_DISABLE = ERROR_CLIENT_BASE + 2; const int ERROR_CURL_BASE = 200000; class ALIBABACLOUD_OSS_EXPORT Error { public: Error() = default; Error(const std::string& code, const std::string& message): status_(0), code_(code), message_(message) { } ~Error() = default; long Status() const {return status_;} const std::string& Code()const {return code_;} const std::string& Message() const {return message_;} const HeaderCollection& Headers() const { return headers_; } void setStatus(long status) { status_ = status;} void setCode(const std::string& code) { code_ = code;} void setMessage(const std::string& message) { message_ = message;} void setHeaders(const HeaderCollection& headers) { headers_ = headers; } private: long status_; std::string code_; std::string message_; HeaderCollection headers_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/client/RateLimiter.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { /*the unit of rate is kB/S*/ class ALIBABACLOUD_OSS_EXPORT RateLimiter { public: virtual ~RateLimiter() {} virtual void setRate(int rate) = 0; virtual int Rate() const = 0; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/client/RetryStrategy.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT RetryStrategy { public: virtual ~RetryStrategy() {} virtual bool shouldRetry(const Error& error, long attemptedRetries) const = 0; virtual long calcDelayTimeMs(const Error& error, long attemptedRetries) const = 0; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/encryption/Cipher.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { enum class CipherAlgorithm { AES, RSA, }; enum class CipherMode { NONE, ECB, CBC, CTR, }; enum class CipherPadding { NoPadding, PKCS1Padding, PKCS5Padding, PKCS7Padding, ZeroPadding, }; class ALIBABACLOUD_OSS_EXPORT SymmetricCipher { public: virtual ~SymmetricCipher() {}; //algorithm/mode/padding format. ex. AES/CBC/NoPadding const std::string& Name() const { return name_; } CipherAlgorithm Algorithm() { return algorithm_; } CipherMode Mode() { return mode_; } CipherPadding Padding() { return padding_; } int BlockSize() { return blockSize_; } virtual void EncryptInit(const ByteBuffer& key, const ByteBuffer& iv) = 0; virtual ByteBuffer Encrypt(const ByteBuffer& data) = 0; virtual int Encrypt(unsigned char * dst, int dstLen, const unsigned char* src, int srcLen) = 0; virtual ByteBuffer EncryptFinish() = 0; virtual void DecryptInit(const ByteBuffer& key, const ByteBuffer& iv) = 0; virtual ByteBuffer Decrypt(const ByteBuffer& data) = 0; virtual int Decrypt(unsigned char * dst, int dstLen, const unsigned char* src, int srcLen) = 0; virtual ByteBuffer DecryptFinish() = 0; public: static ByteBuffer GenerateIV(size_t length); static ByteBuffer GenerateKey(size_t length); static ByteBuffer IncCTRCounter(const ByteBuffer& counter, uint64_t numberOfBlocks); static std::shared_ptr CreateAES128_CTRImpl(); static std::shared_ptr CreateAES128_CBCImpl(); static std::shared_ptr CreateAES256_CTRImpl(); protected: SymmetricCipher(const std::string& impl, CipherAlgorithm algo, CipherMode mode, CipherPadding pad); private: std::string impl_; std::string name_; CipherAlgorithm algorithm_; CipherMode mode_; CipherPadding padding_; int blockSize_; }; class ALIBABACLOUD_OSS_EXPORT AsymmetricCipher { public: virtual ~AsymmetricCipher() {}; const std::string& Name() const { return name_; } CipherAlgorithm Algorithm() { return algorithm_; } CipherMode Mode() { return mode_; } CipherPadding Padding() { return padding_; } void setPublicKey(const std::string& key) { publicKey_ = key; } void setPrivateKey(const std::string& key) { privateKey_ = key; } const std::string& PublicKey() const { return publicKey_; } const std::string& PrivateKey() const { return privateKey_; } virtual ByteBuffer Encrypt(const ByteBuffer& data) = 0; virtual ByteBuffer Decrypt(const ByteBuffer& data) = 0; public: static std::shared_ptr CreateRSA_NONEImpl(); protected: AsymmetricCipher(const std::string& impl, CipherAlgorithm algo, CipherMode mode, CipherPadding pad); private: std::string impl_; std::string name_; CipherAlgorithm algorithm_; CipherMode mode_; CipherPadding padding_; std::string publicKey_; std::string privateKey_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/encryption/ContentCryptoMaterial.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ContentCryptoMaterial { public: ContentCryptoMaterial(); ~ContentCryptoMaterial(); std::string Tag() const { return "Material"; } const ByteBuffer& ContentKey() const { return contentKey_; } const ByteBuffer& ContentIV() const { return contentIV_; } const std::string& CipherName() const { return cipherName_; } const std::string& KeyWrapAlgorithm() const { return keyWrapAlgorithm_; } const std::map& Description() const { return description_; } const ByteBuffer& EncryptedContentKey() const { return encryptedContentKey_; } const ByteBuffer& EncryptedContentIV() const { return encryptedContentIV_; } const std::string& MagicNumber() const { return magicNumber_; } void setContentKey(const ByteBuffer& key) { contentKey_ = key; } void setContentIV(const ByteBuffer& iv) { contentIV_ = iv; } void setCipherName(const std::string& name) { cipherName_ = name; } void setKeyWrapAlgorithm(const std::string& algo) { keyWrapAlgorithm_ = algo; } void setDescription(const std::map& desc) { description_ = desc; } void setEncryptedContentKey(const ByteBuffer& key) { encryptedContentKey_ = key; } void setEncryptedContentIV(const ByteBuffer& iv) { encryptedContentIV_ = iv; } void setMagicNumber(const std::string& value) { magicNumber_ = value; } private: ByteBuffer contentKey_; ByteBuffer contentIV_; std::string cipherName_; std::string keyWrapAlgorithm_; std::map description_; ByteBuffer encryptedContentKey_; ByteBuffer encryptedContentIV_; std::string magicNumber_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/encryption/CryptoConfiguration.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { enum class CryptoStorageMethod { METADATA, }; enum class CryptoMode { ENCRYPTION_AESCTR, }; class ALIBABACLOUD_OSS_EXPORT CryptoConfiguration { public: CryptoConfiguration(); ~CryptoConfiguration(); public: CryptoMode cryptoMode; CryptoStorageMethod cryptoStorageMethod; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/encryption/EncryptionMaterials.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT EncryptionMaterials { public: virtual ~EncryptionMaterials(); virtual int EncryptCEK(ContentCryptoMaterial& contentCryptoMaterial) = 0; virtual int DecryptCEK(ContentCryptoMaterial& contentCryptoMaterial) = 0; }; using RSAEncryptionMaterial = std::pair, std::map>; class ALIBABACLOUD_OSS_EXPORT SimpleRSAEncryptionMaterials : public EncryptionMaterials { public: SimpleRSAEncryptionMaterials(const std::string& publicKey, const std::string& privateKey); SimpleRSAEncryptionMaterials(const std::string& publicKey, const std::string& privateKey, const std::map& description); ~SimpleRSAEncryptionMaterials(); void addEncryptionMaterial(const std::string& publicKey, const std::string& privateKey, const std::map& description); virtual int EncryptCEK(ContentCryptoMaterial& contentCryptoMaterial); virtual int DecryptCEK(ContentCryptoMaterial& contentCryptoMaterial); private: int findIndexByDescription(const std::map& description); std::string publicKey_; std::map description_; std::vector encryptionMaterials_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpClient.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HttpClient { public: HttpClient(); virtual ~HttpClient(); virtual std::shared_ptr makeRequest(const std::shared_ptr &request) = 0; bool isEnable(); void disable(); void enable(); void waitForRetry(long milliseconds); protected: std::atomic disable_; std::mutex requestLock_; std::condition_variable requestSignal_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpInterceptor.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HttpInterceptor { public: HttpInterceptor() = default; virtual ~HttpInterceptor() = default; virtual void preSendRequest(void *handler, const std::shared_ptr &request) = 0; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpMessage.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HttpMessage { public: HttpMessage(const HttpMessage &other); HttpMessage(HttpMessage &&other); HttpMessage& operator=(const HttpMessage &other); HttpMessage& operator=(HttpMessage &&other); virtual ~HttpMessage(); void addHeader(const std::string &name, const std::string &value); void setHeader(const std::string &name, const std::string &value); void removeHeader(const std::string &name); bool hasHeader(const std::string &name) const ; std::string Header(const std::string &name)const; const HeaderCollection &Headers()const; void addBody(const std::shared_ptr& body) { body_ = body;} std::shared_ptr& Body() { return body_;} protected: HttpMessage(); private: HeaderCollection headers_; std::shared_ptr body_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HttpRequest : public HttpMessage { public: HttpRequest(Http::Method method = Http::Method::Get); ~HttpRequest(); Http::Method method() const; Url url() const; void setMethod(Http::Method method); void setUrl(const Url &url); const IOStreamFactory& ResponseStreamFactory() const { return responseStreamFactory_; } void setResponseStreamFactory(const IOStreamFactory& factory) { responseStreamFactory_ = factory; } const AlibabaCloud::OSS::TransferProgress & TransferProgress() const { return transferProgress_; } void setTransferProgress(const AlibabaCloud::OSS::TransferProgress &arg) { transferProgress_ = arg;} void setCheckCrc64(bool enable) { hasCheckCrc64_ = enable; } bool hasCheckCrc64() const { return hasCheckCrc64_; } void setCrc64Result(uint64_t crc) { crc64Result_ = crc; } uint64_t Crc64Result() const { return crc64Result_; } void setTransferedBytes(int64_t value) { transferedBytes_ = value; } uint64_t TransferedBytes() const { return transferedBytes_;} void setChunkedEncoding(bool value) { chunkedEncoding_ = value; } bool chunkedEncoding() const { return chunkedEncoding_; } private: Http::Method method_; Url url_; IOStreamFactory responseStreamFactory_; AlibabaCloud::OSS::TransferProgress transferProgress_; bool hasCheckCrc64_; uint64_t crc64Result_; int64_t transferedBytes_; bool chunkedEncoding_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpResponse.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HttpResponse : public HttpMessage { public: HttpResponse(const std::shared_ptr & request); ~HttpResponse(); const HttpRequest &request()const; void setStatusCode(int code); int statusCode()const; void setStatusMsg(std::string &msg); void setStatusMsg(const char *msg); std::string statusMsg()const; private: HttpResponse() = delete; std::shared_ptr request_; mutable int statusCode_; mutable std::string statusMsg_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/HttpType.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Http { public: enum Method { Get, Head, Post, Put, Delete, Connect, Options, Patch, Trace }; enum Scheme { HTTP, HTTPS }; static std::string MethodToString(Method method); static std::string SchemeToString(Scheme scheme); //HEADERS static const char* ACCEPT; static const char* ACCEPT_CHARSET; static const char* ACCEPT_ENCODING; static const char* ACCEPT_LANGUAGE; static const char* AUTHORIZATION; static const char* CACHE_CONTROL; static const char* CONTENT_DISPOSITION; static const char* CONTENT_ENCODING; static const char* CONTENT_LENGTH; static const char* CONTENT_MD5; static const char* CONTENT_RANGE; static const char* CONTENT_TYPE; static const char* DATE; static const char* EXPECT; static const char* EXPIRES; static const char* ETAG; static const char* LAST_MODIFIED; static const char* RANGE; static const char* USER_AGENT; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/http/Url.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Url { public: explicit Url(const std::string &url = ""); ~Url(); bool operator==(const Url &url) const; bool operator!=(const Url &url) const; std::string authority() const; void clear(); std::string fragment() const; void fromString(const std::string &url); bool hasFragment() const; bool hasQuery() const; std::string host()const; bool isEmpty() const; bool isValid() const; int port()const; std::string password() const; std::string path() const; std::string query() const; std::string scheme() const; void setAuthority(const std::string &authority); void setFragment(const std::string &fragment); void setHost(const std::string &host); void setPassword(const std::string &password); void setPath(const std::string &path); void setPort(int port); void setQuery(const std::string &query); void setScheme(const std::string &scheme); void setUserInfo(const std::string &userInfo); void setUserName(const std::string &userName); std::string toString()const; std::string userInfo() const; std::string userName() const; private: std::string scheme_; std::string userName_; std::string password_; std::string host_; std::string path_; int port_; std::string query_; std::string fragment_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/AbortBucketWormRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT AbortBucketWormRequest : public OssBucketRequest { public: AbortBucketWormRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/AbortMultipartUploadRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT AbortMultipartUploadRequest: public OssObjectRequest { public: AbortMultipartUploadRequest(const std::string& bucket, const std::string& key, const std::string& uploadId); protected: virtual ParameterCollection specialParameters() const; private: std::string uploadId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/AppendObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT AppendObjectRequest: public OssObjectRequest { public: AppendObjectRequest(const std::string& bucket, const std::string& key, const std::shared_ptr& content); AppendObjectRequest(const std::string& bucket, const std::string& key, const std::shared_ptr& content, const ObjectMetaData& meta); void setPosition(uint64_t position); void setCacheControl(const std::string& value); void setContentDisposition(const std::string& value); void setContentEncoding(const std::string& value); void setContentMd5(const std::string& value); void setExpires(uint64_t expires); void setExpires(const std::string& value); void setAcl(const CannedAccessControlList& acl); void setTagging(const std::string& value); void setTrafficLimit(uint64_t value); virtual std::shared_ptr Body() const; protected: virtual HeaderCollection specialHeaders() const ; virtual ParameterCollection specialParameters() const; private: uint64_t position_; std::shared_ptr content_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/AppendObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT AppendObjectResult : public OssObjectResult { public: public: AppendObjectResult(); AppendObjectResult(const HeaderCollection& header); uint64_t Length() const { return length_ ; } uint64_t CRC64() const { return crc64_ ; } private: uint64_t length_; uint64_t crc64_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/Bucket.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ListBucketsResult; class ALIBABACLOUD_OSS_EXPORT Bucket { public: Bucket() = default; ~Bucket(); const std::string& Location() const { return location_; } const std::string& Name() const { return name_; } const std::string& CreationDate() const { return creationDate_; } const std::string& IntranetEndpoint() const { return intranetEndpoint_; } const std::string& ExtranetEndpoint() const { return extranetEndpoint_; } AlibabaCloud::OSS::StorageClass StorageClass() const { return storageClass_; } const AlibabaCloud::OSS::Owner& Owner() const { return owner_; } private: friend class ListBucketsResult; std::string location_; std::string name_; std::string creationDate_; std::string intranetEndpoint_; std::string extranetEndpoint_; AlibabaCloud::OSS::StorageClass storageClass_; AlibabaCloud::OSS::Owner owner_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CORSRule.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { using CORSAllowedList = std::list; class ALIBABACLOUD_OSS_EXPORT CORSRule { public: static const int UNSET_AGE_SEC = -1; public: CORSRule() : maxAgeSeconds_(UNSET_AGE_SEC) {} const CORSAllowedList& AllowedOrigins() const { return allowedOrigins_; } const CORSAllowedList& AllowedMethods() const { return allowedMethods_; } const CORSAllowedList& AllowedHeaders() const { return allowedHeaders_; } const CORSAllowedList& ExposeHeaders() const { return exposeHeaders_; } int MaxAgeSeconds() const { return maxAgeSeconds_; } void addAllowedOrigin(const std::string& origin) { allowedOrigins_.push_back(origin); } void addAllowedMethod(const std::string& method) { allowedMethods_.push_back(method); } void addAllowedHeader(const std::string& header) { allowedHeaders_.push_back(header); } void addExposeHeader(const std::string& header) { exposeHeaders_.push_back(header); } void setMaxAgeSeconds(int value) { maxAgeSeconds_ = value; } void clear() { allowedOrigins_.clear(); allowedMethods_.clear(); allowedHeaders_.clear(); exposeHeaders_.clear(); maxAgeSeconds_ = UNSET_AGE_SEC; } private: CORSAllowedList allowedOrigins_; CORSAllowedList allowedMethods_; CORSAllowedList allowedHeaders_; CORSAllowedList exposeHeaders_; int maxAgeSeconds_; }; using CORSRuleList = std::list; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CompleteBucketWormRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CompleteBucketWormRequest : public OssBucketRequest { public: CompleteBucketWormRequest(const std::string& bucket, const std::string& wormId); protected: virtual ParameterCollection specialParameters() const; private: std::string wormId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CompleteMultipartUploadRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CompleteMultipartUploadRequest: public OssObjectRequest { public: CompleteMultipartUploadRequest(const std::string& bucket, const std::string& key); CompleteMultipartUploadRequest(const std::string& bucket, const std::string& key, const PartList& partList); CompleteMultipartUploadRequest(const std::string& bucket, const std::string& key, const PartList& partList, const std::string& uploadId); void setEncodingType(const std::string& encodingType); void setPartList(const AlibabaCloud::OSS::PartList& partList); void setUploadId(const std::string& uploadId); void setAcl(CannedAccessControlList acl); void setCallback(const std::string& callback, const std::string& callbackVar = ""); ObjectMetaData& MetaData(); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; virtual int validate() const; private: AlibabaCloud::OSS::PartList partList_; std::string uploadId_; std::string encodingType_; bool encodingTypeIsSet_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CompleteMultipartUploadResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CompleteMultipartUploadResult: public OssObjectResult { public: CompleteMultipartUploadResult(); CompleteMultipartUploadResult(const std::string& data); CompleteMultipartUploadResult(const std::shared_ptr& data, const HeaderCollection& headers); CompleteMultipartUploadResult& operator=(const std::string& data); const std::string& Location() const; const std::string& Bucket() const; const std::string& Key() const; const std::string& ETag() const; const std::string& EncodingType() const; uint64_t CRC64() const; const std::shared_ptr& Content() const; private: std::string location_; std::string bucket_; std::string key_; std::string eTag_; std::string encodingType_; uint64_t crc64_; std::shared_ptr content_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CopyObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CopyObjectRequest: public OssObjectRequest { public: CopyObjectRequest(const std::string& bucket, const std::string& key); CopyObjectRequest(const std::string& bucket, const std::string& key, const ObjectMetaData& meta); void setCopySource(const std::string& srcBucket,const std::string& srcObject); void setSourceIfMatchETag(const std::string& value); void setSourceIfNotMatchETag(const std::string& value); void setSourceIfUnModifiedSince(const std::string& value); void setSourceIfModifiedSince(const std::string& value); void setMetadataDirective(const CopyActionList& action); void setAcl(const CannedAccessControlList& acl); void setTagging(const std::string& value); void setTaggingDirective(const CopyActionList& action); void setTrafficLimit(uint64_t value); protected: virtual HeaderCollection specialHeaders() const ; virtual ParameterCollection specialParameters() const; private: std::string sourceBucket_; std::string sourceKey_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CopyObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CopyObjectResult : public OssObjectResult { public: CopyObjectResult(); CopyObjectResult(const std::string& data); CopyObjectResult(const std::shared_ptr& data); CopyObjectResult(const HeaderCollection& headers, const std::shared_ptr& data); CopyObjectResult& operator=(const std::string& data); const std::string& ETag() const { return etag_; } const std::string& LastModified() const { return lastModified_; } const std::string& SourceVersionId() { return sourceVersionId_; } void setEtag(const std::string& etag) { etag_ = etag; } void setLastModified(const std::string& lastModified) { lastModified_ = lastModified; } void setVersionId(const std::string& versionId) { versionId_ = versionId; } void setRequestId(const std::string& requestId) { requestId_ = requestId; } private: std::string etag_; std::string lastModified_; std::string sourceVersionId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CreateBucketRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CreateBucketRequest: public OssBucketRequest { public: CreateBucketRequest(const std::string& bucket, StorageClass storageClass = StorageClass::Standard); CreateBucketRequest(const std::string& bucket, StorageClass storageClass, CannedAccessControlList acl); void setDataRedundancyType(DataRedundancyType type) { dataRedundancyType_ = type; } protected: virtual std::string payload() const; virtual HeaderCollection specialHeaders() const; private: StorageClass storageClass_; CannedAccessControlList acl_; DataRedundancyType dataRedundancyType_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CreateSelectObjectMetaRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CreateSelectObjectMetaRequest : public OssObjectRequest { public: CreateSelectObjectMetaRequest(const std::string& bucket, const std::string& key); void setOverWriteIfExists(bool overWriteIfExist); void setInputFormat(InputFormat& inputFormat); protected: virtual int validate() const; virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: InputFormat *inputFormat_; bool overWriteIfExists_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CreateSelectObjectMetaResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CreateSelectObjectMetaResult : public OssResult { public: CreateSelectObjectMetaResult(); CreateSelectObjectMetaResult( const std::string& bucket, const std::string& key, const std::string& requestId, const std::shared_ptr& data); CreateSelectObjectMetaResult& operator=(const std::shared_ptr& data); const std::string& Bucket() const { return bucket_; } const std::string& Key() const { return key_; } uint64_t Offset() const { return offset_; } uint64_t TotalScanned() const { return totalScanned_; } uint32_t Status() const { return status_; } uint32_t SplitsCount() const { return splitsCount_; } uint64_t RowsCount() const { return rowsCount_; } uint32_t ColsCount() const { return colsCount_; } const std::string& ErrorMessage() const { return errorMessage_; } private: std::string bucket_; std::string key_; uint64_t offset_; uint64_t totalScanned_; uint32_t status_; uint32_t splitsCount_; uint64_t rowsCount_; uint32_t colsCount_; std::string errorMessage_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CreateSymlinkRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CreateSymlinkRequest: public OssObjectRequest { public: CreateSymlinkRequest(const std::string& bucket, const std::string& key); CreateSymlinkRequest(const std::string& bucket, const std::string& key, const ObjectMetaData& meta); void SetSymlinkTarget(const std::string& value); void setTagging(const std::string& value); protected: virtual HeaderCollection specialHeaders() const ; virtual ParameterCollection specialParameters() const; private: ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/CreateSymlinkResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT CreateSymlinkResult : public OssObjectResult { public: CreateSymlinkResult(); CreateSymlinkResult(const std::string& etag); CreateSymlinkResult(const HeaderCollection& headers); const std::string& ETag() const { return etag_; } private: std::string etag_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketCorsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketCorsRequest : public OssBucketRequest { public: DeleteBucketCorsRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketEncryptionRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketEncryptionRequest : public OssBucketRequest { public: DeleteBucketEncryptionRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketInventoryConfigurationRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketInventoryConfigurationRequest : public OssBucketRequest { public: DeleteBucketInventoryConfigurationRequest(const std::string& bucket); DeleteBucketInventoryConfigurationRequest(const std::string& bucket, const std::string& id); void setId(const std::string& id) { id_ = id; } protected: virtual ParameterCollection specialParameters() const; private: std::string id_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketLifecycleRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketLifecycleRequest : public OssBucketRequest { public: DeleteBucketLifecycleRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketLoggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketLoggingRequest : public OssBucketRequest { public: DeleteBucketLoggingRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketPolicyRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketPolicyRequest : public OssBucketRequest { public: DeleteBucketPolicyRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketQosInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketQosInfoRequest : public OssBucketRequest { public: DeleteBucketQosInfoRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketRequest : public OssBucketRequest { public: DeleteBucketRequest(const std::string& bucket): OssBucketRequest(bucket) { } }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketTaggingRequest : public OssBucketRequest { public: DeleteBucketTaggingRequest(const std::string& bucket); void setTagging(const Tagging& tagging); protected: virtual ParameterCollection specialParameters() const; private: Tagging tagging_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteBucketWebsiteRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteBucketWebsiteRequest : public OssBucketRequest { public: DeleteBucketWebsiteRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteLiveChannelRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteLiveChannelRequest : public LiveChannelRequest { public: DeleteLiveChannelRequest(const std::string& bucket, const std::string& channelName); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteObjectRequest : public OssObjectRequest { public: DeleteObjectRequest(const std::string& bucket, const std::string& key): OssObjectRequest(bucket, key) { } DeleteObjectRequest(const std::string& bucket, const std::string& key, const std::string& versionId) : OssObjectRequest(bucket, key) { versionId_ = versionId; } }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteObjectResult : public OssObjectResult { public: DeleteObjectResult(); DeleteObjectResult(const HeaderCollection& header); bool DeleteMarker() const; private: bool deleteMarker_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteObjectTaggingRequest : public OssObjectRequest { public: DeleteObjectTaggingRequest(const std::string& bucket, const std::string& key); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectTaggingResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteObjectTaggingResult : public OssObjectResult { public: DeleteObjectTaggingResult():OssObjectResult(){} DeleteObjectTaggingResult(const HeaderCollection& headers) : OssObjectResult(headers) {} }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectVersionsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ObjectIdentifier { public: ObjectIdentifier() {}; ObjectIdentifier(const std::string& key) : key_(key) {}; ObjectIdentifier(const std::string& key, const std::string& versionId) : key_(key), versionId_(versionId) {}; void setKey(const std::string& key) { key_ = key; }; void setVersionId(const std::string& versionId) { versionId_ = versionId; }; const std::string& Key() const { return key_; } const std::string& VersionId() const { return versionId_; } private: std::string key_; std::string versionId_; }; using ObjectIdentifierList = std::vector; class ALIBABACLOUD_OSS_EXPORT DeleteObjectVersionsRequest : public OssBucketRequest { public: DeleteObjectVersionsRequest(const std::string& bucket); bool Quiet() const; const std::string& EncodingType() const; void setQuiet(bool quiet); void setEncodingType(const std::string& value); void addObject(const ObjectIdentifier& object); void setObjects(const ObjectIdentifierList& objects); const ObjectIdentifierList& Objects() const; void clearObjects(); void setRequestPayer(RequestPayer value); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; private: bool quiet_; std::string encodingType_; ObjectIdentifierList objects_; RequestPayer requestPayer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectVersionsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeletedObject { public: DeletedObject():deleteMarker_(false) {} const std::string& Key() const { return key_; } const std::string& VersionId() const { return versionId_; } const std::string& DeleteMarkerVersionId() const { return deleteMarkerVersionId_; } bool DeleteMarker() const { return deleteMarker_; } void setKey(const std::string& value) { key_ = value; } void setVersionId(const std::string& value) { versionId_ = value; } void setDeleteMarkerVersionId(const std::string& value) { deleteMarkerVersionId_ = value; } void setDeleteMarker(bool value) { deleteMarker_ = value; } private: std::string key_; std::string versionId_; std::string deleteMarkerVersionId_; bool deleteMarker_; }; using DeletedObjectList = std::vector; class ALIBABACLOUD_OSS_EXPORT DeleteObjectVersionsResult : public OssResult { public: DeleteObjectVersionsResult(); DeleteObjectVersionsResult(const std::string& data); DeleteObjectVersionsResult(const std::shared_ptr& data); DeleteObjectVersionsResult& operator=(const std::string& data); bool Quiet() const; const DeletedObjectList& DeletedObjects() const; private: bool quiet_; DeletedObjectList deletedObjects_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { using DeletedKeyList = std::list; class ALIBABACLOUD_OSS_EXPORT DeleteObjectsRequest : public OssBucketRequest { public: DeleteObjectsRequest(const std::string& bucket); bool Quiet() const; const std::string& EncodingType() const; const DeletedKeyList& KeyList() const; void setQuiet(bool quiet); void setEncodingType(const std::string& value); void addKey(const std::string& key); void setKeyList(const DeletedKeyList& keyList); void clearKeyList(); void setRequestPayer(RequestPayer value); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; private: bool quiet_; std::string encodingType_; DeletedKeyList keyList_; RequestPayer requestPayer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DeleteObjectsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DeleteObjectsResult : public OssResult { public: DeleteObjectsResult(); DeleteObjectsResult(const std::string& data); DeleteObjectsResult(const std::shared_ptr& data); DeleteObjectsResult& operator=(const std::string& data); bool Quiet() const; const std::list& keyList() const; private: bool quiet_; std::list keyList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/DownloadObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT DownloadObjectRequest : public OssResumableBaseRequest { public: DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath); DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string& checkpointDir, const uint64_t partSize, const uint32_t threadNum); DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string& checkpointDir); const std::string& FilePath() const { return filePath_; } const std::string& TempFilePath() const { return tempFilePath_; } DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath); DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring& checkpointDir, const uint64_t partSize, const uint32_t threadNum); DownloadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring& checkpointDir); const std::wstring& FilePathW() const { return filePathW_; } const std::wstring& TempFilePathW() const { return tempFilePathW_; } std::shared_ptr Content() { return content_; } bool RangeIsSet() const{ return rangeIsSet_; } int64_t RangeStart() const { return range_[0]; } int64_t RangeEnd() const { return range_[1]; } const std::string& ModifiedSinceConstraint() const { return modifiedSince_; } const std::string& UnmodifiedSinceConstraint() const { return unmodifiedSince_; } const std::vector& MatchingETagsConstraint() const { return matchingETags_; } const std::vector& NonmatchingETagsConstraint() const { return nonmatchingETags_;} const std::map& ResponseHeaderParameters() const { return responseHeaderParameters_; } void setRange(int64_t start, int64_t end); void setModifiedSinceConstraint(const std::string& gmt); void setUnmodifiedSinceConstraint(const std::string& gmt); void setMatchingETagConstraints(const std::vector& match); void setNonmatchingETagConstraints(const std::vector& match); void addResponseHeaders(RequestResponseHeader header, const std::string& value); protected: virtual int validate() const; private: bool rangeIsSet_; int64_t range_[2]; std::string modifiedSince_; std::string unmodifiedSince_; std::vector matchingETags_; std::vector nonmatchingETags_; std::string filePath_; std::string tempFilePath_; std::shared_ptr content_; std::map responseHeaderParameters_; std::wstring filePathW_; std::wstring tempFilePathW_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ExtendBucketWormRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ExtendBucketWormRequest : public OssBucketRequest { public: ExtendBucketWormRequest(const std::string& bucket, const std::string& wormId, uint32_t day); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: std::string wormId_; uint32_t day_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GeneratePresignedUrlRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class OssClientImpl; class ALIBABACLOUD_OSS_EXPORT GeneratePresignedUrlRequest { public: GeneratePresignedUrlRequest(const std::string& bucket, const std::string& key); GeneratePresignedUrlRequest(const std::string& bucket, const std::string& key, Http::Method method); void setBucket(const std::string& bucket); void setKey(const std::string& key); void setContentType(const std::string& value); void setContentMd5(const std::string& value); void setExpires(int64_t unixTime); void setProcess(const std::string& process); void setTrafficLimit(uint64_t value); void setVersionId(const std::string& versionId); void setRequestPayer(RequestPayer value); void addResponseHeaders(RequestResponseHeader header, const std::string& value); void addParameter(const std::string& key, const std::string& value); MetaData& UserMetaData(); MetaData& HttpMetaData(); void setUnencodedSlash(bool value); void addAdditionalSignHeader(const std::string& key); private: friend class OssClientImpl; std::string bucket_; std::string key_; Http::Method method_; ObjectMetaData metaData_; ParameterCollection parameters_; bool unencodedSlash_; int64_t expires_; HeaderSet additionalSignHeaders_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GenerateRTMPSignedUrlRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GenerateRTMPSignedUrlRequest: public LiveChannelRequest { public: GenerateRTMPSignedUrlRequest(const std::string& bucket, const std::string& channelName, const std::string& playlist, uint64_t expires); void setExpires(uint64_t expires); void setPlayList(const std::string &playList); const std::string& PlayList() const; uint64_t Expires() const; virtual ParameterCollection Parameters() const; private: std::string playList_; uint64_t expires_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketAclRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketAclRequest: public OssBucketRequest { public: GetBucketAclRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketAclResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketAclResult : public OssResult { public: GetBucketAclResult(); GetBucketAclResult(const std::string& data); GetBucketAclResult(const std::shared_ptr& data); GetBucketAclResult& operator=(const std::string& data); const AlibabaCloud::OSS::Owner& Owner() { return owner_; } CannedAccessControlList Acl()const { return acl_; } private: AlibabaCloud::OSS::Owner owner_; CannedAccessControlList acl_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketCorsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketCorsRequest: public OssBucketRequest { public: GetBucketCorsRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketCorsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketCorsResult : public OssResult { public: GetBucketCorsResult(); GetBucketCorsResult(const std::string& data); GetBucketCorsResult(const std::shared_ptr& data); GetBucketCorsResult& operator=(const std::string& data); const CORSRuleList& CORSRules() const { return ruleList_; }; private: CORSRuleList ruleList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketEncryptionRequest.h ================================================ #pragma once /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketEncryptionRequest : public OssBucketRequest { public: GetBucketEncryptionRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketEncryptionResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketEncryptionResult : public OssResult { public: GetBucketEncryptionResult(); GetBucketEncryptionResult(const std::string& data); GetBucketEncryptionResult(const std::shared_ptr& data); GetBucketEncryptionResult& operator=(const std::string& data); AlibabaCloud::OSS::SSEAlgorithm SSEAlgorithm() const { return SSEAlgorithm_; } const std::string& KMSMasterKeyID() const { return KMSMasterKeyID_; } private: AlibabaCloud::OSS::SSEAlgorithm SSEAlgorithm_; std::string KMSMasterKeyID_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketInfoRequest: public OssBucketRequest { public: GetBucketInfoRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketInfoResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketInfoResult : public OssResult { public: GetBucketInfoResult(); GetBucketInfoResult(const std::string& data); GetBucketInfoResult(const std::shared_ptr& data); GetBucketInfoResult& operator=(const std::string& data); const std::string& Location() const { return location_; } const std::string& Name() const { return name_; } const std::string& CreationDate() const { return creationDate_; } const std::string& IntranetEndpoint() const { return intranetEndpoint_; } const std::string& ExtranetEndpoint() const { return extranetEndpoint_; } AlibabaCloud::OSS::StorageClass StorageClass() const { return storageClass_; } CannedAccessControlList Acl() const { return acl_; } const AlibabaCloud::OSS::Owner& Owner() { return owner_; } AlibabaCloud::OSS::DataRedundancyType DataRedundancyType() const { return dataRedundancyType_; } const std::string& Comment() const { return comment_; } AlibabaCloud::OSS::SSEAlgorithm SSEAlgorithm() { return sseAlgorithm_; } const std::string& KMSMasterKeyID() { return kmsMasterKeyID_; } AlibabaCloud::OSS::VersioningStatus VersioningStatus() { return versioningStatus_; } private: std::string location_; std::string name_; std::string creationDate_; std::string intranetEndpoint_; std::string extranetEndpoint_; AlibabaCloud::OSS::StorageClass storageClass_; CannedAccessControlList acl_; AlibabaCloud::OSS::Owner owner_; AlibabaCloud::OSS::DataRedundancyType dataRedundancyType_; std::string comment_; AlibabaCloud::OSS::SSEAlgorithm sseAlgorithm_; std::string kmsMasterKeyID_; AlibabaCloud::OSS::VersioningStatus versioningStatus_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketInventoryConfigurationRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketInventoryConfigurationRequest : public OssBucketRequest { public: GetBucketInventoryConfigurationRequest(const std::string& bucket); GetBucketInventoryConfigurationRequest(const std::string& bucket, const std::string& id); void setId(const std::string& id) { id_ = id; } protected: virtual ParameterCollection specialParameters() const; private: std::string id_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketInventoryConfigurationResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketInventoryConfigurationResult : public OssResult { public: GetBucketInventoryConfigurationResult(); GetBucketInventoryConfigurationResult(const std::string& data); GetBucketInventoryConfigurationResult(const std::shared_ptr& data); GetBucketInventoryConfigurationResult& operator=(const std::string& data); AlibabaCloud::OSS::InventoryConfiguration InventoryConfiguration()const { return inventoryConfiguration_; } private: AlibabaCloud::OSS::InventoryConfiguration inventoryConfiguration_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLifecycleRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLifecycleRequest: public OssBucketRequest { public: GetBucketLifecycleRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLifecycleResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLifecycleResult : public OssResult { public: GetBucketLifecycleResult(); GetBucketLifecycleResult(const std::string& data); GetBucketLifecycleResult(const std::shared_ptr& data); GetBucketLifecycleResult& operator=(const std::string& data); const LifecycleRuleList& LifecycleRules() { return lifecycleRuleList_; } private: LifecycleRuleList lifecycleRuleList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLocationRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLocationRequest: public OssBucketRequest { public: GetBucketLocationRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLocationResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLocationResult : public OssResult { public: GetBucketLocationResult(); GetBucketLocationResult(const std::string& data); GetBucketLocationResult(const std::shared_ptr& data); GetBucketLocationResult& operator=(const std::string& data); const std::string& Location() const { return location_; } private: std::string location_; public: }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLoggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLoggingRequest: public OssBucketRequest { public: GetBucketLoggingRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketLoggingResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketLoggingResult : public OssResult { public: GetBucketLoggingResult(); GetBucketLoggingResult(const std::string& data); GetBucketLoggingResult(const std::shared_ptr& data); GetBucketLoggingResult& operator=(const std::string& data); const std::string& TargetBucket() const { return targetBucket_; } const std::string& TargetPrefix() const { return targetPrefix_; } private: std::string targetBucket_; std::string targetPrefix_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketPaymentRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketRequestPaymentRequest: public OssBucketRequest { public: GetBucketRequestPaymentRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketPaymentResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketPaymentResult : public OssResult { public: GetBucketPaymentResult(); GetBucketPaymentResult(const std::string& data); GetBucketPaymentResult(const std::shared_ptr& data); GetBucketPaymentResult& operator=(const std::string& data); RequestPayer Payer()const { return payer_; } private: RequestPayer payer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketPolicyRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketPolicyRequest : public OssBucketRequest { public: GetBucketPolicyRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketPolicyResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketPolicyResult : public OssResult { public: GetBucketPolicyResult(); GetBucketPolicyResult(const std::string& data); GetBucketPolicyResult(const std::shared_ptr& data); GetBucketPolicyResult& operator=(const std::string& data); const std::string& Policy()const { return policy_; } private: std::string policy_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketQosInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketQosInfoRequest : public OssBucketRequest { public: GetBucketQosInfoRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketQosInfoResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketQosInfoResult : public OssResult { public: GetBucketQosInfoResult(); GetBucketQosInfoResult(const std::string& data); GetBucketQosInfoResult(const std::shared_ptr& data); GetBucketQosInfoResult& operator=(const std::string& data); const QosConfiguration& QosInfo() const { return qosInfo_; } private: QosConfiguration qosInfo_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketRefererRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketRefererRequest : public OssBucketRequest { public: GetBucketRefererRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketRefererResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketRefererResult : public OssResult { public: GetBucketRefererResult(); GetBucketRefererResult(const std::string& data); GetBucketRefererResult(const std::shared_ptr& data); GetBucketRefererResult& operator=(const std::string& data); const AlibabaCloud::OSS::RefererList& RefererList() const { return refererList_;} bool AllowEmptyReferer() const { return allowEmptyReferer_; } private: AlibabaCloud::OSS::RefererList refererList_; bool allowEmptyReferer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketStatRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketStatRequest: public OssBucketRequest { public: GetBucketStatRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketStatResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketStatResult : public OssResult { public: GetBucketStatResult(); GetBucketStatResult(const std::string& data); GetBucketStatResult(const std::shared_ptr& data); GetBucketStatResult& operator=(const std::string& data); uint64_t Storage() const { return storage_; } uint64_t ObjectCount() const { return objectCount_; } uint64_t MultipartUploadCount() const { return multipartUploadCount_; } uint64_t LiveChannelCount() const { return liveChannelCount_; } uint64_t LastModifiedTime() const { return lastModifiedTime_; } uint64_t StandardStorage() const { return standardStorage_; } uint64_t StandardObjectCount() const { return standardObjectCount_; } uint64_t InfrequentAccessStorage() const { return infrequentAccessStorage_; } uint64_t InfrequentAccessObjectCount() const { return infrequentAccessObjectCount_; } uint64_t ArchiveStorage() const { return archiveStorage_; } uint64_t ArchiveObjectCount() const { return archiveObjectCount_; } uint64_t ColdArchiveStorage() const { return coldArchiveStorage_; } uint64_t ColdArchiveObjectCount() const { return coldArchiveObjectCount_; } private: uint64_t storage_; uint64_t objectCount_; uint64_t multipartUploadCount_; uint64_t liveChannelCount_; uint64_t lastModifiedTime_; uint64_t standardStorage_; uint64_t standardObjectCount_; uint64_t infrequentAccessStorage_; uint64_t infrequentAccessObjectCount_; uint64_t archiveStorage_; uint64_t archiveObjectCount_; uint64_t coldArchiveStorage_; uint64_t coldArchiveObjectCount_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketStorageCapacityRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketStorageCapacityRequest : public OssBucketRequest { public: GetBucketStorageCapacityRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketStorageCapacityResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketStorageCapacityResult : public OssResult { public: GetBucketStorageCapacityResult(); GetBucketStorageCapacityResult(const std::string& data); GetBucketStorageCapacityResult(const std::shared_ptr& data); GetBucketStorageCapacityResult& operator=(const std::string& data); int64_t StorageCapacity() const { return storageCapacity_; } private: int64_t storageCapacity_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketTaggingRequest : public OssBucketRequest { public: GetBucketTaggingRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketTaggingResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketTaggingResult : public OssResult { public: GetBucketTaggingResult(); GetBucketTaggingResult(const std::string& data); GetBucketTaggingResult(const std::shared_ptr& data); GetBucketTaggingResult& operator=(const std::string& data); const AlibabaCloud::OSS::Tagging& Tagging() const { return tagging_; }; private: AlibabaCloud::OSS::Tagging tagging_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketVersioningRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketVersioningRequest: public OssBucketRequest { public: GetBucketVersioningRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketVersioningResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketVersioningResult : public OssResult { public: GetBucketVersioningResult(); GetBucketVersioningResult(const std::string& data); GetBucketVersioningResult(const std::shared_ptr& data); GetBucketVersioningResult& operator=(const std::string& data); VersioningStatus Status() const { return status_; } private: VersioningStatus status_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketWebsiteRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketWebsiteRequest : public OssBucketRequest { public: GetBucketWebsiteRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketWebsiteResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketWebsiteResult: public OssResult { public: GetBucketWebsiteResult(); GetBucketWebsiteResult(const std::string& data); GetBucketWebsiteResult(const std::shared_ptr& data); GetBucketWebsiteResult& operator=(const std::string& data); const std::string& IndexDocument() const { return indexDocument_; } const std::string& ErrorDocument() const { return errorDocument_; } private: std::string indexDocument_; std::string errorDocument_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketWormRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketWormRequest : public OssBucketRequest { public: GetBucketWormRequest(const std::string& bucket); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetBucketWormResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetBucketWormResult : public OssResult { public: GetBucketWormResult(); GetBucketWormResult(const std::string& data); GetBucketWormResult(const std::shared_ptr& data); GetBucketWormResult& operator=(const std::string& data); const std::string& WormId() const { return wormId_; } const std::string& CreationDate() const { return creationDate_; } const std::string& State() const { return state_; } uint32_t Day() const { return day_; } private: std::string wormId_; std::string creationDate_; std::string state_; uint32_t day_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelHistoryRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetLiveChannelHistoryRequest : public LiveChannelRequest { public: GetLiveChannelHistoryRequest(const std::string& bucket, const std::string& channelName); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelHistoryResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include using std::vector; namespace AlibabaCloud { namespace OSS { struct LiveRecord { std::string startTime; std::string endTime; std::string remoteAddr; }; using LiveRecordVec = vector; class ALIBABACLOUD_OSS_EXPORT GetLiveChannelHistoryResult : public OssResult { public: GetLiveChannelHistoryResult(); GetLiveChannelHistoryResult(const std::string& data); GetLiveChannelHistoryResult(const std::shared_ptr& data); GetLiveChannelHistoryResult& operator=(const std::string& data); const LiveRecordVec& LiveRecordList() const; private: LiveRecordVec recordList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetLiveChannelInfoRequest : public LiveChannelRequest { public: GetLiveChannelInfoRequest(const std::string& bucket, const std::string& channelName); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelInfoResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetLiveChannelInfoResult : public OssResult { public: GetLiveChannelInfoResult(); GetLiveChannelInfoResult(const std::string& data); GetLiveChannelInfoResult(const std::shared_ptr& data); GetLiveChannelInfoResult& operator=(const std::string& data); const std::string& Description() const; LiveChannelStatus Status() const; const std::string& Type() const; uint64_t FragDuration() const; uint64_t FragCount() const; const std::string& PlaylistName() const; private: std::string channelType_; LiveChannelStatus status_; std::string description_; std::string playListName_; uint64_t fragDuration_; uint64_t fragCount_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelStatRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetLiveChannelStatRequest : public LiveChannelRequest { public: GetLiveChannelStatRequest(const std::string& bucket, const std::string& channelName); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetLiveChannelStatResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetLiveChannelStatResult : public OssResult { public: GetLiveChannelStatResult(); GetLiveChannelStatResult(const std::string& data); GetLiveChannelStatResult(const std::shared_ptr& data); GetLiveChannelStatResult& operator=(const std::string& data); LiveChannelStatus Status() const; const std::string& ConnectedTime() const; const std::string& RemoteAddr() const; uint32_t Width() const; uint32_t Height() const; uint64_t FrameRate() const; uint64_t VideoBandWidth() const; const std::string& VideoCodec() const; uint64_t SampleRate() const; uint64_t AudioBandWidth() const; const std::string& AudioCodec() const; private: std::string connectedTime_; LiveChannelStatus status_; std::string remoteAddr_; uint32_t width_; uint32_t height_; uint64_t frameRate_; uint64_t videoBandWidth_; std::string videoCodec_; uint64_t sampleRate_; uint64_t audioBandWidth_; std::string audioCodec_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectAclRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectAclRequest: public OssObjectRequest { public: GetObjectAclRequest(const std::string& bucket, const std::string& key); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectAclResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectAclResult : public OssObjectResult { public: GetObjectAclResult(); GetObjectAclResult(const std::string& data); GetObjectAclResult(const std::shared_ptr& data); GetObjectAclResult(const HeaderCollection& headers, const std::shared_ptr& data); GetObjectAclResult& operator=(const std::string& data); const AlibabaCloud::OSS::Owner& Owner() { return owner_; } CannedAccessControlList Acl()const { return acl_; } private: AlibabaCloud::OSS::Owner owner_; CannedAccessControlList acl_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectByUrlRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectByUrlRequest: public ServiceRequest { public: GetObjectByUrlRequest(const std::string& url); GetObjectByUrlRequest(const std::string& url, const ObjectMetaData& metaData); virtual HeaderCollection Headers() const; virtual ParameterCollection Parameters() const; virtual std::shared_ptr Body() const; private: ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectMetaRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectMetaRequest : public OssObjectRequest { public: GetObjectMetaRequest(const std::string& bucket, const std::string& key): OssObjectRequest(bucket, key) { } protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectRequest: public OssObjectRequest { public: GetObjectRequest(const std::string& bucket, const std::string& key); GetObjectRequest(const std::string& bucket, const std::string& key, const std::string& process); GetObjectRequest(const std::string &bucket, const std::string &key, const std::string &modifiedSince, const std::string &unmodifiedSince, const std::vector &matchingETags, const std::vector &nonmatchingETags, const std::map &responseHeaderParameters_); void setRange(int64_t start, int64_t end); void setRange(int64_t start, int64_t end, bool standard); void setModifiedSinceConstraint(const std::string& gmt); void setUnmodifiedSinceConstraint(const std::string& gmt); void setMatchingETagConstraints(const std::vector& match); void addMatchingETagConstraint(const std::string& match); void setNonmatchingETagConstraints(const std::vector& match); void addNonmatchingETagConstraint(const std::string& match); void setProcess(const std::string& process); void addResponseHeaders(RequestResponseHeader header, const std::string& value); void setTrafficLimit(uint64_t value); void setUserAgent(const std::string& ua); std::pair Range() const; protected: virtual HeaderCollection specialHeaders() const ; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: int64_t range_[2]; bool rangeIsSet_; std::string modifiedSince_; std::string unmodifiedSince_; std::vector matchingETags_; std::vector nonmatchingETags_; std::string process_; std::map responseHeaderParameters_; uint64_t trafficLimit_; bool rangeIsStandardMode_; std::string userAgent_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectResult :public OssObjectResult { public: GetObjectResult(); GetObjectResult(const std::string& bucket, const std::string& key, const std::shared_ptr& content, const HeaderCollection& headers); GetObjectResult(const std::string& bucket, const std::string& key, const ObjectMetaData& metaData); const std::string& Bucket() const { return bucket_; } const std::string& Key() const { return key_; } const ObjectMetaData& Metadata() const { return metaData_; } const std::shared_ptr& Content() const { return content_; } void setContent(const std::shared_ptr& content) { content_ = content; } void setMetaData(const ObjectMetaData& meta) { metaData_ = meta; } private: std::string bucket_; std::string key_; ObjectMetaData metaData_; std::shared_ptr content_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectTaggingRequest : public OssObjectRequest { public: GetObjectTaggingRequest(const std::string& bucket, const std::string& key); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetObjectTaggingResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetObjectTaggingResult : public OssObjectResult { public: GetObjectTaggingResult(); GetObjectTaggingResult(const std::string& data); GetObjectTaggingResult(const std::shared_ptr& data); GetObjectTaggingResult(const HeaderCollection& headers, const std::shared_ptr& data); GetObjectTaggingResult& operator=(const std::string& data); const AlibabaCloud::OSS::Tagging& Tagging() const { return tagging_; }; private: AlibabaCloud::OSS::Tagging tagging_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetSymlinkRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetSymlinkRequest: public OssObjectRequest { public: GetSymlinkRequest(const std::string& bucket, const std::string& key); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetSymlinkResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetSymlinkResult : public OssObjectResult { public: public: GetSymlinkResult(); GetSymlinkResult(const std::string& symlink,const std::string& etag); GetSymlinkResult(const HeaderCollection& headers); const std::string& SymlinkTarget() const { return symlink_; } const std::string& ETag() const { return etag_; } private: std::string symlink_; std::string etag_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetUserQosInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetUserQosInfoRequest : public OssRequest { public: GetUserQosInfoRequest(); protected: virtual ParameterCollection specialParameters() const; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetUserQosInfoResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetUserQosInfoResult : public OssResult { public: GetUserQosInfoResult(); GetUserQosInfoResult(const std::string& data); GetUserQosInfoResult(const std::shared_ptr& data); GetUserQosInfoResult& operator=(const std::string& data); const QosConfiguration& QosInfo() const { return qosInfo_; } const std::string& Region() const { return region_; } private: std::string region_; QosConfiguration qosInfo_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetVodPlaylistRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetVodPlaylistRequest : public LiveChannelRequest { public: GetVodPlaylistRequest(const std::string& bucket, const std::string& channelName); GetVodPlaylistRequest(const std::string& bucket, const std::string& channelName, uint64_t startTime, uint64_t endTime); void setStartTime(uint64_t startTime); void setEndTime(uint64_t endTime); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; private: uint64_t startTime_; uint64_t endTime_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/GetVodPlaylistResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT GetVodPlaylistResult: public OssResult { public: GetVodPlaylistResult(); GetVodPlaylistResult(const std::string& data); GetVodPlaylistResult(const std::shared_ptr& data); GetVodPlaylistResult& operator=(const std::string& data); const std::string& PlaylistContent() const; private: std::string playListContent_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/HeadObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT HeadObjectRequest : public OssObjectRequest { public: HeadObjectRequest(const std::string& bucket, const std::string& key): OssObjectRequest(bucket, key) { } }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InitiateBucketWormRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT InitiateBucketWormRequest : public OssBucketRequest { public: InitiateBucketWormRequest(const std::string& bucket, uint32_t day); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: uint32_t day_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InitiateBucketWormResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT InitiateBucketWormResult : public OssResult { public: InitiateBucketWormResult(); InitiateBucketWormResult(const HeaderCollection& header); const std::string& WormId()const { return wormId_; } private: std::string wormId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InitiateMultipartUploadRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT InitiateMultipartUploadRequest: public OssObjectRequest { public: InitiateMultipartUploadRequest(const std::string& bucket, const std::string& key); InitiateMultipartUploadRequest(const std::string& bucket, const std::string& key, const ObjectMetaData& metaData); void setCacheControl(const std::string& value); void setContentDisposition(const std::string& value); void setContentEncoding(const std::string& value); void setExpires(const std::string& value); ObjectMetaData& MetaData(); void setEncodingType(const std::string& encodingType); void setTagging(const std::string& value); void setSequential(bool value); protected: virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; private: ObjectMetaData metaData_; std::string encodingType_; bool encodingTypeIsSet_; bool sequential_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InitiateMultipartUploadResult.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT InitiateMultipartUploadResult :public OssResult { public: InitiateMultipartUploadResult(); InitiateMultipartUploadResult(const std::string& data); InitiateMultipartUploadResult(const std::shared_ptr& data); InitiateMultipartUploadResult& operator=(const std::string& data); const std::string& Bucket() const { return bucket_; } const std::string& Key() const { return key_; } const std::string& UploadId() const { return uploadId_; } const std::string& EncodingType() const { return encodingType_; } private: std::string bucket_; std::string key_; std::string uploadId_; std::string encodingType_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InputFormat.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { enum CompressionType { NONE = 0, GZIP }; enum CSVHeader { None = 0, // there is no csv header Ignore, // we should ignore csv header and should not use csv header in select sql Use // we can use csv header in select sql }; enum JsonType { DOCUMENT = 0, LINES }; class SelectObjectRequest; class CreateSelectObjectMetaRequest; class ALIBABACLOUD_OSS_EXPORT InputFormat { public: void setCompressionType(CompressionType compressionType); void setLineRange(int64_t start, int64_t end); void setSplitRange(int64_t start, int64_t end); const std::string CompressionTypeInfo() const; protected: InputFormat(); friend SelectObjectRequest; friend CreateSelectObjectMetaRequest; virtual int validate() const; virtual std::string toXML(int flag) const = 0; virtual std::string Type() const = 0; std::string RangeToString() const; private: CompressionType compressionType_; bool lineRangeIsSet_; int64_t lineRange_[2]; bool splitRangeIsSet_; int64_t splitRange_[2]; }; class ALIBABACLOUD_OSS_EXPORT CSVInputFormat : public InputFormat { public: CSVInputFormat(); CSVInputFormat(CSVHeader headerInfo, const std::string& recordDelimiter, const std::string& fieldDelimiter, const std::string& quoteChar, const std::string& commentChar); void setHeaderInfo(CSVHeader headerInfo); void setRecordDelimiter(const std::string& recordDelimiter); void setFieldDelimiter(const std::string& fieldDelimiter); void setQuoteChar(const std::string& quoteChar); void setCommentChar(const std::string& commentChar); CSVHeader HeaderInfo() const; const std::string& RecordDelimiter() const; const std::string& FieldDelimiter() const; const std::string& QuoteChar() const; const std::string& CommentChar() const; protected: std::string Type() const; std::string toXML(int flag) const; private: CSVHeader headerInfo_; std::string recordDelimiter_; std::string fieldDelimiter_; std::string quoteChar_; std::string commentChar_; }; class ALIBABACLOUD_OSS_EXPORT JSONInputFormat : public InputFormat { public: JSONInputFormat(); JSONInputFormat(JsonType jsonType); void setJsonType(JsonType jsonType); void setParseJsonNumberAsString(bool parseJsonNumberAsString); JsonType JsonInfo() const; bool ParseJsonNumberAsString() const; protected: std::string Type() const; std::string toXML(int flag) const; private: JsonType jsonType_; bool parseJsonNumberAsString_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/InventoryConfiguration.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT InventoryFilter { public: InventoryFilter(); InventoryFilter(const std::string& prefix); const std::string& Prefix() const { return prefix_; } void setPrefix(const std::string& prefix) { prefix_ = prefix; } private: std::string prefix_; }; class ALIBABACLOUD_OSS_EXPORT InventorySSEOSS { public: InventorySSEOSS(); }; class ALIBABACLOUD_OSS_EXPORT InventorySSEKMS { public: InventorySSEKMS(); InventorySSEKMS(const std::string& key); const std::string& KeyId() const { return keyId_; } void setKeyId(const std::string& key) { keyId_ = key; } private: std::string keyId_; }; class ALIBABACLOUD_OSS_EXPORT InventoryEncryption { public: InventoryEncryption(); InventoryEncryption(const InventorySSEOSS& value); InventoryEncryption(const InventorySSEKMS& value); const InventorySSEOSS& SSEOSS() const { return inventorySSEOSS_; } void setSSEOSS(const InventorySSEOSS& value) { inventorySSEOSS_ = value; inventorySSEOSIsSet_ = true; } bool hasSSEOSS() const { return inventorySSEOSIsSet_; } const InventorySSEKMS& SSEKMS() const { return inventorySSEKMS_; } void setSSEKMS(const InventorySSEKMS& value) { inventorySSEKMS_ = value; inventorySSEKMSIsSet_ = true; } bool hasSSEKMS() const { return inventorySSEKMSIsSet_; } private: InventorySSEOSS inventorySSEOSS_; bool inventorySSEOSIsSet_; InventorySSEKMS inventorySSEKMS_; bool inventorySSEKMSIsSet_; }; class ALIBABACLOUD_OSS_EXPORT InventoryOSSBucketDestination { public: InventoryOSSBucketDestination(); InventoryFormat Format() const { return format_; } const std::string& AccountId() const { return accountId_; } const std::string& RoleArn() const { return roleArn_; } const std::string& Bucket() const { return bucket_; } const std::string& Prefix() const { return prefix_; } const InventoryEncryption& Encryption() const { return encryption_; } void setFormat(InventoryFormat format) { format_ = format; } void setAccountId(const std::string& accountId) { accountId_ = accountId; } void setRoleArn(const std::string& roleArn) { roleArn_ = roleArn; } void setBucket(const std::string& bucket) { bucket_ = bucket; } void setPrefix(const std::string& prefix) { prefix_ = prefix; } void setEncryption(const InventoryEncryption& encryption) { encryption_ = encryption; } private: InventoryFormat format_; std::string accountId_; std::string roleArn_; std::string bucket_; std::string prefix_; InventoryEncryption encryption_; }; class InventoryDestination { public: InventoryDestination() {} InventoryDestination(const InventoryOSSBucketDestination& destination):InventoryOSSBucketDestination_(destination){} const InventoryOSSBucketDestination& OSSBucketDestination() const { return InventoryOSSBucketDestination_; } void setOSSBucketDestination(const InventoryOSSBucketDestination& destination) { InventoryOSSBucketDestination_ = destination; } private: InventoryOSSBucketDestination InventoryOSSBucketDestination_; }; using InventoryOptionalFields = std::vector; class ALIBABACLOUD_OSS_EXPORT InventoryConfiguration { public: InventoryConfiguration(); const std::string& Id() const { return id_; } bool IsEnabled() const { return isEnabled_; } const InventoryFilter& Filter() const { return filter_; } const InventoryDestination& Destination() const { return destination_; } const InventoryFrequency& Schedule() const { return schedule_; } const InventoryIncludedObjectVersions& IncludedObjectVersions() const { return includedObjectVersions_; } const InventoryOptionalFields& OptionalFields() const { return optionalFields_; } void setId(const std::string& id) { id_ = id; } void setIsEnabled(bool isEnabled) { isEnabled_ = isEnabled; } void setFilter(const InventoryFilter& prefix) { filter_ = prefix; } void setDestination(const InventoryDestination& destination) { destination_ = destination; } void setSchedule(const InventoryFrequency& schedule) { schedule_ = schedule; } void setIncludedObjectVersions(const InventoryIncludedObjectVersions& includedObjectVersions) { includedObjectVersions_ = includedObjectVersions; } void setOptionalFields(const InventoryOptionalFields& opt) { optionalFields_ = opt; } private: std::string id_; bool isEnabled_; InventoryFilter filter_; InventoryDestination destination_; InventoryFrequency schedule_; InventoryIncludedObjectVersions includedObjectVersions_; InventoryOptionalFields optionalFields_; }; using InventoryConfigurationList = std::vector; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/LifecycleRule.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT LifeCycleExpiration { public: LifeCycleExpiration(); LifeCycleExpiration(uint32_t days); LifeCycleExpiration(const std::string& createdBeforeDate); void setDays(uint32_t days); void setCreatedBeforeDate(const std::string& date); uint32_t Days() const { return days_; } const std::string& CreatedBeforeDate() const { return createdBeforeDate_; } private: uint32_t days_; std::string createdBeforeDate_; }; class ALIBABACLOUD_OSS_EXPORT LifeCycleTransition { public: LifeCycleTransition() = default; LifeCycleTransition(const LifeCycleExpiration& expiration, AlibabaCloud::OSS::StorageClass storageClass); void setExpiration(const LifeCycleExpiration& expiration); void setStorageClass(AlibabaCloud::OSS::StorageClass storageClass); const LifeCycleExpiration& Expiration() const { return expiration_; } LifeCycleExpiration& Expiration() { return expiration_; } AlibabaCloud::OSS::StorageClass StorageClass() const { return storageClass_; } private: LifeCycleExpiration expiration_; AlibabaCloud::OSS::StorageClass storageClass_; }; using LifeCycleTransitionList = std::vector; class ALIBABACLOUD_OSS_EXPORT LifecycleRule { public: LifecycleRule(); const std::string& ID() const { return id_; } const std::string& Prefix() const { return prefix_; } RuleStatus Status() const { return status_;} const LifeCycleExpiration& Expiration() const { return expiration_; } const LifeCycleTransitionList& TransitionList() const { return transitionList_; } const LifeCycleExpiration& AbortMultipartUpload() const { return abortMultipartUpload_; } LifeCycleExpiration& Expiration() { return expiration_; } LifeCycleTransitionList& TransitionList() { return transitionList_; } LifeCycleExpiration& AbortMultipartUpload() { return abortMultipartUpload_; } const TagSet& Tags() const { return tagSet_; } TagSet& Tags() { return tagSet_; } void setID(const std::string& id) { id_ = id; } void setPrefix(const std::string& prefix) { prefix_ = prefix; } void setStatus(RuleStatus status) { status_ = status; } void setExpiration(const LifeCycleExpiration& expiration) { expiration_ = expiration; } void addTransition(const LifeCycleTransition&transition) { transitionList_.push_back(transition); } void setTransitionList(const LifeCycleTransitionList& transitionList) { transitionList_ = transitionList; } void setAbortMultipartUpload(const LifeCycleExpiration& expiration) { abortMultipartUpload_ = expiration; } void addTag(const Tag& tag) { tagSet_.push_back(tag); } void setTags(const TagSet& tags) { tagSet_ = tags; } bool hasExpiration() const; bool hasTransitionList() const; bool hasAbortMultipartUpload() const; bool operator==(const LifecycleRule& right) const; bool ExpiredObjectDeleteMarker() const { return expiredObjectDeleteMarker_; }; const LifeCycleExpiration& NoncurrentVersionExpiration() const { return noncurrentVersionExpiration_; } const LifeCycleTransitionList& NoncurrentVersionTransitionList() const { return noncurrentVersionTransitionList_; } LifeCycleExpiration& NoncurrentVersionExpiration() { return noncurrentVersionExpiration_; } LifeCycleTransitionList& NoncurrentVersionTransitionList() { return noncurrentVersionTransitionList_; } void setExpiredObjectDeleteMarker(bool value) { expiredObjectDeleteMarker_ = value; }; void setNoncurrentVersionExpiration(const LifeCycleExpiration& expiration) { noncurrentVersionExpiration_ = expiration; } void addNoncurrentVersionTransition(const LifeCycleTransition&transition) { noncurrentVersionTransitionList_.push_back(transition); } void setNoncurrentVersionTransitionList(const LifeCycleTransitionList& transitionList) { noncurrentVersionTransitionList_ = transitionList; } bool hasNoncurrentVersionExpiration() const; bool hasNoncurrentVersionTransitionList() const; private: std::string id_; std::string prefix_; RuleStatus status_; LifeCycleExpiration expiration_; LifeCycleTransitionList transitionList_; LifeCycleExpiration abortMultipartUpload_; TagSet tagSet_; bool expiredObjectDeleteMarker_; LifeCycleExpiration noncurrentVersionExpiration_; LifeCycleTransitionList noncurrentVersionTransitionList_; }; using LifecycleRuleList = std::vector; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListBucketInventoryConfigurationsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListBucketInventoryConfigurationsRequest : public OssBucketRequest { public: ListBucketInventoryConfigurationsRequest(const std::string& bucket); void setContinuationToken(const std::string& token) { continuationToken_ = token; } protected: virtual ParameterCollection specialParameters() const; private: std::string continuationToken_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListBucketInventoryConfigurationsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListBucketInventoryConfigurationsResult : public OssResult { public: ListBucketInventoryConfigurationsResult(); ListBucketInventoryConfigurationsResult(const std::string& data); ListBucketInventoryConfigurationsResult(const std::shared_ptr& data); ListBucketInventoryConfigurationsResult& operator=(const std::string& data); const AlibabaCloud::OSS::InventoryConfigurationList& InventoryConfigurationList()const { return inventoryConfigurationList_; } bool IsTruncated() const { return isTruncated_; } const std::string& NextContinuationToken() const { return nextContinuationToken_; } private: AlibabaCloud::OSS::InventoryConfigurationList inventoryConfigurationList_; bool isTruncated_; std::string nextContinuationToken_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListBucketsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListBucketsRequest: public OssRequest { public: ListBucketsRequest(); ListBucketsRequest(const std::string& prefix, const std::string& marker, int maxKeys = 100); void setPrefix(const std::string& prefix) {prefix_ = prefix; prefixIsSet_ = true;} void setMarker(const std::string& marker) {marker_ = marker; markerIsSet_ = true;} void setMaxKeys(int maxKeys) {maxKeys_ = maxKeys; maxKeysIsSet_ = true;} void setTag(const Tag& tag) { tag_ = tag; tagIsSet = true; } void setRegionList(bool flag) { regionList_ = flag;} protected: virtual ParameterCollection specialParameters() const; private: std::string prefix_; bool prefixIsSet_; std::string marker_; bool markerIsSet_; int maxKeys_; bool maxKeysIsSet_; Tag tag_; bool tagIsSet; bool regionList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListBucketsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "Bucket.h" #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListBucketsResult: public OssResult { public: ListBucketsResult(); ListBucketsResult(const std::string& data); ListBucketsResult(const std::shared_ptr& data); ListBucketsResult& operator=(const std::string& data); const std::string& Prefix() const { return prefix_; } const std::string& Marker() const { return marker_; } const std::string& NextMarker() const { return nextMarker_; } int MaxKeys() const { return maxKeys_; } bool IsTruncated() const { return isTruncated_; } const std::vector& Buckets() const { return buckets_; } private: std::string prefix_; std::string marker_; std::string nextMarker_; bool isTruncated_; int maxKeys_; std::vector buckets_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListLiveChannelRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListLiveChannelRequest: public OssBucketRequest { public: ListLiveChannelRequest(const std::string &bucket); void setMarker(const std::string& marker); void setMaxKeys(uint32_t maxKeys); void setPrefix(const std::string& prefix); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string prefix_; std::string marker_; uint32_t maxKeys_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListLiveChannelResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { struct LiveChannelInfo { std::string name; std::string description; std::string status; std::string lastModified; std::string publishUrl; std::string playUrl; }; using LiveChannelListInfo = std::vector; class ALIBABACLOUD_OSS_EXPORT ListLiveChannelResult: public OssResult { public: ListLiveChannelResult(); ListLiveChannelResult(const std::string& data); ListLiveChannelResult(const std::shared_ptr& data); ListLiveChannelResult& operator=(const std::string& data); const std::string& Prefix() const; const std::string& Marker() const; const std::string& NextMarker() const; bool IsTruncated() const; const LiveChannelListInfo& LiveChannelList() const; uint32_t MaxKeys() const; private: std::string prefix_; std::string marker_; std::string nextMarker_; LiveChannelListInfo liveChannelList_; uint32_t maxKeys_; bool isTruncated_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListMultipartUploadsRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListMultipartUploadsRequest: public OssBucketRequest { public: ListMultipartUploadsRequest(const std::string& bucket); void setDelimiter(const std::string& delimiter); void setMaxUploads(uint32_t maxUploads); void setKeyMarker(const std::string& keyMarker); void setPrefix(const std::string& prefix); void setUploadIdMarker(const std::string& uploadIdMarker); void setEncodingType(const std::string& encodingType); void setRequestPayer(RequestPayer value); protected: virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; private: std::string delimiter_; bool delimiterIsSet_; std::string keyMarker_; bool keyMarkerIsSet_; std::string prefix_; bool prefixIsSet_; std::string uploadIdMarker_; bool uploadIdMarkerIsSet_; std::string encodingType_; bool encodingTypeIsSet_; int maxUploads_; bool maxUploadsIsSet_; RequestPayer requestPayer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListMultipartUploadsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class MultipartUpload { public: MultipartUpload() = default; public: std::string Key; std::string UploadId; std::string Initiated; }; using MultipartUploadList = std::vector; class ALIBABACLOUD_OSS_EXPORT ListMultipartUploadsResult : public OssResult { public: ListMultipartUploadsResult(); ListMultipartUploadsResult(const std::string& data); ListMultipartUploadsResult(const std::shared_ptr& data); ListMultipartUploadsResult& operator=(const std::string& data); const std::string& Bucket() const { return bucket_; } const std::string& KeyMarker() const { return keyMarker_; } const std::string& UploadIdMarker() const { return uploadIdMarker_; } const std::string& EncodingType() const { return encodingType_; } const std::string& NextKeyMarker() const { return nextKeyMarker_; } const std::string& NextUploadIdMarker() const { return nextUploadIdMarker_; } uint32_t MaxUploads() const { return maxUploads_; } bool IsTruncated() const { return isTruncated_; } const CommonPrefixeList& CommonPrefixes() const { return commonPrefixes_; } const AlibabaCloud::OSS::MultipartUploadList& MultipartUploadList() const { return multipartUploadList_; } private: std::string bucket_; std::string keyMarker_; std::string uploadIdMarker_; std::string encodingType_; std::string nextKeyMarker_; std::string nextUploadIdMarker_; uint32_t maxUploads_; bool isTruncated_; CommonPrefixeList commonPrefixes_; AlibabaCloud::OSS::MultipartUploadList multipartUploadList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectVersionsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListObjectVersionsRequest : public OssBucketRequest { public: ListObjectVersionsRequest(const std::string& bucket): OssBucketRequest(bucket), delimiterIsSet_(false), keyMarkerIsSet_(false), maxKeysIsSet_(false), prefixIsSet_(false), encodingTypeIsSet_(false), versionIdMarkerIsSet_(false) { } void setDelimiter(const std::string& delimiter) { delimiter_ = delimiter; delimiterIsSet_ = true; } void setKeyMarker(const std::string& marker) { keyMarker_ = marker; keyMarkerIsSet_ = true;} void setMaxKeys(int maxKeys) {maxKeys_ = maxKeys; maxKeysIsSet_ = true;} void setPrefix(const std::string& prefix) { prefix_ = prefix; prefixIsSet_ = true; } void setEncodingType(const std::string& type) { encodingType_ = type; encodingTypeIsSet_ = true; } void setVersionIdMarker(const std::string& marker) { versionIdMarker_ = marker; versionIdMarkerIsSet_ = true; } protected: virtual ParameterCollection specialParameters() const { ParameterCollection params; params["versions"] = ""; if (delimiterIsSet_) params["delimiter"] = delimiter_; if (keyMarkerIsSet_) params["key-marker"] = keyMarker_; if (maxKeysIsSet_) params["max-keys"] = std::to_string(maxKeys_); if (prefixIsSet_) params["prefix"] = prefix_; if (encodingTypeIsSet_) params["encoding-type"] = encodingType_; if (versionIdMarkerIsSet_) params["version-id-marker"] = versionIdMarker_; return params; } private: std::string delimiter_; bool delimiterIsSet_; std::string keyMarker_; bool keyMarkerIsSet_; int maxKeys_; bool maxKeysIsSet_; std::string prefix_; bool prefixIsSet_; std::string encodingType_; bool encodingTypeIsSet_; std::string versionIdMarker_; bool versionIdMarkerIsSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectVersionsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ListObjectVersionsResult; class ALIBABACLOUD_OSS_EXPORT ObjectVersionSummary { public: ObjectVersionSummary() = default; const std::string& Key() const { return key_; } const std::string& VersionId() const { return versionid_; } const std::string& ETag()const { return eTag_; } const std::string& LastModified() const { return lastModified_; } const std::string& StorageClass() const { return storageClass_; } const std::string& Type() const { return type_; } int64_t Size() const { return size_; } bool IsLatest() const { return isLatest_; } const AlibabaCloud::OSS::Owner& Owner() const { return owner_; } private: friend class ListObjectVersionsResult; std::string key_; std::string versionid_; std::string eTag_; std::string lastModified_; std::string storageClass_; std::string type_; int64_t size_; bool isLatest_; AlibabaCloud::OSS::Owner owner_; }; using ObjectVersionSummaryList = std::vector; class ALIBABACLOUD_OSS_EXPORT DeleteMarkerSummary { public: DeleteMarkerSummary() = default; const std::string& Key() const { return key_; } const std::string& VersionId() const { return versionid_; } const std::string& LastModified() const { return lastModified_; } bool IsLatest() const { return isLatest_; } const AlibabaCloud::OSS::Owner& Owner() const { return owner_; } private: friend class ListObjectVersionsResult; std::string key_; std::string versionid_; std::string lastModified_; bool isLatest_; AlibabaCloud::OSS::Owner owner_; }; using DeleteMarkerSummaryList = std::vector; class ALIBABACLOUD_OSS_EXPORT ListObjectVersionsResult : public OssResult { public: ListObjectVersionsResult(); ListObjectVersionsResult(const std::string& data); ListObjectVersionsResult(const std::shared_ptr& data); ListObjectVersionsResult& operator=(const std::string& data); const std::string& Name() const { return name_; } const std::string& Prefix() const { return prefix_; } const std::string& KeyMarker() const { return keyMarker_; } const std::string& NextKeyMarker() const { return nextKeyMarker_; } const std::string& VersionIdMarker() const { return versionIdMarker_; } const std::string& NextVersionIdMarker() const { return nextVersionIdMarker_; } const std::string& Delimiter() const { return delimiter_; } const std::string& EncodingType() const { return encodingType_; } int MaxKeys() const { return maxKeys_; } bool IsTruncated() const { return isTruncated_; } const CommonPrefixeList& CommonPrefixes() const { return commonPrefixes_; } const ObjectVersionSummaryList& ObjectVersionSummarys() const { return objectVersionSummarys_; } const DeleteMarkerSummaryList& DeleteMarkerSummarys() const { return deleteMarkerSummarys_; } private: std::string name_; std::string prefix_; std::string keyMarker_; std::string nextKeyMarker_; std::string versionIdMarker_; std::string nextVersionIdMarker_; std::string delimiter_; std::string encodingType_; bool isTruncated_; int maxKeys_; CommonPrefixeList commonPrefixes_; ObjectVersionSummaryList objectVersionSummarys_; DeleteMarkerSummaryList deleteMarkerSummarys_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListObjectsRequest: public OssBucketRequest { public: ListObjectsRequest(const std::string& bucket): OssBucketRequest(bucket), delimiterIsSet_(false), markerIsSet_(false), maxKeysIsSet_(false), prefixIsSet_(false), encodingTypeIsSet_(false), requestPayer_(RequestPayer::NotSet) { } void setDelimiter(const std::string& delimiter) { delimiter_ = delimiter; delimiterIsSet_ = true; } void setMarker(const std::string& marker) {marker_ = marker; markerIsSet_ = true;} void setMaxKeys(int maxKeys) {maxKeys_ = maxKeys; maxKeysIsSet_ = true;} void setPrefix(const std::string& prefix) { prefix_ = prefix; prefixIsSet_ = true; } void setEncodingType(const std::string& type) { encodingType_ = type; encodingTypeIsSet_ = true; } void setRequestPayer(RequestPayer value) { requestPayer_ = value; } protected: virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; private: std::string delimiter_; bool delimiterIsSet_; std::string marker_; bool markerIsSet_; int maxKeys_; bool maxKeysIsSet_; std::string prefix_; bool prefixIsSet_; std::string encodingType_; bool encodingTypeIsSet_; RequestPayer requestPayer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ListObjectsResult; class ListObjectsV2Result; class ALIBABACLOUD_OSS_EXPORT ObjectSummary { public: ObjectSummary() = default; const std::string& Key() const { return key_; } const std::string& ETag()const { return eTag_; } int64_t Size() const { return size_; } const std::string& LastModified() const { return lastModified_; } const std::string& StorageClass() const { return storageClass_; } const std::string& Type() const { return type_; } const AlibabaCloud::OSS::Owner& Owner() const { return owner_; } const std::string& RestoreInfo() const { return restoreInfo_; } private: friend class ListObjectsResult; friend class ListObjectsV2Result; std::string key_; std::string eTag_; int64_t size_; std::string lastModified_; std::string storageClass_; std::string type_; AlibabaCloud::OSS::Owner owner_; std::string restoreInfo_; }; using ObjectSummaryList = std::vector; class ALIBABACLOUD_OSS_EXPORT ListObjectsResult : public OssResult { public: ListObjectsResult(); ListObjectsResult(const std::string& data); ListObjectsResult(const std::shared_ptr& data); ListObjectsResult& operator=(const std::string& data); const std::string& Name() const { return name_; } const std::string& Prefix() const { return prefix_; } const std::string& Marker() const { return marker_; } const std::string& NextMarker() const { return nextMarker_; } const std::string& Delimiter() const { return delimiter_; } const std::string& EncodingType() const { return encodingType_; } int MaxKeys() const { return maxKeys_; } bool IsTruncated() const { return isTruncated_; } const CommonPrefixeList& CommonPrefixes() const { return commonPrefixes_; } const ObjectSummaryList& ObjectSummarys() const { return objectSummarys_; } private: std::string name_; std::string prefix_; std::string marker_; std::string delimiter_; std::string nextMarker_; std::string encodingType_; bool isTruncated_; int maxKeys_; CommonPrefixeList commonPrefixes_; ObjectSummaryList objectSummarys_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectsV2Request.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListObjectsV2Request: public OssBucketRequest { public: ListObjectsV2Request(const std::string& bucket): OssBucketRequest(bucket), delimiterIsSet_(false), startAfterIsSet_(false), continuationTokenIsSet_(false), maxKeysIsSet_(false), prefixIsSet_(false), encodingTypeIsSet_(false), fetchOwnerIsSet_(false), requestPayer_(RequestPayer::NotSet) { } void setDelimiter(const std::string& delimiter) { delimiter_ = delimiter; delimiterIsSet_ = true; } void setStartAfter(const std::string& value) { startAfter_ = value; startAfterIsSet_ = true;} void setContinuationToken(const std::string& value) { continuationToken_ = value; continuationTokenIsSet_ = true; } void setMaxKeys(int maxKeys) {maxKeys_ = maxKeys; maxKeysIsSet_ = true;} void setPrefix(const std::string& prefix) { prefix_ = prefix; prefixIsSet_ = true; } void setEncodingType(const std::string& type) { encodingType_ = type; encodingTypeIsSet_ = true; } void setFetchOwner(bool value) { fetchOwner_ = value; fetchOwnerIsSet_ = true; } void setRequestPayer(RequestPayer value) { requestPayer_ = value; } protected: virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; private: std::string delimiter_; bool delimiterIsSet_; std::string startAfter_; bool startAfterIsSet_; std::string continuationToken_; bool continuationTokenIsSet_; int maxKeys_; bool maxKeysIsSet_; std::string prefix_; bool prefixIsSet_; std::string encodingType_; bool encodingTypeIsSet_; bool fetchOwner_; bool fetchOwnerIsSet_; RequestPayer requestPayer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListObjectsV2Result.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListObjectsV2Result : public OssResult { public: ListObjectsV2Result(); ListObjectsV2Result(const std::string& data); ListObjectsV2Result(const std::shared_ptr& data); ListObjectsV2Result& operator=(const std::string& data); const std::string& Name() const { return name_; } const std::string& Prefix() const { return prefix_; } const std::string& StartAfter() const { return startAfter_; } const std::string& ContinuationToken() const { return continuationToken_; } const std::string& NextContinuationToken() const { return nextContinuationToken_; } const std::string& Delimiter() const { return delimiter_; } const std::string& EncodingType() const { return encodingType_; } int MaxKeys() const { return maxKeys_; } int KeyCount() const { return keyCount_; } bool IsTruncated() const { return isTruncated_; } const CommonPrefixeList& CommonPrefixes() const { return commonPrefixes_; } const ObjectSummaryList& ObjectSummarys() const { return objectSummarys_; } private: std::string name_; std::string prefix_; std::string startAfter_; std::string continuationToken_; std::string nextContinuationToken_; std::string delimiter_; std::string encodingType_; int maxKeys_; int keyCount_; bool isTruncated_; CommonPrefixeList commonPrefixes_; ObjectSummaryList objectSummarys_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListPartsRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListPartsRequest: public OssObjectRequest { public: ListPartsRequest(const std::string& bucket, const std::string& key); ListPartsRequest(const std::string& bucket, const std::string& key, const std::string& uploadId); void setUploadId(const std::string& uploadId); void setMaxParts(uint32_t maxParts); void setPartNumberMarker(uint32_t partNumberMarker); void setEncodingType(const std::string& encodingType); protected: virtual ParameterCollection specialParameters() const; private: std::string uploadId_; uint32_t maxParts_; bool maxPartsIsSet_; uint32_t partNumberMarker_; bool partNumberMarkerIsSet_; std::string encodingType_; bool encodingTypeIsSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ListPartsResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ListPartsResult :public OssResult { public: ListPartsResult(); ListPartsResult(const std::string& data); ListPartsResult(const std::shared_ptr& data); ListPartsResult& operator=(const std::string& data); const std::string& Bucket() const; const std::string& Key() const; const std::string& UploadId() const; const std::string& EncodingType() const; uint32_t MaxParts() const; uint32_t PartNumberMarker() const; uint32_t NextPartNumberMarker() const; const AlibabaCloud::OSS::PartList& PartList()const; bool IsTruncated() const; private: std::string uploadId_; uint32_t maxParts_; uint32_t partNumberMarker_; uint32_t nextPartNumberMarker_; std::string encodingType_; std::string key_; std::string bucket_; bool isTruncated_; AlibabaCloud::OSS::PartList partList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/MultiCopyObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT MultiCopyObjectRequest : public OssResumableBaseRequest { public: MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& checkpointDir); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& checkpointDir, const ObjectMetaData& meta); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& checkpointDir, uint64_t partSize, uint32_t threadNum); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& checkpointDir, uint64_t partSize, uint32_t threadNum, const ObjectMetaData& metaData); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::wstring& checkpointDir); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::wstring& checkpointDir, const ObjectMetaData& meta); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::wstring& checkpointDir, uint64_t partSize, uint32_t threadNum); MultiCopyObjectRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::wstring& checkpointDir, uint64_t partSize, uint32_t threadNum, const ObjectMetaData& metaData); const std::string& SrcBucket() const { return srcBucket_; } const std::string& SrcKey() const { return srcKey_; } const std::string& EncodingType() const { return encodingType_; } const ObjectMetaData& MetaData() const { return metaData_; } void setCopySource(const std::string& srcBucket, const std::string& srcObject); void setSourceIfMatchEtag(const std::string& value); void setSourceIfNotMatchEtag(const std::string& value); void setSourceIfUnModifiedSince(const std::string& value); void setSourceIfModifiedSince(const std::string& value); void setMetadataDirective(const CopyActionList& action); void setAcl(const CannedAccessControlList& acl); void setEncodingType(const std::string& type) { encodingType_ = type; } const std::string& SourceIfMatchEtag() const; const std::string& SourceIfNotMatchEtag() const; const std::string& SourceIfUnModifiedSince() const; const std::string& SourceIfModifiedSince() const; protected: virtual int validate() const; private: std::string srcBucket_; std::string srcKey_; std::string encodingType_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/MultipartUploadCryptoContext.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT MultipartUploadCryptoContext { public: MultipartUploadCryptoContext():dataSize_(0), partSize_(0) {} ~MultipartUploadCryptoContext() {} const ContentCryptoMaterial& ContentMaterial() const { return content_; } const std::string& UploadId() const { return uploadId_; } int64_t PartSize() const { return partSize_; } int64_t DataSize() const { return dataSize_; } void setContentMaterial(const ContentCryptoMaterial& content) { content_ = content; } void setUploadId(const std::string& uploadId) { uploadId_ = uploadId; } void setPartSize(int64_t size) { partSize_ = size; } void setDataSize(int64_t size) { dataSize_ = size; } private: ContentCryptoMaterial content_; int64_t dataSize_; int64_t partSize_; std::string uploadId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ObjectCallbackBuilder.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ObjectCallbackBuilder { public: enum Type { URL = 0, JSON }; ObjectCallbackBuilder(const std::string& url, const std::string& body); ObjectCallbackBuilder(const std::string& url, const std::string& body, const std::string& host, Type type); const std::string& CallbackUrl() const { return callbackUrl_; } const std::string& CallbackHost() const { return callbackHost_; } const std::string& CallbackBody() const { return callbackBody_; } Type CallbackBodyType() const { return callbackBodyType_; } void setCallbackUrl(const std::string& url) { callbackUrl_ = url; } void setCallbackHost(const std::string& host) { callbackHost_ = host; } void setCallbackBody(const std::string& body) { callbackBody_ = body; } void setCallbackBodyType(Type type) { callbackBodyType_ = type; } std::string build(); private: std::string callbackUrl_; std::string callbackHost_; std::string callbackBody_; Type callbackBodyType_; }; class ALIBABACLOUD_OSS_EXPORT ObjectCallbackVariableBuilder { public: ObjectCallbackVariableBuilder() {}; const HeaderCollection& CallbackVariable() const { return callbackVariable_; } bool addCallbackVariable(const std::string &key, const std::string& value); std::string build(); private: HeaderCollection callbackVariable_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ObjectMetaData.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ObjectMetaData { public: ObjectMetaData() = default; ObjectMetaData(const HeaderCollection& data); ObjectMetaData& operator=(const HeaderCollection& data); const std::string& LastModified() const; const std::string& ExpirationTime() const; int64_t ContentLength() const ; const std::string& ContentType() const; const std::string& ContentEncoding() const; const std::string& CacheControl() const; const std::string& ContentDisposition() const; const std::string& ETag() const; const std::string& ContentMd5() const; const std::string& ObjectType() const; const std::string& VersionId() const; uint64_t CRC64() const; void setExpirationTime(const std::string& value); void setContentLength(int64_t value); void setContentType(const std::string& value); void setContentEncoding(const std::string& value); void setCacheControl(const std::string& value); void setContentDisposition(const std::string& value); void setETag(const std::string& value); void setContentMd5(const std::string& value); void setCrc64(uint64_t value); void addHeader(const std::string& key, const std::string& value); bool hasHeader(const std::string& key) const; void removeHeader(const std::string& key); MetaData& HttpMetaData(); const MetaData& HttpMetaData() const; void addUserHeader(const std::string& key, const std::string& value); bool hasUserHeader(const std::string& key) const; void removeUserHeader(const std::string& key); MetaData& UserMetaData(); const MetaData& UserMetaData() const; HeaderCollection toHeaderCollection() const; private: MetaData userMetaData_; MetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/OutputFormat.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class SelectObjectRequest; class ALIBABACLOUD_OSS_EXPORT OutputFormat { public: virtual ~OutputFormat() {}; void setKeepAllColumns(bool keepAllColumns); void setOutputRawData(bool outputRawData); void setEnablePayloadCrc(bool enablePayloadCrc); void setOutputHeader(bool outputHeader); bool OutputRawData() const; bool KeepAllColumns() const; bool EnablePayloadCrc() const; bool OutputHeader() const; protected: OutputFormat(); friend SelectObjectRequest; virtual int validate() const; virtual std::string toXML() const = 0; virtual std::string Type() const = 0; private: bool keepAllColumns_; bool outputRawData_; bool enablePayloadCrc_; bool outputHeader_; }; class ALIBABACLOUD_OSS_EXPORT CSVOutputFormat : public OutputFormat { public: CSVOutputFormat(); CSVOutputFormat( const std::string& recordDelimiter, const std::string& fieldDelimiter); void setRecordDelimiter(const std::string& recordDelimiter); void setFieldDelimiter(const std::string& fieldDelimiter); const std::string& RecordDelimiter() const; const std::string& FieldDelimiter() const; protected: virtual std::string toXML() const; virtual std::string Type() const; private: std::string recordDelimiter_; std::string fieldDelimiter_; }; class ALIBABACLOUD_OSS_EXPORT JSONOutputFormat : public OutputFormat { public: JSONOutputFormat(); JSONOutputFormat(const std::string& recordDelimiter); void setRecordDelimiter(const std::string& recordDelimiter); const std::string& RecordDelimiter() const; protected: virtual std::string toXML() const; virtual std::string Type() const; private: std::string recordDelimiter_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/Owner.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Owner { public: Owner() = default; Owner(const std::string& id, const std::string& name) : id_(id), displayName_(name) {} Owner(const Owner& rhs) : id_(rhs.id_), displayName_(rhs.displayName_) {} Owner(Owner&& lhs) : id_(std::move(lhs.id_)), displayName_(std::move(lhs.displayName_)) {} Owner& operator=(const Owner& rhs) { id_ = rhs.id_; displayName_ = rhs.displayName_; return *this; } Owner& operator=(Owner&& lhs) { id_ = std::move(lhs.id_); displayName_ = std::move(lhs.displayName_); return *this; } const std::string& Id() const { return id_; } const std::string& DisplayName() const { return displayName_; }; private: std::string id_; std::string displayName_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/Part.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ListPartsResult; class ResumableUploader; class ResumableCopier; class ALIBABACLOUD_OSS_EXPORT Part { public: Part() :partNumber_(0), size_(0), cRC64_(0) {} Part(int32_t partNumber, const std::string& eTag):partNumber_(partNumber), eTag_(eTag){} int32_t PartNumber() const { return partNumber_; } int64_t Size() const { return size_; } uint64_t CRC64() const { return cRC64_; } const std::string& LastModified() const { return lastModified_; } const std::string& ETag() const { return eTag_; } private: friend class ListPartsResult; friend class ResumableUploader; friend class ResumableCopier; int32_t partNumber_; int64_t size_; uint64_t cRC64_; std::string lastModified_; std::string eTag_; }; using PartList = std::vector; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PostVodPlaylistRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PostVodPlaylistRequest : public LiveChannelRequest { public: PostVodPlaylistRequest(const std::string& bucket, const std::string& channelName, const std::string& playList, uint64_t startTime, uint64_t endTime); void setPlayList(const std::string& playList); void setStartTime(uint64_t startTime); void setEndTime(uint64_t endTime); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string playList_; uint64_t startTime_; uint64_t endTime_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/ProcessObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT ProcessObjectRequest: public OssObjectRequest { public: ProcessObjectRequest(const std::string& bucket, const std::string& key); ProcessObjectRequest(const std::string& bucket, const std::string& key, const std::string& process); void setProcess(const std::string& process); protected: virtual ParameterCollection specialParameters() const; virtual std::string payload() const; private: std::string process_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutLiveChannelRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutLiveChannelRequest : public LiveChannelRequest { public: PutLiveChannelRequest(const std::string& bucket, const std::string& channelName, const std::string& type); void setChannelType(const std::string& type); void setStatus(LiveChannelStatus status); void setDescripition(const std::string& description); void setPlayListName(const std::string& playListName); void setRoleName(const std::string& roleName); void setDestBucket(const std::string& destBucket); void setNotifyTopic(const std::string& notifyTopic); void setFragDuration(uint64_t fragDuration); void setFragCount(uint64_t fragCount); void setInterval(uint64_t interval); protected: virtual ParameterCollection specialParameters() const; virtual std::string payload() const; virtual int validate() const; private: std::string channelType_; std::string description_; std::string playListName_; std::string roleName_; std::string destBucket_; std::string notifyTopic_; LiveChannelStatus status_; uint64_t fragDuration_; uint64_t fragCount_; uint64_t interval_; bool snapshot_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutLiveChannelResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutLiveChannelResult : public OssResult { public: PutLiveChannelResult(); PutLiveChannelResult(const std::string& data); PutLiveChannelResult(const std::shared_ptr& data); PutLiveChannelResult& operator=(const std::string& data); const std::string& PublishUrl() const; const std::string& PlayUrl() const; private: std::string publishUrl_; std::string playUrl_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutLiveChannelStatusRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutLiveChannelStatusRequest : public LiveChannelRequest { public: PutLiveChannelStatusRequest(const std::string& bucket, const std::string& channelName); PutLiveChannelStatusRequest(const std::string& bucket, const std::string& channelName, LiveChannelStatus status); void setStatus(LiveChannelStatus status); protected: virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string channelName_; LiveChannelStatus status_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutObjectByUrlRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutObjectByUrlRequest : public ServiceRequest { public: PutObjectByUrlRequest(const std::string& url, const std::shared_ptr& content); PutObjectByUrlRequest(const std::string& url, const std::shared_ptr& content, const ObjectMetaData& metaData); virtual HeaderCollection Headers() const; virtual ParameterCollection Parameters() const; virtual std::shared_ptr Body() const; private: std::shared_ptr content_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutObjectRequest: public OssObjectRequest { public: PutObjectRequest(const std::string& bucket, const std::string& key, const std::shared_ptr& content); PutObjectRequest(const std::string& bucket, const std::string& key, const std::shared_ptr& content, const ObjectMetaData& meta); void setCacheControl(const std::string& value); void setContentDisposition(const std::string& value); void setContentEncoding(const std::string& value); void setContentMd5(const std::string& value); void setExpires(const std::string& value); void setCallback(const std::string& callback, const std::string& callbackVar = ""); void setTrafficLimit(uint64_t value); void setTagging(const std::string& value); ObjectMetaData& MetaData(); virtual std::shared_ptr Body() const; protected: virtual HeaderCollection specialHeaders() const; virtual int validate() const; private: std::shared_ptr content_; ObjectMetaData metaData_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/PutObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT PutObjectResult :public OssObjectResult { public: PutObjectResult(); PutObjectResult(const HeaderCollection& header); PutObjectResult(const HeaderCollection& header, const std::shared_ptr& content); PutObjectResult(const std::string eTag, const uint64_t crc64) :eTag_(eTag), crc64_(crc64) {} const std::string& ETag() const; uint64_t CRC64(); const std::shared_ptr& Content() const; private: std::string eTag_; uint64_t crc64_; std::shared_ptr content_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/QosConfiguration.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT QosConfiguration { public: QosConfiguration(): totalUploadBandwidth_(-1), intranetUploadBandwidth_(-1), extranetUploadBandwidth_(-1), totalDownloadBandwidth_(-1), intranetDownloadBandwidth_(-1), extranetDownloadBandwidth_(-1), totalQps_(-1), intranetQps_(-1), extranetQps_(-1) { } int64_t TotalUploadBandwidth() const { return totalUploadBandwidth_; } int64_t IntranetUploadBandwidth() const { return intranetUploadBandwidth_; } int64_t ExtranetUploadBandwidth() const { return extranetUploadBandwidth_; } int64_t TotalDownloadBandwidth() const { return totalDownloadBandwidth_; } int64_t IntranetDownloadBandwidth() const { return intranetDownloadBandwidth_; } int64_t ExtranetDownloadBandwidth() const { return extranetDownloadBandwidth_; } int64_t TotalQps() const { return totalQps_; } int64_t IntranetQps() const { return intranetQps_; } int64_t ExtranetQps() const { return extranetQps_; } void setTotalUploadBandwidth(int64_t value) { totalUploadBandwidth_ = value; } void setIntranetUploadBandwidth(int64_t value) { intranetUploadBandwidth_ = value; } void setExtranetUploadBandwidth(int64_t value) { extranetUploadBandwidth_ = value; } void setTotalDownloadBandwidth(int64_t value) { totalDownloadBandwidth_ = value; } void setIntranetDownloadBandwidth(int64_t value) { intranetDownloadBandwidth_ = value; } void setExtranetDownloadBandwidth(int64_t value) { extranetDownloadBandwidth_ = value; } void setTotalQps(int64_t value) { totalQps_ = value; } void setIntranetQps(int64_t value) { intranetQps_ = value; } void setExtranetQps(int64_t value) { extranetQps_ = value; } private: int64_t totalUploadBandwidth_; int64_t intranetUploadBandwidth_; int64_t extranetUploadBandwidth_; int64_t totalDownloadBandwidth_; int64_t intranetDownloadBandwidth_; int64_t extranetDownloadBandwidth_; int64_t totalQps_; int64_t intranetQps_; int64_t extranetQps_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/RestoreObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT RestoreObjectRequest: public OssObjectRequest { public: RestoreObjectRequest(const std::string& bucket, const std::string& key); void setDays(uint32_t days); void setTierType(TierType type); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: uint32_t days_; TierType tierType_; bool tierTypeIsSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/RestoreObjectResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT RestoreObjectResult : public OssObjectResult { public: RestoreObjectResult(); RestoreObjectResult(const HeaderCollection& header); }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SelectObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { enum ExpressionType { SQL, }; class OssClientImpl; class ALIBABACLOUD_OSS_EXPORT SelectObjectRequest : public GetObjectRequest { public: SelectObjectRequest(const std::string& bucket, const std::string& key); void setExpression(const std::string& expression, ExpressionType type = SQL); void setSkippedRecords(bool skipPartialDataRecord, uint64_t maxSkippedRecords); void setInputFormat(InputFormat& inputFormat); void setOutputFormat(OutputFormat& OutputFormat); uint64_t MaxSkippedRecordsAllowed() const; void setResponseStreamFactory(const IOStreamFactory& factory); protected: friend class OssClientImpl; virtual std::string payload() const; virtual int validate() const; virtual ParameterCollection specialParameters() const; int dispose() const; private: ExpressionType expressionType_; std::string expression_; bool skipPartialDataRecord_; uint64_t maxSkippedRecordsAllowed_; InputFormat *inputFormat_; OutputFormat *outputFormat_; mutable std::shared_ptr streamBuffer_; mutable std::shared_ptr upperContent_; IOStreamFactory upperResponseStreamFactory_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketAclRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketAclRequest: public OssBucketRequest { public: SetBucketAclRequest(const std::string& bucket, CannedAccessControlList acl); void setAcl(CannedAccessControlList acl); protected: virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; private: CannedAccessControlList acl_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketCorsRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketCorsRequest : public OssBucketRequest { public: SetBucketCorsRequest(const std::string& bucket); void addCORSRule(const CORSRule& rule); void setCORSRules(const CORSRuleList& rules); void clearCORSRules() { ruleList_.clear(); } const CORSRuleList& CORSRules() const { return ruleList_; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: CORSRuleList ruleList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketEncryptionRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketEncryptionRequest : public OssBucketRequest { public: SetBucketEncryptionRequest(const std::string& bucket, SSEAlgorithm sse = SSEAlgorithm::AES256, const std::string& key = ""); void setSSEAlgorithm(SSEAlgorithm sse); void setKMSMasterKeyID(const std::string& key); protected: virtual ParameterCollection specialParameters() const; virtual std::string payload() const; private: SSEAlgorithm SSEAlgorithm_; std::string KMSMasterKeyID_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketInventoryConfigurationRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketInventoryConfigurationRequest : public OssBucketRequest { public: SetBucketInventoryConfigurationRequest(const std::string& bucket); SetBucketInventoryConfigurationRequest(const std::string& bucket, const InventoryConfiguration& conf); void setInventoryConfiguration(InventoryConfiguration conf); protected: virtual ParameterCollection specialParameters() const; virtual std::string payload() const; private: InventoryConfiguration inventoryConfiguration_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketLifecycleRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketLifecycleRequest : public OssBucketRequest { public: SetBucketLifecycleRequest(const std::string& bucket); void addLifecycleRule(const LifecycleRule& rule) { lifecycleRules_.push_back(rule); } void setLifecycleRules(const LifecycleRuleList& ruleList) { lifecycleRules_= ruleList; } void clearLifecycleRules() { lifecycleRules_.clear(); } const LifecycleRuleList& LifecycleRules() const { return lifecycleRules_; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: LifecycleRuleList lifecycleRules_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketLoggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketLoggingRequest : public OssBucketRequest { public: SetBucketLoggingRequest(const std::string& bucket); SetBucketLoggingRequest(const std::string& bucket, const std::string& targetBucket, const std::string& targetPrefix); void setTargetBucket(const std::string& bucket) { targetBucket_ = bucket; } void setTargetPrefix(const std::string& prefix) { targetPrefix_ = prefix; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string targetBucket_; std::string targetPrefix_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketPaymentRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketRequestPaymentRequest : public OssBucketRequest { public: SetBucketRequestPaymentRequest(const std::string& bucket); SetBucketRequestPaymentRequest(const std::string& bucket, RequestPayer payer); void setRequestPayer(RequestPayer payer) { payer_ = payer; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: RequestPayer payer_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketPolicyRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketPolicyRequest : public OssBucketRequest { public: SetBucketPolicyRequest(const std::string& bucket); SetBucketPolicyRequest(const std::string& bucket, const std::string& policy); void setPolicy(const std::string& policy) { policy_ = policy; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: std::string policy_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketQosInfoRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketQosInfoRequest : public OssBucketRequest { public: SetBucketQosInfoRequest(const std::string& bucket); SetBucketQosInfoRequest(const std::string& bucket, const QosConfiguration& qos); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: QosConfiguration qosInfo_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketRefererRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketRefererRequest : public OssBucketRequest { public: SetBucketRefererRequest(const std::string& bucket); SetBucketRefererRequest(const std::string& bucket, const RefererList& refererList); SetBucketRefererRequest(const std::string& bucket, const RefererList& refererList, bool allowEmptyReferer); void setAllowEmptyReferer(bool allow) { allowEmptyReferer_ = allow; } void addReferer(const std::string& referer) { refererList_.push_back(referer); } void clearRefererList() { refererList_.clear(); } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: bool allowEmptyReferer_; RefererList refererList_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketStorageCapacityRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketStorageCapacityRequest : public OssBucketRequest { public: SetBucketStorageCapacityRequest(const std::string& bucket, int64_t storageCapacity); protected: virtual ParameterCollection specialParameters() const; virtual std::string payload() const; virtual int validate() const; private: int64_t storageCapacity_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketTaggingRequest : public OssBucketRequest { public: SetBucketTaggingRequest(const std::string& bucket); SetBucketTaggingRequest(const std::string& bucket, const Tagging& tagging); void setTagging(const Tagging& tagging); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: Tagging tagging_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketVersioningRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketVersioningRequest : public OssBucketRequest { public: SetBucketVersioningRequest(const std::string& bucket, VersioningStatus status); void setStatus(VersioningStatus status); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; private: VersioningStatus status_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetBucketWebsiteRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetBucketWebsiteRequest : public OssBucketRequest { public: SetBucketWebsiteRequest(const std::string& bucket); void setIndexDocument(const std::string& document) { indexDocument_ = document; indexDocumentIsSet_ = true; } void setErrorDocument(const std::string& document) { errorDocument_ = document; errorDocumentIsSet_ = true; } protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: std::string indexDocument_; bool indexDocumentIsSet_; std::string errorDocument_; bool errorDocumentIsSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetObjectAclRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetObjectAclRequest: public OssObjectRequest { public: SetObjectAclRequest(const std::string& bucket, const std::string& key); SetObjectAclRequest(const std::string& bucket, const std::string& key, CannedAccessControlList acl); void setAcl(CannedAccessControlList acl); protected: virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; private: CannedAccessControlList acl_; bool hasSetAcl_ ; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetObjectAclResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetObjectAclResult : public OssObjectResult { public: SetObjectAclResult(); SetObjectAclResult(const HeaderCollection& header); }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetObjectTaggingRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetObjectTaggingRequest : public OssObjectRequest { public: SetObjectTaggingRequest(const std::string& bucket, const std::string& key); SetObjectTaggingRequest(const std::string& bucket, const std::string& key, const Tagging& tagging); void setTagging(const Tagging& tagging); protected: virtual std::string payload() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: Tagging tagging_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/SetObjectTaggingResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT SetObjectTaggingResult : public OssObjectResult { public: SetObjectTaggingResult(): OssObjectResult() {} SetObjectTaggingResult(const HeaderCollection& headers): OssObjectResult(headers) {} }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/Tagging.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Tag { public: Tag() {}; Tag(const std::string& key, const std::string& value) : key_(key), value_(value) {} void setKey(const std::string& key) { key_ = key; } void setValue(const std::string& value) { value_ = value; } const std::string& Key() const { return key_; } const std::string& Value() const { return value_; } private: std::string key_; std::string value_; }; using TagSet = std::vector; class ALIBABACLOUD_OSS_EXPORT Tagging { public: Tagging() {}; Tagging(const TagSet& tags) { tagSet_ = tags;} const TagSet& Tags() const { return tagSet_; } void setTags(const TagSet& tags) { tagSet_ = tags; } void setTags(TagSet&& tags) { tagSet_ = std::move(tags); } void addTag(const Tag& tag) { tagSet_.push_back(tag) ; } void addTag(Tag&& tag) { tagSet_.push_back(std::move(tag)); } void clear() { tagSet_.clear();} std::string toQueryParameters(); private: TagSet tagSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/UploadObjectRequest.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT UploadObjectRequest : public OssResumableBaseRequest { public: UploadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string& checkpointDir, const uint64_t partSize, const uint32_t threadNum); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string &checkpointDir, const uint64_t partSize, const uint32_t threadNum, const ObjectMetaData& meta); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string& checkpointDir, const ObjectMetaData& meta); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath, const std::string& checkpointDir); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::string& filePath); std::shared_ptr Content(){ return content_; } const std::string& EncodingType() const{return encodingType_;} const std::string& FilePath() const{return filePath_;} const ObjectMetaData& MetaData() const { return metaData_; } ObjectMetaData& MetaData() { return metaData_; } UploadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring& checkpointDir, const uint64_t partSize, const uint32_t threadNum); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring &checkpointDir, const uint64_t partSize, const uint32_t threadNum, const ObjectMetaData& meta); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring& checkpointDir, const ObjectMetaData& meta); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath, const std::wstring& checkpointDir); UploadObjectRequest(const std::string& bucket, const std::string& key, const std::wstring& filePath); const std::wstring& FilePathW() const { return filePathW_; } void setCacheControl(const std::string& value){metaData_.addHeader(Http::CACHE_CONTROL, value);} void setContentDisposition(const std::string& value){metaData_.addHeader(Http::CONTENT_DISPOSITION, value);} void setContentEncoding(const std::string& value){metaData_.addHeader(Http::CONTENT_ENCODING, value);} void setExpires(const std::string& value){metaData_.addHeader(Http::EXPIRES, value);} void setAcl(CannedAccessControlList& acl); void setCallback(const std::string& callback, const std::string& callbackVar = ""); void setEncodingType(const std::string& type) {encodingType_ = type; } void setTagging(const std::string& value); protected: virtual int validate() const; private: std::string filePath_; std::shared_ptr content_; ObjectMetaData metaData_; std::string encodingType_; std::wstring filePathW_; bool isFileExist_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/UploadPartCopyRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT UploadPartCopyRequest: public OssObjectRequest { public: UploadPartCopyRequest(const std::string& bucket, const std::string& key); UploadPartCopyRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey); UploadPartCopyRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& uploadId, int partNumber); UploadPartCopyRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& uploadId, int partNumber, const std::string& sourceIfMatchETag, const std::string& sourceIfNotMatchETag, const std::string& sourceIfModifiedSince, const std::string& sourceIfUnModifiedSince); void setPartNumber(uint32_t partNumber); void setUploadId(const std::string& uploadId); void SetCopySource(const std::string& srcBucket, const std::string& srcKey); void setCopySourceRange(uint64_t begin, uint64_t end); void SetSourceIfMatchETag(const std::string& value); void SetSourceIfNotMatchETag(const std::string& value); void SetSourceIfModifiedSince(const std::string& value); void SetSourceIfUnModifiedSince(const std::string& value); void setTrafficLimit(uint64_t value); protected: virtual ParameterCollection specialParameters() const; virtual HeaderCollection specialHeaders() const; virtual int validate() const; private: std::string uploadId_; std::string sourceBucket_; std::string sourceKey_; uint32_t partNumber_; uint64_t sourceRange_[2]; bool sourceRangeIsSet_; std::string sourceIfMatchETag_; bool sourceIfMatchETagIsSet_; std::string sourceIfNotMatchETag_; bool sourceIfNotMatchETagIsSet_; std::string sourceIfModifiedSince_; bool sourceIfModifiedSinceIsSet_; std::string sourceIfUnModifiedSince_; bool sourceIfUnModifiedSinceIsSet_; uint64_t trafficLimit_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/UploadPartCopyResult.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT UploadPartCopyResult :public OssObjectResult { public: UploadPartCopyResult(); UploadPartCopyResult(const std::string& data); UploadPartCopyResult(const std::shared_ptr& data, const HeaderCollection &header); UploadPartCopyResult& operator=(const std::string& data); const std::string& LastModified() const; const std::string& ETag() const; const std::string& SourceVersionId() { return sourceVersionId_; } private: std::string lastModified_; std::string eTag_; std::string sourceVersionId_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/UploadPartRequest.h ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT UploadPartRequest: public OssObjectRequest { public: UploadPartRequest(const std::string& bucket, const std::string& key, const std::shared_ptr& content); UploadPartRequest(const std::string &bucket, const std::string& key, int partNumber, const std::string& uploadId, const std::shared_ptr& content); virtual std::shared_ptr Body() const; void setPartNumber(int partNumber); void setUploadId(const std::string& uploadId); void setContent(const std::shared_ptr& content); void setConetent(const std::shared_ptr& content); void setContentLength(uint64_t length); void setTrafficLimit(uint64_t value); void setUserAgent(const std::string& ua); void setContentMd5(const std::string& value); int PartNumber() const; protected: virtual HeaderCollection specialHeaders() const; virtual ParameterCollection specialParameters() const; virtual int validate() const; private: int partNumber_; std::string uploadId_; std::shared_ptr content_; uint64_t contentLength_; bool contentLengthIsSet_; uint64_t trafficLimit_; std::string userAgent_; std::string contentMd5_; bool contentMd5IsSet_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/model/VoidResult.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT VoidResult :public OssResult { public: VoidResult() = default; ~VoidResult() = default; private: }; } } ================================================ FILE: sdk/include/alibabacloud/oss/utils/Executor.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Executor { public: Executor(); virtual ~Executor(); virtual void execute(Runnable* task) = 0; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/utils/Outcome.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once namespace AlibabaCloud { namespace OSS { template class Outcome { public: Outcome():success_(false), e_(), r_() { } Outcome(const E& e) :success_(false), e_(e) { } Outcome(const R& r): success_(true), r_(r) { } Outcome(E&& e) : success_(false), e_(std::forward(e)) { } // Error move constructor Outcome(R&& r) : success_(true), r_(std::forward(r)) { } // Result move constructor Outcome(const Outcome& other) : success_(other.success_), e_(other.e_), r_(other.r_) { } Outcome(Outcome&& other): success_(other.success_), e_(std::move(other.e_)), r_(std::move(other.r_)) { //*this = std::move(other); } Outcome& operator=(const Outcome& other) { if (this != &other) { success_ = other.success_; e_ = other.e_; r_ = other.r_; } return *this; } Outcome& operator=(Outcome&& other) { if (this != &other) { success_ = other.success_; r_ = std::move(other.r_); e_ = std::move(other.e_); } return *this; } bool isSuccess()const { return success_; } const E& error()const { return e_; } const R& result()const { return r_; } E& error() { return e_; } R& result() { return r_; } private: bool success_; E e_; R r_; }; } } ================================================ FILE: sdk/include/alibabacloud/oss/utils/Runnable.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class ALIBABACLOUD_OSS_EXPORT Runnable { public: explicit Runnable(const std::function f); void run()const; private: std::function f_; }; } } ================================================ FILE: sdk/src/Config.h.in ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once // version = (major << 16) + (minor << 8) + patch #define ALIBABACLOUD_OSS_VERSION ((@PROJECT_VERSION_MAJOR@ << 16) + (@PROJECT_VERSION_MINOR@ << 8) + @PROJECT_VERSION_PATCH@) #define ALIBABACLOUD_OSS_VERSION_STR "@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_PATCH@" // auto generated by cmake option #cmakedefine OSS_DISABLE_BUCKET #cmakedefine OSS_DISABLE_LIVECHANNEL #cmakedefine OSS_DISABLE_RESUAMABLE #cmakedefine OSS_DISABLE_ENCRYPTION ================================================ FILE: sdk/src/OssClient.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "http/CurlHttpClient.h" #include "OssClientImpl.h" #include #include "utils/LogUtils.h" #include "utils/Crc64.h" using namespace AlibabaCloud::OSS; static bool SdkInitDone = false; bool AlibabaCloud::OSS::IsSdkInitialized() { return SdkInitDone; } void AlibabaCloud::OSS::InitializeSdk() { if (IsSdkInitialized()) return; InitLogInner(); CurlHttpClient::initGlobalState(); SdkInitDone = true; } void AlibabaCloud::OSS::ShutdownSdk() { if (!IsSdkInitialized()) return; CurlHttpClient::cleanupGlobalState(); DeinitLogInner(); SdkInitDone = false; } /////////////////////////////////////////////////////////////////////////////////////////////////////// void AlibabaCloud::OSS::SetLogLevel(LogLevel level) { SetLogLevelInner(level); } void AlibabaCloud::OSS::SetLogCallback(LogCallback callback) { SetLogCallbackInner(callback); } //////////////////////////////////////////////////////////////////////////////////////////////////// uint64_t AlibabaCloud::OSS::ComputeCRC64(uint64_t crc, void *buf, size_t len) { return CRC64::CalcCRC(crc, buf, len); } uint64_t AlibabaCloud::OSS::CombineCRC64(uint64_t crc1, uint64_t crc2, uintmax_t len2) { return CRC64::CombineCRC(crc1, crc2, len2); } /////////////////////////////////////////////////////////////////////////////////////////////////////// OssClient::OssClient(const std::string &endpoint, const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) : OssClient(endpoint, accessKeyId, accessKeySecret, "", configuration) { } OssClient::OssClient(const std::string &endpoint, const std::string & accessKeyId, const std::string & accessKeySecret, const std::string & securityToken, const ClientConfiguration & configuration) : OssClient(endpoint, std::make_shared(accessKeyId, accessKeySecret, securityToken), configuration) { } OssClient::OssClient(const std::string &endpoint, const Credentials &credentials, const ClientConfiguration &configuration) : OssClient(endpoint, std::make_shared(credentials), configuration) { } OssClient::OssClient(const std::string &endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration) : client_(std::make_shared(endpoint, credentialsProvider, configuration)) { } OssClient::~OssClient() { } #if !defined(OSS_DISABLE_BUCKET) ListBucketsOutcome OssClient::ListBuckets() const { return client_->ListBuckets(ListBucketsRequest()); } ListBucketsOutcome OssClient::ListBuckets(const ListBucketsRequest &request) const { return client_->ListBuckets(request); } ListBucketInventoryConfigurationsOutcome OssClient::ListBucketInventoryConfigurations(const ListBucketInventoryConfigurationsRequest& request) const { return client_->ListBucketInventoryConfigurations(request); } CreateBucketOutcome OssClient::CreateBucket(const std::string &bucket, StorageClass storageClass) const { return client_->CreateBucket(CreateBucketRequest(bucket, storageClass)); } CreateBucketOutcome OssClient::CreateBucket(const std::string &bucket, StorageClass storageClass, CannedAccessControlList acl) const { return client_->CreateBucket(CreateBucketRequest(bucket, storageClass, acl)); } CreateBucketOutcome OssClient::CreateBucket(const CreateBucketRequest &request) const { return client_->CreateBucket(request); } VoidOutcome OssClient::SetBucketAcl(const std::string &bucket, CannedAccessControlList acl) const { return client_->SetBucketAcl(SetBucketAclRequest(bucket, acl)); } VoidOutcome OssClient::SetBucketAcl(const SetBucketAclRequest& request) const { return client_->SetBucketAcl(request); } VoidOutcome OssClient::SetBucketLogging(const std::string &bucket, const std::string &targetBucket, const std::string &targetPrefix) const { return client_->SetBucketLogging(SetBucketLoggingRequest(bucket, targetBucket, targetPrefix)); } VoidOutcome OssClient::SetBucketLogging(const SetBucketLoggingRequest& request) const { return client_->SetBucketLogging(request); } VoidOutcome OssClient::SetBucketWebsite(const std::string &bucket, const std::string &indexDocument) const { SetBucketWebsiteRequest request(bucket); request.setIndexDocument(indexDocument); return client_->SetBucketWebsite(request); } VoidOutcome OssClient::SetBucketWebsite(const std::string &bucket, const std::string &indexDocument, const std::string &errorDocument) const { SetBucketWebsiteRequest request(bucket); request.setIndexDocument(indexDocument); request.setErrorDocument(errorDocument); return client_->SetBucketWebsite(request); } VoidOutcome OssClient::SetBucketWebsite(const SetBucketWebsiteRequest& request) const { return client_->SetBucketWebsite(request); } VoidOutcome OssClient::SetBucketReferer(const std::string &bucket, const RefererList &refererList, bool allowEmptyReferer) const { return client_->SetBucketReferer(SetBucketRefererRequest(bucket, refererList, allowEmptyReferer)); } VoidOutcome OssClient::SetBucketReferer(const SetBucketRefererRequest& request) const { return client_->SetBucketReferer(request); } VoidOutcome OssClient::SetBucketLifecycle(const SetBucketLifecycleRequest& request) const { return client_->SetBucketLifecycle(request); } VoidOutcome OssClient::SetBucketCors(const std::string &bucket, const CORSRuleList &rules) const { SetBucketCorsRequest request(bucket); request.setCORSRules(rules); return client_->SetBucketCors(request); } VoidOutcome OssClient::SetBucketCors(const SetBucketCorsRequest& request) const { return client_->SetBucketCors(request); } VoidOutcome OssClient::SetBucketStorageCapacity(const std::string &bucket, int64_t storageCapacity) const { return client_->SetBucketStorageCapacity(SetBucketStorageCapacityRequest(bucket, storageCapacity)); } VoidOutcome OssClient::SetBucketStorageCapacity(const SetBucketStorageCapacityRequest& request) const { return client_->SetBucketStorageCapacity(request); } VoidOutcome OssClient::SetBucketPolicy(const SetBucketPolicyRequest& request) const { return client_->SetBucketPolicy(request); } VoidOutcome OssClient::SetBucketRequestPayment(const SetBucketRequestPaymentRequest& request) const { return client_->SetBucketRequestPayment(request); } VoidOutcome OssClient::SetBucketEncryption(const SetBucketEncryptionRequest& request) const { return client_->SetBucketEncryption(request); } VoidOutcome OssClient::SetBucketTagging(const SetBucketTaggingRequest& request) const { return client_->SetBucketTagging(request); } VoidOutcome OssClient::SetBucketQosInfo(const SetBucketQosInfoRequest& request) const { return client_->SetBucketQosInfo(request); } VoidOutcome OssClient::DeleteBucketPolicy(const DeleteBucketPolicyRequest& request) const { return client_->DeleteBucketPolicy(request); } VoidOutcome OssClient::SetBucketVersioning(const SetBucketVersioningRequest& request) const { return client_->SetBucketVersioning(request); } VoidOutcome OssClient::SetBucketInventoryConfiguration(const SetBucketInventoryConfigurationRequest& request) const { return client_->SetBucketInventoryConfiguration(request); } VoidOutcome OssClient::DeleteBucket(const std::string &bucket) const { return client_->DeleteBucket(DeleteBucketRequest(bucket)); } VoidOutcome OssClient::DeleteBucket(const DeleteBucketRequest &request) const { return client_->DeleteBucket(request); } VoidOutcome OssClient::DeleteBucketLogging(const std::string &bucket) const { return client_->DeleteBucketLogging(DeleteBucketLoggingRequest(bucket)); } VoidOutcome OssClient::DeleteBucketLogging(const DeleteBucketLoggingRequest& request) const { return client_->DeleteBucketLogging(request); } VoidOutcome OssClient::DeleteBucketWebsite(const std::string &bucket) const { return client_->DeleteBucketWebsite(DeleteBucketWebsiteRequest(bucket)); } VoidOutcome OssClient::DeleteBucketWebsite(const DeleteBucketWebsiteRequest& request) const { return client_->DeleteBucketWebsite(request); } VoidOutcome OssClient::DeleteBucketLifecycle(const std::string &bucket) const { return client_->DeleteBucketLifecycle(DeleteBucketLifecycleRequest(bucket)); } VoidOutcome OssClient::DeleteBucketLifecycle(const DeleteBucketLifecycleRequest& request) const { return client_->DeleteBucketLifecycle(request); } VoidOutcome OssClient::DeleteBucketCors(const std::string &bucket) const { return client_->DeleteBucketCors(DeleteBucketCorsRequest(bucket)); } VoidOutcome OssClient::DeleteBucketCors(const DeleteBucketCorsRequest& request) const { return client_->DeleteBucketCors(request); } VoidOutcome OssClient::DeleteBucketEncryption(const DeleteBucketEncryptionRequest& request) const { return client_->DeleteBucketEncryption(request); } VoidOutcome OssClient::DeleteBucketTagging(const DeleteBucketTaggingRequest& request) const { return client_->DeleteBucketTagging(request); } VoidOutcome OssClient::DeleteBucketQosInfo(const DeleteBucketQosInfoRequest& request) const { return client_->DeleteBucketQosInfo(request); } VoidOutcome OssClient::DeleteBucketInventoryConfiguration(const DeleteBucketInventoryConfigurationRequest& request) const { return client_->DeleteBucketInventoryConfiguration(request); } GetBucketAclOutcome OssClient::GetBucketAcl(const std::string &bucket) const { return client_->GetBucketAcl(GetBucketAclRequest(bucket)); } GetBucketAclOutcome OssClient::GetBucketAcl(const GetBucketAclRequest &request) const { return client_->GetBucketAcl(request); } GetBucketLocationOutcome OssClient::GetBucketLocation(const std::string &bucket) const { return client_->GetBucketLocation(GetBucketLocationRequest(bucket)); } GetBucketLocationOutcome OssClient::GetBucketLocation(const GetBucketLocationRequest &request) const { return client_->GetBucketLocation(request); } GetBucketInfoOutcome OssClient::GetBucketInfo(const std::string &bucket) const { return client_->GetBucketInfo(GetBucketInfoRequest(bucket)); } GetBucketInfoOutcome OssClient::GetBucketInfo(const GetBucketInfoRequest &request) const { return client_->GetBucketInfo(request); } GetBucketLoggingOutcome OssClient::GetBucketLogging(const std::string &bucket) const { return client_->GetBucketLogging(GetBucketLoggingRequest(bucket)); } GetBucketLoggingOutcome OssClient::GetBucketLogging(const GetBucketLoggingRequest &request) const { return client_->GetBucketLogging(request); } GetBucketWebsiteOutcome OssClient::GetBucketWebsite(const std::string &bucket) const { return client_->GetBucketWebsite(GetBucketWebsiteRequest(bucket)); } GetBucketWebsiteOutcome OssClient::GetBucketWebsite(const GetBucketWebsiteRequest &request) const { return client_->GetBucketWebsite(request); } GetBucketRefererOutcome OssClient::GetBucketReferer(const std::string &bucket) const { return client_->GetBucketReferer(GetBucketRefererRequest(bucket)); } GetBucketRefererOutcome OssClient::GetBucketReferer(const GetBucketRefererRequest &request) const { return client_->GetBucketReferer(request); } GetBucketLifecycleOutcome OssClient::GetBucketLifecycle(const std::string &bucket) const { return client_->GetBucketLifecycle(GetBucketLifecycleRequest(bucket)); } GetBucketLifecycleOutcome OssClient::GetBucketLifecycle(const GetBucketLifecycleRequest &request) const { return client_->GetBucketLifecycle(request); } GetBucketStatOutcome OssClient::GetBucketStat(const std::string &bucket) const { return client_->GetBucketStat(GetBucketStatRequest(bucket)); } GetBucketStatOutcome OssClient::GetBucketStat(const GetBucketStatRequest &request) const { return client_->GetBucketStat(request); } GetBucketCorsOutcome OssClient::GetBucketCors(const std::string &bucket) const { return client_->GetBucketCors(GetBucketCorsRequest(bucket)); } GetBucketCorsOutcome OssClient::GetBucketCors(const GetBucketCorsRequest &request) const { return client_->GetBucketCors(request); } GetBucketStorageCapacityOutcome OssClient::GetBucketStorageCapacity(const std::string &bucket) const { return client_->GetBucketStorageCapacity(GetBucketStorageCapacityRequest(bucket)); } GetBucketStorageCapacityOutcome OssClient::GetBucketStorageCapacity(const GetBucketStorageCapacityRequest& request) const { return client_->GetBucketStorageCapacity(request); } GetBucketPolicyOutcome OssClient::GetBucketPolicy(const GetBucketPolicyRequest& request) const { return client_->GetBucketPolicy(request); } GetBucketPaymentOutcome OssClient::GetBucketRequestPayment(const GetBucketRequestPaymentRequest& request) const { return client_->GetBucketRequestPayment(request); } GetBucketEncryptionOutcome OssClient::GetBucketEncryption(const GetBucketEncryptionRequest& request) const { return client_->GetBucketEncryption(request); } GetBucketTaggingOutcome OssClient::GetBucketTagging(const GetBucketTaggingRequest& request) const { return client_->GetBucketTagging(request); } GetBucketQosInfoOutcome OssClient::GetBucketQosInfo(const GetBucketQosInfoRequest& request) const { return client_->GetBucketQosInfo(request); } GetUserQosInfoOutcome OssClient::GetUserQosInfo(const GetUserQosInfoRequest& request) const { return client_->GetUserQosInfo(request); } GetBucketVersioningOutcome OssClient::GetBucketVersioning(const GetBucketVersioningRequest& request) const { return client_->GetBucketVersioning(request); } GetBucketInventoryConfigurationOutcome OssClient::GetBucketInventoryConfiguration(const GetBucketInventoryConfigurationRequest& request) const { return client_->GetBucketInventoryConfiguration(request); } InitiateBucketWormOutcome OssClient::InitiateBucketWorm(const InitiateBucketWormRequest& request) const { return client_->InitiateBucketWorm(request); } VoidOutcome OssClient::AbortBucketWorm(const AbortBucketWormRequest& request) const { return client_->AbortBucketWorm(request); } VoidOutcome OssClient::CompleteBucketWorm(const CompleteBucketWormRequest& request) const { return client_->CompleteBucketWorm(request); } VoidOutcome OssClient::ExtendBucketWormWorm(const ExtendBucketWormRequest& request) const { return client_->ExtendBucketWormWorm(request); } GetBucketWormOutcome OssClient::GetBucketWorm(const GetBucketWormRequest& request) const { return client_->GetBucketWorm(request); } #endif ListObjectOutcome OssClient::ListObjects(const std::string &bucket) const { return client_->ListObjects(ListObjectsRequest(bucket)); } ListObjectOutcome OssClient::ListObjects(const std::string &bucket, const std::string &prefix) const { ListObjectsRequest request(bucket); request.setPrefix(prefix); return client_->ListObjects(request); } ListObjectOutcome OssClient::ListObjects(const ListObjectsRequest &request) const { return client_->ListObjects(request); } ListObjectsV2Outcome OssClient::ListObjectsV2(const ListObjectsV2Request& request) const { return client_->ListObjectsV2(request); } ListObjectVersionsOutcome OssClient::ListObjectVersions(const std::string &bucket) const { return client_->ListObjectVersions(ListObjectVersionsRequest(bucket)); } ListObjectVersionsOutcome OssClient::ListObjectVersions(const std::string &bucket, const std::string &prefix) const { ListObjectVersionsRequest request(bucket); request.setPrefix(prefix); return client_->ListObjectVersions(request); } ListObjectVersionsOutcome OssClient::ListObjectVersions(const ListObjectVersionsRequest& request) const { return client_->ListObjectVersions(request); } GetObjectOutcome OssClient::GetObject(const std::string &bucket, const std::string &key) const { return client_->GetObject(GetObjectRequest(bucket, key)); } GetObjectOutcome OssClient::GetObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const { GetObjectRequest request(bucket, key); request.setResponseStreamFactory([=]() { return content; }); return client_->GetObject(request); } GetObjectOutcome OssClient::GetObject(const std::string &bucket, const std::string &key, const std::string &fileToSave) const { GetObjectRequest request(bucket, key); request.setResponseStreamFactory([=]() {return std::make_shared(fileToSave, std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); return client_->GetObject(request); } GetObjectOutcome OssClient::GetObject(const GetObjectRequest &request) const { return client_->GetObject(request); } PutObjectOutcome OssClient::PutObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const { return client_->PutObject(PutObjectRequest(bucket, key, content)); } PutObjectOutcome OssClient::PutObject(const std::string &bucket, const std::string &key, const std::string &fileToUpload) const { std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in|std::ios::binary); return client_->PutObject(PutObjectRequest(bucket, key, content)); } PutObjectOutcome OssClient::PutObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content, const ObjectMetaData &meta) const { return client_->PutObject(PutObjectRequest(bucket, key, content, meta)); } PutObjectOutcome OssClient::PutObject(const std::string &bucket, const std::string &key, const std::string &fileToUpload, const ObjectMetaData &meta) const { std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in | std::ios::binary); return client_->PutObject(PutObjectRequest(bucket, key, content, meta)); } PutObjectOutcome OssClient::PutObject(const PutObjectRequest &request) const { return client_->PutObject(request); } DeleteObjectOutcome OssClient::DeleteObject(const std::string &bucket, const std::string &key) const { return client_->DeleteObject(DeleteObjectRequest(bucket, key)); } DeleteObjectOutcome OssClient::DeleteObject(const DeleteObjectRequest &request) const { return client_->DeleteObject(request); } DeleteObjecstOutcome OssClient::DeleteObjects(const std::string bucket, const DeletedKeyList &keyList) const { DeleteObjectsRequest request(bucket); request.setKeyList(keyList); return client_->DeleteObjects(request); } DeleteObjecstOutcome OssClient::DeleteObjects(const DeleteObjectsRequest &request) const { return client_->DeleteObjects(request); } DeleteObjecVersionstOutcome OssClient::DeleteObjectVersions(const std::string bucket, const ObjectIdentifierList &objectList) const { DeleteObjectVersionsRequest request(bucket); request.setObjects(objectList); return client_->DeleteObjectVersions(request); } DeleteObjecVersionstOutcome OssClient::DeleteObjectVersions(const DeleteObjectVersionsRequest &request) const { return client_->DeleteObjectVersions(request); } ObjectMetaDataOutcome OssClient::HeadObject(const std::string &bucket, const std::string &key) const { return client_->HeadObject(HeadObjectRequest(bucket, key)); } ObjectMetaDataOutcome OssClient::HeadObject(const HeadObjectRequest &request) const { return client_->HeadObject(request); } ObjectMetaDataOutcome OssClient::GetObjectMeta(const std::string &bucket, const std::string &key) const { return client_->GetObjectMeta(GetObjectMetaRequest(bucket, key)); } ObjectMetaDataOutcome OssClient::GetObjectMeta(const GetObjectMetaRequest &request) const { return client_->GetObjectMeta(request); } GetObjectAclOutcome OssClient::GetObjectAcl(const GetObjectAclRequest &request) const { return client_->GetObjectAcl(request); } AppendObjectOutcome OssClient::AppendObject(const AppendObjectRequest &request) const { return client_->AppendObject(request); } CopyObjectOutcome OssClient::CopyObject(const CopyObjectRequest &request) const { return client_->CopyObject(request); } GetSymlinkOutcome OssClient::GetSymlink(const GetSymlinkRequest &request) const { return client_->GetSymlink(request); } GetObjectOutcome OssClient::ProcessObject(const ProcessObjectRequest &request) const { return client_->ProcessObject(request); } RestoreObjectOutcome OssClient::RestoreObject(const std::string &bucket, const std::string &key) const { return client_->RestoreObject(RestoreObjectRequest(bucket, key)); } RestoreObjectOutcome OssClient::RestoreObject(const RestoreObjectRequest &request) const { return client_->RestoreObject(request); } CreateSymlinkOutcome OssClient::CreateSymlink(const CreateSymlinkRequest &request) const { return client_->CreateSymlink(request); } SetObjectAclOutcome OssClient::SetObjectAcl(const SetObjectAclRequest &request) const { return client_->SetObjectAcl(request); } GetObjectOutcome OssClient::SelectObject(const SelectObjectRequest &request) const { return client_->SelectObject(request); } CreateSelectObjectMetaOutcome OssClient::CreateSelectObjectMeta(const CreateSelectObjectMetaRequest &request) const { return client_->CreateSelectObjectMeta(request); } SetObjectTaggingOutcome OssClient::SetObjectTagging(const SetObjectTaggingRequest& request) const { return client_->SetObjectTagging(request); } DeleteObjectTaggingOutcome OssClient::DeleteObjectTagging(const DeleteObjectTaggingRequest& request) const { return client_->DeleteObjectTagging(request); } GetObjectTaggingOutcome OssClient::GetObjectTagging(const GetObjectTaggingRequest& request) const { return client_->GetObjectTagging(request); } StringOutcome OssClient::GeneratePresignedUrl(const GeneratePresignedUrlRequest &request) const { return client_->GeneratePresignedUrl(request); } StringOutcome OssClient::GeneratePresignedUrl(const std::string &bucket, const std::string &key) const { return GeneratePresignedUrl(GeneratePresignedUrlRequest(bucket, key)); } StringOutcome OssClient::GeneratePresignedUrl(const std::string &bucket, const std::string &key, int64_t expires) const { GeneratePresignedUrlRequest request(bucket, key); request.setExpires(expires); return GeneratePresignedUrl(request); } StringOutcome OssClient::GeneratePresignedUrl(const std::string &bucket, const std::string &key, int64_t expires, Http::Method method) const { GeneratePresignedUrlRequest request(bucket, key, method); request.setExpires(expires); return GeneratePresignedUrl(request); } GetObjectOutcome OssClient::GetObjectByUrl(const GetObjectByUrlRequest &request) const { return client_->GetObjectByUrl(request); } GetObjectOutcome OssClient::GetObjectByUrl(const std::string &url) const { return client_->GetObjectByUrl(GetObjectByUrlRequest(url)); } GetObjectOutcome OssClient::GetObjectByUrl(const std::string &url, const std::string &file) const { GetObjectByUrlRequest request(url); request.setResponseStreamFactory([=]() {return std::make_shared(file, std::ios_base::out | std::ios_base::in | std::ios_base::trunc); }); return client_->GetObjectByUrl(request); } PutObjectOutcome OssClient::PutObjectByUrl(const PutObjectByUrlRequest &request) const { return client_->PutObjectByUrl(request); } PutObjectOutcome OssClient::PutObjectByUrl(const std::string &url, const std::string &file) const { std::shared_ptr content = std::make_shared(file, std::ios::in|std::ios::binary); return client_->PutObjectByUrl(PutObjectByUrlRequest(url, content)); } PutObjectOutcome OssClient::PutObjectByUrl(const std::string &url, const std::string &file, const ObjectMetaData &metaData) const { std::shared_ptr content = std::make_shared(file, std::ios::in | std::ios::binary); return client_->PutObjectByUrl(PutObjectByUrlRequest(url, content, metaData)); } PutObjectOutcome OssClient::PutObjectByUrl(const std::string &url, const std::shared_ptr &content) const { return client_->PutObjectByUrl(PutObjectByUrlRequest(url, content)); } PutObjectOutcome OssClient::PutObjectByUrl(const std::string &url, const std::shared_ptr &content, const ObjectMetaData &metaData) const { return client_->PutObjectByUrl(PutObjectByUrlRequest(url, content, metaData)); } InitiateMultipartUploadOutcome OssClient::InitiateMultipartUpload(const InitiateMultipartUploadRequest &request)const { return client_->InitiateMultipartUpload(request); } PutObjectOutcome OssClient::UploadPart(const UploadPartRequest &request) const { return client_->UploadPart(request); } UploadPartCopyOutcome OssClient::UploadPartCopy(const UploadPartCopyRequest &request) const { return client_->UploadPartCopy(request); } CompleteMultipartUploadOutcome OssClient::CompleteMultipartUpload(const CompleteMultipartUploadRequest &request) const { return client_->CompleteMultipartUpload(request); } VoidOutcome OssClient::AbortMultipartUpload(const AbortMultipartUploadRequest &request) const { return client_->AbortMultipartUpload(request); } ListMultipartUploadsOutcome OssClient::ListMultipartUploads(const ListMultipartUploadsRequest &request) const { return client_->ListMultipartUploads(request); } ListPartsOutcome OssClient::ListParts(const ListPartsRequest &request) const { return client_->ListParts(request); } /*Aysnc APIs*/ void OssClient::ListObjectsAsync(const ListObjectsRequest &request, const ListObjectAsyncHandler &handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, client_->ListObjects(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssClient::GetObjectAsync(const GetObjectRequest &request, const GetObjectAsyncHandler &handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, client_->GetObject(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssClient::PutObjectAsync(const PutObjectRequest &request, const PutObjectAsyncHandler &handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, client_->PutObject(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssClient::UploadPartAsync(const UploadPartRequest &request, const UploadPartAsyncHandler &handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, client_->UploadPart(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssClient::UploadPartCopyAsync(const UploadPartCopyRequest &request, const UploadPartCopyAsyncHandler &handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, client_->UploadPartCopy(request), context); }; client_->asyncExecute(new Runnable(fn)); } /*Callable APIs*/ ListObjectOutcomeCallable OssClient::ListObjectsCallable(const ListObjectsRequest &request) const { auto task = std::make_shared>( [this, request]() { return this->ListObjects(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } GetObjectOutcomeCallable OssClient::GetObjectCallable(const GetObjectRequest &request) const { auto task = std::make_shared>( [this, request]() { return this->GetObject(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } PutObjectOutcomeCallable OssClient::PutObjectCallable(const PutObjectRequest &request) const { auto task = std::make_shared>( [this, request]() { return this->PutObject(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } PutObjectOutcomeCallable OssClient::UploadPartCallable(const UploadPartRequest &request) const { auto task = std::make_shared>( [this, request]() { return this->UploadPart(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } UploadPartCopyOutcomeCallable OssClient::UploadPartCopyCallable(const UploadPartCopyRequest &request) const { auto task = std::make_shared>( [this, request]() { return this->UploadPartCopy(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } /*Extended APIs*/ #if !defined(OSS_DISABLE_BUCKET) bool OssClient::DoesBucketExist(const std::string &bucket) const { return client_->GetBucketAcl(GetBucketAclRequest(bucket)).isSuccess(); } #endif bool OssClient::DoesObjectExist(const std::string &bucket, const std::string &key) const { return client_->GetObjectMeta(GetObjectMetaRequest(bucket, key)).isSuccess(); } CopyObjectOutcome OssClient::ModifyObjectMeta(const std::string& bucket, const std::string& key, const ObjectMetaData& meta) { CopyObjectRequest copyRequest(bucket, key, meta); copyRequest.setCopySource(bucket, key); copyRequest.setMetadataDirective(CopyActionList::Replace); return client_->CopyObject(copyRequest); } #if !defined(OSS_DISABLE_LIVECHANNEL) VoidOutcome OssClient::PutLiveChannelStatus(const PutLiveChannelStatusRequest &request) const { return client_->PutLiveChannelStatus(request); } PutLiveChannelOutcome OssClient::PutLiveChannel(const PutLiveChannelRequest &request) const { return client_->PutLiveChannel(request); } VoidOutcome OssClient::PostVodPlaylist(const PostVodPlaylistRequest &request) const { return client_->PostVodPlaylist(request); } GetVodPlaylistOutcome OssClient::GetVodPlaylist(const GetVodPlaylistRequest &request) const { return client_->GetVodPlaylist(request); } GetLiveChannelStatOutcome OssClient::GetLiveChannelStat(const GetLiveChannelStatRequest &request) const { return client_->GetLiveChannelStat(request); } GetLiveChannelInfoOutcome OssClient::GetLiveChannelInfo(const GetLiveChannelInfoRequest &request) const { return client_->GetLiveChannelInfo(request); } GetLiveChannelHistoryOutcome OssClient::GetLiveChannelHistory(const GetLiveChannelHistoryRequest &request) const { return client_->GetLiveChannelHistory(request); } ListLiveChannelOutcome OssClient::ListLiveChannel(const ListLiveChannelRequest &request) const { return client_->ListLiveChannel(request); } VoidOutcome OssClient::DeleteLiveChannel(const DeleteLiveChannelRequest &request) const { return client_->DeleteLiveChannel(request); } StringOutcome OssClient::GenerateRTMPSignedUrl(const GenerateRTMPSignedUrlRequest &request) const { return client_->GenerateRTMPSignedUrl(request); } #endif void OssClient::DisableRequest() { client_->DisableRequest(); } void OssClient::EnableRequest() { client_->EnableRequest(); } #if !defined(OSS_DISABLE_RESUAMABLE) PutObjectOutcome OssClient::ResumableUploadObject(const UploadObjectRequest &request) const { return client_->ResumableUploadObject(request); } CopyObjectOutcome OssClient::ResumableCopyObject(const MultiCopyObjectRequest &request) const { return client_->ResumableCopyObject(request); } GetObjectOutcome OssClient::ResumableDownloadObject(const DownloadObjectRequest &request) const { return client_->ResumableDownloadObject(request); } #endif /*Others*/ void OssClient::SetRegion(const std::string& region) { return client_->SetRegion(region); } void OssClient::SetCloudBoxId(const std::string& cloudboxId) { return client_->SetCloudBoxId(cloudboxId); } ================================================ FILE: sdk/src/OssClientImpl.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include #include "utils/Utils.h" #include "utils/SignUtils.h" #include "utils/ThreadExecutor.h" #include "signer/Signer.h" #include "signer/HmacSha1Signer.h" #include "OssClientImpl.h" #include "utils/LogUtils.h" #include "utils/FileSystemUtils.h" #if !defined(OSS_DISABLE_RESUAMABLE) #include "resumable/ResumableUploader.h" #include "resumable/ResumableDownloader.h" #include "resumable/ResumableCopier.h" #endif using namespace AlibabaCloud::OSS; using namespace tinyxml2; namespace { const std::string SERVICE_NAME = "OSS"; const char *TAG = "OssClientImpl"; const std::string DEFAULT_PRODUCT_NAME = "oss"; const std::string CLOUDBOX_PRODUCT_NAME = "oss-cloudbox"; } OssClientImpl::OssClientImpl(const std::string &endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration) : Client(SERVICE_NAME, configuration), endpoint_(endpoint), credentialsProvider_(credentialsProvider), signer_(Signer::createSigner(configuration.signatureVersion)), executor_(configuration.executor ? configuration.executor :std::make_shared()), isValidEndpoint_(IsValidEndpoint(endpoint)) { } OssClientImpl::~OssClientImpl() { } int OssClientImpl::asyncExecute(Runnable * r) const { if (executor_ == nullptr) return 1; executor_->execute(r); return 0; } std::shared_ptr OssClientImpl::buildHttpRequest(const std::string & endpoint, const ServiceRequest & msg, Http::Method method) const { auto httpRequest = std::make_shared(method); auto calcContentMD5 = !!(msg.Flags()&REQUEST_FLAG_CONTENTMD5); auto paramInPath = !!(msg.Flags()&REQUEST_FLAG_PARAM_IN_PATH); httpRequest->setResponseStreamFactory(msg.ResponseStreamFactory()); addHeaders(httpRequest, msg.Headers()); addBody(httpRequest, msg.Body(), calcContentMD5); if (paramInPath) { httpRequest->setUrl(Url(msg.Path())); } else { addSignInfo(httpRequest, msg); addUrl(httpRequest, endpoint, msg); } addOther(httpRequest, msg); return httpRequest; } bool OssClientImpl::hasResponseError(const std::shared_ptr&response) const { if (BASE::hasResponseError(response)) { return true; } //check crc64 if (response->request().hasCheckCrc64() && !response->request().hasHeader(Http::RANGE) && response->hasHeader("x-oss-hash-crc64ecma")) { uint64_t clientCrc64 = response->request().Crc64Result(); uint64_t serverCrc64 = std::strtoull(response->Header("x-oss-hash-crc64ecma").c_str(), nullptr, 10); if (clientCrc64 != serverCrc64) { response->setStatusCode(ERROR_CRC_INCONSISTENT); std::stringstream ss; ss << "Crc64 validation failed. Expected hash:" << serverCrc64 << " not equal to calculated hash:" << clientCrc64 << ". Transferd bytes:" << response->request().TransferedBytes() << ". RequestId:" << response->Header("x-oss-request-id").c_str(); response->setStatusMsg(ss.str().c_str()); return true; } } //check Calback if (response->statusCode() == 203 && (response->request().hasHeader("x-oss-callback") || (response->request().url().query().find("callback=") != std::string::npos))) { return true; } return false; } void OssClientImpl::addHeaders(const std::shared_ptr &httpRequest, const HeaderCollection &headers) const { for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } //common headers httpRequest->addHeader(Http::USER_AGENT, configuration().userAgent); } void OssClientImpl::addBody(const std::shared_ptr &httpRequest, const std::shared_ptr& body, bool contentMd5) const { if (body == nullptr) { Http::Method methold = httpRequest->method(); if (methold == Http::Method::Get || methold == Http::Method::Post) { httpRequest->setHeader(Http::CONTENT_LENGTH, "0"); } else { httpRequest->removeHeader(Http::CONTENT_LENGTH); } } if ((body != nullptr) && !httpRequest->hasHeader(Http::CONTENT_LENGTH)) { auto streamSize = GetIOStreamLength(*body); httpRequest->setHeader(Http::CONTENT_LENGTH, std::to_string(streamSize)); } if (contentMd5 && body && !httpRequest->hasHeader(Http::CONTENT_MD5)) { auto md5 = ComputeContentMD5(*body); httpRequest->setHeader(Http::CONTENT_MD5, md5); } httpRequest->addBody(body); } void OssClientImpl::addSignInfo(const std::shared_ptr &httpRequest, const ServiceRequest &request) const { auto credentials = credentialsProvider_->getCredentials(); auto parameters = request.Parameters(); auto ossRequest = static_cast(request); auto bucket = ossRequest.bucket(); auto key = ossRequest.key(); auto region = region_; auto product = DEFAULT_PRODUCT_NAME; auto t = std::time(nullptr) + getRequestDateOffset(); if (!cloudboxId_.empty()) { region = cloudboxId_; product = CLOUDBOX_PRODUCT_NAME; } if (httpRequest->hasHeader("x-oss-date")) { t = ToUnixTime(httpRequest->Header("x-oss-date"), "%a, %d %b %Y %H:%M:%S GMT"); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signer_->sign(httpRequest, parameters, signerParam); } void OssClientImpl::addUrl(const std::shared_ptr &httpRequest, const std::string &endpoint, const ServiceRequest &request) const { const OssRequest& ossRequest = static_cast(request); auto host = CombineHostString(endpoint, ossRequest.bucket(), configuration().isCname, configuration().isPathStyle); auto path = CombinePathString(endpoint, ossRequest.bucket(), ossRequest.key(), configuration().isPathStyle); Url url(host); url.setPath(path); OSS_LOG(LogLevel::LogDebug, TAG, "client(%p) request(%p) host:%s, path:%s", this, httpRequest.get(), host.c_str(), path.c_str()); auto parameters = request.Parameters(); if (!parameters.empty()) { std::stringstream queryString; for (const auto &p : parameters) { if (p.second.empty()) queryString << "&" << UrlEncode(p.first); else queryString << "&" << UrlEncode(p.first) << "=" << UrlEncode(p.second); } url.setQuery(queryString.str().substr(1)); } httpRequest->setUrl(url); } void OssClientImpl::addOther(const std::shared_ptr &httpRequest, const ServiceRequest &request) const { //progress httpRequest->setTransferProgress(request.TransferProgress()); //crc64 check auto checkCRC64 = !!(request.Flags()&REQUEST_FLAG_CHECK_CRC64); if (configuration().enableCrc64 && checkCRC64 ) { httpRequest->setCheckCrc64(true); #ifdef ENABLE_OSS_TEST if (!!(request.Flags()&0x80000000)) { httpRequest->addHeader("oss-test-crc64", "1"); } #endif } // if use chunked encoding mode if (request.Flags() & REQUEST_FLAG_CHUNKED_ENCODING) { httpRequest->setChunkedEncoding(true); } } OssError OssClientImpl::buildError(const Error &error) const { OssError err; if (((error.Status() == 203) || (error.Status() > 299 && error.Status() < 600)) && !error.Message().empty()) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(error.Message().c_str(), error.Message().size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("Error", root->Name(), 5)) { XMLElement *node; node = root->FirstChildElement("Code"); err.setCode(node ? node->GetText(): ""); node = root->FirstChildElement("Message"); err.setMessage(node ? node->GetText(): ""); node = root->FirstChildElement("RequestId"); err.setRequestId(node ? node->GetText(): ""); node = root->FirstChildElement("HostId"); err.setHost(node ? node->GetText(): ""); } else { err.setCode("ParseXMLError"); err.setMessage("Xml format invalid, root node name is not Error. the content is:\n" + error.Message()); } } else { std::stringstream ss; ss << "ParseXMLError:" << xml_err; err.setCode(ss.str()); err.setMessage(XMLDocument::ErrorIDToName(xml_err)); } } else { err.setCode(error.Code()); err.setMessage(error.Message()); } //get from header if body has nothing if (err.RequestId().empty()) { auto it = error.Headers().find("x-oss-request-id"); if (it != error.Headers().end()) { err.setRequestId(it->second); } } return err; } ServiceResult OssClientImpl::buildResult(const OssRequest &request, const std::shared_ptr &httpResponse) const { ServiceResult result; auto flag = request.Flags(); if ((flag & REQUEST_FLAG_CHECK_CRC64) && (flag & REQUEST_FLAG_SAVE_CLIENT_CRC64)) { httpResponse->addHeader("x-oss-hash-crc64ecma-by-client", std::to_string(httpResponse->request().Crc64Result())); } result.setRequestId(httpResponse->Header("x-oss-request-id")); result.setPlayload(httpResponse->Body()); result.setResponseCode(httpResponse->statusCode()); result.setHeaderCollection(httpResponse->Headers()); return result; } OssOutcome OssClientImpl::MakeRequest(const OssRequest &request, Http::Method method) const { int ret = request.validate(); if (ret != 0) { return OssOutcome(OssError("ValidateError", request.validateMessage(ret))); } if (!isValidEndpoint_) { return OssOutcome(OssError("ValidateError", "The endpoint is invalid.")); } auto outcome = BASE::AttemptRequest(endpoint_, request, method); if (outcome.isSuccess()) { return OssOutcome(buildResult(request, outcome.result())); } else { return OssOutcome(buildError(outcome.error())); } } #if !defined(OSS_DISABLE_BUCKET) ListBucketsOutcome OssClientImpl::ListBuckets(const ListBucketsRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { ListBucketsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListBucketsOutcome(std::move(result)) : ListBucketsOutcome(OssError("ParseXMLError", "Parsing ListBuckets result fail.")); } else { return ListBucketsOutcome(outcome.error()); } } CreateBucketOutcome OssClientImpl::CreateBucket(const CreateBucketRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return CreateBucketOutcome(Bucket()); } else { return CreateBucketOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketAcl(const SetBucketAclRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketLogging(const SetBucketLoggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketWebsite(const SetBucketWebsiteRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketReferer(const SetBucketRefererRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketLifecycle(const SetBucketLifecycleRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketCors(const SetBucketCorsRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketStorageCapacity(const SetBucketStorageCapacityRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketPolicy(const SetBucketPolicyRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketRequestPayment(const SetBucketRequestPaymentRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome AlibabaCloud::OSS::OssClientImpl::SetBucketEncryption(const SetBucketEncryptionRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketTagging(const SetBucketTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketQosInfo(const SetBucketQosInfoRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketVersioning(const SetBucketVersioningRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::SetBucketInventoryConfiguration(const SetBucketInventoryConfigurationRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucket(const DeleteBucketRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketLogging(const DeleteBucketLoggingRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketWebsite(const DeleteBucketWebsiteRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketLifecycle(const DeleteBucketLifecycleRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketCors(const DeleteBucketCorsRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketPolicy(const DeleteBucketPolicyRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketEncryption(const DeleteBucketEncryptionRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketTagging(const DeleteBucketTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketQosInfo(const DeleteBucketQosInfoRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteBucketInventoryConfiguration(const DeleteBucketInventoryConfigurationRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } GetBucketAclOutcome OssClientImpl::GetBucketAcl(const GetBucketAclRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketAclResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketAclOutcome(std::move(result)) : GetBucketAclOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketAclOutcome(outcome.error()); } } GetBucketLocationOutcome OssClientImpl::GetBucketLocation(const GetBucketLocationRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketLocationResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketLocationOutcome(std::move(result)) : GetBucketLocationOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketLocationOutcome(outcome.error()); } } GetBucketInfoOutcome OssClientImpl::GetBucketInfo(const GetBucketInfoRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketInfoResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketInfoOutcome(std::move(result)) : GetBucketInfoOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketInfoOutcome(outcome.error()); } } GetBucketLoggingOutcome OssClientImpl::GetBucketLogging(const GetBucketLoggingRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketLoggingResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketLoggingOutcome(std::move(result)) : GetBucketLoggingOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketLoggingOutcome(outcome.error()); } } GetBucketWebsiteOutcome OssClientImpl::GetBucketWebsite(const GetBucketWebsiteRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketWebsiteResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketWebsiteOutcome(std::move(result)) : GetBucketWebsiteOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketWebsiteOutcome(outcome.error()); } } GetBucketRefererOutcome OssClientImpl::GetBucketReferer(const GetBucketRefererRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketRefererResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketRefererOutcome(std::move(result)) : GetBucketRefererOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketRefererOutcome(outcome.error()); } } GetBucketLifecycleOutcome OssClientImpl::GetBucketLifecycle(const GetBucketLifecycleRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketLifecycleResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketLifecycleOutcome(std::move(result)) : GetBucketLifecycleOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketLifecycleOutcome(outcome.error()); } } GetBucketStatOutcome OssClientImpl::GetBucketStat(const GetBucketStatRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketStatResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketStatOutcome(std::move(result)) : GetBucketStatOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketStatOutcome(outcome.error()); } } GetBucketCorsOutcome OssClientImpl::GetBucketCors(const GetBucketCorsRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketCorsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketCorsOutcome(std::move(result)) : GetBucketCorsOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketCorsOutcome(outcome.error()); } } GetBucketStorageCapacityOutcome OssClientImpl::GetBucketStorageCapacity(const GetBucketStorageCapacityRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketStorageCapacityResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketStorageCapacityOutcome(std::move(result)) : GetBucketStorageCapacityOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketStorageCapacityOutcome(outcome.error()); } } GetBucketPolicyOutcome OssClientImpl::GetBucketPolicy(const GetBucketPolicyRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketPolicyResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketPolicyOutcome(std::move(result)) : GetBucketPolicyOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return GetBucketPolicyOutcome(outcome.error()); } } GetBucketPaymentOutcome OssClientImpl::GetBucketRequestPayment(const GetBucketRequestPaymentRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketPaymentResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketPaymentOutcome(std::move(result)) : GetBucketPaymentOutcome(OssError("ParseXMLError", "Parsing GetBucketPayment result fail.")); } else { return GetBucketPaymentOutcome(outcome.error()); } } GetBucketEncryptionOutcome OssClientImpl::GetBucketEncryption(const GetBucketEncryptionRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketEncryptionResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketEncryptionOutcome(std::move(result)) : GetBucketEncryptionOutcome(OssError("ParseXMLError", "Parsing GetBucketEncryption result fail.")); } else { return GetBucketEncryptionOutcome(outcome.error()); } } GetBucketTaggingOutcome OssClientImpl::GetBucketTagging(const GetBucketTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketTaggingResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketTaggingOutcome(std::move(result)) : GetBucketTaggingOutcome(OssError("ParseXMLError", "Parsing GetBucketTagging result fail.")); } else { return GetBucketTaggingOutcome(outcome.error()); } } GetBucketQosInfoOutcome OssClientImpl::GetBucketQosInfo(const GetBucketQosInfoRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketQosInfoResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketQosInfoOutcome(std::move(result)) : GetBucketQosInfoOutcome(OssError("ParseXMLError", "Parsing GetBucketQosInfo result fail.")); } else { return GetBucketQosInfoOutcome(outcome.error()); } } GetUserQosInfoOutcome OssClientImpl::GetUserQosInfo(const GetUserQosInfoRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetUserQosInfoResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetUserQosInfoOutcome(std::move(result)) : GetUserQosInfoOutcome(OssError("ParseXMLError", "Parsing GetUserQosInfo result fail.")); } else { return GetUserQosInfoOutcome(outcome.error()); } } GetBucketVersioningOutcome OssClientImpl::GetBucketVersioning(const GetBucketVersioningRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketVersioningResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketVersioningOutcome(std::move(result)) : GetBucketVersioningOutcome(OssError("ParseXMLError", "Parsing GetBucketVersioning result fail.")); } else { return GetBucketVersioningOutcome(outcome.error()); } } GetBucketInventoryConfigurationOutcome OssClientImpl::GetBucketInventoryConfiguration(const GetBucketInventoryConfigurationRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketInventoryConfigurationResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketInventoryConfigurationOutcome(std::move(result)) : GetBucketInventoryConfigurationOutcome(OssError("ParseXMLError", "Parsing GetBucketInventoryConfiguration result fail.")); } else { return GetBucketInventoryConfigurationOutcome(outcome.error()); } } ListBucketInventoryConfigurationsOutcome OssClientImpl::ListBucketInventoryConfigurations(const ListBucketInventoryConfigurationsRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { ListBucketInventoryConfigurationsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListBucketInventoryConfigurationsOutcome(std::move(result)) : ListBucketInventoryConfigurationsOutcome(OssError("ParseXMLError", "Parsing ListBucketInventoryConfigurations result fail.")); } else { return ListBucketInventoryConfigurationsOutcome(outcome.error()); } } InitiateBucketWormOutcome OssClientImpl::InitiateBucketWorm(const InitiateBucketWormRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { return InitiateBucketWormOutcome(InitiateBucketWormResult(outcome.result().headerCollection())); } else { return InitiateBucketWormOutcome(outcome.error()); } } VoidOutcome OssClientImpl::AbortBucketWorm(const AbortBucketWormRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::CompleteBucketWorm(const CompleteBucketWormRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } VoidOutcome OssClientImpl::ExtendBucketWormWorm(const ExtendBucketWormRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } GetBucketWormOutcome OssClientImpl::GetBucketWorm(const GetBucketWormRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetBucketWormResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? GetBucketWormOutcome(std::move(result)) : GetBucketWormOutcome(OssError("ParseXMLError", "Parsing GetBucketWorm result fail.")); } else { return GetBucketWormOutcome(outcome.error()); } } #endif ListObjectOutcome OssClientImpl::ListObjects(const ListObjectsRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { ListObjectsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListObjectOutcome(std::move(result)) : ListObjectOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); } else { return ListObjectOutcome(outcome.error()); } } ListObjectsV2Outcome OssClientImpl::ListObjectsV2(const ListObjectsV2Request &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { ListObjectsV2Result result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListObjectsV2Outcome(std::move(result)) : ListObjectsV2Outcome(OssError("ParseXMLError", "Parsing ListObjectV2 result fail.")); } else { return ListObjectsV2Outcome(outcome.error()); } } ListObjectVersionsOutcome OssClientImpl::ListObjectVersions(const ListObjectVersionsRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { ListObjectVersionsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListObjectVersionsOutcome(std::move(result)) : ListObjectVersionsOutcome(OssError("ParseXMLError", "Parsing ListObjectVersions result fail.")); } else { return ListObjectVersionsOutcome(outcome.error()); } } #undef GetObject GetObjectOutcome OssClientImpl::GetObject(const GetObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { return GetObjectOutcome(GetObjectResult(request.Bucket(), request.Key(), outcome.result().payload(),outcome.result().headerCollection())); } else { return GetObjectOutcome(outcome.error()); } } PutObjectOutcome OssClientImpl::PutObject(const PutObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return PutObjectOutcome(PutObjectResult(outcome.result().headerCollection(), outcome.result().payload())); } else { return PutObjectOutcome(outcome.error()); } } DeleteObjectOutcome OssClientImpl::DeleteObject(const DeleteObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { return DeleteObjectOutcome(DeleteObjectResult(outcome.result().headerCollection())); } else { return DeleteObjectOutcome(outcome.error()); } } DeleteObjecstOutcome OssClientImpl::DeleteObjects(const DeleteObjectsRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { DeleteObjectsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? DeleteObjecstOutcome(std::move(result)) : DeleteObjecstOutcome(OssError("ParseXMLError", "Parsing DeleteObjects result fail.")); } else { return DeleteObjecstOutcome(outcome.error()); } } DeleteObjecVersionstOutcome OssClientImpl::DeleteObjectVersions(const DeleteObjectVersionsRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { DeleteObjectVersionsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? DeleteObjecVersionstOutcome(std::move(result)) : DeleteObjecVersionstOutcome(OssError("ParseXMLError", "Parsing DeleteObjectVersions result fail.")); } else { return DeleteObjecVersionstOutcome(outcome.error()); } } ObjectMetaDataOutcome OssClientImpl::HeadObject(const HeadObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Head); if (outcome.isSuccess()) { ObjectMetaData metaData = outcome.result().headerCollection(); return ObjectMetaDataOutcome(std::move(metaData)); } else { return ObjectMetaDataOutcome(outcome.error()); } } ObjectMetaDataOutcome OssClientImpl::GetObjectMeta(const GetObjectMetaRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Head); if (outcome.isSuccess()) { ObjectMetaData metaData = outcome.result().headerCollection(); return ObjectMetaDataOutcome(std::move(metaData)); } else { return ObjectMetaDataOutcome(outcome.error()); } } GetObjectAclOutcome OssClientImpl::GetObjectAcl(const GetObjectAclRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetObjectAclResult result(outcome.result().headerCollection(), outcome.result().payload()); return result.ParseDone() ? GetObjectAclOutcome(std::move(result)) : GetObjectAclOutcome(OssError("ParseXMLError", "Parsing GetObjectAcl result fail.")); } else { return GetObjectAclOutcome(outcome.error()); } } AppendObjectOutcome OssClientImpl::AppendObject(const AppendObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { AppendObjectResult result(outcome.result().headerCollection()); return result.ParseDone() ? AppendObjectOutcome(std::move(result)) : AppendObjectOutcome(OssError("ParseXMLError", "no position or no crc64")); } else { return AppendObjectOutcome(outcome.error()); } } CopyObjectOutcome OssClientImpl::CopyObject(const CopyObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return CopyObjectOutcome(CopyObjectResult(outcome.result().headerCollection(), outcome.result().payload())); } else { return CopyObjectOutcome(outcome.error()); } } GetSymlinkOutcome OssClientImpl::GetSymlink(const GetSymlinkRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { return GetSymlinkOutcome(GetSymlinkResult(outcome.result().headerCollection())); } else { return GetSymlinkOutcome(outcome.error()); } } RestoreObjectOutcome OssClientImpl::RestoreObject(const RestoreObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { return RestoreObjectOutcome(RestoreObjectResult(outcome.result().headerCollection())); } else { return RestoreObjectOutcome(outcome.error()); } } CreateSymlinkOutcome OssClientImpl::CreateSymlink(const CreateSymlinkRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return CreateSymlinkOutcome(CreateSymlinkResult(outcome.result().headerCollection())); } else { return CreateSymlinkOutcome(outcome.error()); } } SetObjectAclOutcome OssClientImpl::SetObjectAcl(const SetObjectAclRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return SetObjectAclOutcome(SetObjectAclResult(outcome.result().headerCollection())); } else { return SetObjectAclOutcome(outcome.error()); } } GetObjectOutcome OssClientImpl::ProcessObject(const ProcessObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { return GetObjectOutcome(GetObjectResult(request.Bucket(), request.Key(), outcome.result().payload(), outcome.result().headerCollection())); } else { return GetObjectOutcome(outcome.error()); } } GetObjectOutcome OssClientImpl::SelectObject(const SelectObjectRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); int ret = request.dispose(); if (outcome.isSuccess()) { return GetObjectOutcome(GetObjectResult(request.Bucket(), request.Key(), outcome.result().payload(), outcome.result().headerCollection())); } else { if (ret != 0) { return GetObjectOutcome(OssError("SelectObjectError", request.validateMessage(ret))); } return GetObjectOutcome(outcome.error()); } } CreateSelectObjectMetaOutcome OssClientImpl::CreateSelectObjectMeta(const CreateSelectObjectMetaRequest &request) const { auto outcome = MakeRequest(request, Http::Method::Post); if (outcome.isSuccess()) { CreateSelectObjectMetaResult result(request.Bucket(), request.Key(), outcome.result().RequestId(), outcome.result().payload()); return result.ParseDone() ? CreateSelectObjectMetaOutcome(result) : CreateSelectObjectMetaOutcome(OssError("ParseIOStreamError", "Parse create select object meta IOStream fail.")); } else { return CreateSelectObjectMetaOutcome(outcome.error()); } } SetObjectTaggingOutcome OssClientImpl::SetObjectTagging(const SetObjectTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Put); if (outcome.isSuccess()) { return SetObjectTaggingOutcome(SetObjectTaggingResult(outcome.result().headerCollection())); } else { return SetObjectTaggingOutcome(outcome.error()); } } DeleteObjectTaggingOutcome OssClientImpl::DeleteObjectTagging(const DeleteObjectTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Delete); if (outcome.isSuccess()) { return DeleteObjectTaggingOutcome(DeleteObjectTaggingResult(outcome.result().headerCollection())); } else { return DeleteObjectTaggingOutcome(outcome.error()); } } GetObjectTaggingOutcome OssClientImpl::GetObjectTagging(const GetObjectTaggingRequest& request) const { auto outcome = MakeRequest(request, Http::Method::Get); if (outcome.isSuccess()) { GetObjectTaggingResult result(outcome.result().headerCollection(), outcome.result().payload()); return result.ParseDone() ? GetObjectTaggingOutcome(std::move(result)) : GetObjectTaggingOutcome(OssError("ParseXMLError", "Parsing ObjectTagging result fail.")); } else { return GetObjectTaggingOutcome(outcome.error()); } } StringOutcome OssClientImpl::GeneratePresignedUrl(const GeneratePresignedUrlRequest &request) const { if (!IsValidBucketName(request.bucket_) || !IsValidObjectKey(request.key_, configuration().isVerifyObjectStrict)) { return StringOutcome(OssError("ValidateError", "The Bucket or Key is invalid.")); } auto credentials = credentialsProvider_->getCredentials(); auto bucket = request.bucket_; auto key = request.key_; auto region = region_; auto product = DEFAULT_PRODUCT_NAME; auto t = std::time(nullptr) + getRequestDateOffset(); if (!cloudboxId_.empty()) { region = cloudboxId_; product = CLOUDBOX_PRODUCT_NAME; } auto httpRequest = std::make_shared(request.method_); for (auto const& header : request.metaData_.toHeaderCollection()) { httpRequest->addHeader(header.first, header.second); } auto parameters = request.parameters_; SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam.setExpires(request.expires_); signer_->presign(httpRequest, parameters, signerParam); //host std::stringstream ss; ss << CombineHostString(endpoint_, bucket, configuration().isCname, configuration().isPathStyle); //path ss << CombinePathString(endpoint_, bucket, key, configuration().isPathStyle, request.unencodedSlash_); //query ss << "?"; ss << CombineQueryString(parameters); return StringOutcome(ss.str()); } GetObjectOutcome OssClientImpl::GetObjectByUrl(const GetObjectByUrlRequest &request) const { auto outcome = BASE::AttemptRequest(endpoint_, request, Http::Method::Get); if (outcome.isSuccess()) { return GetObjectOutcome(GetObjectResult("", "", outcome.result()->Body(), outcome.result()->Headers())); } else { return GetObjectOutcome(buildError(outcome.error())); } } PutObjectOutcome OssClientImpl::PutObjectByUrl(const PutObjectByUrlRequest &request) const { auto outcome = BASE::AttemptRequest(endpoint_, request, Http::Method::Put); if (outcome.isSuccess()) { return PutObjectOutcome(PutObjectResult(outcome.result()->Headers(), outcome.result()->Body())); } else { return PutObjectOutcome(buildError(outcome.error())); } } InitiateMultipartUploadOutcome OssClientImpl::InitiateMultipartUpload(const InitiateMultipartUploadRequest &request) const { auto outcome = MakeRequest(request, Http::Post); if(outcome.isSuccess()){ InitiateMultipartUploadResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? InitiateMultipartUploadOutcome(std::move(result)): InitiateMultipartUploadOutcome( OssError("InitiateMultipartUploadError", "Parsing InitiateMultipartUploadResult fail")); } else{ return InitiateMultipartUploadOutcome(outcome.error()); } } PutObjectOutcome OssClientImpl::UploadPart(const UploadPartRequest &request)const { auto outcome = MakeRequest(request, Http::Put); if(outcome.isSuccess()){ const HeaderCollection& header = outcome.result().headerCollection(); return PutObjectOutcome(PutObjectResult(header)); }else{ return PutObjectOutcome(outcome.error()); } } UploadPartCopyOutcome OssClientImpl::UploadPartCopy(const UploadPartCopyRequest &request) const { auto outcome = MakeRequest(request, Http::Put); if(outcome.isSuccess()){ const HeaderCollection& header = outcome.result().headerCollection(); return UploadPartCopyOutcome( UploadPartCopyResult(outcome.result().payload(), header)); } else{ return UploadPartCopyOutcome(outcome.error()); } } CompleteMultipartUploadOutcome OssClientImpl::CompleteMultipartUpload(const CompleteMultipartUploadRequest &request) const { auto outcome = MakeRequest(request, Http::Post); if (outcome.isSuccess()){ CompleteMultipartUploadResult result(outcome.result().payload(), outcome.result().headerCollection()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? CompleteMultipartUploadOutcome(std::move(result)) : CompleteMultipartUploadOutcome(OssError("CompleteMultipartUpload", "")); } else { return CompleteMultipartUploadOutcome(outcome.error()); } } VoidOutcome OssClientImpl::AbortMultipartUpload(const AbortMultipartUploadRequest &request) const { auto outcome = MakeRequest(request, Http::Delete); if(outcome.isSuccess()){ VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); } else { return VoidOutcome(outcome.error()); } } ListMultipartUploadsOutcome OssClientImpl::ListMultipartUploads( const ListMultipartUploadsRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { ListMultipartUploadsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListMultipartUploadsOutcome(std::move(result)) : ListMultipartUploadsOutcome(OssError("ListMultipartUploads", "Parse Error")); } else { return ListMultipartUploadsOutcome(outcome.error()); } } ListPartsOutcome OssClientImpl::ListParts(const ListPartsRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { ListPartsResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone() ? ListPartsOutcome(std::move(result)) : ListPartsOutcome(OssError("ListParts", "Parse Error")); }else{ return ListPartsOutcome(outcome.error()); } } #if !defined(OSS_DISABLE_RESUAMABLE) /*Resumable Operation*/ PutObjectOutcome OssClientImpl::ResumableUploadObject(const UploadObjectRequest& request) const { const auto& reqeustBase = static_cast(request); int code = reqeustBase.validate(); if (code != 0) { return PutObjectOutcome(OssError("ValidateError", reqeustBase.validateMessage(code))); } if (request.ObjectSize() <= request.PartSize()) { auto content = GetFstreamByPath(request.FilePath(), request.FilePathW(), std::ios::in | std::ios::binary); PutObjectRequest putObjectReq(request.Bucket(), request.Key(), content, request.MetaData()); if (request.TransferProgress().Handler) { putObjectReq.setTransferProgress(request.TransferProgress()); } if (request.RequestPayer() == RequestPayer::Requester) { putObjectReq.setRequestPayer(request.RequestPayer()); } if (request.TrafficLimit() != 0) { putObjectReq.setTrafficLimit(request.TrafficLimit()); } return PutObject(putObjectReq); } else { ResumableUploader uploader(request, this); return uploader.Upload(); } } CopyObjectOutcome OssClientImpl::ResumableCopyObject(const MultiCopyObjectRequest& request) const { const auto& reqeustBase = static_cast(request); int code = reqeustBase.validate(); if (code != 0) { return CopyObjectOutcome(OssError("ValidateError", reqeustBase.validateMessage(code))); } auto getObjectMetaReq = GetObjectMetaRequest(request.SrcBucket(), request.SrcKey()); if (request.RequestPayer() == RequestPayer::Requester) { getObjectMetaReq.setRequestPayer(request.RequestPayer()); } if (!request.VersionId().empty()) { getObjectMetaReq.setVersionId(request.VersionId()); } auto outcome = GetObjectMeta(getObjectMetaReq); if (!outcome.isSuccess()) { return CopyObjectOutcome(outcome.error()); } auto objectSize = outcome.result().ContentLength(); if (objectSize < (int64_t)request.PartSize()) { auto copyObjectReq = CopyObjectRequest(request.Bucket(), request.Key(), request.MetaData()); copyObjectReq.setCopySource(request.SrcBucket(), request.SrcKey()); if (request.RequestPayer() == RequestPayer::Requester) { copyObjectReq.setRequestPayer(request.RequestPayer()); } if (request.TrafficLimit() != 0) { copyObjectReq.setTrafficLimit(request.TrafficLimit()); } if (!request.VersionId().empty()) { copyObjectReq.setVersionId(request.VersionId()); } return CopyObject(copyObjectReq); } ResumableCopier copier(request, this, objectSize); return copier.Copy(); } GetObjectOutcome OssClientImpl::ResumableDownloadObject(const DownloadObjectRequest &request) const { const auto& reqeustBase = static_cast(request); int code = reqeustBase.validate(); if (code != 0) { return GetObjectOutcome(OssError("ValidateError", reqeustBase.validateMessage(code))); } auto getObjectMetaReq = GetObjectMetaRequest(request.Bucket(), request.Key()); if (request.RequestPayer() == RequestPayer::Requester) { getObjectMetaReq.setRequestPayer(request.RequestPayer()); } if (!request.VersionId().empty()) { getObjectMetaReq.setVersionId(request.VersionId()); } auto hOutcome = GetObjectMeta(getObjectMetaReq); if (!hOutcome.isSuccess()) { return GetObjectOutcome(hOutcome.error()); } auto objectSize = hOutcome.result().ContentLength(); if (objectSize < (int64_t)request.PartSize()) { auto getObjectReq = GetObjectRequest(request.Bucket(), request.Key(), request.ModifiedSinceConstraint(), request.UnmodifiedSinceConstraint(),request.MatchingETagsConstraint(), request.NonmatchingETagsConstraint(), request.ResponseHeaderParameters()); if (request.RangeIsSet()) { getObjectReq.setRange(request.RangeStart(), request.RangeEnd()); } if (request.TransferProgress().Handler) { getObjectReq.setTransferProgress(request.TransferProgress()); } if (request.RequestPayer() == RequestPayer::Requester) { getObjectReq.setRequestPayer(request.RequestPayer()); } if (request.TrafficLimit() != 0) { getObjectReq.setTrafficLimit(request.TrafficLimit()); } if (!request.VersionId().empty()) { getObjectReq.setVersionId(request.VersionId()); } getObjectReq.setResponseStreamFactory([=]() { return GetFstreamByPath(request.FilePath(), request.FilePathW(), std::ios_base::out | std::ios_base::in | std::ios_base::trunc | std::ios_base::binary); }); auto outcome = this->GetObject(getObjectReq); std::shared_ptr content = nullptr; outcome.result().setContent(content); if (IsFileExist(request.TempFilePath())) { RemoveFile(request.TempFilePath()); } #ifdef _WIN32 else if (IsFileExist(request.TempFilePathW())) { RemoveFile(request.TempFilePathW()); } #endif return outcome; } ResumableDownloader downloader(request, this, objectSize); return downloader.Download(); } #endif #if !defined(OSS_DISABLE_LIVECHANNEL) /*Live Channel*/ VoidOutcome OssClientImpl::PutLiveChannelStatus(const PutLiveChannelStatusRequest& request) const { auto outcome = MakeRequest(request, Http::Put); if(outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(result); }else{ return VoidOutcome(outcome.error()); } } PutLiveChannelOutcome OssClientImpl::PutLiveChannel(const PutLiveChannelRequest& request) const { auto outcome = MakeRequest(request, Http::Put); if(outcome.isSuccess()) { PutLiveChannelResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone()? PutLiveChannelOutcome(std::move(result)): PutLiveChannelOutcome(OssError("PutLiveChannelError", "Parse Error")); }else{ return PutLiveChannelOutcome(outcome.error()); } } VoidOutcome OssClientImpl::PostVodPlaylist(const PostVodPlaylistRequest &request) const { auto outcome = MakeRequest(request, Http::Post); if(outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(std::move(result)); }else{ return VoidOutcome(outcome.error()); } } GetVodPlaylistOutcome OssClientImpl::GetVodPlaylist(const GetVodPlaylistRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { GetVodPlaylistResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return GetVodPlaylistOutcome(std::move(result)); }else{ return GetVodPlaylistOutcome(outcome.error()); } } GetLiveChannelStatOutcome OssClientImpl::GetLiveChannelStat(const GetLiveChannelStatRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { GetLiveChannelStatResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone()? GetLiveChannelStatOutcome(std::move(result)): GetLiveChannelStatOutcome(OssError("GetLiveChannelStatError", "Parse Error")); }else{ return GetLiveChannelStatOutcome(outcome.error()); } } GetLiveChannelInfoOutcome OssClientImpl::GetLiveChannelInfo(const GetLiveChannelInfoRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { GetLiveChannelInfoResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone()? GetLiveChannelInfoOutcome(std::move(result)): GetLiveChannelInfoOutcome(OssError("GetLiveChannelStatError", "Parse Error")); }else{ return GetLiveChannelInfoOutcome(outcome.error()); } } GetLiveChannelHistoryOutcome OssClientImpl::GetLiveChannelHistory(const GetLiveChannelHistoryRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { GetLiveChannelHistoryResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone()? GetLiveChannelHistoryOutcome(std::move(result)): GetLiveChannelHistoryOutcome(OssError("GetLiveChannelStatError", "Parse Error")); }else{ return GetLiveChannelHistoryOutcome(outcome.error()); } } ListLiveChannelOutcome OssClientImpl::ListLiveChannel(const ListLiveChannelRequest &request) const { auto outcome = MakeRequest(request, Http::Get); if(outcome.isSuccess()) { ListLiveChannelResult result(outcome.result().payload()); result.requestId_ = outcome.result().RequestId(); return result.ParseDone()? ListLiveChannelOutcome(std::move(result)): ListLiveChannelOutcome(OssError("GetLiveChannelStatError", "Parse Error")); }else{ return ListLiveChannelOutcome(outcome.error()); } } VoidOutcome OssClientImpl::DeleteLiveChannel(const DeleteLiveChannelRequest &request) const { auto outcome = MakeRequest(request, Http::Delete); if(outcome.isSuccess()) { VoidResult result; result.requestId_ = outcome.result().RequestId(); return VoidOutcome(std::move(result)); }else{ return VoidOutcome(outcome.error()); } } StringOutcome OssClientImpl::GenerateRTMPSignedUrl(const GenerateRTMPSignedUrlRequest &request) const { if (!IsValidBucketName(request.bucket_) || !IsValidChannelName(request.ChannelName()) || !IsValidPlayListName(request.PlayList()) || 0 == request.Expires()) { return StringOutcome(OssError("ValidateError", "The Bucket or ChannelName or " "PlayListName or Expires is invalid.")); } ParameterCollection parameters; const Credentials credentials = credentialsProvider_->getCredentials(); if (!credentials.SessionToken().empty()) { parameters["security-token"] = credentials.SessionToken(); } parameters = request.Parameters(); std::string expireStr; std::stringstream ss; ss << request.Expires(); expireStr = ss.str(); SignUtils signUtils(signer_->version()); auto resource = std::string().append("/").append(request.Bucket()).append("/").append(request.ChannelName()); signUtils.build(expireStr, resource, parameters); auto signature = HmacSha1Signer::generate(signUtils.CanonicalString(), credentials.AccessKeySecret()); parameters["Expires"] = expireStr; parameters["OSSAccessKeyId"] = credentials.AccessKeyId(); parameters["Signature"] = signature; ss.str(""); ss << CombineRTMPString(endpoint_, request.bucket_, configuration().isCname, configuration().isPathStyle); ss << "/live"; ss << CombinePathString(endpoint_, request.bucket_, request.key_, configuration().isPathStyle); ss << "?"; ss << CombineQueryString(parameters); return StringOutcome(ss.str()); } #endif /*Requests control*/ void OssClientImpl::DisableRequest() { BASE::disableRequest(); OSS_LOG(LogLevel::LogDebug, TAG, "client(%p) DisableRequest", this); } void OssClientImpl::EnableRequest() { BASE::enableRequest(); OSS_LOG(LogLevel::LogDebug, TAG, "client(%p) EnableRequest", this); } /*Others*/ void OssClientImpl::SetRegion(const std::string ®ion) { OSS_LOG(LogLevel::LogDebug, TAG, "client(%p) SetRegion, from:%s to:%s", this, region_.c_str(), region.c_str()); region_ = region; } void OssClientImpl::SetCloudBoxId(const std::string &cloudboxId) { OSS_LOG(LogLevel::LogDebug, TAG, "client(%p) SetCloudBoxId, from:%s to:%s", this, cloudboxId_.c_str(), cloudboxId.c_str()); cloudboxId_ = cloudboxId; } ================================================ FILE: sdk/src/OssClientImpl.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ALIBABACLOUD_OSS_OSSCLIENTIMPL_H_ #define ALIBABACLOUD_OSS_OSSCLIENTIMPL_H_ #include #include #include #include #include #include #include "signer/Signer.h" #include "client/Client.h" #ifdef GetObject #undef GetObject #endif namespace AlibabaCloud { namespace OSS { class OssClientImpl : public Client { public: typedef Client BASE; OssClientImpl(const std::string &endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration); virtual ~OssClientImpl(); int asyncExecute(Runnable * r) const; #if !defined(OSS_DISABLE_BUCKET) ListBucketsOutcome ListBuckets(const ListBucketsRequest &request) const; CreateBucketOutcome CreateBucket(const CreateBucketRequest &request) const; VoidOutcome SetBucketAcl(const SetBucketAclRequest& request) const; VoidOutcome SetBucketLogging(const SetBucketLoggingRequest& request) const; VoidOutcome SetBucketWebsite(const SetBucketWebsiteRequest& request) const; VoidOutcome SetBucketReferer(const SetBucketRefererRequest& request) const; VoidOutcome SetBucketLifecycle(const SetBucketLifecycleRequest& request) const; VoidOutcome SetBucketCors(const SetBucketCorsRequest& request) const; VoidOutcome SetBucketStorageCapacity(const SetBucketStorageCapacityRequest& request) const; VoidOutcome SetBucketPolicy(const SetBucketPolicyRequest& request) const; VoidOutcome SetBucketRequestPayment(const SetBucketRequestPaymentRequest& request) const; VoidOutcome SetBucketEncryption(const SetBucketEncryptionRequest& request) const; VoidOutcome SetBucketTagging(const SetBucketTaggingRequest& request) const; VoidOutcome SetBucketQosInfo(const SetBucketQosInfoRequest& request) const; VoidOutcome SetBucketVersioning(const SetBucketVersioningRequest& request) const; VoidOutcome SetBucketInventoryConfiguration(const SetBucketInventoryConfigurationRequest& request) const; VoidOutcome DeleteBucket(const DeleteBucketRequest &request) const; VoidOutcome DeleteBucketLogging(const DeleteBucketLoggingRequest& request) const; VoidOutcome DeleteBucketWebsite(const DeleteBucketWebsiteRequest& request) const; VoidOutcome DeleteBucketLifecycle(const DeleteBucketLifecycleRequest& request) const; VoidOutcome DeleteBucketCors(const DeleteBucketCorsRequest& request) const; VoidOutcome DeleteBucketPolicy(const DeleteBucketPolicyRequest& request) const; VoidOutcome DeleteBucketEncryption(const DeleteBucketEncryptionRequest& request) const; VoidOutcome DeleteBucketTagging(const DeleteBucketTaggingRequest& request) const; VoidOutcome DeleteBucketQosInfo(const DeleteBucketQosInfoRequest& request) const; VoidOutcome DeleteBucketInventoryConfiguration(const DeleteBucketInventoryConfigurationRequest& request) const; ListBucketInventoryConfigurationsOutcome ListBucketInventoryConfigurations(const ListBucketInventoryConfigurationsRequest& request) const; GetBucketAclOutcome GetBucketAcl(const GetBucketAclRequest &request) const; GetBucketLocationOutcome GetBucketLocation(const GetBucketLocationRequest &request) const; GetBucketInfoOutcome GetBucketInfo(const GetBucketInfoRequest &request) const; GetBucketLoggingOutcome GetBucketLogging(const GetBucketLoggingRequest &request) const; GetBucketWebsiteOutcome GetBucketWebsite(const GetBucketWebsiteRequest &request) const; GetBucketRefererOutcome GetBucketReferer(const GetBucketRefererRequest &request) const; GetBucketLifecycleOutcome GetBucketLifecycle(const GetBucketLifecycleRequest &request) const; GetBucketStatOutcome GetBucketStat(const GetBucketStatRequest &request) const; GetBucketCorsOutcome GetBucketCors(const GetBucketCorsRequest &request) const; GetBucketStorageCapacityOutcome GetBucketStorageCapacity(const GetBucketStorageCapacityRequest& request) const; GetBucketPolicyOutcome GetBucketPolicy(const GetBucketPolicyRequest& request) const; GetBucketPaymentOutcome GetBucketRequestPayment(const GetBucketRequestPaymentRequest& request) const; GetBucketEncryptionOutcome GetBucketEncryption(const GetBucketEncryptionRequest& request) const; GetBucketTaggingOutcome GetBucketTagging(const GetBucketTaggingRequest& request) const; GetBucketQosInfoOutcome GetBucketQosInfo(const GetBucketQosInfoRequest& request) const; GetUserQosInfoOutcome GetUserQosInfo(const GetUserQosInfoRequest& request) const; GetBucketVersioningOutcome GetBucketVersioning(const GetBucketVersioningRequest& request) const; GetBucketInventoryConfigurationOutcome GetBucketInventoryConfiguration(const GetBucketInventoryConfigurationRequest& request) const; InitiateBucketWormOutcome InitiateBucketWorm(const InitiateBucketWormRequest& request) const; VoidOutcome AbortBucketWorm(const AbortBucketWormRequest& request) const; VoidOutcome CompleteBucketWorm(const CompleteBucketWormRequest& request) const; VoidOutcome ExtendBucketWormWorm(const ExtendBucketWormRequest& request) const; GetBucketWormOutcome GetBucketWorm(const GetBucketWormRequest& request) const; #endif /*Object*/ ListObjectOutcome ListObjects(const ListObjectsRequest &request) const; ListObjectsV2Outcome ListObjectsV2(const ListObjectsV2Request &request) const; ListObjectVersionsOutcome ListObjectVersions(const ListObjectVersionsRequest &request) const; GetObjectOutcome GetObject(const GetObjectRequest &request) const; PutObjectOutcome PutObject(const PutObjectRequest &request) const; DeleteObjectOutcome DeleteObject(const DeleteObjectRequest &request) const; DeleteObjecstOutcome DeleteObjects(const DeleteObjectsRequest &request) const; DeleteObjecVersionstOutcome DeleteObjectVersions(const DeleteObjectVersionsRequest& request) const; ObjectMetaDataOutcome HeadObject(const HeadObjectRequest &request) const; ObjectMetaDataOutcome GetObjectMeta(const GetObjectMetaRequest &request) const; GetObjectAclOutcome GetObjectAcl(const GetObjectAclRequest &request) const; AppendObjectOutcome AppendObject(const AppendObjectRequest &request) const; CopyObjectOutcome CopyObject(const CopyObjectRequest &request) const; GetSymlinkOutcome GetSymlink(const GetSymlinkRequest &request) const; RestoreObjectOutcome RestoreObject(const RestoreObjectRequest &request) const; CreateSymlinkOutcome CreateSymlink(const CreateSymlinkRequest &request) const; SetObjectAclOutcome SetObjectAcl(const SetObjectAclRequest &request) const; GetObjectOutcome ProcessObject(const ProcessObjectRequest &request) const; GetObjectOutcome SelectObject(const SelectObjectRequest &request) const; CreateSelectObjectMetaOutcome CreateSelectObjectMeta(const CreateSelectObjectMetaRequest &request) const; SetObjectTaggingOutcome SetObjectTagging(const SetObjectTaggingRequest& request) const; DeleteObjectTaggingOutcome DeleteObjectTagging(const DeleteObjectTaggingRequest& request) const; GetObjectTaggingOutcome GetObjectTagging(const GetObjectTaggingRequest& request) const; /*MultipartUpload*/ InitiateMultipartUploadOutcome InitiateMultipartUpload(const InitiateMultipartUploadRequest &request) const; PutObjectOutcome UploadPart(const UploadPartRequest& request) const; UploadPartCopyOutcome UploadPartCopy(const UploadPartCopyRequest &request) const; CompleteMultipartUploadOutcome CompleteMultipartUpload(const CompleteMultipartUploadRequest &request) const; VoidOutcome AbortMultipartUpload(const AbortMultipartUploadRequest &request) const; ListMultipartUploadsOutcome ListMultipartUploads(const ListMultipartUploadsRequest &request) const; ListPartsOutcome ListParts(const ListPartsRequest &request) const; /*Generate URL*/ StringOutcome GeneratePresignedUrl(const GeneratePresignedUrlRequest &request) const; GetObjectOutcome GetObjectByUrl(const GetObjectByUrlRequest &request) const; PutObjectOutcome PutObjectByUrl(const PutObjectByUrlRequest &request) const; /*Generate Post Policy*/ #if !defined(OSS_DISABLE_RESUAMABLE) /*Resumable Operation*/ PutObjectOutcome ResumableUploadObject(const UploadObjectRequest& request) const; CopyObjectOutcome ResumableCopyObject(const MultiCopyObjectRequest& request) const; GetObjectOutcome ResumableDownloadObject(const DownloadObjectRequest& request) const; #endif #if !defined(OSS_DISABLE_LIVECHANNEL) /*Live Channel*/ VoidOutcome PutLiveChannelStatus(const PutLiveChannelStatusRequest &request) const; PutLiveChannelOutcome PutLiveChannel(const PutLiveChannelRequest &request) const; VoidOutcome PostVodPlaylist(const PostVodPlaylistRequest &request) const; GetVodPlaylistOutcome GetVodPlaylist(const GetVodPlaylistRequest& request) const; GetLiveChannelStatOutcome GetLiveChannelStat(const GetLiveChannelStatRequest &request) const; GetLiveChannelInfoOutcome GetLiveChannelInfo(const GetLiveChannelInfoRequest &request) const; GetLiveChannelHistoryOutcome GetLiveChannelHistory(const GetLiveChannelHistoryRequest &request) const; ListLiveChannelOutcome ListLiveChannel(const ListLiveChannelRequest &request) const; VoidOutcome DeleteLiveChannel(const DeleteLiveChannelRequest &request) const; StringOutcome GenerateRTMPSignedUrl(const GenerateRTMPSignedUrlRequest &request) const; #endif /*Requests control*/ void DisableRequest(); void EnableRequest(); /*Others*/ void SetRegion(const std::string ®ion); void SetCloudBoxId(const std::string &cloudboxId); protected: virtual std::shared_ptr buildHttpRequest(const std::string & endpoint, const ServiceRequest &msg, Http::Method method) const; virtual bool hasResponseError(const std::shared_ptr&response) const; OssOutcome MakeRequest(const OssRequest &request, Http::Method method) const; private: void addHeaders(const std::shared_ptr &httpRequest, const HeaderCollection &headers) const; void addBody(const std::shared_ptr &httpRequest, const std::shared_ptr& body, bool contentMd5 = false) const; void addSignInfo(const std::shared_ptr &httpRequest, const ServiceRequest &request) const; void addUrl(const std::shared_ptr &httpRequest, const std::string &endpoint, const ServiceRequest &request) const; void addOther(const std::shared_ptr &httpRequest, const ServiceRequest &request) const; OssError buildError(const Error &error) const; ServiceResult buildResult(const OssRequest &request, const std::shared_ptr &httpResponse) const; private: std::string endpoint_; std::shared_ptr credentialsProvider_; std::shared_ptr signer_; std::shared_ptr executor_; bool isValidEndpoint_; std::string region_; std::string cloudboxId_; }; } } #endif // !ALIBABACLOUD_OSS_OSSCLIENTIMPL_H_ ================================================ FILE: sdk/src/OssRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "http/HttpType.h" #include "utils/Utils.h" #include "model/ModelError.h" #include "utils/FileSystemUtils.h" using namespace AlibabaCloud::OSS; OssRequest:: OssRequest(): ServiceRequest(), bucket_(), key_() { } OssRequest:: OssRequest(const std::string &bucket, const std::string &key): ServiceRequest(), bucket_(bucket), key_(key) { } HeaderCollection OssRequest::Headers() const { auto headers = specialHeaders(); if(headers.size() == 0 || (headers.size() > 0 && headers.count(Http::CONTENT_TYPE) == 0)) { headers[Http::CONTENT_TYPE] = "application/xml"; } return headers; } ParameterCollection OssRequest::Parameters() const { return specialParameters(); } std::shared_ptr OssRequest::Body() const { std::string&& p = payload(); std::shared_ptr payloadBody; if (!p.empty()) { payloadBody = std::make_shared(); *payloadBody << p; } return payloadBody; } int OssRequest::validate() const { return 0; } const char * OssRequest::validateMessage(int code) const { return GetModelErrorMsg(code); } std::string OssRequest::payload() const { return ""; } HeaderCollection OssRequest::specialHeaders() const { return HeaderCollection(); } ParameterCollection OssRequest::specialParameters() const { return ParameterCollection(); } const std::string& OssRequest::bucket() const { return bucket_; } const std::string& OssRequest::key() const { return key_; } int OssBucketRequest::validate() const { if (!IsValidBucketName(Bucket())) { return ARG_ERROR_BUCKET_NAME; } return 0; } void OssBucketRequest::setBucket(const std::string &bucket) { bucket_ = bucket; } const std::string& OssBucketRequest::Bucket() const { return OssRequest::bucket(); } int OssObjectRequest::validate() const { if (!IsValidBucketName(Bucket())) { return ARG_ERROR_BUCKET_NAME; } if (!IsValidObjectKey(Key())) { return ARG_ERROR_OBJECT_NAME; } return 0; } void OssObjectRequest::setBucket(const std::string &bucket) { bucket_ = bucket; } const std::string& OssObjectRequest::Bucket() const { return OssRequest::bucket(); } void OssObjectRequest::setKey(const std::string &key) { key_ = key; } const std::string& OssObjectRequest::Key() const { return OssRequest::key(); } void OssObjectRequest::setRequestPayer(AlibabaCloud::OSS::RequestPayer key) { requestPayer_ = key; } AlibabaCloud::OSS::RequestPayer OssObjectRequest::RequestPayer() const { return requestPayer_; } void OssObjectRequest::setVersionId(const std::string& versionId) { versionId_ = versionId; } const std::string& OssObjectRequest::VersionId() const { return versionId_; } HeaderCollection OssObjectRequest::specialHeaders() const { auto headers = OssRequest::specialHeaders(); if (requestPayer_ == AlibabaCloud::OSS::RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(AlibabaCloud::OSS::RequestPayer::Requester)); } return headers; } ParameterCollection OssObjectRequest::specialParameters() const { auto parameters = OssRequest::specialParameters(); if (!versionId_.empty()) { parameters["versionId"] = versionId_; } return parameters; } int OssResumableBaseRequest::validate() const { if (!IsValidBucketName(Bucket())) { return ARG_ERROR_BUCKET_NAME; } if (!IsValidObjectKey(Key())) { return ARG_ERROR_OBJECT_NAME; } if (partSize_ < PartSizeLowerLimit) { return ARG_ERROR_CHECK_PART_SIZE_LOWER; } if (threadNum_ <= 0) { return ARG_ERROR_CHECK_THREAD_NUM_LOWER; } #if !defined(_WIN32) if (!checkpointDirW_.empty()) { return ARG_ERROR_PATH_NOT_SUPPORT_WSTRING_TYPE; } #endif // if directory do not exist, return error if (hasCheckpointDir()) { if ((!checkpointDir_.empty() && !IsDirectoryExist(checkpointDir_)) #ifdef _WIN32 || (!checkpointDirW_.empty() && !IsDirectoryExist(checkpointDirW_)) #endif ) { return ARG_ERROR_CHECK_POINT_DIR_NONEXIST; } } return 0; } const char *OssResumableBaseRequest::validateMessage(int code) const { return GetModelErrorMsg(code); } void OssResumableBaseRequest::setBucket(const std::string &bucket) { bucket_ = bucket; } const std::string& OssResumableBaseRequest::Bucket() const { return OssRequest::bucket(); } void OssResumableBaseRequest::setKey(const std::string &key) { key_ = key; } const std::string& OssResumableBaseRequest::Key() const { return OssRequest::key(); } void OssResumableBaseRequest::setPartSize(uint64_t partSize) { partSize_ = partSize; } uint64_t OssResumableBaseRequest::PartSize() const { return partSize_; } void OssResumableBaseRequest::setObjectSize(uint64_t objectSize) { objectSize_ = objectSize; } uint64_t OssResumableBaseRequest::ObjectSize() const { return objectSize_; } void OssResumableBaseRequest::setThreadNum(uint32_t threadNum) { threadNum_ = threadNum; } uint32_t OssResumableBaseRequest::ThreadNum() const { return threadNum_; } void OssResumableBaseRequest::setCheckpointDir(const std::string &checkpointDir) { checkpointDir_ = checkpointDir; checkpointDirW_.clear(); } const std::string& OssResumableBaseRequest::CheckpointDir() const { return checkpointDir_; } void OssResumableBaseRequest::setCheckpointDir(const std::wstring& checkpointDir) { checkpointDirW_ = checkpointDir; checkpointDir_.clear(); } const std::wstring& OssResumableBaseRequest::CheckpointDirW() const { return checkpointDirW_; } void OssResumableBaseRequest::setObjectMtime(const std::string &mtime) { mtime_ = mtime; } const std::string& OssResumableBaseRequest::ObjectMtime() const { return mtime_; } void OssResumableBaseRequest::setRequestPayer(AlibabaCloud::OSS::RequestPayer value) { requestPayer_ = value; } AlibabaCloud::OSS::RequestPayer OssResumableBaseRequest::RequestPayer() const { return requestPayer_; } void OssResumableBaseRequest::setTrafficLimit(uint64_t value) { trafficLimit_ = value; } uint64_t OssResumableBaseRequest::TrafficLimit() const { return trafficLimit_; } void OssResumableBaseRequest::setVersionId(const std::string& versionId) { versionId_ = versionId; } const std::string& OssResumableBaseRequest::VersionId() const { return versionId_; } bool OssResumableBaseRequest::hasCheckpointDir() const { return (!checkpointDir_.empty() || !checkpointDirW_.empty()); } void LiveChannelRequest::setBucket(const std::string &bucket) { bucket_ = bucket; } const std::string& LiveChannelRequest::Bucket() const { return bucket_; } void LiveChannelRequest::setChannelName(const std::string &channelName) { channelName_ = channelName; key_ = channelName; } const std::string& LiveChannelRequest::ChannelName() const { return channelName_; } int LiveChannelRequest::validate() const { if (!IsValidBucketName(Bucket())) { return ARG_ERROR_BUCKET_NAME; } if(!IsValidChannelName(channelName_)) { return ARG_ERROR_LIVECHANNEL_BAD_CHANNELNAME_PARAM; } return 0; } ================================================ FILE: sdk/src/OssResponse.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; OssResponse::OssResponse() : payload_() { } OssResponse::OssResponse(const std::string &payload) : payload_(payload) { } OssResponse::~OssResponse() { } std::string OssResponse::payload() const { return payload_; } ================================================ FILE: sdk/src/OssResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; OssResult::OssResult() : parseDone_(false) { } OssResult::OssResult(const HeaderCollection& header): OssResult() { if (header.find("x-oss-request-id") != header.end()) { requestId_ = header.at("x-oss-request-id"); } } OssObjectResult::OssObjectResult() : OssResult() { } OssObjectResult::OssObjectResult(const HeaderCollection& header) : OssResult(header) { if (header.find("x-oss-version-id") != header.end()) { versionId_ = header.at("x-oss-version-id"); } } ================================================ FILE: sdk/src/ServiceRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; ServiceRequest::ServiceRequest() : flags_(0), path_("/"), responseStreamFactory_([] { return std::make_shared(); }) { transferProgress_.Handler = nullptr; transferProgress_.UserData = nullptr; } std::string ServiceRequest::Path() const { return path_; } int ServiceRequest::Flags() const { return flags_; } const IOStreamFactory& ServiceRequest::ResponseStreamFactory() const { return responseStreamFactory_; } void ServiceRequest::setResponseStreamFactory(const IOStreamFactory& factory) { responseStreamFactory_ = factory; } const AlibabaCloud::OSS::TransferProgress & ServiceRequest::TransferProgress() const { return transferProgress_; } void ServiceRequest::setTransferProgress(const AlibabaCloud::OSS::TransferProgress &arg) { transferProgress_ = arg; } void ServiceRequest::setPath(const std::string & path) { path_ = path; } void ServiceRequest::setFlags(int flags) { flags_ = flags; } ================================================ FILE: sdk/src/auth/Credentials.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; Credentials::Credentials(const std::string &accessKeyId, const std::string &accessKeySecret, const std::string &sessionToken) : accessKeyId_(accessKeyId), accessKeySecret_(accessKeySecret), sessionToken_(sessionToken) { } Credentials::~Credentials() { } const std::string& Credentials::AccessKeyId () const { return accessKeyId_; } const std::string& Credentials::AccessKeySecret () const { return accessKeySecret_; } const std::string& Credentials::SessionToken () const { return sessionToken_; } void Credentials::setAccessKeyId(const std::string &accessKeyId) { accessKeyId_ = accessKeyId; } void Credentials::setAccessKeySecret(const std::string &accessKeySecret) { accessKeySecret_ = accessKeySecret; } void Credentials::setSessionToken (const std::string &sessionToken) { sessionToken_ = sessionToken; } ================================================ FILE: sdk/src/auth/CredentialsProvider.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; CredentialsProvider::~CredentialsProvider() { } Credentials EnvironmentVariableCredentialsProvider::getCredentials() { auto value = std::getenv("OSS_ACCESS_KEY_ID"); Credentials credentials("", ""); if (value) { credentials.setAccessKeyId(value); value = std::getenv("OSS_ACCESS_KEY_SECRET"); if (value) { credentials.setAccessKeySecret(value); } value = std::getenv("OSS_SESSION_TOKEN"); if (value) { credentials.setSessionToken(value); } } return credentials; } ================================================ FILE: sdk/src/auth/SimpleCredentialsProvider.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; SimpleCredentialsProvider::SimpleCredentialsProvider(const Credentials &credentials): CredentialsProvider(), credentials_(credentials) { } SimpleCredentialsProvider::SimpleCredentialsProvider(const std::string & accessKeyId, const std::string & accessKeySecret, const std::string &securityToken) : CredentialsProvider(), credentials_(accessKeyId, accessKeySecret, securityToken) { } SimpleCredentialsProvider::~SimpleCredentialsProvider() { } Credentials SimpleCredentialsProvider::getCredentials() { return credentials_; } ================================================ FILE: sdk/src/client/AsyncCallerContext.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; AsyncCallerContext::AsyncCallerContext() : uuid_(GenerateUuid()) { } AsyncCallerContext::AsyncCallerContext(const std::string &uuid) : uuid_(uuid) { } AsyncCallerContext::~AsyncCallerContext() { } const std::string &AsyncCallerContext::Uuid()const { return uuid_; } void AsyncCallerContext::setUuid(const std::string &uuid) { uuid_ = uuid; } ================================================ FILE: sdk/src/client/Client.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "Client.h" #include "../http/CurlHttpClient.h" #include "../utils/Utils.h" #include "../signer/Signer.h" #include #include using namespace AlibabaCloud::OSS; using namespace tinyxml2; Client::Client(const std::string & servicename, const ClientConfiguration &configuration) : requestDateOffset_(0), serviceName_(servicename), configuration_(configuration), httpClient_(configuration.httpClient? configuration.httpClient:std::make_shared(configuration)) { } Client::~Client() { } const ClientConfiguration& Client::configuration()const { return configuration_; } std::string Client::serviceName()const { return serviceName_; } Client::ClientOutcome Client::AttemptRequest(const std::string & endpoint, const ServiceRequest & request, Http::Method method) const { for (int retry =0; ;retry++) { auto outcome = AttemptOnceRequest(endpoint, request, method); if (outcome.isSuccess()) { return outcome; } else if (!httpClient_->isEnable()) { return outcome; } else { if (configuration_.enableDateSkewAdjustment && outcome.error().Status() == 403 && outcome.error().Message().find("RequestTimeTooSkewed")) { auto serverTimeStr = analyzeServerTime(outcome.error().Message()); auto serverTime = UtcToUnixTime(serverTimeStr); if (serverTime != -1) { std::time_t localTime = std::time(nullptr); setRequestDateOffset(serverTime - localTime); } } RetryStrategy *retryStrategy = configuration().retryStrategy.get(); if (retryStrategy == nullptr || !retryStrategy->shouldRetry(outcome.error(), retry)) { return outcome; } long sleepTmeMs = retryStrategy->calcDelayTimeMs(outcome.error(), retry); httpClient_->waitForRetry(sleepTmeMs); } } } Client::ClientOutcome Client::AttemptOnceRequest(const std::string & endpoint, const ServiceRequest & request, Http::Method method) const { if (!httpClient_->isEnable()) { return ClientOutcome(Error("ClientError:100002", "Disable all requests by upper.")); } auto r = buildHttpRequest(endpoint, request, method); auto response = httpClient_->makeRequest(r); if(hasResponseError(response)) { return ClientOutcome(buildError(response)); } else { return ClientOutcome(response); } } std::string Client::analyzeServerTime(const std::string &message) const { XMLDocument doc; if (doc.Parse(message.c_str(), message.size()) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("Error", root->Name(), 5)) { XMLElement *node; node = root->FirstChildElement("ServerTime"); return (node ? node->GetText() : ""); } } return ""; } Error Client::buildError(const std::shared_ptr &response) const { Error error; if (response == nullptr) { error.setCode("NullptrError"); error.setMessage("HttpResponse is nullptr, should not be here."); return error; } long responseCode = response->statusCode(); error.setStatus(responseCode); std::stringstream ss; if ((responseCode == 203) || (responseCode > 299 && responseCode < 600)) { ss << "ServerError:" << responseCode; error.setCode(ss.str()); if (response->Body() != nullptr) { std::istreambuf_iterator isb(*response->Body().get()), end; error.setMessage(std::string(isb, end)); } // get error xml from header if (error.Message().empty() && response->hasHeader("x-oss-err")) { auto errstr = Base64Decode(response->Header("x-oss-err")); error.setMessage(std::string(errstr.begin(), errstr.end())); } } else { ss << "ClientError:" << responseCode; error.setCode(ss.str()); error.setMessage(response->statusMsg()); } error.setHeaders(response->Headers()); return error; } bool Client::hasResponseError(const std::shared_ptr&response)const { if (!response) { return true; } return (response->statusCode()/100 != 2); } void Client::disableRequest() { httpClient_->disable(); } void Client::enableRequest() { httpClient_->enable(); } bool Client::isEnableRequest() const { return httpClient_->isEnable(); } void Client::setRequestDateOffset(uint64_t offset) const { requestDateOffset_ = offset; } uint64_t Client::getRequestDateOffset() const { return requestDateOffset_; } ================================================ FILE: sdk/src/client/Client.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class Client { public: using ClientOutcome = Outcome> ; Client(const std::string & servicename, const ClientConfiguration &configuration); virtual ~Client(); std::string serviceName()const; const ClientConfiguration &configuration()const; bool isEnableRequest() const; protected: ClientOutcome AttemptRequest(const std::string & endpoint, const ServiceRequest &request, Http::Method method) const; ClientOutcome AttemptOnceRequest(const std::string & endpoint, const ServiceRequest &request, Http::Method method) const; virtual std::shared_ptr buildHttpRequest(const std::string & endpoint, const ServiceRequest &msg, Http::Method method) const = 0; virtual bool hasResponseError(const std::shared_ptr&response) const; void setRequestDateOffset(uint64_t offset) const; uint64_t getRequestDateOffset() const; void disableRequest(); void enableRequest(); private: Error buildError(const std::shared_ptr &response) const ; std::string analyzeServerTime(const std::string &message) const; mutable uint64_t requestDateOffset_; std::string serviceName_; ClientConfiguration configuration_; std::shared_ptr httpClient_; }; } } ================================================ FILE: sdk/src/client/ClientConfiguration.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; //default for configuration begin #if defined(PLATFORM_WINDOWS) static const char* PLATFORM_NAME = "Windows"; #elif defined(PLATFORM_LINUX) static const char* PLATFORM_NAME = "Linux"; #elif defined(PLATFORM_APPLE) static const char* PLATFORM_NAME = "MacOS"; #elif defined(PLATFORM_ANDROID) static const char* PLATFORM_NAME = "Android"; #else static const char* PLATFORM_NAME = "Unknown"; #endif static std::string DefaultUserAgent() { std::stringstream ss; ss << "aliyun-sdk-cpp/" << ALIBABACLOUD_OSS_VERSION_STR << " (" << PLATFORM_NAME << ")"; return ss.str(); } class DefaultRetryStrategy : public RetryStrategy { public: DefaultRetryStrategy(long maxRetries = 3, long scaleFactor = 300) : m_scaleFactor(scaleFactor), m_maxRetries(maxRetries) {} bool shouldRetry(const Error & error, long attemptedRetries) const; long calcDelayTimeMs(const Error & error, long attemptedRetries) const; private: long m_scaleFactor; long m_maxRetries; }; bool DefaultRetryStrategy::shouldRetry(const Error & error, long attemptedRetries) const { if (attemptedRetries >= m_maxRetries) return false; long responseCode = error.Status(); //http code if ((responseCode == 403 && error.Message().find("RequestTimeTooSkewed") != std::string::npos) || (responseCode > 499 && responseCode < 599)) { return true; } else { switch (responseCode) { //curl error code case (ERROR_CURL_BASE + 7): //CURLE_COULDNT_CONNECT case (ERROR_CURL_BASE + 18): //CURLE_PARTIAL_FILE case (ERROR_CURL_BASE + 23): //CURLE_WRITE_ERROR case (ERROR_CURL_BASE + 28): //CURLE_OPERATION_TIMEDOUT case (ERROR_CURL_BASE + 52): //CURLE_GOT_NOTHING case (ERROR_CURL_BASE + 55): //CURLE_SEND_ERROR case (ERROR_CURL_BASE + 56): //CURLE_RECV_ERROR case (ERROR_CURL_BASE + 65): //CURLE_SEND_FAIL_REWIND return true; default: break; }; } return false; } long DefaultRetryStrategy::calcDelayTimeMs(const Error & error, long attemptedRetries) const { UNUSED_PARAM(error); return (1 << attemptedRetries) * m_scaleFactor; } //default for configuration end ClientConfiguration::ClientConfiguration() : userAgent(DefaultUserAgent()), scheme(Http::Scheme::HTTP), maxConnections(16), requestTimeoutMs(10000), connectTimeoutMs(5000), retryStrategy(std::make_shared()), proxyScheme(Http::Scheme::HTTP), proxyPort(0), verifySSL(true), isCname(false), enableCrc64(true), enableDateSkewAdjustment(true), sendRateLimiter(nullptr), recvRateLimiter(nullptr), executor(nullptr), httpClient(nullptr), isPathStyle(false), isVerifyObjectStrict(true), signatureVersion(SignatureVersionType::V1), httpInterceptor(nullptr) { } ================================================ FILE: sdk/src/encryption/Cipher.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "CipherOpenssl.h" #include using namespace AlibabaCloud::OSS; inline static std::string toAlgorithmName(CipherAlgorithm algo) { static const char* name[] = { "AES", "RSA"}; return name[static_cast(algo) - static_cast(CipherAlgorithm::AES)]; } inline static std::string toModeName(CipherMode mode) { static const char* name[] = { "NONE", "ECB", "CBC", "CTR"}; return name[static_cast(mode) - static_cast(CipherMode::NONE)]; } inline static std::string toPaddingName(CipherPadding pad) { static const char* name[] = { "NoPadding", "PKCS1Padding", "PKCS5Padding", "PKCS7Padding", "ZeroPadding"}; return name[static_cast(pad) - static_cast(CipherPadding::NoPadding)]; } SymmetricCipher::SymmetricCipher(const std::string& impl, CipherAlgorithm algo, CipherMode mode, CipherPadding pad): impl_(impl), algorithm_(algo), mode_(mode), padding_(pad), blockSize_(16) { name_ = toAlgorithmName(algo); name_.append("/"); name_.append(toModeName(mode)); name_.append("/"); name_.append(toPaddingName(pad)); } ByteBuffer SymmetricCipher::GenerateIV(size_t length) { //use openssl rand func ByteBuffer out = ByteBuffer(length); RAND_bytes((unsigned char *)out.data(), static_cast(length)); return out; } ByteBuffer SymmetricCipher::GenerateKey(size_t length) { //use openssl rand func ByteBuffer out = ByteBuffer(length); RAND_bytes((unsigned char *)out.data(), static_cast(length)); return out; } template typename std::enable_if::value, T>::type bswap(T i, T j = 0u, std::size_t n = 0u) { return n == sizeof(T) ? j : bswap(i >> CHAR_BIT, (j << CHAR_BIT) | (i & (T)(unsigned char)(-1)), n + 1); } ByteBuffer SymmetricCipher::IncCTRCounter(const ByteBuffer& counter, uint64_t numberOfBlocks) { ByteBuffer ctrCounter(counter); uint64_t *ctrPtr = (uint64_t*)(ctrCounter.data() + ctrCounter.size() - sizeof(uint64_t)); uint64_t n = 1; if (*(char *)&n) { //little *ctrPtr = bswap(bswap(*ctrPtr) + numberOfBlocks); } else { //big *ctrPtr += numberOfBlocks; } return ctrCounter; } std::shared_ptr SymmetricCipher::CreateAES128_CTRImpl() { return std::make_shared(EVP_aes_128_ctr(), CipherAlgorithm::AES, CipherMode::CTR, CipherPadding::NoPadding); } std::shared_ptr SymmetricCipher::CreateAES128_CBCImpl() { return std::make_shared(EVP_aes_128_cbc(), CipherAlgorithm::AES, CipherMode::CBC, CipherPadding::PKCS5Padding); } std::shared_ptr SymmetricCipher::CreateAES256_CTRImpl() { return std::make_shared(EVP_aes_256_ctr(), CipherAlgorithm::AES, CipherMode::CTR, CipherPadding::NoPadding); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// AsymmetricCipher::AsymmetricCipher(const std::string& impl, CipherAlgorithm algo, CipherMode mode, CipherPadding pad) : impl_(impl), algorithm_(algo), mode_(mode), padding_(pad) { name_ = toAlgorithmName(algo); name_.append("/"); name_.append(toModeName(mode)); name_.append("/"); name_.append(toPaddingName(pad)); } std::shared_ptr AsymmetricCipher::CreateRSA_NONEImpl() { return std::make_shared(CipherAlgorithm::RSA, CipherMode::NONE, CipherPadding::PKCS1Padding); } ================================================ FILE: sdk/src/encryption/CipherOpenssl.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "CipherOpenssl.h" #include #include #include #include #include #include #if defined(OPENSSL_API_LEVEL) && OPENSSL_API_LEVEL >= 30000 #include #endif using namespace AlibabaCloud::OSS; SymmetricCipherOpenssl::SymmetricCipherOpenssl(const EVP_CIPHER* cipher, CipherAlgorithm algo, CipherMode mode, CipherPadding pad): SymmetricCipher("openssl-impl", algo, mode, pad), encryptCtx_(nullptr), decryptCtx_(nullptr), cipher_(cipher) { blockSize_ = EVP_CIPHER_block_size(cipher_); } SymmetricCipherOpenssl::~SymmetricCipherOpenssl() { if (encryptCtx_) { EVP_CIPHER_CTX_cleanup(encryptCtx_); EVP_CIPHER_CTX_free(encryptCtx_); encryptCtx_ = nullptr; } if (decryptCtx_) { EVP_CIPHER_CTX_cleanup(decryptCtx_); EVP_CIPHER_CTX_free(decryptCtx_); decryptCtx_ = nullptr; } } void SymmetricCipherOpenssl::EncryptInit(const ByteBuffer& key, const ByteBuffer& iv) { if (!encryptCtx_) { encryptCtx_ = EVP_CIPHER_CTX_new(); } EVP_EncryptInit_ex(encryptCtx_, cipher_, nullptr, key.data(), iv.data()); } ByteBuffer SymmetricCipherOpenssl::Encrypt(const ByteBuffer& data) { if (data.empty()) { return ByteBuffer(); } int outlen = static_cast(data.size() + EVP_MAX_BLOCK_LENGTH); ByteBuffer out(static_cast(outlen)); if (!EVP_EncryptUpdate(encryptCtx_, out.data(), &outlen, data.data(), static_cast(data.size()))) { return ByteBuffer(); } out.resize(outlen); return out; } int SymmetricCipherOpenssl::Encrypt(unsigned char* dst, int dstLen, const unsigned char* src, int srcLen) { if (!dst || !src) { return -1; } if (!EVP_EncryptUpdate(encryptCtx_, dst, &dstLen, src, srcLen)) { return -1; } return dstLen; } ByteBuffer SymmetricCipherOpenssl::EncryptFinish() { ByteBuffer out(EVP_MAX_BLOCK_LENGTH); int outlen = 0; if (!EVP_EncryptFinal_ex(encryptCtx_, out.data(), &outlen)) { return ByteBuffer(); } out.resize(static_cast(outlen)); return out; } void SymmetricCipherOpenssl::DecryptInit(const ByteBuffer& key, const ByteBuffer& iv) { if (!decryptCtx_) { decryptCtx_ = EVP_CIPHER_CTX_new(); } EVP_DecryptInit_ex(decryptCtx_, cipher_, nullptr, key.data(), iv.data()); } ByteBuffer SymmetricCipherOpenssl::Decrypt(const ByteBuffer& data) { if (data.empty()) { return ByteBuffer(); } int outlen = static_cast(data.size() + EVP_MAX_BLOCK_LENGTH); ByteBuffer out(static_cast(outlen)); if (!EVP_DecryptUpdate(decryptCtx_, out.data(), &outlen, data.data(), static_cast(data.size()))) { return ByteBuffer(); } out.resize(outlen); return out; } int SymmetricCipherOpenssl::Decrypt(unsigned char * dst, int dstLen, const unsigned char* src, int srcLen) { if (!dst || !src) { return -1; } if (!EVP_DecryptUpdate(decryptCtx_, dst, &dstLen, (const unsigned char *)src, srcLen)) { return -1; } return dstLen; } ByteBuffer SymmetricCipherOpenssl::DecryptFinish() { ByteBuffer out(EVP_MAX_BLOCK_LENGTH); int outlen = 0; if (!EVP_DecryptFinal_ex(decryptCtx_, (unsigned char *)out.data(), &outlen)) { return ByteBuffer(); } out.resize(static_cast(outlen)); return out; } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// AsymmetricCipherOpenssl::AsymmetricCipherOpenssl(CipherAlgorithm algo, CipherMode mode, CipherPadding pad) : AsymmetricCipher("openssl-impl", algo, mode, pad) { } AsymmetricCipherOpenssl::~AsymmetricCipherOpenssl() { } ByteBuffer AsymmetricCipherOpenssl::Encrypt(const ByteBuffer& data) { #if defined(OPENSSL_API_LEVEL) && OPENSSL_API_LEVEL >= 30000 BIO* bio = NULL; OSSL_DECODER_CTX* dctx = NULL; EVP_PKEY* pkey = NULL; EVP_PKEY_CTX* ctx = NULL; ByteBuffer enc; do { if (data.empty()) { break; } dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, "PEM", NULL, "RSA", EVP_PKEY_PUBLIC_KEY, NULL, NULL); if (dctx == NULL) { break; } bio = BIO_new(BIO_s_mem()); BIO_puts(bio, PublicKey().c_str()); if (OSSL_DECODER_from_bio(dctx, bio) == 0) { break; } ctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL); if (ctx == NULL) { break; } if (EVP_PKEY_encrypt_init_ex(ctx, NULL) <= 0) { break; } if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PADDING) <= 0) { break; } size_t enc_len = 0; if (EVP_PKEY_encrypt(ctx, NULL, &enc_len, (unsigned char*)data.data(), data.size()) <= 0) { break; } enc.resize(enc_len, 0); if (EVP_PKEY_encrypt(ctx, (unsigned char*)enc.data(), &enc_len, (unsigned char*)data.data(), data.size()) <= 0) { enc.resize(0); break; } } while (0); if (bio) { BIO_free(bio); } if (dctx != NULL) { OSSL_DECODER_CTX_free(dctx); } if (pkey) { EVP_PKEY_free(pkey); } if (ctx != NULL) { EVP_PKEY_CTX_free(ctx); } return enc; #else RSA* rsa = NULL; BIO* bio = NULL; EVP_PKEY* pkey = NULL; ByteBuffer enc; do { if (data.empty()) { break; } bio = BIO_new(BIO_s_mem()); BIO_puts(bio, PublicKey().c_str()); if (strncmp("-----BEGIN RSA", PublicKey().c_str(), 14) == 0) { rsa = PEM_read_bio_RSAPublicKey(bio, &rsa, NULL, NULL); } else { pkey = PEM_read_bio_PUBKEY(bio, &pkey, NULL, NULL); rsa = pkey ? EVP_PKEY_get1_RSA(pkey) : NULL; } if (rsa == NULL) { break; } int rsa_len = RSA_size(rsa); enc.resize(rsa_len, 0); if (RSA_public_encrypt((int)data.size(), (unsigned char*)data.data(), (unsigned char*)enc.data(), rsa, RSA_PKCS1_PADDING) < 0) { enc.resize(0); } } while (0); if (bio) { BIO_free(bio); } if (pkey) { EVP_PKEY_free(pkey); } if (rsa) { RSA_free(rsa); } return enc; #endif } ByteBuffer AsymmetricCipherOpenssl::Decrypt(const ByteBuffer& data) { #if defined(OPENSSL_API_LEVEL) && OPENSSL_API_LEVEL >= 30000 BIO* bio = NULL; EVP_PKEY* pkey = NULL; EVP_PKEY_CTX* ctx = NULL; ByteBuffer dec; do { if (data.empty()) { break; } bio = BIO_new(BIO_s_mem()); BIO_puts(bio, PrivateKey().c_str()); pkey = PEM_read_bio_PrivateKey(bio, &pkey, NULL, NULL); ctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL); if (ctx == NULL) { break; } if (EVP_PKEY_decrypt_init_ex(ctx, NULL) <= 0) { break; } if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PADDING) <= 0) { break; } size_t dec_len = 0; if (EVP_PKEY_decrypt(ctx, NULL, &dec_len, (unsigned char*)data.data(), data.size()) <= 0) { break; } dec.resize(dec_len, 0); if (EVP_PKEY_decrypt(ctx, (unsigned char*)dec.data(), &dec_len, (unsigned char*)data.data(), data.size()) <= 0) { dec_len = 0; } dec.resize(dec_len); } while (0); if (bio) { BIO_free(bio); } if (pkey) { EVP_PKEY_free(pkey); } if (ctx != NULL) { EVP_PKEY_CTX_free(ctx); } return dec; #else RSA* rsa = NULL; BIO* bio = NULL; EVP_PKEY* pkey = NULL; ByteBuffer dec; do { if (data.empty()) { break; } bio = BIO_new(BIO_s_mem()); BIO_puts(bio, PrivateKey().c_str()); if (strncmp("-----BEGIN RSA", PublicKey().c_str(), 14) == 0) { rsa = PEM_read_bio_RSAPrivateKey(bio, &rsa, NULL, NULL); } else { pkey = PEM_read_bio_PrivateKey(bio, &pkey, NULL, NULL); rsa = pkey ? EVP_PKEY_get1_RSA(pkey) : NULL; } if (rsa == NULL) { break; } int rsa_len = RSA_size(rsa); dec.resize(rsa_len, 0); auto dec_len = RSA_private_decrypt(rsa_len, (unsigned char*)data.data(), (unsigned char*)dec.data(), rsa, RSA_PKCS1_PADDING); dec.resize(dec_len < 0 ? 0 : static_cast(dec_len)); } while (0); if (bio) { BIO_free(bio); } if (pkey) { EVP_PKEY_free(pkey); } if (rsa) { RSA_free(rsa); } return dec; #endif } ================================================ FILE: sdk/src/encryption/CipherOpenssl.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class SymmetricCipherOpenssl : public SymmetricCipher { public: ~SymmetricCipherOpenssl(); SymmetricCipherOpenssl(const EVP_CIPHER* cipher, CipherAlgorithm algo, CipherMode mode, CipherPadding pad); virtual void EncryptInit(const ByteBuffer& key, const ByteBuffer& iv); virtual ByteBuffer Encrypt(const ByteBuffer& data); virtual int Encrypt(unsigned char * dst, int dstLen, const unsigned char* src, int srcLen); virtual ByteBuffer EncryptFinish(); virtual void DecryptInit(const ByteBuffer& key, const ByteBuffer& iv); virtual ByteBuffer Decrypt(const ByteBuffer& data); virtual int Decrypt(unsigned char * dst, int dstLen, const unsigned char* src, int srcLen); virtual ByteBuffer DecryptFinish(); private: EVP_CIPHER_CTX* encryptCtx_; EVP_CIPHER_CTX* decryptCtx_; const EVP_CIPHER* cipher_; int blockSize_; }; class AsymmetricCipherOpenssl : public AsymmetricCipher { public: ~AsymmetricCipherOpenssl(); AsymmetricCipherOpenssl(CipherAlgorithm algo, CipherMode mode, CipherPadding pad); virtual ByteBuffer Encrypt(const ByteBuffer& data); virtual ByteBuffer Decrypt(const ByteBuffer& data); private: }; } } ================================================ FILE: sdk/src/encryption/ContentCryptoMaterial.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; ContentCryptoMaterial::ContentCryptoMaterial() { } ContentCryptoMaterial::~ContentCryptoMaterial() { } ================================================ FILE: sdk/src/encryption/CryptoConfiguration.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; CryptoConfiguration::CryptoConfiguration(): cryptoMode(CryptoMode::ENCRYPTION_AESCTR), cryptoStorageMethod(CryptoStorageMethod::METADATA) { } CryptoConfiguration::~CryptoConfiguration() { } ================================================ FILE: sdk/src/encryption/CryptoModule.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "CryptoModule.h" #include "CryptoStreamBuf.h" #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; #define CHECK_FUNC_RET(outcome, func, ret) \ do { \ if (ret != 0) { \ std::string errMsg(#func" fail, return value:"); errMsg.append(std::to_string(ret));\ return outcome(OssError("EncryptionClientError", errMsg)); \ } \ } while (0) static std::string getUserAgent(const std::string& prefix) { std::stringstream ss; ss << prefix << "/OssEncryptionClient"; return ss.str(); } std::shared_ptr CryptoModule::CreateCryptoModule(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig) { switch(cryptoConfig.cryptoMode) { case CryptoMode::ENCRYPTION_AESCTR: default: return std::make_shared(encryptionMaterials, cryptoConfig); }; } CryptoModule::CryptoModule(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig): encryptionMaterials_(encryptionMaterials), cryptoConfig_(cryptoConfig) { } CryptoModule::~CryptoModule() { } PutObjectOutcome CryptoModule::PutObjectSecurely(const std::shared_ptr& client, const PutObjectRequest& request) { PutObjectRequest putRequest(request); ContentCryptoMaterial material; initEncryptionCipher(material); generateKeyIV(material); auto ret = encryptionMaterials_->EncryptCEK(material); CHECK_FUNC_RET(PutObjectOutcome, EncryptCEK, ret); addMetaData(material, putRequest.MetaData()); addUserAgent(putRequest.MetaData(), client->configuration().userAgent); CryptoStreamBuf cryptoStream(*putRequest.Body(), cipher_, material.ContentKey(), material.ContentIV()); return client->PutObject(putRequest); } GetObjectOutcome CryptoModule::GetObjectSecurely(const std::shared_ptr& client, const GetObjectRequest& request, const ObjectMetaData& meta) { GetObjectRequest getRequest(request); ContentCryptoMaterial material; readMetaData(material, meta); initDecryptionCipher(material); if (material.CipherName() != cipher_->Name()) { std::stringstream ss; ss << "Cipher name is not support, " << "expect " << cipher_->Name() << ", " "got " << material.CipherName() << "."; return GetObjectOutcome(OssError("EncryptionClientError", ss.str())); } auto ret = encryptionMaterials_->DecryptCEK(material); CHECK_FUNC_RET(GetObjectOutcome, DecryptCEK, ret); //range auto iv = material.ContentIV(); auto range = request.Range(); int64_t skipCnt = 0; int64_t blkSize = static_cast(cipher_->BlockSize()); if (range.first > 0) { auto blockOfNum = range.first / blkSize; auto newBegin = blockOfNum * blkSize; skipCnt = range.first % blkSize; getRequest.setRange(newBegin, range.second); iv = cipher_->IncCTRCounter(iv, static_cast(blockOfNum)); } //ua getRequest.setUserAgent(getUserAgent(client->configuration().userAgent)); std::shared_ptr cryptoStream = nullptr; std::shared_ptr userContent = nullptr; getRequest.setResponseStreamFactory([&]() { auto content = request.ResponseStreamFactory()(); cryptoStream = std::make_shared(*content, cipher_, material.ContentKey(), iv, static_cast(skipCnt)); userContent = content; return content; } ); auto outcome = client->GetObject(getRequest); if (skipCnt > 0 && outcome.isSuccess()) { ObjectMetaData ometa = outcome.result().Metadata(); auto len = ometa.ContentLength(); ometa.setContentLength(len - skipCnt); outcome.result().setMetaData(ometa); } cryptoStream = nullptr; userContent = nullptr; return outcome; } InitiateMultipartUploadOutcome CryptoModule::InitiateMultipartUploadSecurely(const std::shared_ptr& client, const InitiateMultipartUploadRequest& request, MultipartUploadCryptoContext& ctx) { std::string errMsg1; if (!checkUserParameter(ctx, errMsg1)) { return InitiateMultipartUploadOutcome(OssError("EncryptionClientError", errMsg1)); } InitiateMultipartUploadRequest initRequest(request); ContentCryptoMaterial material; initEncryptionCipher(material); generateKeyIV(material); auto ret = encryptionMaterials_->EncryptCEK(material); CHECK_FUNC_RET(InitiateMultipartUploadOutcome, EncryptCEK, ret); addMetaData(material, initRequest.MetaData()); addMetaDataMultipart(ctx, initRequest.MetaData()); addUserAgent(initRequest.MetaData(), client->configuration().userAgent); auto outcome = client->InitiateMultipartUpload(initRequest); if (outcome.isSuccess()) { ctx.setContentMaterial(material); ctx.setUploadId(outcome.result().UploadId()); } return outcome; } PutObjectOutcome CryptoModule::UploadPartSecurely(const std::shared_ptr& client, const UploadPartRequest& request, const MultipartUploadCryptoContext& ctx) { std::string errMsg; if (!checkUserParameter(ctx, errMsg)) { return PutObjectOutcome(OssError("EncryptionClientError", errMsg)); } //check material if (ctx.ContentMaterial().ContentKey().empty() || ctx.ContentMaterial().ContentIV().empty()) { return PutObjectOutcome(OssError("EncryptionClientError", "ContentKey/IV in CryptoContext is empty.")); } UploadPartRequest uRequest(request); ContentCryptoMaterial material; initEncryptionCipher(material); #if 0 ObjectMetaData meta; addMetaData(ctx.ContentMaterial(), meta); addMetaDataMultipart(ctx, meta); uRequest.setMetaData(meta); #endif //ua uRequest.setUserAgent(getUserAgent(client->configuration().userAgent)); auto fileOffset = ctx.PartSize() * static_cast(uRequest.PartNumber() - 1); auto blockNum = fileOffset / static_cast(cipher_->BlockSize()); auto iv = cipher_->IncCTRCounter(ctx.ContentMaterial().ContentIV(), static_cast(blockNum)); CryptoStreamBuf cryptoStream(*uRequest.Body(), cipher_, ctx.ContentMaterial().ContentKey(), iv); return client->UploadPart(uRequest); } void CryptoModule::addMetaData(const ContentCryptoMaterial& content, ObjectMetaData& meta) { //x-oss-meta-client-side-encryption-key meta.addUserHeader("client-side-encryption-key", Base64Encode((const char*)content.EncryptedContentKey().data(), static_cast(content.EncryptedContentKey().size()))); //x-oss-meta-client-side-encryption-start //iv meta.addUserHeader("client-side-encryption-start", Base64Encode((const char*)content.EncryptedContentIV().data(), static_cast(content.EncryptedContentIV().size()))); //x-oss-meta-client-side-encryption-cek-alg meta.addUserHeader("client-side-encryption-cek-alg", content.CipherName()); //x-oss-meta-client-side-encryption-wrap-alg meta.addUserHeader("client-side-encryption-wrap-alg", content.KeyWrapAlgorithm()); //x-oss-meta-client-side-encryption-matdesc,json format if (!content.Description().empty()) { std::string jsonStr = MapToJsonString(content.Description()); if (!jsonStr.empty()) { meta.addUserHeader("client-side-encryption-matdesc", jsonStr); } } //x-oss-meta-client-side-encryption-magic-number-hmac if (!content.MagicNumber().empty()) { meta.addUserHeader("client-side-encryption-magic-number-hmac", content.MagicNumber()); } //x-oss-meta-client-side-encryption-unencrypted-content-md5 if (meta.hasHeader(Http::CONTENT_MD5)) { meta.addUserHeader("client-side-encryption-unencrypted-content-md5", meta.ContentMd5()); meta.removeHeader(Http::CONTENT_MD5); } //x-oss-meta-client-side-encryption-unencrypted-content-length //ToDo } void CryptoModule::addMetaDataMultipart(const MultipartUploadCryptoContext& ctx, ObjectMetaData& meta) { if (ctx.DataSize() > 0) { meta.addUserHeader("client-side-encryption-data-size", std::to_string(ctx.DataSize())); } meta.addUserHeader("client-side-encryption-part-size", std::to_string(ctx.PartSize())); } void CryptoModule::readMetaData(ContentCryptoMaterial& content, const ObjectMetaData& meta) { //x-oss-meta-client-side-encryption-key if (meta.hasUserHeader("client-side-encryption-key")) { content.setEncryptedContentKey(Base64Decode(meta.UserMetaData().at("client-side-encryption-key"))); } //x-oss-meta-client-side-encryption-start //iv if (meta.hasUserHeader("client-side-encryption-start")) { content.setEncryptedContentIV(Base64Decode(meta.UserMetaData().at("client-side-encryption-start"))); } //x-oss-meta-client-side-encryption-cek-alg if (meta.hasUserHeader("client-side-encryption-cek-alg")) { content.setCipherName(meta.UserMetaData().at("client-side-encryption-cek-alg")); } //x-oss-meta-client-side-encryption-wrap-alg if (meta.hasUserHeader("client-side-encryption-wrap-alg")) { content.setKeyWrapAlgorithm(meta.UserMetaData().at("client-side-encryption-wrap-alg")); } //x-oss-meta-client-side-encryption-matdesc if (meta.hasUserHeader("client-side-encryption-matdesc")) { content.setDescription(JsonStringToMap(meta.UserMetaData().at("client-side-encryption-matdesc"))); } } void CryptoModule::addUserAgent(ObjectMetaData& meta, const std::string& prefix) { if (!meta.hasHeader(Http::USER_AGENT)) { meta.addHeader(Http::USER_AGENT, getUserAgent(prefix)); } } ////////////////////////////////////////////////////////////////////////////////////////////////////////// //CryptoModuleAES265_CTR CryptoModuleAESCTR::CryptoModuleAESCTR(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig): CryptoModule(encryptionMaterials, cryptoConfig) { } CryptoModuleAESCTR::~CryptoModuleAESCTR() { } void CryptoModuleAESCTR::initEncryptionCipher(ContentCryptoMaterial& content) { cipher_ = SymmetricCipher::CreateAES256_CTRImpl(); content.setCipherName(cipher_->Name()); } void CryptoModuleAESCTR::generateKeyIV(ContentCryptoMaterial& content) { content.setContentKey(SymmetricCipher::GenerateKey(32)); auto iv = SymmetricCipher::GenerateIV(16); iv[8] = iv[9] = iv[10] = iv[11] = 0; content.setContentIV(iv); } void CryptoModuleAESCTR::initDecryptionCipher(ContentCryptoMaterial& content) { UNUSED_PARAM(content); cipher_ = SymmetricCipher::CreateAES256_CTRImpl(); } bool CryptoModuleAESCTR::checkUserParameter(const MultipartUploadCryptoContext& ctx, std::string& errMsg) { if (ctx.PartSize() < PartSizeLowerLimit) { errMsg = "PartSize should not be less than 102400."; return false; } if (ctx.PartSize() % 16) { errMsg = "PartSize is not 16 bytes alignment."; return false; } return true; } ================================================ FILE: sdk/src/encryption/CryptoModule.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include "../OssClientImpl.h" namespace AlibabaCloud { namespace OSS { class CryptoModule { public: virtual ~CryptoModule(); PutObjectOutcome PutObjectSecurely(const std::shared_ptr& client, const PutObjectRequest& request); GetObjectOutcome GetObjectSecurely(const std::shared_ptr& client, const GetObjectRequest& request, const ObjectMetaData& meta); InitiateMultipartUploadOutcome InitiateMultipartUploadSecurely(const std::shared_ptr& client, const InitiateMultipartUploadRequest& request, MultipartUploadCryptoContext& ctx); PutObjectOutcome UploadPartSecurely(const std::shared_ptr& client, const UploadPartRequest& request, const MultipartUploadCryptoContext& ctx); public: static std::shared_ptr CreateCryptoModule(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); protected: CryptoModule(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); void addMetaData(const ContentCryptoMaterial& content, ObjectMetaData& meta); void addMetaDataMultipart(const MultipartUploadCryptoContext& ctx, ObjectMetaData& meta); void readMetaData(ContentCryptoMaterial& content, const ObjectMetaData& meta); void addUserAgent(ObjectMetaData& meta, const std::string& prefix); virtual void initEncryptionCipher(ContentCryptoMaterial& content) = 0; virtual void generateKeyIV(ContentCryptoMaterial& content) = 0; virtual void initDecryptionCipher(ContentCryptoMaterial& content) = 0; virtual bool checkUserParameter(const MultipartUploadCryptoContext& ctx, std::string& errMsg) = 0; protected: std::shared_ptr encryptionMaterials_; CryptoConfiguration cryptoConfig_; std::shared_ptr cipher_; }; class CryptoModuleAESCTR :public CryptoModule { public: CryptoModuleAESCTR(const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig); ~CryptoModuleAESCTR(); protected: virtual void initEncryptionCipher(ContentCryptoMaterial& content); virtual void generateKeyIV(ContentCryptoMaterial& content); virtual void initDecryptionCipher(ContentCryptoMaterial& content); virtual bool checkUserParameter(const MultipartUploadCryptoContext& ctx, std::string& errMsg); private: }; } } ================================================ FILE: sdk/src/encryption/CryptoStreamBuf.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "CryptoStreamBuf.h" #include #include using namespace AlibabaCloud::OSS; CryptoStreamBuf::CryptoStreamBuf(std::iostream& stream, const std::shared_ptr& cipher, const ByteBuffer& key, const ByteBuffer& iv, const int skipCnt) : StreamBufProxy(stream), cipher_(cipher), encBufferCnt_(0), encBufferOff_(0), decBufferCnt_(0), decBufferOff_(0), key_(key), iv_(iv), initEncrypt(false), initDecrypt(false), skipCnt_(skipCnt) { StartPosForIV_ = StreamBufProxy::seekoff(std::streamoff(0), std::ios_base::cur, std::ios_base::in); } CryptoStreamBuf::~CryptoStreamBuf() { //flush decBuffer when its size is BLK_SIZE if (decBufferCnt_ > 0) { unsigned char block[BLK_SIZE]; auto ret = cipher_->Decrypt(block, static_cast(decBufferCnt_), decBuffer_, static_cast(decBufferCnt_)); decBufferCnt_ = 0; if (ret < 0) { return; } xsputn_with_skip(reinterpret_cast(block), ret); } } std::streamsize CryptoStreamBuf::xsgetn(char * _Ptr, std::streamsize _Count) { const std::streamsize startCount = _Count; std::streamsize readCnt; unsigned char block[BLK_SIZE]; //update iv base the pos if (!initEncrypt) { auto currPos = StreamBufProxy::seekoff(std::streamoff(0), std::ios_base::cur, std::ios_base::in); currPos -= StartPosForIV_; auto blkOff = currPos / BLK_SIZE; auto blkIdx = currPos % BLK_SIZE; auto iv = SymmetricCipher::IncCTRCounter(iv_, blkOff); cipher_->EncryptInit(key_, iv); encBufferCnt_ = 0; encBufferOff_ = 0; if (blkIdx > 0) { StreamBufProxy::seekpos(blkOff * BLK_SIZE, std::ios_base::in); readCnt = StreamBufProxy::xsgetn(reinterpret_cast(block), BLK_SIZE); auto ret = cipher_->Encrypt(encBuffer_, static_cast(readCnt), block, static_cast(readCnt)); if (ret < 0) { return -1; } encBufferCnt_ = ret - blkIdx; encBufferOff_ = blkIdx; } initEncrypt = true; } //read from inner encBuffer_ first readCnt = read_from_encrypted_buffer(_Ptr, _Count); if (readCnt > 0) { _Count -= readCnt; _Ptr += readCnt; } //read from streambuf by BLK_SIZE while (_Count > 0) { readCnt = StreamBufProxy::xsgetn(reinterpret_cast(block), BLK_SIZE); if (readCnt <= 0) break; if (_Count < readCnt) { auto ret = cipher_->Encrypt(encBuffer_, static_cast(readCnt), block, static_cast(readCnt)); if (ret < 0) { return -1; } encBufferCnt_ = ret; encBufferOff_ = 0; break; } else { auto ret = cipher_->Encrypt(reinterpret_cast(_Ptr), static_cast(readCnt), block, static_cast(readCnt)); if (ret < 0) { return -1; } _Count -= ret; _Ptr += ret; } } //read from inner encBuffer_ again readCnt = read_from_encrypted_buffer(_Ptr, _Count); if (readCnt > 0) { _Count -= readCnt; _Ptr += readCnt; } return startCount - _Count; } std::streamsize CryptoStreamBuf::read_from_encrypted_buffer(char * _Ptr, std::streamsize _Count) { const std::streamsize startCount = _Count; if (_Count > 0 && encBufferCnt_ > 0) { auto cnt = std::min(_Count, encBufferCnt_); memcpy(_Ptr, encBuffer_ + encBufferOff_, static_cast(cnt)); _Ptr += cnt; _Count -= cnt; encBufferCnt_ -= cnt; encBufferOff_ += cnt; } return startCount - _Count; } std::streampos CryptoStreamBuf::seekoff(off_type _Off, std::ios_base::seekdir _Way, std::ios_base::openmode _Mode) { if (_Mode & std::ios_base::in) { initEncrypt = false; } if (_Mode & std::ios_base::out) { initDecrypt = false; } return StreamBufProxy::seekoff(_Off, _Way, _Mode); } std::streampos CryptoStreamBuf::seekpos(pos_type _Pos, std::ios_base::openmode _Mode) { if (_Mode & std::ios_base::in) { initEncrypt = false; } if (_Mode & std::ios_base::out) { initDecrypt = false; } return StreamBufProxy::seekpos(_Pos, _Mode); } std::streamsize CryptoStreamBuf::xsputn(const char *_Ptr, std::streamsize _Count) { const std::streamsize startCount = _Count; unsigned char block[BLK_SIZE * 2]; std::streamsize writeCnt; //update iv if (!initDecrypt) { cipher_->DecryptInit(key_, iv_); decBufferCnt_ = 0; decBufferOff_ = 0; initDecrypt = true; } //append to decBuffer first if (decBufferCnt_ > 0) { writeCnt = std::min(_Count, (BLK_SIZE - decBufferCnt_)); memcpy(decBuffer_ + decBufferOff_, _Ptr, static_cast(writeCnt)); decBufferOff_ += writeCnt; decBufferCnt_ += writeCnt; _Ptr += writeCnt; _Count -= writeCnt; } //flush decBuffer when its size is BLK_SIZE if (decBufferCnt_ == BLK_SIZE) { auto ret = cipher_->Decrypt(block, static_cast(BLK_SIZE), decBuffer_, static_cast(BLK_SIZE)); if (ret < 0) { return -1; } decBufferCnt_ = 0; decBufferOff_ = 0; writeCnt = xsputn_with_skip(reinterpret_cast(block), BLK_SIZE); if (writeCnt != BLK_SIZE) { //Todo Save decrypted data return startCount - _Count; } } auto blkOff = _Count / BLK_SIZE; auto blkIdx = _Count % BLK_SIZE; //decrypt by BLK_SIZE for (auto i = std::streamsize(0); i < blkOff; i++) { auto ret = cipher_->Decrypt(block, static_cast(BLK_SIZE), reinterpret_cast(_Ptr), static_cast(BLK_SIZE)); if (ret < 0) { return -1; } _Ptr += BLK_SIZE; _Count -= BLK_SIZE; writeCnt = xsputn_with_skip(reinterpret_cast(block), BLK_SIZE); if (writeCnt != BLK_SIZE) { //Todo Save decrypted data return startCount - _Count; } } //save to decBuffer and decrypt next time if (blkIdx > 0) { memcpy(decBuffer_, _Ptr, static_cast(blkIdx)); _Ptr += blkIdx; _Count -= blkIdx; decBufferCnt_ = blkIdx; decBufferOff_ = blkIdx; } return startCount - _Count; } std::streamsize CryptoStreamBuf::xsputn_with_skip(const char *_Ptr, std::streamsize _Count) { const std::streamsize startCount = _Count; if (skipCnt_ > 0) { auto min = std::min(skipCnt_, _Count); skipCnt_ -= min; _Count -= min; _Ptr += min; } if (_Count > 0) { _Count -= StreamBufProxy::xsputn(_Ptr, _Count); } return startCount - _Count; } ================================================ FILE: sdk/src/encryption/CryptoStreamBuf.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include "../utils/StreamBuf.h" namespace AlibabaCloud { namespace OSS { class CryptoStreamBuf : public StreamBufProxy { public: static const std::streamsize BLK_SIZE = 16; CryptoStreamBuf(std::iostream& stream, const std::shared_ptr& cipher, const ByteBuffer& key, const ByteBuffer& iv, const int skipCnt = 0); ~CryptoStreamBuf(); protected: std::streamsize xsgetn(char * _Ptr, std::streamsize _Count); std::streamsize xsputn(const char *_Ptr, std::streamsize _Count); std::streampos seekoff(off_type _Off, std::ios_base::seekdir _Way, std::ios_base::openmode _Mode = std::ios_base::in | std::ios_base::out); std::streampos seekpos(pos_type _Pos, std::ios_base::openmode _Mode = std::ios_base::in | std::ios_base::out); private: std::streamsize read_from_encrypted_buffer(char * _Ptr, std::streamsize _Count); std::streamsize xsputn_with_skip(const char *_Ptr, std::streamsize _Count); std::shared_ptr cipher_; unsigned char encBuffer_[BLK_SIZE * 2]; std::streamsize encBufferCnt_; std::streamsize encBufferOff_; unsigned char decBuffer_[BLK_SIZE * 2]; std::streamsize decBufferCnt_; std::streamsize decBufferOff_; ByteBuffer key_; ByteBuffer iv_; bool initEncrypt; bool initDecrypt; std::streamsize skipCnt_; // for decrypt, must be less BLK_SIZE std::streampos StartPosForIV_; }; } } ================================================ FILE: sdk/src/encryption/EncryptionMaterials.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; EncryptionMaterials::~EncryptionMaterials() { } ///////////////////////////////////////////////////////////////////////////////////////////////////////////// SimpleRSAEncryptionMaterials::SimpleRSAEncryptionMaterials(const std::string& publicKey, const std::string& privateKey): SimpleRSAEncryptionMaterials(publicKey, privateKey, std::map< std::string, std::string>()) { } SimpleRSAEncryptionMaterials::SimpleRSAEncryptionMaterials(const std::string& publicKey, const std::string& privateKey, const std::map& description): publicKey_(publicKey), description_(description) { encryptionMaterials_.push_back(RSAEncryptionMaterial(std::pair(publicKey, privateKey), description)); } SimpleRSAEncryptionMaterials::~SimpleRSAEncryptionMaterials() { } void SimpleRSAEncryptionMaterials::addEncryptionMaterial(const std::string& publicKey, const std::string& privateKey, const std::map& description) { encryptionMaterials_.push_back(RSAEncryptionMaterial(std::pair(publicKey, privateKey), description)); } int SimpleRSAEncryptionMaterials::EncryptCEK(ContentCryptoMaterial& contentCryptoMaterial) { auto cipher = AsymmetricCipher::CreateRSA_NONEImpl(); cipher->setPublicKey(publicKey_); auto encrptedKey = cipher->Encrypt(contentCryptoMaterial.ContentKey()); auto encrptedKeyIV = cipher->Encrypt(contentCryptoMaterial.ContentIV()); if (encrptedKey.empty() || encrptedKeyIV.empty()) { return -1; } contentCryptoMaterial.setDescription(description_); contentCryptoMaterial.setKeyWrapAlgorithm(cipher->Name()); contentCryptoMaterial.setEncryptedContentKey(encrptedKey); contentCryptoMaterial.setEncryptedContentIV(encrptedKeyIV); return 0; } int SimpleRSAEncryptionMaterials::DecryptCEK(ContentCryptoMaterial& contentCryptoMaterial) { auto cipher = AsymmetricCipher::CreateRSA_NONEImpl(); auto keyWarpAlgo = ToLower(contentCryptoMaterial.KeyWrapAlgorithm().c_str()); auto cipherName = ToLower(cipher->Name().c_str()); if (keyWarpAlgo != cipherName) { return -1; } int index = findIndexByDescription(contentCryptoMaterial.Description()); if (index < 0) { return -1; } const std::string& privateKey = encryptionMaterials_[index].first.second; cipher->setPrivateKey(privateKey); auto key = cipher->Decrypt(contentCryptoMaterial.EncryptedContentKey()); auto iv = cipher->Decrypt(contentCryptoMaterial.EncryptedContentIV()); if (key.empty() || iv.empty()) { return -1; } contentCryptoMaterial.setContentKey(key); contentCryptoMaterial.setContentIV(iv); return 0; } int SimpleRSAEncryptionMaterials::findIndexByDescription(const std::map& description) { bool found = false; int index = 0; for (const auto& item : encryptionMaterials_) { if (item.second == description) { found = true; break; } index++; } return found ? index: -1; } ================================================ FILE: sdk/src/encryption/OssEncryptionClient.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../encryption/CryptoModule.h" #include "../utils/Utils.h" #include "../utils/FileSystemUtils.h" #include "../resumable/ResumableDownloader.h" #include "../resumable/ResumableUploader.h" using namespace AlibabaCloud::OSS; /////////////////////////////////////////////////////////////////////////////////////////////////////// namespace AlibabaCloud { namespace OSS { #if !defined(DISABLE_RESUAMABLE) static GetObjectRequest ConvertToGetObjectRequest(const DownloadObjectRequest& request) { auto gRequest = GetObjectRequest(request.Bucket(), request.Key(), request.ModifiedSinceConstraint(), request.UnmodifiedSinceConstraint(), request.MatchingETagsConstraint(), request.NonmatchingETagsConstraint(), request.ResponseHeaderParameters()); if (request.RangeIsSet()) { gRequest.setRange(request.RangeStart(), request.RangeEnd()); } if (request.TransferProgress().Handler) { gRequest.setTransferProgress(request.TransferProgress()); } if (request.RequestPayer() == RequestPayer::Requester) { gRequest.setRequestPayer(request.RequestPayer()); } if (request.TrafficLimit() != 0) { gRequest.setTrafficLimit(request.TrafficLimit()); } if (!request.VersionId().empty()) { gRequest.setVersionId(request.VersionId()); } gRequest.setResponseStreamFactory([&]() {return std::make_shared(request.FilePath(), std::ios_base::out | std::ios_base::in | std::ios_base::trunc | std::ios_base::binary); }); return gRequest; } static PutObjectRequest ConvertToPutObjectRequest(const UploadObjectRequest& request) { std::shared_ptr content = std::make_shared(request.FilePath(), std::ios::in | std::ios::binary); PutObjectRequest pRequest(request.Bucket(), request.Key(), content, request.MetaData()); if (request.TransferProgress().Handler) { pRequest.setTransferProgress(request.TransferProgress()); } if (request.RequestPayer() == RequestPayer::Requester) { pRequest.setRequestPayer(request.RequestPayer()); } if (request.TrafficLimit() != 0) { pRequest.setTrafficLimit(request.TrafficLimit()); } return pRequest; } class EncryptionResumableDownloader : public ResumableDownloader { public: EncryptionResumableDownloader(const DownloadObjectRequest& request, const ObjectMetaData& meta, const OssEncryptionClient* enClient, const OssClientImpl *client, uint64_t objectSize) : ResumableDownloader(request, client, objectSize) , encryptionClient_(enClient) , metaData_(meta) { //16 bytes alignment partSize_ = (partSize_ >> 4) << 4; } protected: virtual GetObjectOutcome GetObjectWrap(const GetObjectRequest &request) const { return encryptionClient_->GetObjectInternal(request, metaData_); } private: const OssEncryptionClient* encryptionClient_; const ObjectMetaData& metaData_; }; class EncryptionResumableUploader : public ResumableUploader { public: EncryptionResumableUploader(const UploadObjectRequest& request, const OssEncryptionClient* enClient, const OssClientImpl *client) : ResumableUploader(request, client) , encryptionClient_(enClient) { //16 bytes alignment partSize_ = (partSize_ >> 4) << 4; } protected: virtual void initRecordInfo() { ResumableUploader::initRecordInfo(); encryptionCheckData_ = cryptoContext_.ContentMaterial().ContentIV(); } virtual void buildRecordInfo(const Json::Value& value) { ResumableUploader::buildRecordInfo(value); ContentCryptoMaterial material; material.setEncryptedContentKey(Base64Decode(value["encryption-key"].asString())); material.setEncryptedContentIV(Base64Decode(value["encryption-iv"].asString())); material.setKeyWrapAlgorithm(value["encryption-wrap-alg"].asString()); material.setDescription(JsonStringToMap(value["encryption-matdesc"].asString())); encryptionClient_->encryptionMaterials_->DecryptCEK(material); material.setCipherName(value["encryption-cek-alg"].asString()); cryptoContext_.setUploadId(value["uploadID"].asString()); cryptoContext_.setDataSize(value["size"].asInt64()); cryptoContext_.setPartSize(value["partSize"].asInt64()); cryptoContext_.setContentMaterial(material); encryptionCheckData_ = Base64Decode(value["encryption-check-data"].asString()); } virtual void dumpRecordInfo(Json::Value& value) { ResumableUploader::dumpRecordInfo(value); const ByteBuffer& buff1 = cryptoContext_.ContentMaterial().EncryptedContentKey(); value["encryption-key"] = Base64Encode((const char*)buff1.data(), (int)buff1.size()); const ByteBuffer& buff2 = cryptoContext_.ContentMaterial().EncryptedContentIV(); value["encryption-iv"] = Base64Encode((const char*)buff2.data(), (int)buff2.size()); value["encryption-cek-alg"] = cryptoContext_.ContentMaterial().CipherName(); value["encryption-wrap-alg"] = cryptoContext_.ContentMaterial().KeyWrapAlgorithm(); value["encryption-matdesc"] = MapToJsonString(cryptoContext_.ContentMaterial().Description()); const ByteBuffer& buff3 = cryptoContext_.ContentMaterial().ContentIV(); value["encryption-check-data"] = Base64Encode((const char*)buff3.data(), (int)buff3.size()); } virtual int validateRecord() { int ret = ResumableUploader::validateRecord(); if (ret != 0) { return ret; } if (cryptoContext_.ContentMaterial().ContentKey().empty()|| cryptoContext_.ContentMaterial().ContentIV().empty() || cryptoContext_.ContentMaterial().CipherName().empty()) { return -2; } if (encryptionCheckData_ != cryptoContext_.ContentMaterial().ContentIV()) { return -2; } return 0; } virtual InitiateMultipartUploadOutcome InitiateMultipartUploadWrap(const InitiateMultipartUploadRequest &request) const { cryptoContext_.setPartSize(static_cast(partSize_)); cryptoContext_.setDataSize(static_cast(objectSize_)); return encryptionClient_->InitiateMultipartUpload(request, cryptoContext_); } virtual PutObjectOutcome UploadPartWrap(const UploadPartRequest &request) const { return encryptionClient_->UploadPart(request, cryptoContext_); } virtual ListPartsOutcome ListPartsWrap(const ListPartsRequest &request) const { return encryptionClient_->ListParts(request); } virtual CompleteMultipartUploadOutcome CompleteMultipartUploadWrap(const CompleteMultipartUploadRequest &request) const { return encryptionClient_->CompleteMultipartUpload(request, cryptoContext_); } private: const OssEncryptionClient* encryptionClient_; mutable MultipartUploadCryptoContext cryptoContext_; ByteBuffer encryptionCheckData_; }; #endif } } /////////////////////////////////////////////////////////////////////////////////////////////////////// OssEncryptionClient::OssEncryptionClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig): OssEncryptionClient(endpoint, accessKeyId, accessKeySecret, "", configuration, encryptionMaterials, cryptoConfig) { } OssEncryptionClient::OssEncryptionClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret, const std::string& securityToken, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig): OssClient(endpoint, std::make_shared(accessKeyId, accessKeySecret, securityToken), configuration), encryptionMaterials_(encryptionMaterials), cryptoConfig_(cryptoConfig) { } OssEncryptionClient::OssEncryptionClient(const std::string &endpoint, const std::shared_ptr& credentialsProvider, const ClientConfiguration& configuration, const std::shared_ptr& encryptionMaterials, const CryptoConfiguration& cryptoConfig) : OssClient(endpoint, credentialsProvider, configuration), encryptionMaterials_(encryptionMaterials), cryptoConfig_(cryptoConfig) { } OssEncryptionClient::~OssEncryptionClient() { } GetObjectOutcome OssEncryptionClient::GetObjectInternal(const GetObjectRequest& request, const ObjectMetaData& meta) const { if (meta.hasUserHeader("client-side-encryption-key")) { auto module = CryptoModule::CreateCryptoModule(encryptionMaterials_, cryptoConfig_); return module->GetObjectSecurely(client_, request, meta); } else { return client_->GetObject(request); } } GetObjectOutcome OssEncryptionClient::GetObject(const GetObjectRequest& request) const { const auto& reqeustBase = static_cast(request); int ret = reqeustBase.validate(); if (ret != 0) { return GetObjectOutcome(OssError("ValidateError", request.validateMessage(ret))); } HeadObjectRequest hRequest(request.Bucket(), request.Key()); if (request.RequestPayer() == RequestPayer::Requester) { hRequest.setRequestPayer(request.RequestPayer()); } if (!request.VersionId().empty()) { hRequest.setVersionId(request.VersionId()); } auto outcome = client_->HeadObject(hRequest); if (!outcome.isSuccess()) { return GetObjectOutcome(outcome.error()); } return GetObjectInternal(request, outcome.result()); } GetObjectOutcome OssEncryptionClient::GetObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const { GetObjectRequest request(bucket, key); request.setResponseStreamFactory([=]() { return content; }); return GetObject(request); } GetObjectOutcome OssEncryptionClient::GetObject(const std::string &bucket, const std::string &key, const std::string &fileToSave) const { GetObjectRequest request(bucket, key); request.setResponseStreamFactory([=]() {return std::make_shared(fileToSave, std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); return GetObject(request); } PutObjectOutcome OssEncryptionClient::PutObject(const PutObjectRequest& request) const { const auto& reqeustBase = static_cast(request); int ret = reqeustBase.validate(); if (ret != 0) { return PutObjectOutcome(OssError("ValidateError", request.validateMessage(ret))); } auto module = CryptoModule::CreateCryptoModule(encryptionMaterials_, cryptoConfig_); return module->PutObjectSecurely(client_, request); } PutObjectOutcome OssEncryptionClient::PutObject(const std::string &bucket, const std::string &key, const std::shared_ptr &content) const { return PutObject(PutObjectRequest(bucket, key, content)); } PutObjectOutcome OssEncryptionClient::PutObject(const std::string &bucket, const std::string &key, const std::string &fileToUpload) const { std::shared_ptr content = std::make_shared(fileToUpload, std::ios::in | std::ios::binary); return PutObject(PutObjectRequest(bucket, key, content)); } AppendObjectOutcome OssEncryptionClient::AppendObject(const AppendObjectRequest& request) const { UNUSED_PARAM(request); return AppendObjectOutcome(OssError("EncryptionClientError", "Not Support this operation.")); } /*MultipartUpload*/ InitiateMultipartUploadOutcome OssEncryptionClient::InitiateMultipartUpload(const InitiateMultipartUploadRequest& request, MultipartUploadCryptoContext& ctx) const { auto module = CryptoModule::CreateCryptoModule(encryptionMaterials_, cryptoConfig_); return module->InitiateMultipartUploadSecurely(client_, request, ctx); } PutObjectOutcome OssEncryptionClient::UploadPart(const UploadPartRequest& request, const MultipartUploadCryptoContext& ctx) const { const auto& reqeustBase = static_cast(request); int ret = reqeustBase.validate(); if (ret != 0) { return PutObjectOutcome(OssError("ValidateError", request.validateMessage(ret))); } auto module = CryptoModule::CreateCryptoModule(encryptionMaterials_, cryptoConfig_); return module->UploadPartSecurely(client_, request, ctx); } UploadPartCopyOutcome OssEncryptionClient::UploadPartCopy(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& ctx) const { UNUSED_PARAM(request); UNUSED_PARAM(ctx); return UploadPartCopyOutcome(OssError("EncryptionClientError", "Not Support this operation.")); } CompleteMultipartUploadOutcome OssEncryptionClient::CompleteMultipartUpload(const CompleteMultipartUploadRequest& request, const MultipartUploadCryptoContext& ctx) const { UNUSED_PARAM(ctx); return OssClient::CompleteMultipartUpload(request); } #if !defined(DISABLE_RESUAMABLE) /*Resumable Operation*/ PutObjectOutcome OssEncryptionClient::ResumableUploadObject(const UploadObjectRequest& request) const { const auto& reqeustBase = static_cast(request); int code = reqeustBase.validate(); if (code != 0) { return PutObjectOutcome(OssError("ValidateError", reqeustBase.validateMessage(code))); } if (request.ObjectSize() <= request.PartSize()) { auto pRequest = ConvertToPutObjectRequest(request); return PutObject(pRequest); } else { EncryptionResumableUploader uploader(request, this, client_.get()); return uploader.Upload(); } } CopyObjectOutcome OssEncryptionClient::ResumableCopyObject(const MultiCopyObjectRequest& request) const { UNUSED_PARAM(request); return CopyObjectOutcome(OssError("EncryptionClientError", "Not Support this operation.")); } GetObjectOutcome OssEncryptionClient::ResumableDownloadObject(const DownloadObjectRequest& request) const { HeadObjectRequest hRequest(request.Bucket(), request.Key()); if (request.RequestPayer() == RequestPayer::Requester) { hRequest.setRequestPayer(request.RequestPayer()); } if (!request.VersionId().empty()) { hRequest.setVersionId(request.VersionId()); } auto hOutcome = client_->HeadObject(hRequest); if (!hOutcome.isSuccess()) { return GetObjectOutcome(hOutcome.error()); } auto objectSize = static_cast(hOutcome.result().ContentLength()); if (objectSize <= request.PartSize()) { auto gRequest = ConvertToGetObjectRequest(request); auto gOutcome = GetObjectInternal(gRequest, hOutcome.result()); if (gOutcome.isSuccess()) { gOutcome.result().setContent(nullptr); } return gOutcome; } else { const auto& reqeustBase = static_cast(request); int code = reqeustBase.validate(); if (code != 0) { return GetObjectOutcome(OssError("ValidateError", reqeustBase.validateMessage(code))); } if (hOutcome.result().UserMetaData().find("client-side-encryption-key") != hOutcome.result().UserMetaData().end()) { EncryptionResumableDownloader downloader(request, hOutcome.result(), this, client_.get(), objectSize); return downloader.Download(); } else { ResumableDownloader downloader(request, client_.get(), objectSize); return downloader.Download(); } } } #endif /*Aysnc APIs*/ void OssEncryptionClient::GetObjectAsync(const GetObjectRequest& request, const GetObjectAsyncHandler& handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, GetObject(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssEncryptionClient::PutObjectAsync(const PutObjectRequest& request, const PutObjectAsyncHandler& handler, const std::shared_ptr& context) const { auto fn = [this, request, handler, context]() { handler(this, request, PutObject(request), context); }; client_->asyncExecute(new Runnable(fn)); } void OssEncryptionClient::UploadPartAsync(const UploadPartRequest& request, const UploadPartAsyncHandler& handler, const MultipartUploadCryptoContext& cryptoCtx, const std::shared_ptr& context) const { auto fn = [this, request, handler, cryptoCtx, context]() { handler(this, request, UploadPart(request, cryptoCtx), context); }; client_->asyncExecute(new Runnable(fn)); } void OssEncryptionClient::UploadPartCopyAsync(const UploadPartCopyRequest& request, const UploadPartCopyAsyncHandler& handler, const MultipartUploadCryptoContext& cryptoCtx, const std::shared_ptr& context) const { auto fn = [this, request, handler, cryptoCtx, context]() { handler(this, request, UploadPartCopy(request, cryptoCtx), context); }; client_->asyncExecute(new Runnable(fn)); } /*Callable APIs*/ GetObjectOutcomeCallable OssEncryptionClient::GetObjectCallable(const GetObjectRequest& request) const { auto task = std::make_shared>( [this, request]() { return GetObject(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } PutObjectOutcomeCallable OssEncryptionClient::PutObjectCallable(const PutObjectRequest& request) const { auto task = std::make_shared>( [this, request]() { return PutObject(request); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } PutObjectOutcomeCallable OssEncryptionClient::UploadPartCallable(const UploadPartRequest& request, const MultipartUploadCryptoContext& cryptoCtx) const { auto task = std::make_shared>( [this, request, cryptoCtx]() { return UploadPart(request, cryptoCtx); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } UploadPartCopyOutcomeCallable OssEncryptionClient::UploadPartCopyCallable(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& cryptoCtx) const { auto task = std::make_shared>( [this, request, cryptoCtx]() { return UploadPartCopy(request, cryptoCtx); }); client_->asyncExecute(new Runnable([task]() { (*task)(); })); return task->get_future(); } /*Generate URL*/ GetObjectOutcome OssEncryptionClient::GetObjectByUrl(const GetObjectByUrlRequest& request) const { UNUSED_PARAM(request); return GetObjectOutcome(OssError("EncryptionClientError", "Not Support this operation.")); } PutObjectOutcome OssEncryptionClient::PutObjectByUrl(const PutObjectByUrlRequest& request) const { UNUSED_PARAM(request); return PutObjectOutcome(OssError("EncryptionClientError", "Not Support this operation.")); } ================================================ FILE: sdk/src/external/json/json-forwards.h ================================================ /// Json-cpp amalgamated forward header (http://jsoncpp.sourceforge.net/). /// It is intended to be used with #include "json/json-forwards.h" /// This header provides forward declaration for all JsonCpp types. // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// /* The JsonCpp library's source code, including accompanying documentation, tests and demonstration applications, are licensed under the following conditions... Baptiste Lepilleur and The JsonCpp Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. In jurisdictions which do not recognize Public Domain property (e.g. Germany as of 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur and The JsonCpp Authors, and is released under the terms of the MIT License (see below). In jurisdictions which recognize Public Domain property, the user of this software may choose to accept it either as 1) Public Domain, 2) under the conditions of the MIT License (see below), or 3) under the terms of dual Public Domain/MIT License conditions described here, as they choose. The MIT License is about as close to Public Domain as a license can get, and is described in clear, concise terms at: http://en.wikipedia.org/wiki/MIT_License The full text of the MIT License follows: ======================================================================== Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================== (END LICENSE TEXT) The MIT license is compatible with both the GPL and commercial software, affording one all of the rights of Public Domain with the minor nuisance of being required to keep the above copyright notice and license text in the source code. Note also that by accepting the Public Domain "license" you can re-license your copy using whatever license you like. */ // ////////////////////////////////////////////////////////////////////// // End of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// #ifndef JSON_FORWARD_AMALGAMATED_H_INCLUDED # define JSON_FORWARD_AMALGAMATED_H_INCLUDED /// If defined, indicates that the source file is amalgamated /// to prevent private header inclusion. #define JSON_IS_AMALGAMATION // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/config.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_CONFIG_H_INCLUDED #define JSON_CONFIG_H_INCLUDED #include #include //typedef String #include //typedef int64_t, uint64_t /// If defined, indicates that json library is embedded in CppTL library. //# define JSON_IN_CPPTL 1 /// If defined, indicates that json may leverage CppTL library //# define JSON_USE_CPPTL 1 /// If defined, indicates that cpptl vector based map should be used instead of /// std::map /// as Value container. //# define JSON_USE_CPPTL_SMALLMAP 1 #define JSON_USE_EXCEPTION 0 // If non-zero, the library uses exceptions to report bad input instead of C // assertion macros. The default is to use exceptions. #ifndef JSON_USE_EXCEPTION #define JSON_USE_EXCEPTION 1 #endif /// If defined, indicates that the source file is amalgamated /// to prevent private header inclusion. /// Remarks: it is automatically defined in the generated amalgamated header. // #define JSON_IS_AMALGAMATION #ifdef JSON_IN_CPPTL #include #ifndef JSON_USE_CPPTL #define JSON_USE_CPPTL 1 #endif #endif #ifdef JSON_IN_CPPTL #define JSON_API CPPTL_API #elif defined(JSON_DLL_BUILD) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllexport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #endif // if defined(_MSC_VER) #elif defined(JSON_DLL) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllimport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #endif // if defined(_MSC_VER) #endif // ifdef JSON_IN_CPPTL #if !defined(JSON_API) #define JSON_API #endif // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for // integer // Storages, and 64 bits integer support is disabled. // #define JSON_NO_INT64 1 #if defined(_MSC_VER) // MSVC # if _MSC_VER <= 1200 // MSVC 6 // Microsoft Visual Studio 6 only support conversion from __int64 to double // (no conversion from unsigned __int64). # define JSON_USE_INT64_DOUBLE_CONVERSION 1 // Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255' // characters in the debug information) // All projects I've ever seen with VS6 were using this globally (not bothering // with pragma push/pop). # pragma warning(disable : 4786) # endif // MSVC 6 # if _MSC_VER >= 1500 // MSVC 2008 /// Indicates that the following function is deprecated. # define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) # endif #endif // defined(_MSC_VER) // In c++11 the override keyword allows you to explicitly define that a function // is intended to override the base-class version. This makes the code more // managable and fixes a set of common hard-to-find bugs. #if __cplusplus >= 201103L # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT noexcept #elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900 # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT throw() #elif defined(_MSC_VER) && _MSC_VER >= 1900 # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT noexcept #else # define JSONCPP_OVERRIDE # define JSONCPP_NOEXCEPT throw() #endif #ifndef JSON_HAS_RVALUE_REFERENCES #if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010 #define JSON_HAS_RVALUE_REFERENCES 1 #endif // MSVC >= 2010 #ifdef __clang__ #if __has_feature(cxx_rvalue_references) #define JSON_HAS_RVALUE_REFERENCES 1 #endif // has_feature #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc) #if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L) #define JSON_HAS_RVALUE_REFERENCES 1 #endif // GXX_EXPERIMENTAL #endif // __clang__ || __GNUC__ #endif // not defined JSON_HAS_RVALUE_REFERENCES #ifndef JSON_HAS_RVALUE_REFERENCES #define JSON_HAS_RVALUE_REFERENCES 0 #endif #ifdef __clang__ # if __has_extension(attribute_deprecated_with_message) # define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) # endif #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc) # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) # define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) # elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) # define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__)) # endif // GNUC version #endif // __clang__ || __GNUC__ #if !defined(JSONCPP_DEPRECATED) #define JSONCPP_DEPRECATED(message) #endif // if !defined(JSONCPP_DEPRECATED) #if __GNUC__ >= 6 # define JSON_USE_INT64_DOUBLE_CONVERSION 1 #endif #if !defined(JSON_IS_AMALGAMATION) # include "version.h" # if JSONCPP_USING_SECURE_MEMORY # include "allocator.h" //typedef Allocator # endif #endif // if !defined(JSON_IS_AMALGAMATION) namespace AlibabaCloud { namespace OSS { namespace Json { typedef int Int; typedef unsigned int UInt; #if defined(JSON_NO_INT64) typedef int LargestInt; typedef unsigned int LargestUInt; #undef JSON_HAS_INT64 #else // if defined(JSON_NO_INT64) // For Microsoft Visual use specific types as long long is not supported #if defined(_MSC_VER) // Microsoft Visual Studio typedef __int64 Int64; typedef unsigned __int64 UInt64; #else // if defined(_MSC_VER) // Other platforms, use long long typedef int64_t Int64; typedef uint64_t UInt64; #endif // if defined(_MSC_VER) typedef Int64 LargestInt; typedef UInt64 LargestUInt; #define JSON_HAS_INT64 #endif // if defined(JSON_NO_INT64) #if JSONCPP_USING_SECURE_MEMORY #define JSONCPP_STRING std::basic_string, Json::SecureAllocator > #define JSONCPP_OSTRINGSTREAM std::basic_ostringstream, Json::SecureAllocator > #define JSONCPP_OSTREAM std::basic_ostream> #define JSONCPP_ISTRINGSTREAM std::basic_istringstream, Json::SecureAllocator > #define JSONCPP_ISTREAM std::istream #else #define JSONCPP_STRING std::string #define JSONCPP_OSTRINGSTREAM std::ostringstream #define JSONCPP_OSTREAM std::ostream #define JSONCPP_ISTRINGSTREAM std::istringstream #define JSONCPP_ISTREAM std::istream #endif // if JSONCPP_USING_SECURE_MEMORY } // end namespace Json } } #endif // JSON_CONFIG_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/config.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/forwards.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_FORWARDS_H_INCLUDED #define JSON_FORWARDS_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) namespace AlibabaCloud { namespace OSS { namespace Json { // writer.h class FastWriter; class StyledWriter; // reader.h class Reader; // features.h class Features; // value.h typedef unsigned int ArrayIndex; class StaticString; class Path; class PathArgument; class Value; class ValueIteratorBase; class ValueIterator; class ValueConstIterator; } // namespace Json } } #endif // JSON_FORWARDS_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/forwards.h // ////////////////////////////////////////////////////////////////////// #endif //ifndef JSON_FORWARD_AMALGAMATED_H_INCLUDED ================================================ FILE: sdk/src/external/json/json.h ================================================ /// Json-cpp amalgamated header (http://jsoncpp.sourceforge.net/). /// It is intended to be used with #include "json/json.h" // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// /* The JsonCpp library's source code, including accompanying documentation, tests and demonstration applications, are licensed under the following conditions... Baptiste Lepilleur and The JsonCpp Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. In jurisdictions which do not recognize Public Domain property (e.g. Germany as of 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur and The JsonCpp Authors, and is released under the terms of the MIT License (see below). In jurisdictions which recognize Public Domain property, the user of this software may choose to accept it either as 1) Public Domain, 2) under the conditions of the MIT License (see below), or 3) under the terms of dual Public Domain/MIT License conditions described here, as they choose. The MIT License is about as close to Public Domain as a license can get, and is described in clear, concise terms at: http://en.wikipedia.org/wiki/MIT_License The full text of the MIT License follows: ======================================================================== Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================== (END LICENSE TEXT) The MIT license is compatible with both the GPL and commercial software, affording one all of the rights of Public Domain with the minor nuisance of being required to keep the above copyright notice and license text in the source code. Note also that by accepting the Public Domain "license" you can re-license your copy using whatever license you like. */ // ////////////////////////////////////////////////////////////////////// // End of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// #ifndef JSON_AMALGAMATED_H_INCLUDED # define JSON_AMALGAMATED_H_INCLUDED /// If defined, indicates that the source file is amalgamated /// to prevent private header inclusion. #define JSON_IS_AMALGAMATION // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/version.h // ////////////////////////////////////////////////////////////////////// // DO NOT EDIT. This file (and "version") is generated by CMake. // Run CMake configure step to update it. #ifndef JSON_VERSION_H_INCLUDED # define JSON_VERSION_H_INCLUDED # define JSONCPP_VERSION_STRING "1.8.4" # define JSONCPP_VERSION_MAJOR 1 # define JSONCPP_VERSION_MINOR 8 # define JSONCPP_VERSION_PATCH 4 # define JSONCPP_VERSION_QUALIFIER # define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8)) #ifdef JSONCPP_USING_SECURE_MEMORY #undef JSONCPP_USING_SECURE_MEMORY #endif #define JSONCPP_USING_SECURE_MEMORY 0 // If non-zero, the library zeroes any memory that it has allocated before // it frees its memory. #endif // JSON_VERSION_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/version.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/config.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_CONFIG_H_INCLUDED #define JSON_CONFIG_H_INCLUDED #include #include //typedef String #include //typedef int64_t, uint64_t /// If defined, indicates that json library is embedded in CppTL library. //# define JSON_IN_CPPTL 1 /// If defined, indicates that json may leverage CppTL library //# define JSON_USE_CPPTL 1 /// If defined, indicates that cpptl vector based map should be used instead of /// std::map /// as Value container. //# define JSON_USE_CPPTL_SMALLMAP 1 // If non-zero, the library uses exceptions to report bad input instead of C // assertion macros. The default is to use exceptions. #define JSON_USE_EXCEPTION 0 #ifndef JSON_USE_EXCEPTION #define JSON_USE_EXCEPTION 1 #endif /// If defined, indicates that the source file is amalgamated /// to prevent private header inclusion. /// Remarks: it is automatically defined in the generated amalgamated header. // #define JSON_IS_AMALGAMATION #ifdef JSON_IN_CPPTL #include #ifndef JSON_USE_CPPTL #define JSON_USE_CPPTL 1 #endif #endif #ifdef JSON_IN_CPPTL #define JSON_API CPPTL_API #elif defined(JSON_DLL_BUILD) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllexport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #endif // if defined(_MSC_VER) #elif defined(JSON_DLL) #if defined(_MSC_VER) || defined(__MINGW32__) #define JSON_API __declspec(dllimport) #define JSONCPP_DISABLE_DLL_INTERFACE_WARNING #endif // if defined(_MSC_VER) #endif // ifdef JSON_IN_CPPTL #if !defined(JSON_API) #define JSON_API #endif // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for // integer // Storages, and 64 bits integer support is disabled. // #define JSON_NO_INT64 1 #if defined(_MSC_VER) // MSVC # if _MSC_VER <= 1200 // MSVC 6 // Microsoft Visual Studio 6 only support conversion from __int64 to double // (no conversion from unsigned __int64). # define JSON_USE_INT64_DOUBLE_CONVERSION 1 // Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255' // characters in the debug information) // All projects I've ever seen with VS6 were using this globally (not bothering // with pragma push/pop). # pragma warning(disable : 4786) # endif // MSVC 6 # if _MSC_VER >= 1500 // MSVC 2008 /// Indicates that the following function is deprecated. # define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) # endif #endif // defined(_MSC_VER) // In c++11 the override keyword allows you to explicitly define that a function // is intended to override the base-class version. This makes the code more // managable and fixes a set of common hard-to-find bugs. #if __cplusplus >= 201103L # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT noexcept #elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900 # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT throw() #elif defined(_MSC_VER) && _MSC_VER >= 1900 # define JSONCPP_OVERRIDE override # define JSONCPP_NOEXCEPT noexcept #else # define JSONCPP_OVERRIDE # define JSONCPP_NOEXCEPT throw() #endif #ifndef JSON_HAS_RVALUE_REFERENCES #if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010 #define JSON_HAS_RVALUE_REFERENCES 1 #endif // MSVC >= 2010 #ifdef __clang__ #if __has_feature(cxx_rvalue_references) #define JSON_HAS_RVALUE_REFERENCES 1 #endif // has_feature #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc) #if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L) #define JSON_HAS_RVALUE_REFERENCES 1 #endif // GXX_EXPERIMENTAL #endif // __clang__ || __GNUC__ #endif // not defined JSON_HAS_RVALUE_REFERENCES #ifndef JSON_HAS_RVALUE_REFERENCES #define JSON_HAS_RVALUE_REFERENCES 0 #endif #ifdef __clang__ # if __has_extension(attribute_deprecated_with_message) # define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) # endif #elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc) # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) # define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) # elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) # define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__)) # endif // GNUC version #endif // __clang__ || __GNUC__ #if !defined(JSONCPP_DEPRECATED) #define JSONCPP_DEPRECATED(message) #endif // if !defined(JSONCPP_DEPRECATED) #if __GNUC__ >= 6 # define JSON_USE_INT64_DOUBLE_CONVERSION 1 #endif #if !defined(JSON_IS_AMALGAMATION) # include "version.h" # if JSONCPP_USING_SECURE_MEMORY # include "allocator.h" //typedef Allocator # endif #endif // if !defined(JSON_IS_AMALGAMATION) namespace AlibabaCloud { namespace OSS { namespace Json { typedef int Int; typedef unsigned int UInt; #if defined(JSON_NO_INT64) typedef int LargestInt; typedef unsigned int LargestUInt; #undef JSON_HAS_INT64 #else // if defined(JSON_NO_INT64) // For Microsoft Visual use specific types as long long is not supported #if defined(_MSC_VER) // Microsoft Visual Studio typedef __int64 Int64; typedef unsigned __int64 UInt64; #else // if defined(_MSC_VER) // Other platforms, use long long typedef int64_t Int64; typedef uint64_t UInt64; #endif // if defined(_MSC_VER) typedef Int64 LargestInt; typedef UInt64 LargestUInt; #define JSON_HAS_INT64 #endif // if defined(JSON_NO_INT64) #if JSONCPP_USING_SECURE_MEMORY #define JSONCPP_STRING std::basic_string, Json::SecureAllocator > #define JSONCPP_OSTRINGSTREAM std::basic_ostringstream, Json::SecureAllocator > #define JSONCPP_OSTREAM std::basic_ostream> #define JSONCPP_ISTRINGSTREAM std::basic_istringstream, Json::SecureAllocator > #define JSONCPP_ISTREAM std::istream #else #define JSONCPP_STRING std::string #define JSONCPP_OSTRINGSTREAM std::ostringstream #define JSONCPP_OSTREAM std::ostream #define JSONCPP_ISTRINGSTREAM std::istringstream #define JSONCPP_ISTREAM std::istream #endif // if JSONCPP_USING_SECURE_MEMORY } // end namespace Json } } #endif // JSON_CONFIG_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/config.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/forwards.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_FORWARDS_H_INCLUDED #define JSON_FORWARDS_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) namespace AlibabaCloud { namespace OSS { namespace Json { // writer.h class FastWriter; class StyledWriter; // reader.h class Reader; // features.h class Features; // value.h typedef unsigned int ArrayIndex; class StaticString; class Path; class PathArgument; class Value; class ValueIteratorBase; class ValueIterator; class ValueConstIterator; } // namespace Json } } #endif // JSON_FORWARDS_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/forwards.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/features.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef CPPTL_JSON_FEATURES_H_INCLUDED #define CPPTL_JSON_FEATURES_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "forwards.h" #endif // if !defined(JSON_IS_AMALGAMATION) #pragma pack(push, 8) namespace AlibabaCloud { namespace OSS { namespace Json { /** \brief Configuration passed to reader and writer. * This configuration object can be used to force the Reader or Writer * to behave in a standard conforming way. */ class JSON_API Features { public: /** \brief A configuration that allows all features and assumes all strings * are UTF-8. * - C & C++ comments are allowed * - Root object can be any JSON value * - Assumes Value strings are encoded in UTF-8 */ static Features all(); /** \brief A configuration that is strictly compatible with the JSON * specification. * - Comments are forbidden. * - Root object must be either an array or an object value. * - Assumes Value strings are encoded in UTF-8 */ static Features strictMode(); /** \brief Initialize the configuration like JsonConfig::allFeatures; */ Features(); /// \c true if comments are allowed. Default: \c true. bool allowComments_; /// \c true if root must be either an array or an object value. Default: \c /// false. bool strictRoot_; /// \c true if dropped null placeholders are allowed. Default: \c false. bool allowDroppedNullPlaceholders_; /// \c true if numeric object key are allowed. Default: \c false. bool allowNumericKeys_; }; } // namespace Json } } #pragma pack(pop) #endif // CPPTL_JSON_FEATURES_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/features.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/value.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef CPPTL_JSON_H_INCLUDED #define CPPTL_JSON_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "forwards.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #ifndef JSON_USE_CPPTL_SMALLMAP #include #else #include #endif #ifdef JSON_USE_CPPTL #include #endif //Conditional NORETURN attribute on the throw functions would: // a) suppress false positives from static code analysis // b) possibly improve optimization opportunities. #if !defined(JSONCPP_NORETURN) # if defined(_MSC_VER) # define JSONCPP_NORETURN __declspec(noreturn) # elif defined(__GNUC__) # define JSONCPP_NORETURN __attribute__ ((__noreturn__)) # else # define JSONCPP_NORETURN # endif #endif // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(push) #pragma warning(disable : 4251) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) /** \brief JSON (JavaScript Object Notation). */ namespace AlibabaCloud { namespace OSS { namespace Json { /** Base class for all exceptions we throw. * * We use nothing but these internally. Of course, STL can throw others. */ class JSON_API Exception : public std::exception { public: Exception(JSONCPP_STRING const& msg); ~Exception() JSONCPP_NOEXCEPT JSONCPP_OVERRIDE; char const* what() const JSONCPP_NOEXCEPT JSONCPP_OVERRIDE; protected: JSONCPP_STRING msg_; }; /** Exceptions which the user cannot easily avoid. * * E.g. out-of-memory (when we use malloc), stack-overflow, malicious input * * \remark derived from Json::Exception */ class JSON_API RuntimeError : public Exception { public: RuntimeError(JSONCPP_STRING const& msg); }; /** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros. * * These are precondition-violations (user bugs) and internal errors (our bugs). * * \remark derived from Json::Exception */ class JSON_API LogicError : public Exception { public: LogicError(JSONCPP_STRING const& msg); }; /// used internally JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg); /// used internally JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg); /** \brief Type of the value held by a Value object. */ enum ValueType { nullValue = 0, ///< 'null' value intValue, ///< signed integer value uintValue, ///< unsigned integer value realValue, ///< double value stringValue, ///< UTF-8 string value booleanValue, ///< bool value arrayValue, ///< array value (ordered list) objectValue ///< object value (collection of name/value pairs). }; enum CommentPlacement { commentBefore = 0, ///< a comment placed on the line before a value commentAfterOnSameLine, ///< a comment just after a value on the same line commentAfter, ///< a comment on the line after a value (only make sense for /// root value) numberOfCommentPlacement }; //# ifdef JSON_USE_CPPTL // typedef CppTL::AnyEnumerator EnumMemberNames; // typedef CppTL::AnyEnumerator EnumValues; //# endif /** \brief Lightweight wrapper to tag static string. * * Value constructor and objectValue member assignment takes advantage of the * StaticString and avoid the cost of string duplication when storing the * string or the member name. * * Example of usage: * \code * Json::Value aValue( StaticString("some text") ); * Json::Value object; * static const StaticString code("code"); * object[code] = 1234; * \endcode */ class JSON_API StaticString { public: explicit StaticString(const char* czstring) : c_str_(czstring) {} operator const char*() const { return c_str_; } const char* c_str() const { return c_str_; } private: const char* c_str_; }; /** \brief Represents a JSON value. * * This class is a discriminated union wrapper that can represents a: * - signed integer [range: Value::minInt - Value::maxInt] * - unsigned integer (range: 0 - Value::maxUInt) * - double * - UTF-8 string * - boolean * - 'null' * - an ordered list of Value * - collection of name/value pairs (javascript object) * * The type of the held value is represented by a #ValueType and * can be obtained using type(). * * Values of an #objectValue or #arrayValue can be accessed using operator[]() * methods. * Non-const methods will automatically create the a #nullValue element * if it does not exist. * The sequence of an #arrayValue will be automatically resized and initialized * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue. * * The get() methods can be used to obtain default value in the case the * required element does not exist. * * It is possible to iterate over the list of a #objectValue values using * the getMemberNames() method. * * \note #Value string-length fit in size_t, but keys must be < 2^30. * (The reason is an implementation detail.) A #CharReader will raise an * exception if a bound is exceeded to avoid security holes in your app, * but the Value API does *not* check bounds. That is the responsibility * of the caller. */ class JSON_API Value { friend class ValueIteratorBase; public: typedef std::vector Members; typedef ValueIterator iterator; typedef ValueConstIterator const_iterator; typedef Json::UInt UInt; typedef Json::Int Int; #if defined(JSON_HAS_INT64) typedef Json::UInt64 UInt64; typedef Json::Int64 Int64; #endif // defined(JSON_HAS_INT64) typedef Json::LargestInt LargestInt; typedef Json::LargestUInt LargestUInt; typedef Json::ArrayIndex ArrayIndex; // Required for boost integration, e. g. BOOST_TEST typedef std::string value_type; static const Value& null; ///< We regret this reference to a global instance; prefer the simpler Value(). static const Value& nullRef; ///< just a kludge for binary-compatibility; same as null static Value const& nullSingleton(); ///< Prefer this to null or nullRef. /// Minimum signed integer value that can be stored in a Json::Value. static const LargestInt minLargestInt; /// Maximum signed integer value that can be stored in a Json::Value. static const LargestInt maxLargestInt; /// Maximum unsigned integer value that can be stored in a Json::Value. static const LargestUInt maxLargestUInt; /// Minimum signed int value that can be stored in a Json::Value. static const Int minInt; /// Maximum signed int value that can be stored in a Json::Value. static const Int maxInt; /// Maximum unsigned int value that can be stored in a Json::Value. static const UInt maxUInt; #if defined(JSON_HAS_INT64) /// Minimum signed 64 bits int value that can be stored in a Json::Value. static const Int64 minInt64; /// Maximum signed 64 bits int value that can be stored in a Json::Value. static const Int64 maxInt64; /// Maximum unsigned 64 bits int value that can be stored in a Json::Value. static const UInt64 maxUInt64; #endif // defined(JSON_HAS_INT64) private: #ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION class CZString { public: enum DuplicationPolicy { noDuplication = 0, duplicate, duplicateOnCopy }; CZString(ArrayIndex index); CZString(char const* str, unsigned length, DuplicationPolicy allocate); CZString(CZString const& other); #if JSON_HAS_RVALUE_REFERENCES CZString(CZString&& other); #endif ~CZString(); CZString& operator=(const CZString& other); #if JSON_HAS_RVALUE_REFERENCES CZString& operator=(CZString&& other); #endif bool operator<(CZString const& other) const; bool operator==(CZString const& other) const; ArrayIndex index() const; //const char* c_str() const; ///< \deprecated char const* data() const; unsigned length() const; bool isStaticString() const; private: void swap(CZString& other); struct StringStorage { unsigned policy_: 2; unsigned length_: 30; // 1GB max }; char const* cstr_; // actually, a prefixed string, unless policy is noDup union { ArrayIndex index_; StringStorage storage_; }; }; public: #ifndef JSON_USE_CPPTL_SMALLMAP typedef std::map ObjectValues; #else typedef CppTL::SmallMap ObjectValues; #endif // ifndef JSON_USE_CPPTL_SMALLMAP #endif // ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION public: /** \brief Create a default Value of the given type. This is a very useful constructor. To create an empty array, pass arrayValue. To create an empty object, pass objectValue. Another Value can then be set to this one by assignment. This is useful since clear() and resize() will not alter types. Examples: \code Json::Value null_value; // null Json::Value arr_value(Json::arrayValue); // [] Json::Value obj_value(Json::objectValue); // {} \endcode */ Value(ValueType type = nullValue); Value(Int value); Value(UInt value); #if defined(JSON_HAS_INT64) Value(Int64 value); Value(UInt64 value); #endif // if defined(JSON_HAS_INT64) Value(double value); Value(const char* value); ///< Copy til first 0. (NULL causes to seg-fault.) Value(const char* begin, const char* end); ///< Copy all, incl zeroes. /** \brief Constructs a value from a static string. * Like other value string constructor but do not duplicate the string for * internal storage. The given string must remain alive after the call to this * constructor. * \note This works only for null-terminated strings. (We cannot change the * size of this class, so we have nowhere to store the length, * which might be computed later for various operations.) * * Example of usage: * \code * static StaticString foo("some text"); * Json::Value aValue(foo); * \endcode */ Value(const StaticString& value); Value(const JSONCPP_STRING& value); ///< Copy data() til size(). Embedded zeroes too. #ifdef JSON_USE_CPPTL Value(const CppTL::ConstString& value); #endif Value(bool value); /// Deep copy. Value(const Value& other); #if JSON_HAS_RVALUE_REFERENCES /// Move constructor Value(Value&& other); #endif ~Value(); /// Deep copy, then swap(other). /// \note Over-write existing comments. To preserve comments, use #swapPayload(). Value& operator=(Value other); /// Swap everything. void swap(Value& other); /// Swap values but leave comments and source offsets in place. void swapPayload(Value& other); /// copy everything. void copy(const Value& other); /// copy values but leave comments and source offsets in place. void copyPayload(const Value& other); ValueType type() const; /// Compare payload only, not comments etc. bool operator<(const Value& other) const; bool operator<=(const Value& other) const; bool operator>=(const Value& other) const; bool operator>(const Value& other) const; bool operator==(const Value& other) const; bool operator!=(const Value& other) const; int compare(const Value& other) const; const char* asCString() const; ///< Embedded zeroes could cause you trouble! #if JSONCPP_USING_SECURE_MEMORY unsigned getCStringLength() const; //Allows you to understand the length of the CString #endif JSONCPP_STRING asString() const; ///< Embedded zeroes are possible. /** Get raw char* of string-value. * \return false if !string. (Seg-fault if str or end are NULL.) */ bool getString( char const** begin, char const** end) const; #ifdef JSON_USE_CPPTL CppTL::ConstString asConstString() const; #endif Int asInt() const; UInt asUInt() const; #if defined(JSON_HAS_INT64) Int64 asInt64() const; UInt64 asUInt64() const; #endif // if defined(JSON_HAS_INT64) LargestInt asLargestInt() const; LargestUInt asLargestUInt() const; float asFloat() const; double asDouble() const; bool asBool() const; bool isNull() const; bool isBool() const; bool isInt() const; bool isInt64() const; bool isUInt() const; bool isUInt64() const; bool isIntegral() const; bool isDouble() const; bool isNumeric() const; bool isString() const; bool isArray() const; bool isObject() const; bool isConvertibleTo(ValueType other) const; /// Number of values in array or object ArrayIndex size() const; /// \brief Return true if empty array, empty object, or null; /// otherwise, false. bool empty() const; /// Return !isNull() explicit operator bool() const; /// Remove all object members and array elements. /// \pre type() is arrayValue, objectValue, or nullValue /// \post type() is unchanged void clear(); /// Resize the array to size elements. /// New elements are initialized to null. /// May only be called on nullValue or arrayValue. /// \pre type() is arrayValue or nullValue /// \post type() is arrayValue void resize(ArrayIndex size); /// Access an array element (zero based index ). /// If the array contains less than index element, then null value are /// inserted /// in the array so that its size is index+1. /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) Value& operator[](ArrayIndex index); /// Access an array element (zero based index ). /// If the array contains less than index element, then null value are /// inserted /// in the array so that its size is index+1. /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) Value& operator[](int index); /// Access an array element (zero based index ) /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) const Value& operator[](ArrayIndex index) const; /// Access an array element (zero based index ) /// (You may need to say 'value[0u]' to get your compiler to distinguish /// this from the operator[] which takes a string.) const Value& operator[](int index) const; /// If the array contains at least index+1 elements, returns the element /// value, /// otherwise returns defaultValue. Value get(ArrayIndex index, const Value& defaultValue) const; /// Return true if index < size(). bool isValidIndex(ArrayIndex index) const; /// \brief Append value to array at the end. /// /// Equivalent to jsonvalue[jsonvalue.size()] = value; Value& append(const Value& value); #if JSON_HAS_RVALUE_REFERENCES Value& append(Value&& value); #endif /// Access an object value by name, create a null member if it does not exist. /// \note Because of our implementation, keys are limited to 2^30 -1 chars. /// Exceeding that will cause an exception. Value& operator[](const char* key); /// Access an object value by name, returns null if there is no member with /// that name. const Value& operator[](const char* key) const; /// Access an object value by name, create a null member if it does not exist. /// \param key may contain embedded nulls. Value& operator[](const JSONCPP_STRING& key); /// Access an object value by name, returns null if there is no member with /// that name. /// \param key may contain embedded nulls. const Value& operator[](const JSONCPP_STRING& key) const; /** \brief Access an object value by name, create a null member if it does not exist. * If the object has no entry for that name, then the member name used to store * the new entry is not duplicated. * Example of use: * \code * Json::Value object; * static const StaticString code("code"); * object[code] = 1234; * \endcode */ Value& operator[](const StaticString& key); #ifdef JSON_USE_CPPTL /// Access an object value by name, create a null member if it does not exist. Value& operator[](const CppTL::ConstString& key); /// Access an object value by name, returns null if there is no member with /// that name. const Value& operator[](const CppTL::ConstString& key) const; #endif /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy Value get(const char* key, const Value& defaultValue) const; /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy /// \note key may contain embedded nulls. Value get(const char* begin, const char* end, const Value& defaultValue) const; /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy /// \param key may contain embedded nulls. Value get(const JSONCPP_STRING& key, const Value& defaultValue) const; #ifdef JSON_USE_CPPTL /// Return the member named key if it exist, defaultValue otherwise. /// \note deep copy Value get(const CppTL::ConstString& key, const Value& defaultValue) const; #endif /// Most general and efficient version of isMember()const, get()const, /// and operator[]const /// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30 Value const* find(char const* begin, char const* end) const; /// Most general and efficient version of object-mutators. /// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30 /// \return non-zero, but JSON_ASSERT if this is neither object nor nullValue. Value const* demand(char const* begin, char const* end); /// \brief Remove and return the named member. /// /// Do nothing if it did not exist. /// \return the removed Value, or null. /// \pre type() is objectValue or nullValue /// \post type() is unchanged /// \deprecated void removeMember(const char* key); /// Same as removeMember(const char*) /// \param key may contain embedded nulls. /// \deprecated void removeMember(const JSONCPP_STRING& key); /// Same as removeMember(const char* begin, const char* end, Value* removed), /// but 'key' is null-terminated. bool removeMember(const char* key, Value* removed); /** \brief Remove the named map member. Update 'removed' iff removed. \param key may contain embedded nulls. \return true iff removed (no exceptions) */ bool removeMember(JSONCPP_STRING const& key, Value* removed); /// Same as removeMember(JSONCPP_STRING const& key, Value* removed) bool removeMember(const char* begin, const char* end, Value* removed); /** \brief Remove the indexed array element. O(n) expensive operations. Update 'removed' iff removed. \return true iff removed (no exceptions) */ bool removeIndex(ArrayIndex i, Value* removed); /// Return true if the object has a member named key. /// \note 'key' must be null-terminated. bool isMember(const char* key) const; /// Return true if the object has a member named key. /// \param key may contain embedded nulls. bool isMember(const JSONCPP_STRING& key) const; /// Same as isMember(JSONCPP_STRING const& key)const bool isMember(const char* begin, const char* end) const; #ifdef JSON_USE_CPPTL /// Return true if the object has a member named key. bool isMember(const CppTL::ConstString& key) const; #endif /// \brief Return a list of the member names. /// /// If null, return an empty list. /// \pre type() is objectValue or nullValue /// \post if type() was nullValue, it remains nullValue Members getMemberNames() const; //# ifdef JSON_USE_CPPTL // EnumMemberNames enumMemberNames() const; // EnumValues enumValues() const; //# endif /// \deprecated Always pass len. JSONCPP_DEPRECATED("Use setComment(JSONCPP_STRING const&) instead.") void setComment(const char* comment, CommentPlacement placement); /// Comments must be //... or /* ... */ void setComment(const char* comment, size_t len, CommentPlacement placement); /// Comments must be //... or /* ... */ void setComment(const JSONCPP_STRING& comment, CommentPlacement placement); bool hasComment(CommentPlacement placement) const; /// Include delimiters and embedded newlines. JSONCPP_STRING getComment(CommentPlacement placement) const; JSONCPP_STRING toStyledString() const; const_iterator begin() const; const_iterator end() const; iterator begin(); iterator end(); // Accessors for the [start, limit) range of bytes within the JSON text from // which this value was parsed, if any. void setOffsetStart(ptrdiff_t start); void setOffsetLimit(ptrdiff_t limit); ptrdiff_t getOffsetStart() const; ptrdiff_t getOffsetLimit() const; private: void initBasic(ValueType type, bool allocated = false); Value& resolveReference(const char* key); Value& resolveReference(const char* key, const char* end); struct CommentInfo { CommentInfo(); ~CommentInfo(); void setComment(const char* text, size_t len); char* comment_; }; // struct MemberNamesTransform //{ // typedef const char *result_type; // const char *operator()( const CZString &name ) const // { // return name.c_str(); // } //}; union ValueHolder { LargestInt int_; LargestUInt uint_; double real_; bool bool_; char* string_; // actually ptr to unsigned, followed by str, unless !allocated_ ObjectValues* map_; } value_; ValueType type_ : 8; unsigned int allocated_ : 1; // Notes: if declared as bool, bitfield is useless. // If not allocated_, string_ must be null-terminated. CommentInfo* comments_; // [start, limit) byte offsets in the source JSON text from which this Value // was extracted. ptrdiff_t start_; ptrdiff_t limit_; }; /** \brief Experimental and untested: represents an element of the "path" to * access a node. */ class JSON_API PathArgument { public: friend class Path; PathArgument(); PathArgument(ArrayIndex index); PathArgument(const char* key); PathArgument(const JSONCPP_STRING& key); private: enum Kind { kindNone = 0, kindIndex, kindKey }; JSONCPP_STRING key_; ArrayIndex index_; Kind kind_; }; /** \brief Experimental and untested: represents a "path" to access a node. * * Syntax: * - "." => root node * - ".[n]" => elements at index 'n' of root node (an array value) * - ".name" => member named 'name' of root node (an object value) * - ".name1.name2.name3" * - ".[0][1][2].name1[3]" * - ".%" => member name is provided as parameter * - ".[%]" => index is provied as parameter */ class JSON_API Path { public: Path(const JSONCPP_STRING& path, const PathArgument& a1 = PathArgument(), const PathArgument& a2 = PathArgument(), const PathArgument& a3 = PathArgument(), const PathArgument& a4 = PathArgument(), const PathArgument& a5 = PathArgument()); const Value& resolve(const Value& root) const; Value resolve(const Value& root, const Value& defaultValue) const; /// Creates the "path" to access the specified node and returns a reference on /// the node. Value& make(Value& root) const; private: typedef std::vector InArgs; typedef std::vector Args; void makePath(const JSONCPP_STRING& path, const InArgs& in); void addPathInArg(const JSONCPP_STRING& path, const InArgs& in, InArgs::const_iterator& itInArg, PathArgument::Kind kind); void invalidPath(const JSONCPP_STRING& path, int location); Args args_; }; /** \brief base class for Value iterators. * */ class JSON_API ValueIteratorBase { public: typedef std::bidirectional_iterator_tag iterator_category; typedef unsigned int size_t; typedef int difference_type; typedef ValueIteratorBase SelfType; bool operator==(const SelfType& other) const { return isEqual(other); } bool operator!=(const SelfType& other) const { return !isEqual(other); } difference_type operator-(const SelfType& other) const { return other.computeDistance(*this); } /// Return either the index or the member name of the referenced value as a /// Value. Value key() const; /// Return the index of the referenced Value, or -1 if it is not an arrayValue. UInt index() const; /// Return the member name of the referenced Value, or "" if it is not an /// objectValue. /// \note Avoid `c_str()` on result, as embedded zeroes are possible. JSONCPP_STRING name() const; /// Return the member name of the referenced Value. "" if it is not an /// objectValue. /// \deprecated This cannot be used for UTF-8 strings, since there can be embedded nulls. JSONCPP_DEPRECATED("Use `key = name();` instead.") char const* memberName() const; /// Return the member name of the referenced Value, or NULL if it is not an /// objectValue. /// \note Better version than memberName(). Allows embedded nulls. char const* memberName(char const** end) const; protected: Value& deref() const; void increment(); void decrement(); difference_type computeDistance(const SelfType& other) const; bool isEqual(const SelfType& other) const; void copy(const SelfType& other); private: Value::ObjectValues::iterator current_; // Indicates that iterator is for a null value. bool isNull_; public: // For some reason, BORLAND needs these at the end, rather // than earlier. No idea why. ValueIteratorBase(); explicit ValueIteratorBase(const Value::ObjectValues::iterator& current); }; /** \brief const iterator for object and array value. * */ class JSON_API ValueConstIterator : public ValueIteratorBase { friend class Value; public: typedef const Value value_type; //typedef unsigned int size_t; //typedef int difference_type; typedef const Value& reference; typedef const Value* pointer; typedef ValueConstIterator SelfType; ValueConstIterator(); ValueConstIterator(ValueIterator const& other); private: /*! \internal Use by Value to create an iterator. */ explicit ValueConstIterator(const Value::ObjectValues::iterator& current); public: SelfType& operator=(const ValueIteratorBase& other); SelfType operator++(int) { SelfType temp(*this); ++*this; return temp; } SelfType operator--(int) { SelfType temp(*this); --*this; return temp; } SelfType& operator--() { decrement(); return *this; } SelfType& operator++() { increment(); return *this; } reference operator*() const { return deref(); } pointer operator->() const { return &deref(); } }; /** \brief Iterator for object and array value. */ class JSON_API ValueIterator : public ValueIteratorBase { friend class Value; public: typedef Value value_type; typedef unsigned int size_t; typedef int difference_type; typedef Value& reference; typedef Value* pointer; typedef ValueIterator SelfType; ValueIterator(); explicit ValueIterator(const ValueConstIterator& other); ValueIterator(const ValueIterator& other); private: /*! \internal Use by Value to create an iterator. */ explicit ValueIterator(const Value::ObjectValues::iterator& current); public: SelfType& operator=(const SelfType& other); SelfType operator++(int) { SelfType temp(*this); ++*this; return temp; } SelfType operator--(int) { SelfType temp(*this); --*this; return temp; } SelfType& operator--() { decrement(); return *this; } SelfType& operator++() { increment(); return *this; } reference operator*() const { return deref(); } pointer operator->() const { return &deref(); } }; } // namespace Json } } namespace std { /// Specialize std::swap() for Json::Value. template<> inline void swap(AlibabaCloud::OSS::Json::Value& a, AlibabaCloud::OSS::Json::Value& b) { a.swap(b); } } #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // CPPTL_JSON_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/value.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/reader.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef CPPTL_JSON_READER_H_INCLUDED #define CPPTL_JSON_READER_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "features.h" #include "value.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(push) #pragma warning(disable : 4251) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) namespace AlibabaCloud { namespace OSS { namespace Json { /** \brief Unserialize a JSON document into a *Value. * * \deprecated Use CharReader and CharReaderBuilder. */ class JSON_API Reader { public: typedef char Char; typedef const Char* Location; /** \brief An error tagged with where in the JSON text it was encountered. * * The offsets give the [start, limit) range of bytes within the text. Note * that this is bytes, not codepoints. * */ struct StructuredError { ptrdiff_t offset_start; ptrdiff_t offset_limit; JSONCPP_STRING message; }; /** \brief Constructs a Reader allowing all features * for parsing. */ Reader(); /** \brief Constructs a Reader allowing the specified feature set * for parsing. */ Reader(const Features& features); /** \brief Read a Value from a JSON * document. * \param document UTF-8 encoded string containing the document to read. * \param root [out] Contains the root value of the document if it was * successfully parsed. * \param collectComments \c true to collect comment and allow writing them * back during * serialization, \c false to discard comments. * This parameter is ignored if * Features::allowComments_ * is \c false. * \return \c true if the document was successfully parsed, \c false if an * error occurred. */ bool parse(const std::string& document, Value& root, bool collectComments = true); /** \brief Read a Value from a JSON document. * \param beginDoc Pointer on the beginning of the UTF-8 encoded string of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string of the document to read. * Must be >= beginDoc. * \param root [out] Contains the root value of the document if it was * successfully parsed. * \param collectComments \c true to collect comment and allow writing them back during * serialization, \c false to discard comments. * This parameter is ignored if Features::allowComments_ * is \c false. * \return \c true if the document was successfully parsed, \c false if an error occurred. */ bool parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments = true); /// \brief Parse from input stream. /// \see Json::operator>>(std::istream&, Json::Value&). bool parse(JSONCPP_ISTREAM& is, Value& root, bool collectComments = true); /** \brief Returns a user friendly string that list errors in the parsed * document. * \return Formatted error message with the list of errors with their location * in * the parsed document. An empty string is returned if no error * occurred * during parsing. * \deprecated Use getFormattedErrorMessages() instead (typo fix). */ JSONCPP_DEPRECATED("Use getFormattedErrorMessages() instead.") JSONCPP_STRING getFormatedErrorMessages() const; /** \brief Returns a user friendly string that list errors in the parsed * document. * \return Formatted error message with the list of errors with their location * in * the parsed document. An empty string is returned if no error * occurred * during parsing. */ JSONCPP_STRING getFormattedErrorMessages() const; /** \brief Returns a vector of structured erros encounted while parsing. * \return A (possibly empty) vector of StructuredError objects. Currently * only one error can be returned, but the caller should tolerate * multiple * errors. This can occur if the parser recovers from a non-fatal * parse error and then encounters additional errors. */ std::vector getStructuredErrors() const; /** \brief Add a semantic error message. * \param value JSON Value location associated with the error * \param message The error message. * \return \c true if the error was successfully added, \c false if the * Value offset exceeds the document size. */ bool pushError(const Value& value, const JSONCPP_STRING& message); /** \brief Add a semantic error message with extra context. * \param value JSON Value location associated with the error * \param message The error message. * \param extra Additional JSON Value location to contextualize the error * \return \c true if the error was successfully added, \c false if either * Value offset exceeds the document size. */ bool pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra); /** \brief Return whether there are any errors. * \return \c true if there are no errors to report \c false if * errors have occurred. */ bool good() const; private: enum TokenType { tokenEndOfStream = 0, tokenObjectBegin, tokenObjectEnd, tokenArrayBegin, tokenArrayEnd, tokenString, tokenNumber, tokenTrue, tokenFalse, tokenNull, tokenArraySeparator, tokenMemberSeparator, tokenComment, tokenError }; class Token { public: TokenType type_; Location start_; Location end_; }; class ErrorInfo { public: Token token_; JSONCPP_STRING message_; Location extra_; }; typedef std::deque Errors; bool readToken(Token& token); void skipSpaces(); bool match(Location pattern, int patternLength); bool readComment(); bool readCStyleComment(); bool readCppStyleComment(); bool readString(); void readNumber(); bool readValue(); bool readObject(Token& token); bool readArray(Token& token); bool decodeNumber(Token& token); bool decodeNumber(Token& token, Value& decoded); bool decodeString(Token& token); bool decodeString(Token& token, JSONCPP_STRING& decoded); bool decodeDouble(Token& token); bool decodeDouble(Token& token, Value& decoded); bool decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode); bool decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& unicode); bool addError(const JSONCPP_STRING& message, Token& token, Location extra = 0); bool recoverFromError(TokenType skipUntilToken); bool addErrorAndRecover(const JSONCPP_STRING& message, Token& token, TokenType skipUntilToken); void skipUntilSpace(); Value& currentValue(); Char getNextChar(); void getLocationLineAndColumn(Location location, int& line, int& column) const; JSONCPP_STRING getLocationLineAndColumn(Location location) const; void addComment(Location begin, Location end, CommentPlacement placement); void skipCommentTokens(Token& token); static bool containsNewLine(Location begin, Location end); static JSONCPP_STRING normalizeEOL(Location begin, Location end); typedef std::stack Nodes; Nodes nodes_; Errors errors_; JSONCPP_STRING document_; Location begin_; Location end_; Location current_; Location lastValueEnd_; Value* lastValue_; JSONCPP_STRING commentsBefore_; Features features_; bool collectComments_; }; // Reader /** Interface for reading JSON from a char array. */ class JSON_API CharReader { public: virtual ~CharReader() {} /** \brief Read a Value from a JSON document. * The document must be a UTF-8 encoded string containing the document to read. * * \param beginDoc Pointer on the beginning of the UTF-8 encoded string of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string of the document to read. * Must be >= beginDoc. * \param root [out] Contains the root value of the document if it was * successfully parsed. * \param errs [out] Formatted error messages (if not NULL) * a user friendly string that lists errors in the parsed * document. * \return \c true if the document was successfully parsed, \c false if an error occurred. */ virtual bool parse( char const* beginDoc, char const* endDoc, Value* root, JSONCPP_STRING* errs) = 0; class JSON_API Factory { public: virtual ~Factory() {} /** \brief Allocate a CharReader via operator new(). * \throw std::exception if something goes wrong (e.g. invalid settings) */ virtual CharReader* newCharReader() const = 0; }; // Factory }; // CharReader /** \brief Build a CharReader implementation. Usage: \code using namespace Json; CharReaderBuilder builder; builder["collectComments"] = false; Value value; JSONCPP_STRING errs; bool ok = parseFromStream(builder, std::cin, &value, &errs); \endcode */ class JSON_API CharReaderBuilder : public CharReader::Factory { public: // Note: We use a Json::Value so that we can add data-members to this class // without a major version bump. /** Configuration of this builder. These are case-sensitive. Available settings (case-sensitive): - `"collectComments": false or true` - true to collect comment and allow writing them back during serialization, false to discard comments. This parameter is ignored if allowComments is false. - `"allowComments": false or true` - true if comments are allowed. - `"strictRoot": false or true` - true if root must be either an array or an object value - `"allowDroppedNullPlaceholders": false or true` - true if dropped null placeholders are allowed. (See StreamWriterBuilder.) - `"allowNumericKeys": false or true` - true if numeric object keys are allowed. - `"allowSingleQuotes": false or true` - true if '' are allowed for strings (both keys and values) - `"stackLimit": integer` - Exceeding stackLimit (recursive depth of `readValue()`) will cause an exception. - This is a security issue (seg-faults caused by deeply nested JSON), so the default is low. - `"failIfExtra": false or true` - If true, `parse()` returns false when extra non-whitespace trails the JSON value in the input string. - `"rejectDupKeys": false or true` - If true, `parse()` returns false when a key is duplicated within an object. - `"allowSpecialFloats": false or true` - If true, special float values (NaNs and infinities) are allowed and their values are lossfree restorable. You can examine 'settings_` yourself to see the defaults. You can also write and read them just like any JSON Value. \sa setDefaults() */ Json::Value settings_; CharReaderBuilder(); ~CharReaderBuilder() JSONCPP_OVERRIDE; CharReader* newCharReader() const JSONCPP_OVERRIDE; /** \return true if 'settings' are legal and consistent; * otherwise, indicate bad settings via 'invalid'. */ bool validate(Json::Value* invalid) const; /** A simple way to update a specific setting. */ Value& operator[](JSONCPP_STRING key); /** Called by ctor, but you can use this to reset settings_. * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_reader.cpp CharReaderBuilderDefaults */ static void setDefaults(Json::Value* settings); /** Same as old Features::strictMode(). * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_reader.cpp CharReaderBuilderStrictMode */ static void strictMode(Json::Value* settings); }; /** Consume entire stream and use its begin/end. * Someday we might have a real StreamReader, but for now this * is convenient. */ bool JSON_API parseFromStream( CharReader::Factory const&, JSONCPP_ISTREAM&, Value* root, std::string* errs); /** \brief Read from 'sin' into 'root'. Always keep comments from the input JSON. This can be used to read a file into a particular sub-object. For example: \code Json::Value root; cin >> root["dir"]["file"]; cout << root; \endcode Result: \verbatim { "dir": { "file": { // The input stream JSON would be nested here. } } } \endverbatim \throw std::exception on parse error. \see Json::operator<<() */ JSON_API JSONCPP_ISTREAM& operator>>(JSONCPP_ISTREAM&, Value&); } // namespace Json } } #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // CPPTL_JSON_READER_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/reader.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/writer.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef JSON_WRITER_H_INCLUDED #define JSON_WRITER_H_INCLUDED #if !defined(JSON_IS_AMALGAMATION) #include "value.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include // Disable warning C4251: : needs to have dll-interface to // be used by... #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) && defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4251) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma pack(push, 8) namespace AlibabaCloud { namespace OSS { namespace Json { class Value; /** Usage: \code using namespace Json; void writeToStdout(StreamWriter::Factory const& factory, Value const& value) { std::unique_ptr const writer( factory.newStreamWriter()); writer->write(value, &std::cout); std::cout << std::endl; // add lf and flush } \endcode */ class JSON_API StreamWriter { protected: JSONCPP_OSTREAM* sout_; // not owned; will not delete public: StreamWriter(); virtual ~StreamWriter(); /** Write Value into document as configured in sub-class. Do not take ownership of sout, but maintain a reference during function. \pre sout != NULL \return zero on success (For now, we always return zero, so check the stream instead.) \throw std::exception possibly, depending on configuration */ virtual int write(Value const& root, JSONCPP_OSTREAM* sout) = 0; /** \brief A simple abstract factory. */ class JSON_API Factory { public: virtual ~Factory(); /** \brief Allocate a CharReader via operator new(). * \throw std::exception if something goes wrong (e.g. invalid settings) */ virtual StreamWriter* newStreamWriter() const = 0; }; // Factory }; // StreamWriter /** \brief Write into stringstream, then return string, for convenience. * A StreamWriter will be created from the factory, used, and then deleted. */ JSONCPP_STRING JSON_API writeString(StreamWriter::Factory const& factory, Value const& root); /** \brief Build a StreamWriter implementation. Usage: \code using namespace Json; Value value = ...; StreamWriterBuilder builder; builder["commentStyle"] = "None"; builder["indentation"] = " "; // or whatever you like std::unique_ptr writer( builder.newStreamWriter()); writer->write(value, &std::cout); std::cout << std::endl; // add lf and flush \endcode */ class JSON_API StreamWriterBuilder : public StreamWriter::Factory { public: // Note: We use a Json::Value so that we can add data-members to this class // without a major version bump. /** Configuration of this builder. Available settings (case-sensitive): - "commentStyle": "None" or "All" - "indentation": "" - "enableYAMLCompatibility": false or true - slightly change the whitespace around colons - "dropNullPlaceholders": false or true - Drop the "null" string from the writer's output for nullValues. Strictly speaking, this is not valid JSON. But when the output is being fed to a browser's JavaScript, it makes for smaller output and the browser can handle the output just fine. - "useSpecialFloats": false or true - If true, outputs non-finite floating point values in the following way: NaN values as "NaN", positive infinity as "Infinity", and negative infinity as "-Infinity". You can examine 'settings_` yourself to see the defaults. You can also write and read them just like any JSON Value. \sa setDefaults() */ Json::Value settings_; StreamWriterBuilder(); ~StreamWriterBuilder() JSONCPP_OVERRIDE; /** * \throw std::exception if something goes wrong (e.g. invalid settings) */ StreamWriter* newStreamWriter() const JSONCPP_OVERRIDE; /** \return true if 'settings' are legal and consistent; * otherwise, indicate bad settings via 'invalid'. */ bool validate(Json::Value* invalid) const; /** A simple way to update a specific setting. */ Value& operator[](JSONCPP_STRING key); /** Called by ctor, but you can use this to reset settings_. * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_writer.cpp StreamWriterBuilderDefaults */ static void setDefaults(Json::Value* settings); }; /** \brief Abstract class for writers. * \deprecated Use StreamWriter. (And really, this is an implementation detail.) */ class JSONCPP_DEPRECATED("Use StreamWriter instead") JSON_API Writer { public: virtual ~Writer(); virtual JSONCPP_STRING write(const Value& root) = 0; }; /** \brief Outputs a Value in JSON format *without formatting (not human friendly). * * The JSON document is written in a single line. It is not intended for 'human' *consumption, * but may be usefull to support feature such as RPC where bandwith is limited. * \sa Reader, Value * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4996) // Deriving from deprecated class #endif class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API FastWriter : public Writer { public: FastWriter(); ~FastWriter() JSONCPP_OVERRIDE {} void enableYAMLCompatibility(); /** \brief Drop the "null" string from the writer's output for nullValues. * Strictly speaking, this is not valid JSON. But when the output is being * fed to a browser's JavaScript, it makes for smaller output and the * browser can handle the output just fine. */ void dropNullPlaceholders(); void omitEndingLineFeed(); public: // overridden from Writer JSONCPP_STRING write(const Value& root) JSONCPP_OVERRIDE; private: void writeValue(const Value& value); JSONCPP_STRING document_; bool yamlCompatibilityEnabled_; bool dropNullPlaceholders_; bool omitEndingLineFeed_; }; #if defined(_MSC_VER) #pragma warning(pop) #endif /** \brief Writes a Value in JSON format in a *human friendly way. * * The rules for line break and indent are as follow: * - Object value: * - if empty then print {} without indent and line break * - if not empty the print '{', line break & indent, print one value per *line * and then unindent and line break and print '}'. * - Array value: * - if empty then print [] without indent and line break * - if the array contains no object value, empty array or some other value *types, * and all the values fit on one lines, then print the array on a single *line. * - otherwise, it the values do not fit on one line, or the array contains * object or non empty array, then print one value per line. * * If the Value have comments then they are outputed according to their *#CommentPlacement. * * \sa Reader, Value, Value::setComment() * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4996) // Deriving from deprecated class #endif class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledWriter : public Writer { public: StyledWriter(); ~StyledWriter() JSONCPP_OVERRIDE {} public: // overridden from Writer /** \brief Serialize a Value in JSON format. * \param root Value to serialize. * \return String containing the JSON document that represents the root value. */ JSONCPP_STRING write(const Value& root) JSONCPP_OVERRIDE; private: void writeValue(const Value& value); void writeArrayValue(const Value& value); bool isMultilineArray(const Value& value); void pushValue(const JSONCPP_STRING& value); void writeIndent(); void writeWithIndent(const JSONCPP_STRING& value); void indent(); void unindent(); void writeCommentBeforeValue(const Value& root); void writeCommentAfterValueOnSameLine(const Value& root); bool hasCommentForValue(const Value& value); static JSONCPP_STRING normalizeEOL(const JSONCPP_STRING& text); typedef std::vector ChildValues; ChildValues childValues_; JSONCPP_STRING document_; JSONCPP_STRING indentString_; unsigned int rightMargin_; unsigned int indentSize_; bool addChildValues_; }; #if defined(_MSC_VER) #pragma warning(pop) #endif /** \brief Writes a Value in JSON format in a human friendly way, to a stream rather than to a string. * * The rules for line break and indent are as follow: * - Object value: * - if empty then print {} without indent and line break * - if not empty the print '{', line break & indent, print one value per line * and then unindent and line break and print '}'. * - Array value: * - if empty then print [] without indent and line break * - if the array contains no object value, empty array or some other value types, * and all the values fit on one lines, then print the array on a single line. * - otherwise, it the values do not fit on one line, or the array contains * object or non empty array, then print one value per line. * * If the Value have comments then they are outputed according to their #CommentPlacement. * * \sa Reader, Value, Value::setComment() * \deprecated Use StreamWriterBuilder. */ #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4996) // Deriving from deprecated class #endif class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledStreamWriter { public: /** * \param indentation Each level will be indented by this amount extra. */ StyledStreamWriter(JSONCPP_STRING indentation = "\t"); ~StyledStreamWriter() {} public: /** \brief Serialize a Value in JSON format. * \param out Stream to write to. (Can be ostringstream, e.g.) * \param root Value to serialize. * \note There is no point in deriving from Writer, since write() should not * return a value. */ void write(JSONCPP_OSTREAM& out, const Value& root); private: void writeValue(const Value& value); void writeArrayValue(const Value& value); bool isMultilineArray(const Value& value); void pushValue(const JSONCPP_STRING& value); void writeIndent(); void writeWithIndent(const JSONCPP_STRING& value); void indent(); void unindent(); void writeCommentBeforeValue(const Value& root); void writeCommentAfterValueOnSameLine(const Value& root); bool hasCommentForValue(const Value& value); static JSONCPP_STRING normalizeEOL(const JSONCPP_STRING& text); typedef std::vector ChildValues; ChildValues childValues_; JSONCPP_OSTREAM* document_; JSONCPP_STRING indentString_; unsigned int rightMargin_; JSONCPP_STRING indentation_; bool addChildValues_ : 1; bool indented_ : 1; }; #if defined(_MSC_VER) #pragma warning(pop) #endif #if defined(JSON_HAS_INT64) JSONCPP_STRING JSON_API valueToString(Int value); JSONCPP_STRING JSON_API valueToString(UInt value); #endif // if defined(JSON_HAS_INT64) JSONCPP_STRING JSON_API valueToString(LargestInt value); JSONCPP_STRING JSON_API valueToString(LargestUInt value); JSONCPP_STRING JSON_API valueToString(double value); JSONCPP_STRING JSON_API valueToString(bool value); JSONCPP_STRING JSON_API valueToQuotedString(const char* value); /// \brief Output using the StyledStreamWriter. /// \see Json::operator>>() JSON_API JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM&, const Value& root); } // namespace Json } } #pragma pack(pop) #if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #endif // JSON_WRITER_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/writer.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: include/json/assertions.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef CPPTL_JSON_ASSERTIONS_H_INCLUDED #define CPPTL_JSON_ASSERTIONS_H_INCLUDED #include #include #if !defined(JSON_IS_AMALGAMATION) #include "config.h" #endif // if !defined(JSON_IS_AMALGAMATION) /** It should not be possible for a maliciously designed file to * cause an abort() or seg-fault, so these macros are used only * for pre-condition violations and internal logic errors. */ #if JSON_USE_EXCEPTION // @todo <= add detail about condition in exception # define JSON_ASSERT(condition) \ {if (!(condition)) {Json::throwLogicError( "assert json failed" );}} # define JSON_FAIL_MESSAGE(message) \ { \ JSONCPP_OSTRINGSTREAM oss; oss << message; \ Json::throwLogicError(oss.str()); \ abort(); \ } #else // JSON_USE_EXCEPTION # define JSON_ASSERT(condition) assert(condition) // The call to assert() will show the failure message in debug builds. In // release builds we abort, for a core-dump or debugger. # define JSON_FAIL_MESSAGE(message) \ { \ JSONCPP_OSTRINGSTREAM oss; oss << message; \ assert(false && oss.str().c_str()); \ abort(); \ } #endif #define JSON_ASSERT_MESSAGE(condition, message) \ if (!(condition)) { \ JSON_FAIL_MESSAGE(message); \ } #endif // CPPTL_JSON_ASSERTIONS_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: include/json/assertions.h // ////////////////////////////////////////////////////////////////////// #endif //ifndef JSON_AMALGAMATED_H_INCLUDED ================================================ FILE: sdk/src/external/json/jsoncpp.cpp ================================================ /// Json-cpp amalgamated source (http://jsoncpp.sourceforge.net/). /// It is intended to be used with #include "json/json.h" // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// /* The JsonCpp library's source code, including accompanying documentation, tests and demonstration applications, are licensed under the following conditions... Baptiste Lepilleur and The JsonCpp Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. In jurisdictions which do not recognize Public Domain property (e.g. Germany as of 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur and The JsonCpp Authors, and is released under the terms of the MIT License (see below). In jurisdictions which recognize Public Domain property, the user of this software may choose to accept it either as 1) Public Domain, 2) under the conditions of the MIT License (see below), or 3) under the terms of dual Public Domain/MIT License conditions described here, as they choose. The MIT License is about as close to Public Domain as a license can get, and is described in clear, concise terms at: http://en.wikipedia.org/wiki/MIT_License The full text of the MIT License follows: ======================================================================== Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================== (END LICENSE TEXT) The MIT license is compatible with both the GPL and commercial software, affording one all of the rights of Public Domain with the minor nuisance of being required to keep the above copyright notice and license text in the source code. Note also that by accepting the Public Domain "license" you can re-license your copy using whatever license you like. */ // ////////////////////////////////////////////////////////////////////// // End of content of file: LICENSE // ////////////////////////////////////////////////////////////////////// #include "json/json.h" #ifndef JSON_IS_AMALGAMATION #error "Compile with -I PATH_TO_JSON_DIRECTORY" #endif // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: src/lib_json/json_tool.h // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED #define LIB_JSONCPP_JSON_TOOL_H_INCLUDED // Also support old flag NO_LOCALE_SUPPORT #ifdef NO_LOCALE_SUPPORT #define JSONCPP_NO_LOCALE_SUPPORT #endif #ifndef JSONCPP_NO_LOCALE_SUPPORT #include #endif /* This header provides common string manipulation support, such as UTF-8, * portable conversion from/to string... * * It is an internal header that must not be exposed. */ namespace AlibabaCloud { namespace OSS { namespace Json { static char getDecimalPoint() { #ifdef JSONCPP_NO_LOCALE_SUPPORT return '\0'; #else struct lconv* lc = localeconv(); return lc ? *(lc->decimal_point) : '\0'; #endif } /// Converts a unicode code-point to UTF-8. static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) { JSONCPP_STRING result; // based on description from http://en.wikipedia.org/wiki/UTF-8 if (cp <= 0x7f) { result.resize(1); result[0] = static_cast(cp); } else if (cp <= 0x7FF) { result.resize(2); result[1] = static_cast(0x80 | (0x3f & cp)); result[0] = static_cast(0xC0 | (0x1f & (cp >> 6))); } else if (cp <= 0xFFFF) { result.resize(3); result[2] = static_cast(0x80 | (0x3f & cp)); result[1] = static_cast(0x80 | (0x3f & (cp >> 6))); result[0] = static_cast(0xE0 | (0xf & (cp >> 12))); } else if (cp <= 0x10FFFF) { result.resize(4); result[3] = static_cast(0x80 | (0x3f & cp)); result[2] = static_cast(0x80 | (0x3f & (cp >> 6))); result[1] = static_cast(0x80 | (0x3f & (cp >> 12))); result[0] = static_cast(0xF0 | (0x7 & (cp >> 18))); } return result; } enum { /// Constant that specify the size of the buffer that must be passed to /// uintToString. uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1 }; // Defines a char buffer for use with uintToString(). typedef char UIntToStringBuffer[uintToStringBufferSize]; /** Converts an unsigned integer to string. * @param value Unsigned integer to convert to string * @param current Input/Output string buffer. * Must have at least uintToStringBufferSize chars free. */ static inline void uintToString(LargestUInt value, char*& current) { *--current = 0; do { *--current = static_cast(value % 10U + static_cast('0')); value /= 10; } while (value != 0); } /** Change ',' to '.' everywhere in buffer. * * We had a sophisticated way, but it did not work in WinCE. * @see https://github.com/open-source-parsers/jsoncpp/pull/9 */ static inline void fixNumericLocale(char* begin, char* end) { while (begin < end) { if (*begin == ',') { *begin = '.'; } ++begin; } } static inline void fixNumericLocaleInput(char* begin, char* end) { char decimalPoint = getDecimalPoint(); if (decimalPoint != '\0' && decimalPoint != '.') { while (begin < end) { if (*begin == '.') { *begin = decimalPoint; } ++begin; } } } } // namespace Json { } } #endif // LIB_JSONCPP_JSON_TOOL_H_INCLUDED // ////////////////////////////////////////////////////////////////////// // End of content of file: src/lib_json/json_tool.h // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: src/lib_json/json_reader.cpp // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2011 Baptiste Lepilleur and The JsonCpp Authors // Copyright (C) 2016 InfoTeCS JSC. All rights reserved. // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include #include #include #include "json_tool.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #include #include #include #include #if defined(_MSC_VER) #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above #define snprintf sprintf_s #elif _MSC_VER >= 1900 // VC++ 14.0 and above #define snprintf std::snprintf #else #define snprintf _snprintf #endif #elif defined(__ANDROID__) || defined(__QNXNTO__) #define snprintf snprintf #elif __cplusplus >= 201103L #if !defined(__MINGW32__) && !defined(__CYGWIN__) #define snprintf std::snprintf #endif #endif #if defined(__QNXNTO__) #define sscanf std::sscanf #endif #if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0 // Disable warning about strdup being deprecated. #pragma warning(disable : 4996) #endif #if defined(__GNUG__) && __GNUC__ > 8 #pragma GCC diagnostic ignored "-Wstringop-overflow" #endif // Define JSONCPP_DEPRECATED_STACK_LIMIT as an appropriate integer at compile time to change the stack limit #if !defined(JSONCPP_DEPRECATED_STACK_LIMIT) #define JSONCPP_DEPRECATED_STACK_LIMIT 1000 #endif static size_t const stackLimit_g = JSONCPP_DEPRECATED_STACK_LIMIT; // see readValue() namespace AlibabaCloud { namespace OSS { namespace Json { #if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520) typedef std::unique_ptr CharReaderPtr; #else typedef std::auto_ptr CharReaderPtr; #endif // Implementation of class Features // //////////////////////////////// Features::Features() : allowComments_(true), strictRoot_(false), allowDroppedNullPlaceholders_(false), allowNumericKeys_(false) {} Features Features::all() { return Features(); } Features Features::strictMode() { Features features; features.allowComments_ = false; features.strictRoot_ = true; features.allowDroppedNullPlaceholders_ = false; features.allowNumericKeys_ = false; return features; } // Implementation of class Reader // //////////////////////////////// bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) { for (; begin < end; ++begin) if (*begin == '\n' || *begin == '\r') return true; return false; } // Class Reader // ////////////////////////////////////////////////////////////////// Reader::Reader() : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(), lastValue_(), commentsBefore_(), features_(Features::all()), collectComments_() {} Reader::Reader(const Features& features) : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(), lastValue_(), commentsBefore_(), features_(features), collectComments_() { } bool Reader::parse(const std::string& document, Value& root, bool collectComments) { document_.assign(document.begin(), document.end()); const char* begin = document_.c_str(); const char* end = begin + document_.length(); return parse(begin, end, root, collectComments); } bool Reader::parse(std::istream& sin, Value& root, bool collectComments) { // std::istream_iterator begin(sin); // std::istream_iterator end; // Those would allow streamed input from a file, if parse() were a // template function. // Since JSONCPP_STRING is reference-counted, this at least does not // create an extra copy. JSONCPP_STRING doc; std::getline(sin, doc, (char)EOF); return parse(doc.data(), doc.data() + doc.size(), root, collectComments); } bool Reader::parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments) { if (!features_.allowComments_) { collectComments = false; } begin_ = beginDoc; end_ = endDoc; collectComments_ = collectComments; current_ = begin_; lastValueEnd_ = 0; lastValue_ = 0; commentsBefore_.clear(); errors_.clear(); while (!nodes_.empty()) nodes_.pop(); nodes_.push(&root); bool successful = readValue(); Token token; skipCommentTokens(token); if (collectComments_ && !commentsBefore_.empty()) root.setComment(commentsBefore_, commentAfter); if (features_.strictRoot_) { if (!root.isArray() && !root.isObject()) { // Set error location to start of doc, ideally should be first token found // in doc token.type_ = tokenError; token.start_ = beginDoc; token.end_ = endDoc; addError( "A valid JSON document must be either an array or an object value.", token); return false; } } return successful; } bool Reader::readValue() { // readValue() may call itself only if it calls readObject() or ReadArray(). // These methods execute nodes_.push() just before and nodes_.pop)() just after calling readValue(). // parse() executes one nodes_.push(), so > instead of >=. if (nodes_.size() > stackLimit_g) throwRuntimeError("Exceeded stackLimit in readValue()."); Token token; skipCommentTokens(token); bool successful = true; if (collectComments_ && !commentsBefore_.empty()) { currentValue().setComment(commentsBefore_, commentBefore); commentsBefore_.clear(); } switch (token.type_) { case tokenObjectBegin: successful = readObject(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenArrayBegin: successful = readArray(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenNumber: successful = decodeNumber(token); break; case tokenString: successful = decodeString(token); break; case tokenTrue: { Value v(true); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenFalse: { Value v(false); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNull: { Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenArraySeparator: case tokenObjectEnd: case tokenArrayEnd: if (features_.allowDroppedNullPlaceholders_) { // "Un-read" the current token and mark the current value as a null // token. current_--; Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(current_ - begin_ - 1); currentValue().setOffsetLimit(current_ - begin_); break; } // Else, fall through... default: currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return addError("Syntax error: value, object or array expected.", token); } if (collectComments_) { lastValueEnd_ = current_; lastValue_ = ¤tValue(); } return successful; } void Reader::skipCommentTokens(Token& token) { if (features_.allowComments_) { do { readToken(token); } while (token.type_ == tokenComment); } else { readToken(token); } } bool Reader::readToken(Token& token) { skipSpaces(); token.start_ = current_; Char c = getNextChar(); bool ok = true; switch (c) { case '{': token.type_ = tokenObjectBegin; break; case '}': token.type_ = tokenObjectEnd; break; case '[': token.type_ = tokenArrayBegin; break; case ']': token.type_ = tokenArrayEnd; break; case '"': token.type_ = tokenString; ok = readString(); break; case '/': token.type_ = tokenComment; ok = readComment(); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '-': token.type_ = tokenNumber; readNumber(); break; case 't': token.type_ = tokenTrue; ok = match("rue", 3); break; case 'f': token.type_ = tokenFalse; ok = match("alse", 4); break; case 'n': token.type_ = tokenNull; ok = match("ull", 3); break; case ',': token.type_ = tokenArraySeparator; break; case ':': token.type_ = tokenMemberSeparator; break; case 0: token.type_ = tokenEndOfStream; break; default: ok = false; break; } if (!ok) token.type_ = tokenError; token.end_ = current_; return true; } void Reader::skipSpaces() { while (current_ != end_) { Char c = *current_; if (c == ' ' || c == '\t' || c == '\r' || c == '\n') ++current_; else break; } } bool Reader::match(Location pattern, int patternLength) { if (end_ - current_ < patternLength) return false; int index = patternLength; while (index--) if (current_[index] != pattern[index]) return false; current_ += patternLength; return true; } bool Reader::readComment() { Location commentBegin = current_ - 1; Char c = getNextChar(); bool successful = false; if (c == '*') successful = readCStyleComment(); else if (c == '/') successful = readCppStyleComment(); if (!successful) return false; if (collectComments_) { CommentPlacement placement = commentBefore; if (lastValueEnd_ && !containsNewLine(lastValueEnd_, commentBegin)) { if (c != '*' || !containsNewLine(commentBegin, current_)) placement = commentAfterOnSameLine; } addComment(commentBegin, current_, placement); } return true; } JSONCPP_STRING Reader::normalizeEOL(Reader::Location begin, Reader::Location end) { JSONCPP_STRING normalized; normalized.reserve(static_cast(end - begin)); Reader::Location current = begin; while (current != end) { char c = *current++; if (c == '\r') { if (current != end && *current == '\n') // convert dos EOL ++current; // convert Mac EOL normalized += '\n'; } else { normalized += c; } } return normalized; } void Reader::addComment(Location begin, Location end, CommentPlacement placement) { assert(collectComments_); const JSONCPP_STRING& normalized = normalizeEOL(begin, end); if (placement == commentAfterOnSameLine) { assert(lastValue_ != 0); lastValue_->setComment(normalized, placement); } else { commentsBefore_ += normalized; } } bool Reader::readCStyleComment() { while ((current_ + 1) < end_) { Char c = getNextChar(); if (c == '*' && *current_ == '/') break; } return getNextChar() == '/'; } bool Reader::readCppStyleComment() { while (current_ != end_) { Char c = getNextChar(); if (c == '\n') break; if (c == '\r') { // Consume DOS EOL. It will be normalized in addComment. if (current_ != end_ && *current_ == '\n') getNextChar(); // Break on Moc OS 9 EOL. break; } } return true; } void Reader::readNumber() { const char *p = current_; char c = '0'; // stopgap for already consumed character // integral part while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; // fractional part if (c == '.') { c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } // exponential part if (c == 'e' || c == 'E') { c = (current_ = p) < end_ ? *p++ : '\0'; if (c == '+' || c == '-') c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } } bool Reader::readString() { Char c = '\0'; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '"') break; } return c == '"'; } bool Reader::readObject(Token& tokenStart) { Token tokenName; JSONCPP_STRING name; Value init(objectValue); currentValue().swapPayload(init); currentValue().setOffsetStart(tokenStart.start_ - begin_); while (readToken(tokenName)) { bool initialTokenOk = true; while (tokenName.type_ == tokenComment && initialTokenOk) initialTokenOk = readToken(tokenName); if (!initialTokenOk) break; if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object return true; name.clear(); if (tokenName.type_ == tokenString) { if (!decodeString(tokenName, name)) return recoverFromError(tokenObjectEnd); } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) { Value numberName; if (!decodeNumber(tokenName, numberName)) return recoverFromError(tokenObjectEnd); name = JSONCPP_STRING(numberName.asCString()); } else { break; } Token colon; if (!readToken(colon) || colon.type_ != tokenMemberSeparator) { return addErrorAndRecover( "Missing ':' after object member name", colon, tokenObjectEnd); } Value& value = currentValue()[name]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenObjectEnd); Token comma; if (!readToken(comma) || (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && comma.type_ != tokenComment)) { return addErrorAndRecover( "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); } bool finalizeTokenOk = true; while (comma.type_ == tokenComment && finalizeTokenOk) finalizeTokenOk = readToken(comma); if (comma.type_ == tokenObjectEnd) return true; } return addErrorAndRecover( "Missing '}' or object member name", tokenName, tokenObjectEnd); } bool Reader::readArray(Token& tokenStart) { Value init(arrayValue); currentValue().swapPayload(init); currentValue().setOffsetStart(tokenStart.start_ - begin_); skipSpaces(); if (current_ != end_ && *current_ == ']') // empty array { Token endArray; readToken(endArray); return true; } int index = 0; for (;;) { Value& value = currentValue()[index++]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenArrayEnd); Token token; // Accept Comment after last item in the array. ok = readToken(token); while (token.type_ == tokenComment && ok) { ok = readToken(token); } bool badTokenType = (token.type_ != tokenArraySeparator && token.type_ != tokenArrayEnd); if (!ok || badTokenType) { return addErrorAndRecover( "Missing ',' or ']' in array declaration", token, tokenArrayEnd); } if (token.type_ == tokenArrayEnd) break; } return true; } bool Reader::decodeNumber(Token& token) { Value decoded; if (!decodeNumber(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeNumber(Token& token, Value& decoded) { // Attempts to parse the number as an integer. If the number is // larger than the maximum supported value of an integer then // we decode the number as a double. Location current = token.start_; bool isNegative = *current == '-'; if (isNegative) ++current; // TODO: Help the compiler do the div and mod at compile time or get rid of them. Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1 : Value::maxLargestUInt; Value::LargestUInt threshold = maxIntegerValue / 10; Value::LargestUInt value = 0; while (current < token.end_) { Char c = *current++; if (c < '0' || c > '9') return decodeDouble(token, decoded); Value::UInt digit(static_cast(c - '0')); if (value >= threshold) { // We've hit or exceeded the max value divided by 10 (rounded down). If // a) we've only just touched the limit, b) this is the last digit, and // c) it's small enough to fit in that rounding delta, we're okay. // Otherwise treat this number as a double to avoid overflow. if (value > threshold || current != token.end_ || digit > maxIntegerValue % 10) { return decodeDouble(token, decoded); } } value = value * 10 + digit; } if (isNegative && value == maxIntegerValue) decoded = Value::minLargestInt; else if (isNegative) decoded = -Value::LargestInt(value); else if (value <= Value::LargestUInt(Value::maxInt)) decoded = Value::LargestInt(value); else decoded = value; return true; } bool Reader::decodeDouble(Token& token) { Value decoded; if (!decodeDouble(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeDouble(Token& token, Value& decoded) { double value = 0; JSONCPP_STRING buffer(token.start_, token.end_); JSONCPP_ISTRINGSTREAM is(buffer); if (!(is >> value)) return addError("'" + JSONCPP_STRING(token.start_, token.end_) + "' is not a number.", token); decoded = value; return true; } bool Reader::decodeString(Token& token) { JSONCPP_STRING decoded_string; if (!decodeString(token, decoded_string)) return false; Value decoded(decoded_string); currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool Reader::decodeString(Token& token, JSONCPP_STRING& decoded) { decoded.reserve(static_cast(token.end_ - token.start_ - 2)); Location current = token.start_ + 1; // skip '"' Location end = token.end_ - 1; // do not include '"' while (current != end) { Char c = *current++; if (c == '"') break; else if (c == '\\') { if (current == end) return addError("Empty escape sequence in string", token, current); Char escape = *current++; switch (escape) { case '"': decoded += '"'; break; case '/': decoded += '/'; break; case '\\': decoded += '\\'; break; case 'b': decoded += '\b'; break; case 'f': decoded += '\f'; break; case 'n': decoded += '\n'; break; case 'r': decoded += '\r'; break; case 't': decoded += '\t'; break; case 'u': { unsigned int unicode; if (!decodeUnicodeCodePoint(token, current, end, unicode)) return false; decoded += codePointToUTF8(unicode); } break; default: return addError("Bad escape sequence in string", token, current); } } else { decoded += c; } } return true; } bool Reader::decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode) { if (!decodeUnicodeEscapeSequence(token, current, end, unicode)) return false; if (unicode >= 0xD800 && unicode <= 0xDBFF) { // surrogate pairs if (end - current < 6) return addError( "additional six characters expected to parse unicode surrogate pair.", token, current); unsigned int surrogatePair; if (*(current++) == '\\' && *(current++) == 'u') { if (decodeUnicodeEscapeSequence(token, current, end, surrogatePair)) { unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF); } else return false; } else return addError("expecting another \\u token to begin the second half of " "a unicode surrogate pair", token, current); } return true; } bool Reader::decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& ret_unicode) { if (end - current < 4) return addError( "Bad unicode escape sequence in string: four digits expected.", token, current); int unicode = 0; for (int index = 0; index < 4; ++index) { Char c = *current++; unicode *= 16; if (c >= '0' && c <= '9') unicode += c - '0'; else if (c >= 'a' && c <= 'f') unicode += c - 'a' + 10; else if (c >= 'A' && c <= 'F') unicode += c - 'A' + 10; else return addError( "Bad unicode escape sequence in string: hexadecimal digit expected.", token, current); } ret_unicode = static_cast(unicode); return true; } bool Reader::addError(const JSONCPP_STRING& message, Token& token, Location extra) { ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = extra; errors_.push_back(info); return false; } bool Reader::recoverFromError(TokenType skipUntilToken) { size_t const errorCount = errors_.size(); Token skip; for (;;) { if (!readToken(skip)) errors_.resize(errorCount); // discard errors caused by recovery if (skip.type_ == skipUntilToken || skip.type_ == tokenEndOfStream) break; } errors_.resize(errorCount); return false; } bool Reader::addErrorAndRecover(const JSONCPP_STRING& message, Token& token, TokenType skipUntilToken) { addError(message, token); return recoverFromError(skipUntilToken); } Value& Reader::currentValue() { return *(nodes_.top()); } Reader::Char Reader::getNextChar() { if (current_ == end_) return 0; return *current_++; } void Reader::getLocationLineAndColumn(Location location, int& line, int& column) const { Location current = begin_; Location lastLineStart = current; line = 0; while (current < location && current != end_) { Char c = *current++; if (c == '\r') { if (*current == '\n') ++current; lastLineStart = current; ++line; } else if (c == '\n') { lastLineStart = current; ++line; } } // column & line start at 1 column = int(location - lastLineStart) + 1; ++line; } JSONCPP_STRING Reader::getLocationLineAndColumn(Location location) const { int line, column; getLocationLineAndColumn(location, line, column); char buffer[18 + 16 + 16 + 1]; snprintf(buffer, sizeof(buffer), "Line %d, Column %d", line, column); return buffer; } // Deprecated. Preserved for backward compatibility JSONCPP_STRING Reader::getFormatedErrorMessages() const { return getFormattedErrorMessages(); } JSONCPP_STRING Reader::getFormattedErrorMessages() const { JSONCPP_STRING formattedMessage; for (Errors::const_iterator itError = errors_.begin(); itError != errors_.end(); ++itError) { const ErrorInfo& error = *itError; formattedMessage += "* " + getLocationLineAndColumn(error.token_.start_) + "\n"; formattedMessage += " " + error.message_ + "\n"; if (error.extra_) formattedMessage += "See " + getLocationLineAndColumn(error.extra_) + " for detail.\n"; } return formattedMessage; } std::vector Reader::getStructuredErrors() const { std::vector allErrors; for (Errors::const_iterator itError = errors_.begin(); itError != errors_.end(); ++itError) { const ErrorInfo& error = *itError; Reader::StructuredError structured; structured.offset_start = error.token_.start_ - begin_; structured.offset_limit = error.token_.end_ - begin_; structured.message = error.message_; allErrors.push_back(structured); } return allErrors; } bool Reader::pushError(const Value& value, const JSONCPP_STRING& message) { ptrdiff_t const length = end_ - begin_; if(value.getOffsetStart() > length || value.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = end_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = 0; errors_.push_back(info); return true; } bool Reader::pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra) { ptrdiff_t const length = end_ - begin_; if(value.getOffsetStart() > length || value.getOffsetLimit() > length || extra.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = begin_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = begin_ + extra.getOffsetStart(); errors_.push_back(info); return true; } bool Reader::good() const { return !errors_.size(); } // exact copy of Features class OurFeatures { public: static OurFeatures all(); bool allowComments_; bool strictRoot_; bool allowDroppedNullPlaceholders_; bool allowNumericKeys_; bool allowSingleQuotes_; bool failIfExtra_; bool rejectDupKeys_; bool allowSpecialFloats_; int stackLimit_; }; // OurFeatures // exact copy of Implementation of class Features // //////////////////////////////// OurFeatures OurFeatures::all() { return OurFeatures(); } // Implementation of class Reader // //////////////////////////////// // exact copy of Reader, renamed to OurReader class OurReader { public: typedef char Char; typedef const Char* Location; struct StructuredError { ptrdiff_t offset_start; ptrdiff_t offset_limit; JSONCPP_STRING message; }; OurReader(OurFeatures const& features); bool parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments = true); JSONCPP_STRING getFormattedErrorMessages() const; std::vector getStructuredErrors() const; bool pushError(const Value& value, const JSONCPP_STRING& message); bool pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra); bool good() const; private: OurReader(OurReader const&); // no impl void operator=(OurReader const&); // no impl enum TokenType { tokenEndOfStream = 0, tokenObjectBegin, tokenObjectEnd, tokenArrayBegin, tokenArrayEnd, tokenString, tokenNumber, tokenTrue, tokenFalse, tokenNull, tokenNaN, tokenPosInf, tokenNegInf, tokenArraySeparator, tokenMemberSeparator, tokenComment, tokenError }; class Token { public: TokenType type_; Location start_; Location end_; }; class ErrorInfo { public: Token token_; JSONCPP_STRING message_; Location extra_; }; typedef std::deque Errors; bool readToken(Token& token); void skipSpaces(); bool match(Location pattern, int patternLength); bool readComment(); bool readCStyleComment(); bool readCppStyleComment(); bool readString(); bool readStringSingleQuote(); bool readNumber(bool checkInf); bool readValue(); bool readObject(Token& token); bool readArray(Token& token); bool decodeNumber(Token& token); bool decodeNumber(Token& token, Value& decoded); bool decodeString(Token& token); bool decodeString(Token& token, JSONCPP_STRING& decoded); bool decodeDouble(Token& token); bool decodeDouble(Token& token, Value& decoded); bool decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode); bool decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& unicode); bool addError(const JSONCPP_STRING& message, Token& token, Location extra = 0); bool recoverFromError(TokenType skipUntilToken); bool addErrorAndRecover(const JSONCPP_STRING& message, Token& token, TokenType skipUntilToken); void skipUntilSpace(); Value& currentValue(); Char getNextChar(); void getLocationLineAndColumn(Location location, int& line, int& column) const; JSONCPP_STRING getLocationLineAndColumn(Location location) const; void addComment(Location begin, Location end, CommentPlacement placement); void skipCommentTokens(Token& token); static JSONCPP_STRING normalizeEOL(Location begin, Location end); static bool containsNewLine(Location begin, Location end); typedef std::stack Nodes; Nodes nodes_; Errors errors_; JSONCPP_STRING document_; Location begin_; Location end_; Location current_; Location lastValueEnd_; Value* lastValue_; JSONCPP_STRING commentsBefore_; OurFeatures const features_; bool collectComments_; }; // OurReader // complete copy of Read impl, for OurReader bool OurReader::containsNewLine(OurReader::Location begin, OurReader::Location end) { for (; begin < end; ++begin) if (*begin == '\n' || *begin == '\r') return true; return false; } OurReader::OurReader(OurFeatures const& features) : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(), lastValue_(), commentsBefore_(), features_(features), collectComments_() { } bool OurReader::parse(const char* beginDoc, const char* endDoc, Value& root, bool collectComments) { if (!features_.allowComments_) { collectComments = false; } begin_ = beginDoc; end_ = endDoc; collectComments_ = collectComments; current_ = begin_; lastValueEnd_ = 0; lastValue_ = 0; commentsBefore_.clear(); errors_.clear(); while (!nodes_.empty()) nodes_.pop(); nodes_.push(&root); bool successful = readValue(); Token token; skipCommentTokens(token); if (features_.failIfExtra_) { if ((features_.strictRoot_ || token.type_ != tokenError) && token.type_ != tokenEndOfStream) { addError("Extra non-whitespace after JSON value.", token); return false; } } if (collectComments_ && !commentsBefore_.empty()) root.setComment(commentsBefore_, commentAfter); if (features_.strictRoot_) { if (!root.isArray() && !root.isObject()) { // Set error location to start of doc, ideally should be first token found // in doc token.type_ = tokenError; token.start_ = beginDoc; token.end_ = endDoc; addError( "A valid JSON document must be either an array or an object value.", token); return false; } } return successful; } bool OurReader::readValue() { // To preserve the old behaviour we cast size_t to int. if (static_cast(nodes_.size()) > features_.stackLimit_) throwRuntimeError("Exceeded stackLimit in readValue()."); Token token; skipCommentTokens(token); bool successful = true; if (collectComments_ && !commentsBefore_.empty()) { currentValue().setComment(commentsBefore_, commentBefore); commentsBefore_.clear(); } switch (token.type_) { case tokenObjectBegin: successful = readObject(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenArrayBegin: successful = readArray(token); currentValue().setOffsetLimit(current_ - begin_); break; case tokenNumber: successful = decodeNumber(token); break; case tokenString: successful = decodeString(token); break; case tokenTrue: { Value v(true); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenFalse: { Value v(false); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNull: { Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNaN: { Value v(std::numeric_limits::quiet_NaN()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenPosInf: { Value v(std::numeric_limits::infinity()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenNegInf: { Value v(-std::numeric_limits::infinity()); currentValue().swapPayload(v); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); } break; case tokenArraySeparator: case tokenObjectEnd: case tokenArrayEnd: if (features_.allowDroppedNullPlaceholders_) { // "Un-read" the current token and mark the current value as a null // token. current_--; Value v; currentValue().swapPayload(v); currentValue().setOffsetStart(current_ - begin_ - 1); currentValue().setOffsetLimit(current_ - begin_); break; } // else, fall through ... default: currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return addError("Syntax error: value, object or array expected.", token); } if (collectComments_) { lastValueEnd_ = current_; lastValue_ = ¤tValue(); } return successful; } void OurReader::skipCommentTokens(Token& token) { if (features_.allowComments_) { do { readToken(token); } while (token.type_ == tokenComment); } else { readToken(token); } } bool OurReader::readToken(Token& token) { skipSpaces(); token.start_ = current_; Char c = getNextChar(); bool ok = true; switch (c) { case '{': token.type_ = tokenObjectBegin; break; case '}': token.type_ = tokenObjectEnd; break; case '[': token.type_ = tokenArrayBegin; break; case ']': token.type_ = tokenArrayEnd; break; case '"': token.type_ = tokenString; ok = readString(); break; case '\'': if (features_.allowSingleQuotes_) { token.type_ = tokenString; ok = readStringSingleQuote(); break; } // else fall through case '/': token.type_ = tokenComment; ok = readComment(); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': token.type_ = tokenNumber; readNumber(false); break; case '-': if (readNumber(true)) { token.type_ = tokenNumber; } else { token.type_ = tokenNegInf; ok = features_.allowSpecialFloats_ && match("nfinity", 7); } break; case 't': token.type_ = tokenTrue; ok = match("rue", 3); break; case 'f': token.type_ = tokenFalse; ok = match("alse", 4); break; case 'n': token.type_ = tokenNull; ok = match("ull", 3); break; case 'N': if (features_.allowSpecialFloats_) { token.type_ = tokenNaN; ok = match("aN", 2); } else { ok = false; } break; case 'I': if (features_.allowSpecialFloats_) { token.type_ = tokenPosInf; ok = match("nfinity", 7); } else { ok = false; } break; case ',': token.type_ = tokenArraySeparator; break; case ':': token.type_ = tokenMemberSeparator; break; case 0: token.type_ = tokenEndOfStream; break; default: ok = false; break; } if (!ok) token.type_ = tokenError; token.end_ = current_; return true; } void OurReader::skipSpaces() { while (current_ != end_) { Char c = *current_; if (c == ' ' || c == '\t' || c == '\r' || c == '\n') ++current_; else break; } } bool OurReader::match(Location pattern, int patternLength) { if (end_ - current_ < patternLength) return false; int index = patternLength; while (index--) if (current_[index] != pattern[index]) return false; current_ += patternLength; return true; } bool OurReader::readComment() { Location commentBegin = current_ - 1; Char c = getNextChar(); bool successful = false; if (c == '*') successful = readCStyleComment(); else if (c == '/') successful = readCppStyleComment(); if (!successful) return false; if (collectComments_) { CommentPlacement placement = commentBefore; if (lastValueEnd_ && !containsNewLine(lastValueEnd_, commentBegin)) { if (c != '*' || !containsNewLine(commentBegin, current_)) placement = commentAfterOnSameLine; } addComment(commentBegin, current_, placement); } return true; } JSONCPP_STRING OurReader::normalizeEOL(OurReader::Location begin, OurReader::Location end) { JSONCPP_STRING normalized; normalized.reserve(static_cast(end - begin)); OurReader::Location current = begin; while (current != end) { char c = *current++; if (c == '\r') { if (current != end && *current == '\n') // convert dos EOL ++current; // convert Mac EOL normalized += '\n'; } else { normalized += c; } } return normalized; } void OurReader::addComment(Location begin, Location end, CommentPlacement placement) { assert(collectComments_); const JSONCPP_STRING& normalized = normalizeEOL(begin, end); if (placement == commentAfterOnSameLine) { assert(lastValue_ != 0); lastValue_->setComment(normalized, placement); } else { commentsBefore_ += normalized; } } bool OurReader::readCStyleComment() { while ((current_ + 1) < end_) { Char c = getNextChar(); if (c == '*' && *current_ == '/') break; } return getNextChar() == '/'; } bool OurReader::readCppStyleComment() { while (current_ != end_) { Char c = getNextChar(); if (c == '\n') break; if (c == '\r') { // Consume DOS EOL. It will be normalized in addComment. if (current_ != end_ && *current_ == '\n') getNextChar(); // Break on Moc OS 9 EOL. break; } } return true; } bool OurReader::readNumber(bool checkInf) { const char *p = current_; if (checkInf && p != end_ && *p == 'I') { current_ = ++p; return false; } char c = '0'; // stopgap for already consumed character // integral part while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; // fractional part if (c == '.') { c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } // exponential part if (c == 'e' || c == 'E') { c = (current_ = p) < end_ ? *p++ : '\0'; if (c == '+' || c == '-') c = (current_ = p) < end_ ? *p++ : '\0'; while (c >= '0' && c <= '9') c = (current_ = p) < end_ ? *p++ : '\0'; } return true; } bool OurReader::readString() { Char c = 0; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '"') break; } return c == '"'; } bool OurReader::readStringSingleQuote() { Char c = 0; while (current_ != end_) { c = getNextChar(); if (c == '\\') getNextChar(); else if (c == '\'') break; } return c == '\''; } bool OurReader::readObject(Token& tokenStart) { Token tokenName; JSONCPP_STRING name; Value init(objectValue); currentValue().swapPayload(init); currentValue().setOffsetStart(tokenStart.start_ - begin_); while (readToken(tokenName)) { bool initialTokenOk = true; while (tokenName.type_ == tokenComment && initialTokenOk) initialTokenOk = readToken(tokenName); if (!initialTokenOk) break; if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object return true; name.clear(); if (tokenName.type_ == tokenString) { if (!decodeString(tokenName, name)) return recoverFromError(tokenObjectEnd); } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) { Value numberName; if (!decodeNumber(tokenName, numberName)) return recoverFromError(tokenObjectEnd); name = numberName.asString(); } else { break; } Token colon; if (!readToken(colon) || colon.type_ != tokenMemberSeparator) { return addErrorAndRecover( "Missing ':' after object member name", colon, tokenObjectEnd); } if (name.length() >= (1U<<30)) throwRuntimeError("keylength >= 2^30"); if (features_.rejectDupKeys_ && currentValue().isMember(name)) { JSONCPP_STRING msg = "Duplicate key: '" + name + "'"; return addErrorAndRecover( msg, tokenName, tokenObjectEnd); } Value& value = currentValue()[name]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenObjectEnd); Token comma; if (!readToken(comma) || (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && comma.type_ != tokenComment)) { return addErrorAndRecover( "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); } bool finalizeTokenOk = true; while (comma.type_ == tokenComment && finalizeTokenOk) finalizeTokenOk = readToken(comma); if (comma.type_ == tokenObjectEnd) return true; } return addErrorAndRecover( "Missing '}' or object member name", tokenName, tokenObjectEnd); } bool OurReader::readArray(Token& tokenStart) { Value init(arrayValue); currentValue().swapPayload(init); currentValue().setOffsetStart(tokenStart.start_ - begin_); skipSpaces(); if (current_ != end_ && *current_ == ']') // empty array { Token endArray; readToken(endArray); return true; } int index = 0; for (;;) { Value& value = currentValue()[index++]; nodes_.push(&value); bool ok = readValue(); nodes_.pop(); if (!ok) // error already set return recoverFromError(tokenArrayEnd); Token token; // Accept Comment after last item in the array. ok = readToken(token); while (token.type_ == tokenComment && ok) { ok = readToken(token); } bool badTokenType = (token.type_ != tokenArraySeparator && token.type_ != tokenArrayEnd); if (!ok || badTokenType) { return addErrorAndRecover( "Missing ',' or ']' in array declaration", token, tokenArrayEnd); } if (token.type_ == tokenArrayEnd) break; } return true; } bool OurReader::decodeNumber(Token& token) { Value decoded; if (!decodeNumber(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeNumber(Token& token, Value& decoded) { // Attempts to parse the number as an integer. If the number is // larger than the maximum supported value of an integer then // we decode the number as a double. Location current = token.start_; bool isNegative = *current == '-'; if (isNegative) ++current; // TODO: Help the compiler do the div and mod at compile time or get rid of them. Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt) : Value::maxLargestUInt; Value::LargestUInt threshold = maxIntegerValue / 10; Value::LargestUInt value = 0; while (current < token.end_) { Char c = *current++; if (c < '0' || c > '9') return decodeDouble(token, decoded); Value::UInt digit(static_cast(c - '0')); if (value >= threshold) { // We've hit or exceeded the max value divided by 10 (rounded down). If // a) we've only just touched the limit, b) this is the last digit, and // c) it's small enough to fit in that rounding delta, we're okay. // Otherwise treat this number as a double to avoid overflow. if (value > threshold || current != token.end_ || digit > maxIntegerValue % 10) { return decodeDouble(token, decoded); } } value = value * 10 + digit; } if (isNegative) decoded = -Value::LargestInt(value); else if (value <= Value::LargestUInt(Value::maxInt)) decoded = Value::LargestInt(value); else decoded = value; return true; } bool OurReader::decodeDouble(Token& token) { Value decoded; if (!decodeDouble(token, decoded)) return false; currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeDouble(Token& token, Value& decoded) { double value = 0; const int bufferSize = 32; int count; ptrdiff_t const length = token.end_ - token.start_; // Sanity check to avoid buffer overflow exploits. if (length < 0) { return addError("Unable to parse token length", token); } size_t const ulength = static_cast(length); // Avoid using a string constant for the format control string given to // sscanf, as this can cause hard to debug crashes on OS X. See here for more // info: // // http://developer.apple.com/library/mac/#DOCUMENTATION/DeveloperTools/gcc-4.0.1/gcc/Incompatibilities.html char format[] = "%lf"; if (length <= bufferSize) { Char buffer[bufferSize + 1]; memcpy(buffer, token.start_, ulength); buffer[length] = 0; fixNumericLocaleInput(buffer, buffer + length); count = sscanf(buffer, format, &value); } else { JSONCPP_STRING buffer(token.start_, token.end_); count = sscanf(buffer.c_str(), format, &value); } if (count != 1) return addError("'" + JSONCPP_STRING(token.start_, token.end_) + "' is not a number.", token); decoded = value; return true; } bool OurReader::decodeString(Token& token) { JSONCPP_STRING decoded_string; if (!decodeString(token, decoded_string)) return false; Value decoded(decoded_string); currentValue().swapPayload(decoded); currentValue().setOffsetStart(token.start_ - begin_); currentValue().setOffsetLimit(token.end_ - begin_); return true; } bool OurReader::decodeString(Token& token, JSONCPP_STRING& decoded) { decoded.reserve(static_cast(token.end_ - token.start_ - 2)); Location current = token.start_ + 1; // skip '"' Location end = token.end_ - 1; // do not include '"' while (current != end) { Char c = *current++; if (c == '"') break; else if (c == '\\') { if (current == end) return addError("Empty escape sequence in string", token, current); Char escape = *current++; switch (escape) { case '"': decoded += '"'; break; case '/': decoded += '/'; break; case '\\': decoded += '\\'; break; case 'b': decoded += '\b'; break; case 'f': decoded += '\f'; break; case 'n': decoded += '\n'; break; case 'r': decoded += '\r'; break; case 't': decoded += '\t'; break; case 'u': { unsigned int unicode; if (!decodeUnicodeCodePoint(token, current, end, unicode)) return false; decoded += codePointToUTF8(unicode); } break; default: return addError("Bad escape sequence in string", token, current); } } else { decoded += c; } } return true; } bool OurReader::decodeUnicodeCodePoint(Token& token, Location& current, Location end, unsigned int& unicode) { if (!decodeUnicodeEscapeSequence(token, current, end, unicode)) return false; if (unicode >= 0xD800 && unicode <= 0xDBFF) { // surrogate pairs if (end - current < 6) return addError( "additional six characters expected to parse unicode surrogate pair.", token, current); unsigned int surrogatePair; if (*(current++) == '\\' && *(current++) == 'u') { if (decodeUnicodeEscapeSequence(token, current, end, surrogatePair)) { unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF); } else return false; } else return addError("expecting another \\u token to begin the second half of " "a unicode surrogate pair", token, current); } return true; } bool OurReader::decodeUnicodeEscapeSequence(Token& token, Location& current, Location end, unsigned int& ret_unicode) { if (end - current < 4) return addError( "Bad unicode escape sequence in string: four digits expected.", token, current); int unicode = 0; for (int index = 0; index < 4; ++index) { Char c = *current++; unicode *= 16; if (c >= '0' && c <= '9') unicode += c - '0'; else if (c >= 'a' && c <= 'f') unicode += c - 'a' + 10; else if (c >= 'A' && c <= 'F') unicode += c - 'A' + 10; else return addError( "Bad unicode escape sequence in string: hexadecimal digit expected.", token, current); } ret_unicode = static_cast(unicode); return true; } bool OurReader::addError(const JSONCPP_STRING& message, Token& token, Location extra) { ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = extra; errors_.push_back(info); return false; } bool OurReader::recoverFromError(TokenType skipUntilToken) { size_t errorCount = errors_.size(); Token skip; for (;;) { if (!readToken(skip)) errors_.resize(errorCount); // discard errors caused by recovery if (skip.type_ == skipUntilToken || skip.type_ == tokenEndOfStream) break; } errors_.resize(errorCount); return false; } bool OurReader::addErrorAndRecover(const JSONCPP_STRING& message, Token& token, TokenType skipUntilToken) { addError(message, token); return recoverFromError(skipUntilToken); } Value& OurReader::currentValue() { return *(nodes_.top()); } OurReader::Char OurReader::getNextChar() { if (current_ == end_) return 0; return *current_++; } void OurReader::getLocationLineAndColumn(Location location, int& line, int& column) const { Location current = begin_; Location lastLineStart = current; line = 0; while (current < location && current != end_) { Char c = *current++; if (c == '\r') { if (*current == '\n') ++current; lastLineStart = current; ++line; } else if (c == '\n') { lastLineStart = current; ++line; } } // column & line start at 1 column = int(location - lastLineStart) + 1; ++line; } JSONCPP_STRING OurReader::getLocationLineAndColumn(Location location) const { int line, column; getLocationLineAndColumn(location, line, column); char buffer[18 + 16 + 16 + 1]; snprintf(buffer, sizeof(buffer), "Line %d, Column %d", line, column); return buffer; } JSONCPP_STRING OurReader::getFormattedErrorMessages() const { JSONCPP_STRING formattedMessage; for (Errors::const_iterator itError = errors_.begin(); itError != errors_.end(); ++itError) { const ErrorInfo& error = *itError; formattedMessage += "* " + getLocationLineAndColumn(error.token_.start_) + "\n"; formattedMessage += " " + error.message_ + "\n"; if (error.extra_) formattedMessage += "See " + getLocationLineAndColumn(error.extra_) + " for detail.\n"; } return formattedMessage; } std::vector OurReader::getStructuredErrors() const { std::vector allErrors; for (Errors::const_iterator itError = errors_.begin(); itError != errors_.end(); ++itError) { const ErrorInfo& error = *itError; OurReader::StructuredError structured; structured.offset_start = error.token_.start_ - begin_; structured.offset_limit = error.token_.end_ - begin_; structured.message = error.message_; allErrors.push_back(structured); } return allErrors; } bool OurReader::pushError(const Value& value, const JSONCPP_STRING& message) { ptrdiff_t length = end_ - begin_; if(value.getOffsetStart() > length || value.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = end_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = 0; errors_.push_back(info); return true; } bool OurReader::pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra) { ptrdiff_t length = end_ - begin_; if(value.getOffsetStart() > length || value.getOffsetLimit() > length || extra.getOffsetLimit() > length) return false; Token token; token.type_ = tokenError; token.start_ = begin_ + value.getOffsetStart(); token.end_ = begin_ + value.getOffsetLimit(); ErrorInfo info; info.token_ = token; info.message_ = message; info.extra_ = begin_ + extra.getOffsetStart(); errors_.push_back(info); return true; } bool OurReader::good() const { return !errors_.size(); } class OurCharReader : public CharReader { bool const collectComments_; OurReader reader_; public: OurCharReader( bool collectComments, OurFeatures const& features) : collectComments_(collectComments) , reader_(features) {} bool parse( char const* beginDoc, char const* endDoc, Value* root, JSONCPP_STRING* errs) JSONCPP_OVERRIDE { bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_); if (errs) { *errs = reader_.getFormattedErrorMessages(); } return ok; } }; CharReaderBuilder::CharReaderBuilder() { setDefaults(&settings_); } CharReaderBuilder::~CharReaderBuilder() {} CharReader* CharReaderBuilder::newCharReader() const { bool collectComments = settings_["collectComments"].asBool(); OurFeatures features = OurFeatures::all(); features.allowComments_ = settings_["allowComments"].asBool(); features.strictRoot_ = settings_["strictRoot"].asBool(); features.allowDroppedNullPlaceholders_ = settings_["allowDroppedNullPlaceholders"].asBool(); features.allowNumericKeys_ = settings_["allowNumericKeys"].asBool(); features.allowSingleQuotes_ = settings_["allowSingleQuotes"].asBool(); features.stackLimit_ = settings_["stackLimit"].asInt(); features.failIfExtra_ = settings_["failIfExtra"].asBool(); features.rejectDupKeys_ = settings_["rejectDupKeys"].asBool(); features.allowSpecialFloats_ = settings_["allowSpecialFloats"].asBool(); return new OurCharReader(collectComments, features); } static void getValidReaderKeys(std::set* valid_keys) { valid_keys->clear(); valid_keys->insert("collectComments"); valid_keys->insert("allowComments"); valid_keys->insert("strictRoot"); valid_keys->insert("allowDroppedNullPlaceholders"); valid_keys->insert("allowNumericKeys"); valid_keys->insert("allowSingleQuotes"); valid_keys->insert("stackLimit"); valid_keys->insert("failIfExtra"); valid_keys->insert("rejectDupKeys"); valid_keys->insert("allowSpecialFloats"); } bool CharReaderBuilder::validate(Json::Value* invalid) const { Json::Value my_invalid; if (!invalid) invalid = &my_invalid; // so we do not need to test for NULL Json::Value& inv = *invalid; std::set valid_keys; getValidReaderKeys(&valid_keys); Value::Members keys = settings_.getMemberNames(); size_t n = keys.size(); for (size_t i = 0; i < n; ++i) { JSONCPP_STRING const& key = keys[i]; if (valid_keys.find(key) == valid_keys.end()) { inv[key] = settings_[key]; } } return 0u == inv.size(); } Value& CharReaderBuilder::operator[](JSONCPP_STRING key) { return settings_[key]; } // static void CharReaderBuilder::strictMode(Json::Value* settings) { //! [CharReaderBuilderStrictMode] (*settings)["allowComments"] = false; (*settings)["strictRoot"] = true; (*settings)["allowDroppedNullPlaceholders"] = false; (*settings)["allowNumericKeys"] = false; (*settings)["allowSingleQuotes"] = false; (*settings)["stackLimit"] = 1000; (*settings)["failIfExtra"] = true; (*settings)["rejectDupKeys"] = true; (*settings)["allowSpecialFloats"] = false; //! [CharReaderBuilderStrictMode] } // static void CharReaderBuilder::setDefaults(Json::Value* settings) { //! [CharReaderBuilderDefaults] (*settings)["collectComments"] = true; (*settings)["allowComments"] = true; (*settings)["strictRoot"] = false; (*settings)["allowDroppedNullPlaceholders"] = false; (*settings)["allowNumericKeys"] = false; (*settings)["allowSingleQuotes"] = false; (*settings)["stackLimit"] = 1000; (*settings)["failIfExtra"] = false; (*settings)["rejectDupKeys"] = false; (*settings)["allowSpecialFloats"] = false; //! [CharReaderBuilderDefaults] } ////////////////////////////////// // global functions bool parseFromStream( CharReader::Factory const& fact, JSONCPP_ISTREAM& sin, Value* root, JSONCPP_STRING* errs) { JSONCPP_OSTRINGSTREAM ssin; ssin << sin.rdbuf(); JSONCPP_STRING doc = ssin.str(); char const* begin = doc.data(); char const* end = begin + doc.size(); // Note that we do not actually need a null-terminator. CharReaderPtr const reader(fact.newCharReader()); return reader->parse(begin, end, root, errs); } JSONCPP_ISTREAM& operator>>(JSONCPP_ISTREAM& sin, Value& root) { CharReaderBuilder b; JSONCPP_STRING errs; bool ok = parseFromStream(b, sin, &root, &errs); if (!ok) { throwRuntimeError(errs); } return sin; } } // namespace Json } } // ////////////////////////////////////////////////////////////////////// // End of content of file: src/lib_json/json_reader.cpp // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: src/lib_json/json_valueiterator.inl // ////////////////////////////////////////////////////////////////////// // Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE // included by json_value.cpp namespace AlibabaCloud { namespace OSS { namespace Json { // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueIteratorBase // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueIteratorBase::ValueIteratorBase() : current_(), isNull_(true) { } ValueIteratorBase::ValueIteratorBase( const Value::ObjectValues::iterator& current) : current_(current), isNull_(false) {} Value& ValueIteratorBase::deref() const { return current_->second; } void ValueIteratorBase::increment() { ++current_; } void ValueIteratorBase::decrement() { --current_; } ValueIteratorBase::difference_type ValueIteratorBase::computeDistance(const SelfType& other) const { #ifdef JSON_USE_CPPTL_SMALLMAP return other.current_ - current_; #else // Iterator for null value are initialized using the default // constructor, which initialize current_ to the default // std::map::iterator. As begin() and end() are two instance // of the default std::map::iterator, they can not be compared. // To allow this, we handle this comparison specifically. if (isNull_ && other.isNull_) { return 0; } // Usage of std::distance is not portable (does not compile with Sun Studio 12 // RogueWave STL, // which is the one used by default). // Using a portable hand-made version for non random iterator instead: // return difference_type( std::distance( current_, other.current_ ) ); difference_type myDistance = 0; for (Value::ObjectValues::iterator it = current_; it != other.current_; ++it) { ++myDistance; } return myDistance; #endif } bool ValueIteratorBase::isEqual(const SelfType& other) const { if (isNull_) { return other.isNull_; } return current_ == other.current_; } void ValueIteratorBase::copy(const SelfType& other) { current_ = other.current_; isNull_ = other.isNull_; } Value ValueIteratorBase::key() const { const Value::CZString czstring = (*current_).first; if (czstring.data()) { if (czstring.isStaticString()) return Value(StaticString(czstring.data())); return Value(czstring.data(), czstring.data() + czstring.length()); } return Value(czstring.index()); } UInt ValueIteratorBase::index() const { const Value::CZString czstring = (*current_).first; if (!czstring.data()) return czstring.index(); return Value::UInt(-1); } JSONCPP_STRING ValueIteratorBase::name() const { char const* keey; char const* end; keey = memberName(&end); if (!keey) return JSONCPP_STRING(); return JSONCPP_STRING(keey, end); } char const* ValueIteratorBase::memberName() const { const char* cname = (*current_).first.data(); return cname ? cname : ""; } char const* ValueIteratorBase::memberName(char const** end) const { const char* cname = (*current_).first.data(); if (!cname) { *end = NULL; return NULL; } *end = cname + (*current_).first.length(); return cname; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueConstIterator // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueConstIterator::ValueConstIterator() {} ValueConstIterator::ValueConstIterator( const Value::ObjectValues::iterator& current) : ValueIteratorBase(current) {} ValueConstIterator::ValueConstIterator(ValueIterator const& other) : ValueIteratorBase(other) {} ValueConstIterator& ValueConstIterator:: operator=(const ValueIteratorBase& other) { copy(other); return *this; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class ValueIterator // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// ValueIterator::ValueIterator() {} ValueIterator::ValueIterator(const Value::ObjectValues::iterator& current) : ValueIteratorBase(current) {} ValueIterator::ValueIterator(const ValueConstIterator& other) : ValueIteratorBase(other) { throwRuntimeError("ConstIterator to Iterator should never be allowed."); } ValueIterator::ValueIterator(const ValueIterator& other) : ValueIteratorBase(other) {} ValueIterator& ValueIterator::operator=(const SelfType& other) { copy(other); return *this; } } // namespace Json } } // ////////////////////////////////////////////////////////////////////// // End of content of file: src/lib_json/json_valueiterator.inl // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: src/lib_json/json_value.cpp // ////////////////////////////////////////////////////////////////////// // Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include #include #include #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #ifdef JSON_USE_CPPTL #include #endif #include // size_t #include // min() #define JSON_ASSERT_UNREACHABLE assert(false) namespace AlibabaCloud { namespace OSS { namespace Json { // This is a walkaround to avoid the static initialization of Value::null. // kNull must be word-aligned to avoid crashing on ARM. We use an alignment of // 8 (instead of 4) as a bit of future-proofing. #if defined(__ARMEL__) #define ALIGNAS(byte_alignment) __attribute__((aligned(byte_alignment))) #else #define ALIGNAS(byte_alignment) #endif //static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = { 0 }; //const unsigned char& kNullRef = kNull[0]; //const Value& Value::null = reinterpret_cast(kNullRef); //const Value& Value::nullRef = null; // static Value const& Value::nullSingleton() { static Value const nullStatic; return nullStatic; } // for backwards compatibility, we'll leave these global references around, but DO NOT // use them in JSONCPP library code any more! Value const& Value::null = Value::nullSingleton(); Value const& Value::nullRef = Value::nullSingleton(); const Int Value::minInt = Int(~(UInt(-1) / 2)); const Int Value::maxInt = Int(UInt(-1) / 2); const UInt Value::maxUInt = UInt(-1); #if defined(JSON_HAS_INT64) const Int64 Value::minInt64 = Int64(~(UInt64(-1) / 2)); const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2); const UInt64 Value::maxUInt64 = UInt64(-1); // The constant is hard-coded because some compiler have trouble // converting Value::maxUInt64 to a double correctly (AIX/xlC). // Assumes that UInt64 is a 64 bits integer. static const double maxUInt64AsDouble = 18446744073709551615.0; #endif // defined(JSON_HAS_INT64) const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2)); const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2); const LargestUInt Value::maxLargestUInt = LargestUInt(-1); #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) template static inline bool InRange(double d, T min, U max) { // The casts can lose precision, but we are looking only for // an approximate range. Might fail on edge cases though. ~cdunn //return d >= static_cast(min) && d <= static_cast(max); return d >= min && d <= max; } #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) static inline double integerToDouble(Json::UInt64 value) { return static_cast(Int64(value / 2)) * 2.0 + static_cast(Int64(value & 1)); } template static inline double integerToDouble(T value) { return static_cast(value); } template static inline bool InRange(double d, T min, U max) { return d >= integerToDouble(min) && d <= integerToDouble(max); } #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) /** Duplicates the specified string value. * @param value Pointer to the string to duplicate. Must be zero-terminated if * length is "unknown". * @param length Length of the value. if equals to unknown, then it will be * computed using strlen(value). * @return Pointer on the duplicate instance of string. */ static inline char* duplicateStringValue(const char* value, size_t length) { // Avoid an integer overflow in the call to malloc below by limiting length // to a sane value. if (length >= static_cast(Value::maxInt)) length = Value::maxInt - 1; char* newString = static_cast(malloc(length + 1)); if (newString == NULL) { throwRuntimeError( "in Json::Value::duplicateStringValue(): " "Failed to allocate string value buffer"); } memcpy(newString, value, length); newString[length] = 0; return newString; } /* Record the length as a prefix. */ static inline char* duplicateAndPrefixStringValue( const char* value, unsigned int length) { // Avoid an integer overflow in the call to malloc below by limiting length // to a sane value. JSON_ASSERT_MESSAGE(length <= static_cast(Value::maxInt) - sizeof(unsigned) - 1U, "in Json::Value::duplicateAndPrefixStringValue(): " "length too big for prefixing"); unsigned actualLength = length + static_cast(sizeof(unsigned)) + 1U; char* newString = static_cast(malloc(actualLength)); if (newString == 0) { throwRuntimeError( "in Json::Value::duplicateAndPrefixStringValue(): " "Failed to allocate string value buffer"); } *reinterpret_cast(newString) = length; memcpy(newString + sizeof(unsigned), value, length); newString[actualLength - 1U] = 0; // to avoid buffer over-run accidents by users later return newString; } inline static void decodePrefixedString( bool isPrefixed, char const* prefixed, unsigned* length, char const** value) { if (!isPrefixed) { *length = static_cast(strlen(prefixed)); *value = prefixed; } else { *length = *reinterpret_cast(prefixed); *value = prefixed + sizeof(unsigned); } } /** Free the string duplicated by duplicateStringValue()/duplicateAndPrefixStringValue(). */ #if JSONCPP_USING_SECURE_MEMORY static inline void releasePrefixedStringValue(char* value) { unsigned length = 0; char const* valueDecoded; decodePrefixedString(true, value, &length, &valueDecoded); size_t const size = sizeof(unsigned) + length + 1U; memset(value, 0, size); free(value); } static inline void releaseStringValue(char* value, unsigned length) { // length==0 => we allocated the strings memory size_t size = (length==0) ? strlen(value) : length; memset(value, 0, size); free(value); } #else // !JSONCPP_USING_SECURE_MEMORY static inline void releasePrefixedStringValue(char* value) { free(value); } static inline void releaseStringValue(char* value, unsigned) { free(value); } #endif // JSONCPP_USING_SECURE_MEMORY } // namespace Json } } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ValueInternals... // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// #if !defined(JSON_IS_AMALGAMATION) #include "json_valueiterator.inl" #endif // if !defined(JSON_IS_AMALGAMATION) namespace AlibabaCloud { namespace OSS { namespace Json { #if JSON_USE_EXCEPTION Exception::Exception(JSONCPP_STRING const& msg) : msg_(msg) {} Exception::~Exception() JSONCPP_NOEXCEPT {} char const* Exception::what() const JSONCPP_NOEXCEPT { return msg_.c_str(); } RuntimeError::RuntimeError(JSONCPP_STRING const& msg) : Exception(msg) {} LogicError::LogicError(JSONCPP_STRING const& msg) : Exception(msg) {} JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg) { throw RuntimeError(msg); } JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg) { throw LogicError(msg); } #else JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg) { JSON_FAIL_MESSAGE(msg); } JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg) { JSON_FAIL_MESSAGE(msg); } #endif // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class Value::CommentInfo // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// Value::CommentInfo::CommentInfo() : comment_(0) {} Value::CommentInfo::~CommentInfo() { if (comment_) releaseStringValue(comment_, 0u); } void Value::CommentInfo::setComment(const char* text, size_t len) { if (comment_) { releaseStringValue(comment_, 0u); comment_ = 0; } JSON_ASSERT(text != 0); JSON_ASSERT_MESSAGE( text[0] == '\0' || text[0] == '/', "in Json::Value::setComment(): Comments must start with /"); // It seems that /**/ style comments are acceptable as well. comment_ = duplicateStringValue(text, len); } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class Value::CZString // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // Notes: policy_ indicates if the string was allocated when // a string is stored. Value::CZString::CZString(ArrayIndex aindex) : cstr_(0), index_(aindex) {} Value::CZString::CZString(char const* str, unsigned ulength, DuplicationPolicy allocate) : cstr_(str) { // allocate != duplicate storage_.policy_ = allocate & 0x3; storage_.length_ = ulength & 0x3FFFFFFF; } Value::CZString::CZString(const CZString& other) { cstr_ = (other.storage_.policy_ != noDuplication && other.cstr_ != 0 ? duplicateStringValue(other.cstr_, other.storage_.length_) : other.cstr_); storage_.policy_ = static_cast(other.cstr_ ? (static_cast(other.storage_.policy_) == noDuplication ? noDuplication : duplicate) : static_cast(other.storage_.policy_)) & 3U; storage_.length_ = other.storage_.length_; } #if JSON_HAS_RVALUE_REFERENCES Value::CZString::CZString(CZString&& other) : cstr_(other.cstr_), index_(other.index_) { other.cstr_ = nullptr; } #endif Value::CZString::~CZString() { if (cstr_ && storage_.policy_ == duplicate) { releaseStringValue(const_cast(cstr_), storage_.length_ + 1u); //+1 for null terminating character for sake of completeness but not actually necessary } } void Value::CZString::swap(CZString& other) { std::swap(cstr_, other.cstr_); std::swap(index_, other.index_); } Value::CZString& Value::CZString::operator=(const CZString& other) { cstr_ = other.cstr_; index_ = other.index_; return *this; } #if JSON_HAS_RVALUE_REFERENCES Value::CZString& Value::CZString::operator=(CZString&& other) { cstr_ = other.cstr_; index_ = other.index_; other.cstr_ = nullptr; return *this; } #endif bool Value::CZString::operator<(const CZString& other) const { if (!cstr_) return index_ < other.index_; //return strcmp(cstr_, other.cstr_) < 0; // Assume both are strings. unsigned this_len = this->storage_.length_; unsigned other_len = other.storage_.length_; unsigned min_len = std::min(this_len, other_len); JSON_ASSERT(this->cstr_ && other.cstr_); int comp = memcmp(this->cstr_, other.cstr_, min_len); if (comp < 0) return true; if (comp > 0) return false; return (this_len < other_len); } bool Value::CZString::operator==(const CZString& other) const { if (!cstr_) return index_ == other.index_; //return strcmp(cstr_, other.cstr_) == 0; // Assume both are strings. unsigned this_len = this->storage_.length_; unsigned other_len = other.storage_.length_; if (this_len != other_len) return false; JSON_ASSERT(this->cstr_ && other.cstr_); int comp = memcmp(this->cstr_, other.cstr_, this_len); return comp == 0; } ArrayIndex Value::CZString::index() const { return index_; } //const char* Value::CZString::c_str() const { return cstr_; } const char* Value::CZString::data() const { return cstr_; } unsigned Value::CZString::length() const { return storage_.length_; } bool Value::CZString::isStaticString() const { return storage_.policy_ == noDuplication; } // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // class Value::Value // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////// /*! \internal Default constructor initialization must be equivalent to: * memset( this, 0, sizeof(Value) ) * This optimization is used in ValueInternalMap fast allocator. */ Value::Value(ValueType vtype) { static char const emptyString[] = ""; initBasic(vtype); switch (vtype) { case nullValue: break; case intValue: case uintValue: value_.int_ = 0; break; case realValue: value_.real_ = 0.0; break; case stringValue: // allocated_ == false, so this is safe. value_.string_ = const_cast(static_cast(emptyString)); break; case arrayValue: case objectValue: value_.map_ = new ObjectValues(); break; case booleanValue: value_.bool_ = false; break; default: JSON_ASSERT_UNREACHABLE; } } Value::Value(Int value) { initBasic(intValue); value_.int_ = value; } Value::Value(UInt value) { initBasic(uintValue); value_.uint_ = value; } #if defined(JSON_HAS_INT64) Value::Value(Int64 value) { initBasic(intValue); value_.int_ = value; } Value::Value(UInt64 value) { initBasic(uintValue); value_.uint_ = value; } #endif // defined(JSON_HAS_INT64) Value::Value(double value) { initBasic(realValue); value_.real_ = value; } Value::Value(const char* value) { initBasic(stringValue, true); JSON_ASSERT_MESSAGE(value != NULL, "Null Value Passed to Value Constructor"); value_.string_ = duplicateAndPrefixStringValue(value, static_cast(strlen(value))); } Value::Value(const char* beginValue, const char* endValue) { initBasic(stringValue, true); value_.string_ = duplicateAndPrefixStringValue(beginValue, static_cast(endValue - beginValue)); } Value::Value(const JSONCPP_STRING& value) { initBasic(stringValue, true); value_.string_ = duplicateAndPrefixStringValue(value.data(), static_cast(value.length())); } Value::Value(const StaticString& value) { initBasic(stringValue); value_.string_ = const_cast(value.c_str()); } #ifdef JSON_USE_CPPTL Value::Value(const CppTL::ConstString& value) { initBasic(stringValue, true); value_.string_ = duplicateAndPrefixStringValue(value, static_cast(value.length())); } #endif Value::Value(bool value) { initBasic(booleanValue); value_.bool_ = value; } Value::Value(Value const& other) : type_(other.type_), allocated_(false) , comments_(0), start_(other.start_), limit_(other.limit_) { switch (type_) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: value_ = other.value_; break; case stringValue: if (other.value_.string_ && other.allocated_) { unsigned len; char const* str; decodePrefixedString(other.allocated_, other.value_.string_, &len, &str); value_.string_ = duplicateAndPrefixStringValue(str, len); allocated_ = true; } else { value_.string_ = other.value_.string_; allocated_ = false; } break; case arrayValue: case objectValue: value_.map_ = new ObjectValues(*other.value_.map_); break; default: JSON_ASSERT_UNREACHABLE; } if (other.comments_) { comments_ = new CommentInfo[numberOfCommentPlacement]; for (int comment = 0; comment < numberOfCommentPlacement; ++comment) { const CommentInfo& otherComment = other.comments_[comment]; if (otherComment.comment_) comments_[comment].setComment( otherComment.comment_, strlen(otherComment.comment_)); } } } #if JSON_HAS_RVALUE_REFERENCES // Move constructor Value::Value(Value&& other) { initBasic(nullValue); swap(other); } #endif Value::~Value() { switch (type_) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: break; case stringValue: if (allocated_) releasePrefixedStringValue(value_.string_); break; case arrayValue: case objectValue: delete value_.map_; break; default: JSON_ASSERT_UNREACHABLE; } delete[] comments_; value_.uint_ = 0; } Value& Value::operator=(Value other) { swap(other); return *this; } void Value::swapPayload(Value& other) { ValueType temp = type_; type_ = other.type_; other.type_ = temp; std::swap(value_, other.value_); int temp2 = allocated_; allocated_ = other.allocated_; other.allocated_ = temp2 & 0x1; } void Value::copyPayload(const Value& other) { type_ = other.type_; value_ = other.value_; allocated_ = other.allocated_; } void Value::swap(Value& other) { swapPayload(other); std::swap(comments_, other.comments_); std::swap(start_, other.start_); std::swap(limit_, other.limit_); } void Value::copy(const Value& other) { copyPayload(other); comments_ = other.comments_; start_ = other.start_; limit_ = other.limit_; } ValueType Value::type() const { return type_; } int Value::compare(const Value& other) const { if (*this < other) return -1; if (*this > other) return 1; return 0; } bool Value::operator<(const Value& other) const { int typeDelta = type_ - other.type_; if (typeDelta) return typeDelta < 0 ? true : false; switch (type_) { case nullValue: return false; case intValue: return value_.int_ < other.value_.int_; case uintValue: return value_.uint_ < other.value_.uint_; case realValue: return value_.real_ < other.value_.real_; case booleanValue: return value_.bool_ < other.value_.bool_; case stringValue: { if ((value_.string_ == 0) || (other.value_.string_ == 0)) { if (other.value_.string_) return true; else return false; } unsigned this_len; unsigned other_len; char const* this_str; char const* other_str; decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); unsigned min_len = std::min(this_len, other_len); JSON_ASSERT(this_str && other_str); int comp = memcmp(this_str, other_str, min_len); if (comp < 0) return true; if (comp > 0) return false; return (this_len < other_len); } case arrayValue: case objectValue: { int delta = int(value_.map_->size() - other.value_.map_->size()); if (delta) return delta < 0; return (*value_.map_) < (*other.value_.map_); } default: JSON_ASSERT_UNREACHABLE; } return false; // unreachable } bool Value::operator<=(const Value& other) const { return !(other < *this); } bool Value::operator>=(const Value& other) const { return !(*this < other); } bool Value::operator>(const Value& other) const { return other < *this; } bool Value::operator==(const Value& other) const { // if ( type_ != other.type_ ) // GCC 2.95.3 says: // attempt to take address of bit-field structure member `Json::Value::type_' // Beats me, but a temp solves the problem. int temp = other.type_; if (type_ != temp) return false; switch (type_) { case nullValue: return true; case intValue: return value_.int_ == other.value_.int_; case uintValue: return value_.uint_ == other.value_.uint_; case realValue: return value_.real_ == other.value_.real_; case booleanValue: return value_.bool_ == other.value_.bool_; case stringValue: { if ((value_.string_ == 0) || (other.value_.string_ == 0)) { return (value_.string_ == other.value_.string_); } unsigned this_len; unsigned other_len; char const* this_str; char const* other_str; decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str); if (this_len != other_len) return false; JSON_ASSERT(this_str && other_str); int comp = memcmp(this_str, other_str, this_len); return comp == 0; } case arrayValue: case objectValue: return value_.map_->size() == other.value_.map_->size() && (*value_.map_) == (*other.value_.map_); default: JSON_ASSERT_UNREACHABLE; } return false; // unreachable } bool Value::operator!=(const Value& other) const { return !(*this == other); } const char* Value::asCString() const { JSON_ASSERT_MESSAGE(type_ == stringValue, "in Json::Value::asCString(): requires stringValue"); if (value_.string_ == 0) return 0; unsigned this_len; char const* this_str; decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); return this_str; } #if JSONCPP_USING_SECURE_MEMORY unsigned Value::getCStringLength() const { JSON_ASSERT_MESSAGE(type_ == stringValue, "in Json::Value::asCString(): requires stringValue"); if (value_.string_ == 0) return 0; unsigned this_len; char const* this_str; decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); return this_len; } #endif bool Value::getString(char const** str, char const** cend) const { if (type_ != stringValue) return false; if (value_.string_ == 0) return false; unsigned length; decodePrefixedString(this->allocated_, this->value_.string_, &length, str); *cend = *str + length; return true; } JSONCPP_STRING Value::asString() const { switch (type_) { case nullValue: return ""; case stringValue: { if (value_.string_ == 0) return ""; unsigned this_len; char const* this_str; decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); return JSONCPP_STRING(this_str, this_len); } case booleanValue: return value_.bool_ ? "true" : "false"; case intValue: return valueToString(value_.int_); case uintValue: return valueToString(value_.uint_); case realValue: return valueToString(value_.real_); default: JSON_FAIL_MESSAGE("Type is not convertible to string"); } } #ifdef JSON_USE_CPPTL CppTL::ConstString Value::asConstString() const { unsigned len; char const* str; decodePrefixedString(allocated_, value_.string_, &len, &str); return CppTL::ConstString(str, len); } #endif Value::Int Value::asInt() const { switch (type_) { case intValue: JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range"); return Int(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range"); return Int(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range"); return Int(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to Int."); } Value::UInt Value::asUInt() const { switch (type_) { case intValue: JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range"); return UInt(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range"); return UInt(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt), "double out of UInt range"); return UInt(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to UInt."); } #if defined(JSON_HAS_INT64) Value::Int64 Value::asInt64() const { switch (type_) { case intValue: return Int64(value_.int_); case uintValue: JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range"); return Int64(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64), "double out of Int64 range"); return Int64(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to Int64."); } Value::UInt64 Value::asUInt64() const { switch (type_) { case intValue: JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); return UInt64(value_.int_); case uintValue: return UInt64(value_.uint_); case realValue: JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt64), "double out of UInt64 range"); return UInt64(value_.real_); case nullValue: return 0; case booleanValue: return value_.bool_ ? 1 : 0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to UInt64."); } #endif // if defined(JSON_HAS_INT64) LargestInt Value::asLargestInt() const { #if defined(JSON_NO_INT64) return asInt(); #else return asInt64(); #endif } LargestUInt Value::asLargestUInt() const { #if defined(JSON_NO_INT64) return asUInt(); #else return asUInt64(); #endif } double Value::asDouble() const { switch (type_) { case intValue: return static_cast(value_.int_); case uintValue: #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return static_cast(value_.uint_); #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return integerToDouble(value_.uint_); #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) case realValue: return value_.real_; case nullValue: return 0.0; case booleanValue: return value_.bool_ ? 1.0 : 0.0; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to double."); } float Value::asFloat() const { switch (type_) { case intValue: return static_cast(value_.int_); case uintValue: #if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) return static_cast(value_.uint_); #else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) // This can fail (silently?) if the value is bigger than MAX_FLOAT. return static_cast(integerToDouble(value_.uint_)); #endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION) case realValue: return static_cast(value_.real_); case nullValue: return 0.0; case booleanValue: return value_.bool_ ? 1.0f : 0.0f; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to float."); } bool Value::asBool() const { switch (type_) { case booleanValue: return value_.bool_; case nullValue: return false; case intValue: return value_.int_ ? true : false; case uintValue: return value_.uint_ ? true : false; case realValue: // This is kind of strange. Not recommended. return (value_.real_ != 0.0) ? true : false; default: break; } JSON_FAIL_MESSAGE("Value is not convertible to bool."); } bool Value::isConvertibleTo(ValueType other) const { switch (other) { case nullValue: return (isNumeric() && asDouble() == 0.0) || (type_ == booleanValue && value_.bool_ == false) || (type_ == stringValue && asString().empty()) || (type_ == arrayValue && value_.map_->size() == 0) || (type_ == objectValue && value_.map_->size() == 0) || type_ == nullValue; case intValue: return isInt() || (type_ == realValue && InRange(value_.real_, minInt, maxInt)) || type_ == booleanValue || type_ == nullValue; case uintValue: return isUInt() || (type_ == realValue && InRange(value_.real_, 0, maxUInt)) || type_ == booleanValue || type_ == nullValue; case realValue: return isNumeric() || type_ == booleanValue || type_ == nullValue; case booleanValue: return isNumeric() || type_ == booleanValue || type_ == nullValue; case stringValue: return isNumeric() || type_ == booleanValue || type_ == stringValue || type_ == nullValue; case arrayValue: return type_ == arrayValue || type_ == nullValue; case objectValue: return type_ == objectValue || type_ == nullValue; } JSON_ASSERT_UNREACHABLE; return false; } /// Number of values in array or object ArrayIndex Value::size() const { switch (type_) { case nullValue: case intValue: case uintValue: case realValue: case booleanValue: case stringValue: return 0; case arrayValue: // size of the array is highest index + 1 if (!value_.map_->empty()) { ObjectValues::const_iterator itLast = value_.map_->end(); --itLast; return (*itLast).first.index() + 1; } return 0; case objectValue: return ArrayIndex(value_.map_->size()); } JSON_ASSERT_UNREACHABLE; return 0; // unreachable; } bool Value::empty() const { if (isNull() || isArray() || isObject()) return size() == 0u; else return false; } Value::operator bool() const { return ! isNull(); } void Value::clear() { JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue || type_ == objectValue, "in Json::Value::clear(): requires complex value"); start_ = 0; limit_ = 0; switch (type_) { case arrayValue: case objectValue: value_.map_->clear(); break; default: break; } } void Value::resize(ArrayIndex newSize) { JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue, "in Json::Value::resize(): requires arrayValue"); if (type_ == nullValue) *this = Value(arrayValue); ArrayIndex oldSize = size(); if (newSize == 0) clear(); else if (newSize > oldSize) (*this)[newSize - 1]; else { for (ArrayIndex index = newSize; index < oldSize; ++index) { value_.map_->erase(index); } JSON_ASSERT(size() == newSize); } } Value& Value::operator[](ArrayIndex index) { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == arrayValue, "in Json::Value::operator[](ArrayIndex): requires arrayValue"); if (type_ == nullValue) *this = Value(arrayValue); CZString key(index); ObjectValues::iterator it = value_.map_->lower_bound(key); if (it != value_.map_->end() && (*it).first == key) return (*it).second; ObjectValues::value_type defaultValue(key, nullSingleton()); it = value_.map_->insert(it, defaultValue); return (*it).second; } Value& Value::operator[](int index) { JSON_ASSERT_MESSAGE( index >= 0, "in Json::Value::operator[](int index): index cannot be negative"); return (*this)[ArrayIndex(index)]; } const Value& Value::operator[](ArrayIndex index) const { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == arrayValue, "in Json::Value::operator[](ArrayIndex)const: requires arrayValue"); if (type_ == nullValue) return nullSingleton(); CZString key(index); ObjectValues::const_iterator it = value_.map_->find(key); if (it == value_.map_->end()) return nullSingleton(); return (*it).second; } const Value& Value::operator[](int index) const { JSON_ASSERT_MESSAGE( index >= 0, "in Json::Value::operator[](int index) const: index cannot be negative"); return (*this)[ArrayIndex(index)]; } void Value::initBasic(ValueType vtype, bool allocated) { type_ = vtype; allocated_ = allocated; comments_ = 0; start_ = 0; limit_ = 0; } // Access an object value by name, create a null member if it does not exist. // @pre Type of '*this' is object or null. // @param key is null-terminated. Value& Value::resolveReference(const char* key) { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == objectValue, "in Json::Value::resolveReference(): requires objectValue"); if (type_ == nullValue) *this = Value(objectValue); CZString actualKey( key, static_cast(strlen(key)), CZString::noDuplication); // NOTE! ObjectValues::iterator it = value_.map_->lower_bound(actualKey); if (it != value_.map_->end() && (*it).first == actualKey) return (*it).second; ObjectValues::value_type defaultValue(actualKey, nullSingleton()); it = value_.map_->insert(it, defaultValue); Value& value = (*it).second; return value; } // @param key is not null-terminated. Value& Value::resolveReference(char const* key, char const* cend) { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == objectValue, "in Json::Value::resolveReference(key, end): requires objectValue"); if (type_ == nullValue) *this = Value(objectValue); CZString actualKey( key, static_cast(cend-key), CZString::duplicateOnCopy); ObjectValues::iterator it = value_.map_->lower_bound(actualKey); if (it != value_.map_->end() && (*it).first == actualKey) return (*it).second; ObjectValues::value_type defaultValue(actualKey, nullSingleton()); it = value_.map_->insert(it, defaultValue); Value& value = (*it).second; return value; } Value Value::get(ArrayIndex index, const Value& defaultValue) const { const Value* value = &((*this)[index]); return value == &nullSingleton() ? defaultValue : *value; } bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } Value const* Value::find(char const* key, char const* cend) const { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == objectValue, "in Json::Value::find(key, end, found): requires objectValue or nullValue"); if (type_ == nullValue) return NULL; CZString actualKey(key, static_cast(cend-key), CZString::noDuplication); ObjectValues::const_iterator it = value_.map_->find(actualKey); if (it == value_.map_->end()) return NULL; return &(*it).second; } const Value& Value::operator[](const char* key) const { Value const* found = find(key, key + strlen(key)); if (!found) return nullSingleton(); return *found; } Value const& Value::operator[](JSONCPP_STRING const& key) const { Value const* found = find(key.data(), key.data() + key.length()); if (!found) return nullSingleton(); return *found; } Value& Value::operator[](const char* key) { return resolveReference(key, key + strlen(key)); } Value& Value::operator[](const JSONCPP_STRING& key) { return resolveReference(key.data(), key.data() + key.length()); } Value& Value::operator[](const StaticString& key) { return resolveReference(key.c_str()); } #ifdef JSON_USE_CPPTL Value& Value::operator[](const CppTL::ConstString& key) { return resolveReference(key.c_str(), key.end_c_str()); } Value const& Value::operator[](CppTL::ConstString const& key) const { Value const* found = find(key.c_str(), key.end_c_str()); if (!found) return nullSingleton(); return *found; } #endif Value& Value::append(const Value& value) { return (*this)[size()] = value; } #if JSON_HAS_RVALUE_REFERENCES Value& Value::append(Value&& value) { return (*this)[size()] = std::move(value); } #endif Value Value::get(char const* key, char const* cend, Value const& defaultValue) const { Value const* found = find(key, cend); return !found ? defaultValue : *found; } Value Value::get(char const* key, Value const& defaultValue) const { return get(key, key + strlen(key), defaultValue); } Value Value::get(JSONCPP_STRING const& key, Value const& defaultValue) const { return get(key.data(), key.data() + key.length(), defaultValue); } bool Value::removeMember(const char* key, const char* cend, Value* removed) { if (type_ != objectValue) { return false; } CZString actualKey(key, static_cast(cend-key), CZString::noDuplication); ObjectValues::iterator it = value_.map_->find(actualKey); if (it == value_.map_->end()) return false; *removed = it->second; value_.map_->erase(it); return true; } bool Value::removeMember(const char* key, Value* removed) { return removeMember(key, key + strlen(key), removed); } bool Value::removeMember(JSONCPP_STRING const& key, Value* removed) { return removeMember(key.data(), key.data() + key.length(), removed); } void Value::removeMember(const char* key) { JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue, "in Json::Value::removeMember(): requires objectValue"); if (type_ == nullValue) return; CZString actualKey(key, unsigned(strlen(key)), CZString::noDuplication); value_.map_->erase(actualKey); } void Value::removeMember(const JSONCPP_STRING& key) { removeMember(key.c_str()); } bool Value::removeIndex(ArrayIndex index, Value* removed) { if (type_ != arrayValue) { return false; } CZString key(index); ObjectValues::iterator it = value_.map_->find(key); if (it == value_.map_->end()) { return false; } *removed = it->second; ArrayIndex oldSize = size(); // shift left all items left, into the place of the "removed" for (ArrayIndex i = index; i < (oldSize - 1); ++i){ CZString keey(i); (*value_.map_)[keey] = (*this)[i + 1]; } // erase the last one ("leftover") CZString keyLast(oldSize - 1); ObjectValues::iterator itLast = value_.map_->find(keyLast); value_.map_->erase(itLast); return true; } #ifdef JSON_USE_CPPTL Value Value::get(const CppTL::ConstString& key, const Value& defaultValue) const { return get(key.c_str(), key.end_c_str(), defaultValue); } #endif bool Value::isMember(char const* key, char const* cend) const { Value const* value = find(key, cend); return NULL != value; } bool Value::isMember(char const* key) const { return isMember(key, key + strlen(key)); } bool Value::isMember(JSONCPP_STRING const& key) const { return isMember(key.data(), key.data() + key.length()); } #ifdef JSON_USE_CPPTL bool Value::isMember(const CppTL::ConstString& key) const { return isMember(key.c_str(), key.end_c_str()); } #endif Value::Members Value::getMemberNames() const { JSON_ASSERT_MESSAGE( type_ == nullValue || type_ == objectValue, "in Json::Value::getMemberNames(), value must be objectValue"); if (type_ == nullValue) return Value::Members(); Members members; members.reserve(value_.map_->size()); ObjectValues::const_iterator it = value_.map_->begin(); ObjectValues::const_iterator itEnd = value_.map_->end(); for (; it != itEnd; ++it) { members.push_back(JSONCPP_STRING((*it).first.data(), (*it).first.length())); } return members; } // //# ifdef JSON_USE_CPPTL // EnumMemberNames // Value::enumMemberNames() const //{ // if ( type_ == objectValue ) // { // return CppTL::Enum::any( CppTL::Enum::transform( // CppTL::Enum::keys( *(value_.map_), CppTL::Type() ), // MemberNamesTransform() ) ); // } // return EnumMemberNames(); //} // // // EnumValues // Value::enumValues() const //{ // if ( type_ == objectValue || type_ == arrayValue ) // return CppTL::Enum::anyValues( *(value_.map_), // CppTL::Type() ); // return EnumValues(); //} // //# endif static bool IsIntegral(double d) { double integral_part; return modf(d, &integral_part) == 0.0; } bool Value::isNull() const { return type_ == nullValue; } bool Value::isBool() const { return type_ == booleanValue; } bool Value::isInt() const { switch (type_) { case intValue: #if defined(JSON_HAS_INT64) return value_.int_ >= minInt && value_.int_ <= maxInt; #else return true; #endif case uintValue: return value_.uint_ <= UInt(maxInt); case realValue: return value_.real_ >= minInt && value_.real_ <= maxInt && IsIntegral(value_.real_); default: break; } return false; } bool Value::isUInt() const { switch (type_) { case intValue: #if defined(JSON_HAS_INT64) return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); #else return value_.int_ >= 0; #endif case uintValue: #if defined(JSON_HAS_INT64) return value_.uint_ <= maxUInt; #else return true; #endif case realValue: return value_.real_ >= 0 && value_.real_ <= maxUInt && IsIntegral(value_.real_); default: break; } return false; } bool Value::isInt64() const { #if defined(JSON_HAS_INT64) switch (type_) { case intValue: return true; case uintValue: return value_.uint_ <= UInt64(maxInt64); case realValue: // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a // double, so double(maxInt64) will be rounded up to 2^63. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= double(minInt64) && value_.real_ < double(maxInt64) && IsIntegral(value_.real_); default: break; } #endif // JSON_HAS_INT64 return false; } bool Value::isUInt64() const { #if defined(JSON_HAS_INT64) switch (type_) { case intValue: return value_.int_ >= 0; case uintValue: return true; case realValue: // Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a // double, so double(maxUInt64) will be rounded up to 2^64. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= 0 && value_.real_ < maxUInt64AsDouble && IsIntegral(value_.real_); default: break; } #endif // JSON_HAS_INT64 return false; } bool Value::isIntegral() const { switch (type_) { case intValue: case uintValue: return true; case realValue: #if defined(JSON_HAS_INT64) // Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a // double, so double(maxUInt64) will be rounded up to 2^64. Therefore we // require the value to be strictly less than the limit. return value_.real_ >= double(minInt64) && value_.real_ < maxUInt64AsDouble && IsIntegral(value_.real_); #else return value_.real_ >= minInt && value_.real_ <= maxUInt && IsIntegral(value_.real_); #endif // JSON_HAS_INT64 default: break; } return false; } bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; } bool Value::isNumeric() const { return isDouble(); } bool Value::isString() const { return type_ == stringValue; } bool Value::isArray() const { return type_ == arrayValue; } bool Value::isObject() const { return type_ == objectValue; } void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { if (!comments_) comments_ = new CommentInfo[numberOfCommentPlacement]; if ((len > 0) && (comment[len-1] == '\n')) { // Always discard trailing newline, to aid indentation. len -= 1; } comments_[placement].setComment(comment, len); } void Value::setComment(const char* comment, CommentPlacement placement) { setComment(comment, strlen(comment), placement); } void Value::setComment(const JSONCPP_STRING& comment, CommentPlacement placement) { setComment(comment.c_str(), comment.length(), placement); } bool Value::hasComment(CommentPlacement placement) const { return comments_ != 0 && comments_[placement].comment_ != 0; } JSONCPP_STRING Value::getComment(CommentPlacement placement) const { if (hasComment(placement)) return comments_[placement].comment_; return ""; } void Value::setOffsetStart(ptrdiff_t start) { start_ = start; } void Value::setOffsetLimit(ptrdiff_t limit) { limit_ = limit; } ptrdiff_t Value::getOffsetStart() const { return start_; } ptrdiff_t Value::getOffsetLimit() const { return limit_; } JSONCPP_STRING Value::toStyledString() const { StreamWriterBuilder builder; JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : ""; out += Json::writeString(builder, *this); out += "\n"; return out; } Value::const_iterator Value::begin() const { switch (type_) { case arrayValue: case objectValue: if (value_.map_) return const_iterator(value_.map_->begin()); break; default: break; } return const_iterator(); } Value::const_iterator Value::end() const { switch (type_) { case arrayValue: case objectValue: if (value_.map_) return const_iterator(value_.map_->end()); break; default: break; } return const_iterator(); } Value::iterator Value::begin() { switch (type_) { case arrayValue: case objectValue: if (value_.map_) return iterator(value_.map_->begin()); break; default: break; } return iterator(); } Value::iterator Value::end() { switch (type_) { case arrayValue: case objectValue: if (value_.map_) return iterator(value_.map_->end()); break; default: break; } return iterator(); } // class PathArgument // ////////////////////////////////////////////////////////////////// PathArgument::PathArgument() : key_(), index_(), kind_(kindNone) {} PathArgument::PathArgument(ArrayIndex index) : key_(), index_(index), kind_(kindIndex) {} PathArgument::PathArgument(const char* key) : key_(key), index_(), kind_(kindKey) {} PathArgument::PathArgument(const JSONCPP_STRING& key) : key_(key.c_str()), index_(), kind_(kindKey) {} // class Path // ////////////////////////////////////////////////////////////////// Path::Path(const JSONCPP_STRING& path, const PathArgument& a1, const PathArgument& a2, const PathArgument& a3, const PathArgument& a4, const PathArgument& a5) { InArgs in; in.reserve(5); in.push_back(&a1); in.push_back(&a2); in.push_back(&a3); in.push_back(&a4); in.push_back(&a5); makePath(path, in); } void Path::makePath(const JSONCPP_STRING& path, const InArgs& in) { const char* current = path.c_str(); const char* end = current + path.length(); InArgs::const_iterator itInArg = in.begin(); while (current != end) { if (*current == '[') { ++current; if (*current == '%') addPathInArg(path, in, itInArg, PathArgument::kindIndex); else { ArrayIndex index = 0; for (; current != end && *current >= '0' && *current <= '9'; ++current) index = index * 10 + ArrayIndex(*current - '0'); args_.push_back(index); } if (current == end || *++current != ']') invalidPath(path, int(current - path.c_str())); } else if (*current == '%') { addPathInArg(path, in, itInArg, PathArgument::kindKey); ++current; } else if (*current == '.' || *current == ']') { ++current; } else { const char* beginName = current; while (current != end && !strchr("[.", *current)) ++current; args_.push_back(JSONCPP_STRING(beginName, current)); } } } void Path::addPathInArg(const JSONCPP_STRING& /*path*/, const InArgs& in, InArgs::const_iterator& itInArg, PathArgument::Kind kind) { if (itInArg == in.end()) { // Error: missing argument %d } else if ((*itInArg)->kind_ != kind) { // Error: bad argument type } else { args_.push_back(**itInArg++); } } void Path::invalidPath(const JSONCPP_STRING& /*path*/, int /*location*/) { // Error: invalid path. } const Value& Path::resolve(const Value& root) const { const Value* node = &root; for (Args::const_iterator it = args_.begin(); it != args_.end(); ++it) { const PathArgument& arg = *it; if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray() || !node->isValidIndex(arg.index_)) { // Error: unable to resolve path (array value expected at position... return Value::null; } node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) { // Error: unable to resolve path (object value expected at position...) return Value::null; } node = &((*node)[arg.key_]); if (node == &Value::nullSingleton()) { // Error: unable to resolve path (object has no member named '' at // position...) return Value::null; } } } return *node; } Value Path::resolve(const Value& root, const Value& defaultValue) const { const Value* node = &root; for (Args::const_iterator it = args_.begin(); it != args_.end(); ++it) { const PathArgument& arg = *it; if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray() || !node->isValidIndex(arg.index_)) return defaultValue; node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) return defaultValue; node = &((*node)[arg.key_]); if (node == &Value::nullSingleton()) return defaultValue; } } return *node; } Value& Path::make(Value& root) const { Value* node = &root; for (Args::const_iterator it = args_.begin(); it != args_.end(); ++it) { const PathArgument& arg = *it; if (arg.kind_ == PathArgument::kindIndex) { if (!node->isArray()) { // Error: node is not an array at position ... } node = &((*node)[arg.index_]); } else if (arg.kind_ == PathArgument::kindKey) { if (!node->isObject()) { // Error: node is not an object at position... } node = &((*node)[arg.key_]); } } return *node; } } // namespace Json } } // ////////////////////////////////////////////////////////////////////// // End of content of file: src/lib_json/json_value.cpp // ////////////////////////////////////////////////////////////////////// // ////////////////////////////////////////////////////////////////////// // Beginning of content of file: src/lib_json/json_writer.cpp // ////////////////////////////////////////////////////////////////////// // Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors // Distributed under MIT license, or public domain if desired and // recognized in your jurisdiction. // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE #if !defined(JSON_IS_AMALGAMATION) #include #include "json_tool.h" #endif // if !defined(JSON_IS_AMALGAMATION) #include #include #include #include #include #include #include #include #if defined(_MSC_VER) && _MSC_VER >= 1200 && _MSC_VER < 1800 // Between VC++ 6.0 and VC++ 11.0 #include #define isfinite _finite #elif defined(__sun) && defined(__SVR4) //Solaris #if !defined(isfinite) #include #define isfinite finite #endif #elif defined(_AIX) #if !defined(isfinite) #include #define isfinite finite #endif #elif defined(__hpux) #if !defined(isfinite) #if defined(__ia64) && !defined(finite) #define isfinite(x) ((sizeof(x) == sizeof(float) ? \ _Isfinitef(x) : _IsFinite(x))) #else #include #define isfinite finite #endif #endif #else #include #if !(defined(__QNXNTO__)) // QNX already defines isfinite #define isfinite std::isfinite #endif #endif #if defined(_MSC_VER) #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above #define snprintf sprintf_s #elif _MSC_VER >= 1900 // VC++ 14.0 and above #define snprintf std::snprintf #else #define snprintf _snprintf #endif #elif defined(__ANDROID__) || defined(__QNXNTO__) #define snprintf snprintf #elif __cplusplus >= 201103L #if !defined(__MINGW32__) && !defined(__CYGWIN__) #define snprintf std::snprintf #endif #endif #if defined(__BORLANDC__) #include #define isfinite _finite #define snprintf _snprintf #endif #if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0 // Disable warning about strdup being deprecated. #pragma warning(disable : 4996) #endif namespace AlibabaCloud { namespace OSS { namespace Json { #if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520) typedef std::unique_ptr StreamWriterPtr; #else typedef std::auto_ptr StreamWriterPtr; #endif JSONCPP_STRING valueToString(LargestInt value) { UIntToStringBuffer buffer; char* current = buffer + sizeof(buffer); if (value == Value::minLargestInt) { uintToString(LargestUInt(Value::maxLargestInt) + 1, current); *--current = '-'; } else if (value < 0) { uintToString(LargestUInt(-value), current); *--current = '-'; } else { uintToString(LargestUInt(value), current); } assert(current >= buffer); return current; } JSONCPP_STRING valueToString(LargestUInt value) { UIntToStringBuffer buffer; char* current = buffer + sizeof(buffer); uintToString(value, current); assert(current >= buffer); return current; } #if defined(JSON_HAS_INT64) JSONCPP_STRING valueToString(Int value) { return valueToString(LargestInt(value)); } JSONCPP_STRING valueToString(UInt value) { return valueToString(LargestUInt(value)); } #endif // # if defined(JSON_HAS_INT64) namespace { JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int precision) { // Allocate a buffer that is more than large enough to store the 16 digits of // precision requested below. char buffer[36]; int len = -1; char formatString[15]; snprintf(formatString, sizeof(formatString), "%%.%ug", precision); // Print into the buffer. We need not request the alternative representation // that always has a decimal point because JSON doesn't distinguish the // concepts of reals and integers. if (isfinite(value)) { len = snprintf(buffer, sizeof(buffer), formatString, value); fixNumericLocale(buffer, buffer + len); // try to ensure we preserve the fact that this was given to us as a double on input if (!strchr(buffer, '.') && !strchr(buffer, 'e')) { strcat(buffer, ".0"); } } else { // IEEE standard states that NaN values will not compare to themselves if (value != value) { len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "NaN" : "null"); } else if (value < 0) { len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "-Infinity" : "-1e+9999"); } else { len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "Infinity" : "1e+9999"); } } assert(len >= 0); return buffer; } } JSONCPP_STRING valueToString(double value) { return valueToString(value, false, 17); } JSONCPP_STRING valueToString(bool value) { return value ? "true" : "false"; } static bool isAnyCharRequiredQuoting(char const* s, size_t n) { assert(s || !n); char const* const end = s + n; for (char const* cur = s; cur < end; ++cur) { if (*cur == '\\' || *cur == '\"' || *cur < ' ' || static_cast(*cur) < 0x80) return true; } return false; } static unsigned int utf8ToCodepoint(const char*& s, const char* e) { const unsigned int REPLACEMENT_CHARACTER = 0xFFFD; unsigned int firstByte = static_cast(*s); if (firstByte < 0x80) return firstByte; if (firstByte < 0xE0) { if (e - s < 2) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x1F) << 6) | (static_cast(s[1]) & 0x3F); s += 1; // oversized encoded characters are invalid return calculated < 0x80 ? REPLACEMENT_CHARACTER : calculated; } if (firstByte < 0xF0) { if (e - s < 3) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x0F) << 12) | ((static_cast(s[1]) & 0x3F) << 6) | (static_cast(s[2]) & 0x3F); s += 2; // surrogates aren't valid codepoints itself // shouldn't be UTF-8 encoded if (calculated >= 0xD800 && calculated <= 0xDFFF) return REPLACEMENT_CHARACTER; // oversized encoded characters are invalid return calculated < 0x800 ? REPLACEMENT_CHARACTER : calculated; } if (firstByte < 0xF8) { if (e - s < 4) return REPLACEMENT_CHARACTER; unsigned int calculated = ((firstByte & 0x07) << 24) | ((static_cast(s[1]) & 0x3F) << 12) | ((static_cast(s[2]) & 0x3F) << 6) | (static_cast(s[3]) & 0x3F); s += 3; // oversized encoded characters are invalid return calculated < 0x10000 ? REPLACEMENT_CHARACTER : calculated; } return REPLACEMENT_CHARACTER; } static const char hex2[] = "000102030405060708090a0b0c0d0e0f" "101112131415161718191a1b1c1d1e1f" "202122232425262728292a2b2c2d2e2f" "303132333435363738393a3b3c3d3e3f" "404142434445464748494a4b4c4d4e4f" "505152535455565758595a5b5c5d5e5f" "606162636465666768696a6b6c6d6e6f" "707172737475767778797a7b7c7d7e7f" "808182838485868788898a8b8c8d8e8f" "909192939495969798999a9b9c9d9e9f" "a0a1a2a3a4a5a6a7a8a9aaabacadaeaf" "b0b1b2b3b4b5b6b7b8b9babbbcbdbebf" "c0c1c2c3c4c5c6c7c8c9cacbcccdcecf" "d0d1d2d3d4d5d6d7d8d9dadbdcdddedf" "e0e1e2e3e4e5e6e7e8e9eaebecedeeef" "f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff"; static JSONCPP_STRING toHex16Bit(unsigned int x) { const unsigned int hi = (x >> 8) & 0xff; const unsigned int lo = x & 0xff; JSONCPP_STRING result(4, ' '); result[0] = hex2[2 * hi]; result[1] = hex2[2 * hi + 1]; result[2] = hex2[2 * lo]; result[3] = hex2[2 * lo + 1]; return result; } static JSONCPP_STRING valueToQuotedStringN(const char* value, unsigned length) { if (value == NULL) return ""; if (!isAnyCharRequiredQuoting(value, length)) return JSONCPP_STRING("\"") + value + "\""; // We have to walk value and escape any special characters. // Appending to JSONCPP_STRING is not efficient, but this should be rare. // (Note: forward slashes are *not* rare, but I am not escaping them.) JSONCPP_STRING::size_type maxsize = length * 2 + 3; // allescaped+quotes+NULL JSONCPP_STRING result; result.reserve(maxsize); // to avoid lots of mallocs result += "\""; char const* end = value + length; for (const char* c = value; c != end; ++c) { switch (*c) { case '\"': result += "\\\""; break; case '\\': result += "\\\\"; break; case '\b': result += "\\b"; break; case '\f': result += "\\f"; break; case '\n': result += "\\n"; break; case '\r': result += "\\r"; break; case '\t': result += "\\t"; break; // case '/': // Even though \/ is considered a legal escape in JSON, a bare // slash is also legal, so I see no reason to escape it. // (I hope I am not misunderstanding something.) // blep notes: actually escaping \/ may be useful in javascript to avoid = 0x20) result += static_cast(cp); else if (cp < 0x10000) { // codepoint is in Basic Multilingual Plane result += "\\u"; result += toHex16Bit(cp); } else { // codepoint is not in Basic Multilingual Plane // convert to surrogate pair first cp -= 0x10000; result += "\\u"; result += toHex16Bit((cp >> 10) + 0xD800); result += "\\u"; result += toHex16Bit((cp & 0x3FF) + 0xDC00); } } break; } } result += "\""; return result; } JSONCPP_STRING valueToQuotedString(const char* value) { return valueToQuotedStringN(value, static_cast(strlen(value))); } // Class Writer // ////////////////////////////////////////////////////////////////// Writer::~Writer() {} // Class FastWriter // ////////////////////////////////////////////////////////////////// FastWriter::FastWriter() : yamlCompatibilityEnabled_(false), dropNullPlaceholders_(false), omitEndingLineFeed_(false) {} void FastWriter::enableYAMLCompatibility() { yamlCompatibilityEnabled_ = true; } void FastWriter::dropNullPlaceholders() { dropNullPlaceholders_ = true; } void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; } JSONCPP_STRING FastWriter::write(const Value& root) { document_.clear(); writeValue(root); if (!omitEndingLineFeed_) document_ += "\n"; return document_; } void FastWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: if (!dropNullPlaceholders_) document_ += "null"; break; case intValue: document_ += valueToString(value.asLargestInt()); break; case uintValue: document_ += valueToString(value.asLargestUInt()); break; case realValue: document_ += valueToString(value.asDouble()); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) document_ += valueToQuotedStringN(str, static_cast(end-str)); break; } case booleanValue: document_ += valueToString(value.asBool()); break; case arrayValue: { document_ += '['; ArrayIndex size = value.size(); for (ArrayIndex index = 0; index < size; ++index) { if (index > 0) document_ += ','; writeValue(value[index]); } document_ += ']'; } break; case objectValue: { Value::Members members(value.getMemberNames()); document_ += '{'; for (Value::Members::iterator it = members.begin(); it != members.end(); ++it) { const JSONCPP_STRING& name = *it; if (it != members.begin()) document_ += ','; document_ += valueToQuotedStringN(name.data(), static_cast(name.length())); document_ += yamlCompatibilityEnabled_ ? ": " : ":"; writeValue(value[name]); } document_ += '}'; } break; } } // Class StyledWriter // ////////////////////////////////////////////////////////////////// StyledWriter::StyledWriter() : rightMargin_(74), indentSize_(3), addChildValues_() {} JSONCPP_STRING StyledWriter::write(const Value& root) { document_.clear(); addChildValues_ = false; indentString_.clear(); writeCommentBeforeValue(root); writeValue(root); writeCommentAfterValueOnSameLine(root); document_ += "\n"; return document_; } void StyledWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: pushValue("null"); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble())); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue(valueToQuotedStringN(str, static_cast(end-str))); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); Value::Members::iterator it = members.begin(); for (;;) { const JSONCPP_STRING& name = *it; const Value& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent(valueToQuotedString(name.c_str())); document_ += " : "; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } document_ += ','; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void StyledWriter::writeArrayValue(const Value& value) { unsigned size = value.size(); if (size == 0) pushValue("[]"); else { bool isArrayMultiLine = isMultilineArray(value); if (isArrayMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); unsigned index = 0; for (;;) { const Value& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { writeIndent(); writeValue(childValue); } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } document_ += ','; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); document_ += "[ "; for (unsigned index = 0; index < size; ++index) { if (index > 0) document_ += ", "; document_ += childValues_[index]; } document_ += " ]"; } } } bool StyledWriter::isMultilineArray(const Value& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { const Value& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && childValue.size() > 0); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void StyledWriter::pushValue(const JSONCPP_STRING& value) { if (addChildValues_) childValues_.push_back(value); else document_ += value; } void StyledWriter::writeIndent() { if (!document_.empty()) { char last = document_[document_.length() - 1]; if (last == ' ') // already indented return; if (last != '\n') // Comments may add new-line document_ += '\n'; } document_ += indentString_; } void StyledWriter::writeWithIndent(const JSONCPP_STRING& value) { writeIndent(); document_ += value; } void StyledWriter::indent() { indentString_ += JSONCPP_STRING(indentSize_, ' '); } void StyledWriter::unindent() { assert(indentString_.size() >= indentSize_); indentString_.resize(indentString_.size() - indentSize_); } void StyledWriter::writeCommentBeforeValue(const Value& root) { if (!root.hasComment(commentBefore)) return; document_ += "\n"; writeIndent(); const JSONCPP_STRING& comment = root.getComment(commentBefore); JSONCPP_STRING::const_iterator iter = comment.begin(); while (iter != comment.end()) { document_ += *iter; if (*iter == '\n' && ((iter+1) != comment.end() && *(iter + 1) == '/')) writeIndent(); ++iter; } // Comments are stripped of trailing newlines, so add one here document_ += "\n"; } void StyledWriter::writeCommentAfterValueOnSameLine(const Value& root) { if (root.hasComment(commentAfterOnSameLine)) document_ += " " + root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { document_ += "\n"; document_ += root.getComment(commentAfter); document_ += "\n"; } } bool StyledWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } // Class StyledStreamWriter // ////////////////////////////////////////////////////////////////// StyledStreamWriter::StyledStreamWriter(JSONCPP_STRING indentation) : document_(NULL), rightMargin_(74), indentation_(indentation), addChildValues_() {} void StyledStreamWriter::write(JSONCPP_OSTREAM& out, const Value& root) { document_ = &out; addChildValues_ = false; indentString_.clear(); indented_ = true; writeCommentBeforeValue(root); if (!indented_) writeIndent(); indented_ = true; writeValue(root); writeCommentAfterValueOnSameLine(root); *document_ << "\n"; document_ = NULL; // Forget the stream, for safety. } void StyledStreamWriter::writeValue(const Value& value) { switch (value.type()) { case nullValue: pushValue("null"); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble())); break; case stringValue: { // Is NULL possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue(valueToQuotedStringN(str, static_cast(end-str))); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); Value::Members::iterator it = members.begin(); for (;;) { const JSONCPP_STRING& name = *it; const Value& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent(valueToQuotedString(name.c_str())); *document_ << " : "; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } *document_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void StyledStreamWriter::writeArrayValue(const Value& value) { unsigned size = value.size(); if (size == 0) pushValue("[]"); else { bool isArrayMultiLine = isMultilineArray(value); if (isArrayMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); unsigned index = 0; for (;;) { const Value& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { if (!indented_) writeIndent(); indented_ = true; writeValue(childValue); indented_ = false; } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } *document_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); *document_ << "[ "; for (unsigned index = 0; index < size; ++index) { if (index > 0) *document_ << ", "; *document_ << childValues_[index]; } *document_ << " ]"; } } } bool StyledStreamWriter::isMultilineArray(const Value& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { const Value& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && childValue.size() > 0); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void StyledStreamWriter::pushValue(const JSONCPP_STRING& value) { if (addChildValues_) childValues_.push_back(value); else *document_ << value; } void StyledStreamWriter::writeIndent() { // blep intended this to look at the so-far-written string // to determine whether we are already indented, but // with a stream we cannot do that. So we rely on some saved state. // The caller checks indented_. *document_ << '\n' << indentString_; } void StyledStreamWriter::writeWithIndent(const JSONCPP_STRING& value) { if (!indented_) writeIndent(); *document_ << value; indented_ = false; } void StyledStreamWriter::indent() { indentString_ += indentation_; } void StyledStreamWriter::unindent() { assert(indentString_.size() >= indentation_.size()); indentString_.resize(indentString_.size() - indentation_.size()); } void StyledStreamWriter::writeCommentBeforeValue(const Value& root) { if (!root.hasComment(commentBefore)) return; if (!indented_) writeIndent(); const JSONCPP_STRING& comment = root.getComment(commentBefore); JSONCPP_STRING::const_iterator iter = comment.begin(); while (iter != comment.end()) { *document_ << *iter; if (*iter == '\n' && ((iter+1) != comment.end() && *(iter + 1) == '/')) // writeIndent(); // would include newline *document_ << indentString_; ++iter; } indented_ = false; } void StyledStreamWriter::writeCommentAfterValueOnSameLine(const Value& root) { if (root.hasComment(commentAfterOnSameLine)) *document_ << ' ' << root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { writeIndent(); *document_ << root.getComment(commentAfter); } indented_ = false; } bool StyledStreamWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } ////////////////////////// // BuiltStyledStreamWriter /// Scoped enums are not available until C++11. struct CommentStyle { /// Decide whether to write comments. enum Enum { None, ///< Drop all comments. Most, ///< Recover odd behavior of previous versions (not implemented yet). All ///< Keep all comments. }; }; struct BuiltStyledStreamWriter : public StreamWriter { BuiltStyledStreamWriter( JSONCPP_STRING const& indentation, CommentStyle::Enum cs, JSONCPP_STRING const& colonSymbol, JSONCPP_STRING const& nullSymbol, JSONCPP_STRING const& endingLineFeedSymbol, bool useSpecialFloats, unsigned int precision); int write(Value const& root, JSONCPP_OSTREAM* sout) JSONCPP_OVERRIDE; private: void writeValue(Value const& value); void writeArrayValue(Value const& value); bool isMultilineArray(Value const& value); void pushValue(JSONCPP_STRING const& value); void writeIndent(); void writeWithIndent(JSONCPP_STRING const& value); void indent(); void unindent(); void writeCommentBeforeValue(Value const& root); void writeCommentAfterValueOnSameLine(Value const& root); static bool hasCommentForValue(const Value& value); typedef std::vector ChildValues; ChildValues childValues_; JSONCPP_STRING indentString_; unsigned int rightMargin_; JSONCPP_STRING indentation_; CommentStyle::Enum cs_; JSONCPP_STRING colonSymbol_; JSONCPP_STRING nullSymbol_; JSONCPP_STRING endingLineFeedSymbol_; bool addChildValues_ : 1; bool indented_ : 1; bool useSpecialFloats_ : 1; unsigned int precision_; }; BuiltStyledStreamWriter::BuiltStyledStreamWriter( JSONCPP_STRING const& indentation, CommentStyle::Enum cs, JSONCPP_STRING const& colonSymbol, JSONCPP_STRING const& nullSymbol, JSONCPP_STRING const& endingLineFeedSymbol, bool useSpecialFloats, unsigned int precision) : rightMargin_(74) , indentation_(indentation) , cs_(cs) , colonSymbol_(colonSymbol) , nullSymbol_(nullSymbol) , endingLineFeedSymbol_(endingLineFeedSymbol) , addChildValues_(false) , indented_(false) , useSpecialFloats_(useSpecialFloats) , precision_(precision) { } int BuiltStyledStreamWriter::write(Value const& root, JSONCPP_OSTREAM* sout) { sout_ = sout; addChildValues_ = false; indented_ = true; indentString_.clear(); writeCommentBeforeValue(root); if (!indented_) writeIndent(); indented_ = true; writeValue(root); writeCommentAfterValueOnSameLine(root); *sout_ << endingLineFeedSymbol_; sout_ = NULL; return 0; } void BuiltStyledStreamWriter::writeValue(Value const& value) { switch (value.type()) { case nullValue: pushValue(nullSymbol_); break; case intValue: pushValue(valueToString(value.asLargestInt())); break; case uintValue: pushValue(valueToString(value.asLargestUInt())); break; case realValue: pushValue(valueToString(value.asDouble(), useSpecialFloats_, precision_)); break; case stringValue: { // Is NULL is possible for value.string_? No. char const* str; char const* end; bool ok = value.getString(&str, &end); if (ok) pushValue(valueToQuotedStringN(str, static_cast(end-str))); else pushValue(""); break; } case booleanValue: pushValue(valueToString(value.asBool())); break; case arrayValue: writeArrayValue(value); break; case objectValue: { Value::Members members(value.getMemberNames()); if (members.empty()) pushValue("{}"); else { writeWithIndent("{"); indent(); Value::Members::iterator it = members.begin(); for (;;) { JSONCPP_STRING const& name = *it; Value const& childValue = value[name]; writeCommentBeforeValue(childValue); writeWithIndent(valueToQuotedStringN(name.data(), static_cast(name.length()))); *sout_ << colonSymbol_; writeValue(childValue); if (++it == members.end()) { writeCommentAfterValueOnSameLine(childValue); break; } *sout_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("}"); } } break; } } void BuiltStyledStreamWriter::writeArrayValue(Value const& value) { unsigned size = value.size(); if (size == 0) pushValue("[]"); else { bool isMultiLine = (cs_ == CommentStyle::All) || isMultilineArray(value); if (isMultiLine) { writeWithIndent("["); indent(); bool hasChildValue = !childValues_.empty(); unsigned index = 0; for (;;) { Value const& childValue = value[index]; writeCommentBeforeValue(childValue); if (hasChildValue) writeWithIndent(childValues_[index]); else { if (!indented_) writeIndent(); indented_ = true; writeValue(childValue); indented_ = false; } if (++index == size) { writeCommentAfterValueOnSameLine(childValue); break; } *sout_ << ","; writeCommentAfterValueOnSameLine(childValue); } unindent(); writeWithIndent("]"); } else // output on a single line { assert(childValues_.size() == size); *sout_ << "["; if (!indentation_.empty()) *sout_ << " "; for (unsigned index = 0; index < size; ++index) { if (index > 0) *sout_ << ((!indentation_.empty()) ? ", " : ","); *sout_ << childValues_[index]; } if (!indentation_.empty()) *sout_ << " "; *sout_ << "]"; } } } bool BuiltStyledStreamWriter::isMultilineArray(Value const& value) { ArrayIndex const size = value.size(); bool isMultiLine = size * 3 >= rightMargin_; childValues_.clear(); for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) { Value const& childValue = value[index]; isMultiLine = ((childValue.isArray() || childValue.isObject()) && childValue.size() > 0); } if (!isMultiLine) // check if line length > max line length { childValues_.reserve(size); addChildValues_ = true; ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]' for (ArrayIndex index = 0; index < size; ++index) { if (hasCommentForValue(value[index])) { isMultiLine = true; } writeValue(value[index]); lineLength += static_cast(childValues_[index].length()); } addChildValues_ = false; isMultiLine = isMultiLine || lineLength >= rightMargin_; } return isMultiLine; } void BuiltStyledStreamWriter::pushValue(JSONCPP_STRING const& value) { if (addChildValues_) childValues_.push_back(value); else *sout_ << value; } void BuiltStyledStreamWriter::writeIndent() { // blep intended this to look at the so-far-written string // to determine whether we are already indented, but // with a stream we cannot do that. So we rely on some saved state. // The caller checks indented_. if (!indentation_.empty()) { // In this case, drop newlines too. *sout_ << '\n' << indentString_; } } void BuiltStyledStreamWriter::writeWithIndent(JSONCPP_STRING const& value) { if (!indented_) writeIndent(); *sout_ << value; indented_ = false; } void BuiltStyledStreamWriter::indent() { indentString_ += indentation_; } void BuiltStyledStreamWriter::unindent() { assert(indentString_.size() >= indentation_.size()); indentString_.resize(indentString_.size() - indentation_.size()); } void BuiltStyledStreamWriter::writeCommentBeforeValue(Value const& root) { if (cs_ == CommentStyle::None) return; if (!root.hasComment(commentBefore)) return; if (!indented_) writeIndent(); const JSONCPP_STRING& comment = root.getComment(commentBefore); JSONCPP_STRING::const_iterator iter = comment.begin(); while (iter != comment.end()) { *sout_ << *iter; if (*iter == '\n' && ((iter+1) != comment.end() && *(iter + 1) == '/')) // writeIndent(); // would write extra newline *sout_ << indentString_; ++iter; } indented_ = false; } void BuiltStyledStreamWriter::writeCommentAfterValueOnSameLine(Value const& root) { if (cs_ == CommentStyle::None) return; if (root.hasComment(commentAfterOnSameLine)) *sout_ << " " + root.getComment(commentAfterOnSameLine); if (root.hasComment(commentAfter)) { writeIndent(); *sout_ << root.getComment(commentAfter); } } // static bool BuiltStyledStreamWriter::hasCommentForValue(const Value& value) { return value.hasComment(commentBefore) || value.hasComment(commentAfterOnSameLine) || value.hasComment(commentAfter); } /////////////// // StreamWriter StreamWriter::StreamWriter() : sout_(NULL) { } StreamWriter::~StreamWriter() { } StreamWriter::Factory::~Factory() {} StreamWriterBuilder::StreamWriterBuilder() { setDefaults(&settings_); } StreamWriterBuilder::~StreamWriterBuilder() {} StreamWriter* StreamWriterBuilder::newStreamWriter() const { JSONCPP_STRING indentation = settings_["indentation"].asString(); JSONCPP_STRING cs_str = settings_["commentStyle"].asString(); bool eyc = settings_["enableYAMLCompatibility"].asBool(); bool dnp = settings_["dropNullPlaceholders"].asBool(); bool usf = settings_["useSpecialFloats"].asBool(); unsigned int pre = settings_["precision"].asUInt(); CommentStyle::Enum cs = CommentStyle::All; if (cs_str == "All") { cs = CommentStyle::All; } else if (cs_str == "None") { cs = CommentStyle::None; } else { throwRuntimeError("commentStyle must be 'All' or 'None'"); } JSONCPP_STRING colonSymbol = " : "; if (eyc) { colonSymbol = ": "; } else if (indentation.empty()) { colonSymbol = ":"; } JSONCPP_STRING nullSymbol = "null"; if (dnp) { nullSymbol.clear(); } if (pre > 17) pre = 17; JSONCPP_STRING endingLineFeedSymbol; return new BuiltStyledStreamWriter( indentation, cs, colonSymbol, nullSymbol, endingLineFeedSymbol, usf, pre); } static void getValidWriterKeys(std::set* valid_keys) { valid_keys->clear(); valid_keys->insert("indentation"); valid_keys->insert("commentStyle"); valid_keys->insert("enableYAMLCompatibility"); valid_keys->insert("dropNullPlaceholders"); valid_keys->insert("useSpecialFloats"); valid_keys->insert("precision"); } bool StreamWriterBuilder::validate(Json::Value* invalid) const { Json::Value my_invalid; if (!invalid) invalid = &my_invalid; // so we do not need to test for NULL Json::Value& inv = *invalid; std::set valid_keys; getValidWriterKeys(&valid_keys); Value::Members keys = settings_.getMemberNames(); size_t n = keys.size(); for (size_t i = 0; i < n; ++i) { JSONCPP_STRING const& key = keys[i]; if (valid_keys.find(key) == valid_keys.end()) { inv[key] = settings_[key]; } } return 0u == inv.size(); } Value& StreamWriterBuilder::operator[](JSONCPP_STRING key) { return settings_[key]; } // static void StreamWriterBuilder::setDefaults(Json::Value* settings) { //! [StreamWriterBuilderDefaults] (*settings)["commentStyle"] = "All"; (*settings)["indentation"] = "\t"; (*settings)["enableYAMLCompatibility"] = false; (*settings)["dropNullPlaceholders"] = false; (*settings)["useSpecialFloats"] = false; (*settings)["precision"] = 17; //! [StreamWriterBuilderDefaults] } JSONCPP_STRING writeString(StreamWriter::Factory const& builder, Value const& root) { JSONCPP_OSTRINGSTREAM sout; StreamWriterPtr const writer(builder.newStreamWriter()); writer->write(root, &sout); return sout.str(); } JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { StreamWriterBuilder builder; StreamWriterPtr const writer(builder.newStreamWriter()); writer->write(root, &sout); return sout; } } // namespace Json } } // ////////////////////////////////////////////////////////////////////// // End of content of file: src/lib_json/json_writer.cpp // ////////////////////////////////////////////////////////////////////// ================================================ FILE: sdk/src/external/tinyxml2/tinyxml2.cpp ================================================ /* Original code by Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #include #include // yes, this one new style header, is in the Android SDK. #if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) # include # include #else # include # include #endif #if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE) // Microsoft Visual Studio, version 2005 and higher. Not WinCE. /*int _snprintf_s( char *buffer, size_t sizeOfBuffer, size_t count, const char *format [, argument] ... );*/ static inline int TIXML_SNPRINTF( char* buffer, size_t size, const char* format, ... ) { va_list va; va_start( va, format ); int result = vsnprintf_s( buffer, size, _TRUNCATE, format, va ); va_end( va ); return result; } static inline int TIXML_VSNPRINTF( char* buffer, size_t size, const char* format, va_list va ) { int result = vsnprintf_s( buffer, size, _TRUNCATE, format, va ); return result; } #define TIXML_VSCPRINTF _vscprintf #define TIXML_SSCANF sscanf_s #elif defined _MSC_VER // Microsoft Visual Studio 2003 and earlier or WinCE #define TIXML_SNPRINTF _snprintf #define TIXML_VSNPRINTF _vsnprintf #define TIXML_SSCANF sscanf #if (_MSC_VER < 1400 ) && (!defined WINCE) // Microsoft Visual Studio 2003 and not WinCE. #define TIXML_VSCPRINTF _vscprintf // VS2003's C runtime has this, but VC6 C runtime or WinCE SDK doesn't have. #else // Microsoft Visual Studio 2003 and earlier or WinCE. static inline int TIXML_VSCPRINTF( const char* format, va_list va ) { int len = 512; for (;;) { len = len*2; char* str = new char[len](); const int required = _vsnprintf(str, len, format, va); delete[] str; if ( required != -1 ) { TIXMLASSERT( required >= 0 ); len = required; break; } } TIXMLASSERT( len >= 0 ); return len; } #endif #else // GCC version 3 and higher //#warning( "Using sn* functions." ) #define TIXML_SNPRINTF snprintf #define TIXML_VSNPRINTF vsnprintf static inline int TIXML_VSCPRINTF( const char* format, va_list va ) { int len = vsnprintf( 0, 0, format, va ); TIXMLASSERT( len >= 0 ); return len; } #define TIXML_SSCANF sscanf #endif static const char LINE_FEED = (char)0x0a; // all line endings are normalized to LF static const char LF = LINE_FEED; static const char CARRIAGE_RETURN = (char)0x0d; // CR gets filtered out static const char CR = CARRIAGE_RETURN; static const char SINGLE_QUOTE = '\''; static const char DOUBLE_QUOTE = '\"'; // Bunch of unicode info at: // http://www.unicode.org/faq/utf_bom.html // ef bb bf (Microsoft "lead bytes") - designates UTF-8 static const unsigned char TIXML_UTF_LEAD_0 = 0xefU; static const unsigned char TIXML_UTF_LEAD_1 = 0xbbU; static const unsigned char TIXML_UTF_LEAD_2 = 0xbfU; namespace AlibabaCloud { namespace OSS { namespace tinyxml2 { struct Entity { const char* pattern; int length; char value; }; static const int NUM_ENTITIES = 5; static const Entity entities[NUM_ENTITIES] = { { "quot", 4, DOUBLE_QUOTE }, { "amp", 3, '&' }, { "apos", 4, SINGLE_QUOTE }, { "lt", 2, '<' }, { "gt", 2, '>' } }; StrPair::~StrPair() { Reset(); } void StrPair::TransferTo( StrPair* other ) { if ( this == other ) { return; } // This in effect implements the assignment operator by "moving" // ownership (as in auto_ptr). TIXMLASSERT( other != 0 ); TIXMLASSERT( other->_flags == 0 ); TIXMLASSERT( other->_start == 0 ); TIXMLASSERT( other->_end == 0 ); other->Reset(); other->_flags = _flags; other->_start = _start; other->_end = _end; _flags = 0; _start = 0; _end = 0; } void StrPair::Reset() { if ( _flags & NEEDS_DELETE ) { delete [] _start; } _flags = 0; _start = 0; _end = 0; } void StrPair::SetStr( const char* str, int flags ) { TIXMLASSERT( str ); Reset(); size_t len = strlen( str ); TIXMLASSERT( _start == 0 ); _start = new char[ len+1 ]; memcpy( _start, str, len+1 ); _end = _start + len; _flags = flags | NEEDS_DELETE; } char* StrPair::ParseText( char* p, const char* endTag, int strFlags, int* curLineNumPtr ) { TIXMLASSERT( p ); TIXMLASSERT( endTag && *endTag ); TIXMLASSERT(curLineNumPtr); char* start = p; char endChar = *endTag; size_t length = strlen( endTag ); // Inner loop of text parsing. while ( *p ) { if ( *p == endChar && strncmp( p, endTag, length ) == 0 ) { Set( start, p, strFlags ); return p + length; } else if (*p == '\n') { ++(*curLineNumPtr); } ++p; TIXMLASSERT( p ); } return 0; } char* StrPair::ParseName( char* p ) { if ( !p || !(*p) ) { return 0; } if ( !XMLUtil::IsNameStartChar( *p ) ) { return 0; } char* const start = p; ++p; while ( *p && XMLUtil::IsNameChar( *p ) ) { ++p; } Set( start, p, 0 ); return p; } void StrPair::CollapseWhitespace() { // Adjusting _start would cause undefined behavior on delete[] TIXMLASSERT( ( _flags & NEEDS_DELETE ) == 0 ); // Trim leading space. _start = XMLUtil::SkipWhiteSpace( _start, 0 ); if ( *_start ) { const char* p = _start; // the read pointer char* q = _start; // the write pointer while( *p ) { if ( XMLUtil::IsWhiteSpace( *p )) { p = XMLUtil::SkipWhiteSpace( p, 0 ); if ( *p == 0 ) { break; // don't write to q; this trims the trailing space. } *q = ' '; ++q; } *q = *p; ++q; ++p; } *q = 0; } } const char* StrPair::GetStr() { TIXMLASSERT( _start ); TIXMLASSERT( _end ); if ( _flags & NEEDS_FLUSH ) { *_end = 0; _flags ^= NEEDS_FLUSH; if ( _flags ) { const char* p = _start; // the read pointer char* q = _start; // the write pointer while( p < _end ) { if ( (_flags & NEEDS_NEWLINE_NORMALIZATION) && *p == CR ) { // CR-LF pair becomes LF // CR alone becomes LF // LF-CR becomes LF if ( *(p+1) == LF ) { p += 2; } else { ++p; } *q = LF; ++q; } else if ( (_flags & NEEDS_NEWLINE_NORMALIZATION) && *p == LF ) { if ( *(p+1) == CR ) { p += 2; } else { ++p; } *q = LF; ++q; } else if ( (_flags & NEEDS_ENTITY_PROCESSING) && *p == '&' ) { // Entities handled by tinyXML2: // - special entities in the entity table [in/out] // - numeric character reference [in] // 中 or 中 if ( *(p+1) == '#' ) { const int buflen = 10; char buf[buflen] = { 0 }; int len = 0; char* adjusted = const_cast( XMLUtil::GetCharacterRef( p, buf, &len ) ); if ( adjusted == 0 ) { *q = *p; ++p; ++q; } else { TIXMLASSERT( 0 <= len && len <= buflen ); TIXMLASSERT( q + len <= adjusted ); p = adjusted; memcpy( q, buf, len ); q += len; } } else { bool entityFound = false; for( int i = 0; i < NUM_ENTITIES; ++i ) { const Entity& entity = entities[i]; if ( strncmp( p + 1, entity.pattern, entity.length ) == 0 && *( p + entity.length + 1 ) == ';' ) { // Found an entity - convert. *q = entity.value; ++q; p += entity.length + 2; entityFound = true; break; } } if ( !entityFound ) { // fixme: treat as error? ++p; ++q; } } } else { *q = *p; ++p; ++q; } } *q = 0; } // The loop below has plenty going on, and this // is a less useful mode. Break it out. if ( _flags & NEEDS_WHITESPACE_COLLAPSING ) { CollapseWhitespace(); } _flags = (_flags & NEEDS_DELETE); } TIXMLASSERT( _start ); return _start; } // --------- XMLUtil ----------- // const char* XMLUtil::writeBoolTrue = "true"; const char* XMLUtil::writeBoolFalse = "false"; void XMLUtil::SetBoolSerialization(const char* writeTrue, const char* writeFalse) { static const char* defTrue = "true"; static const char* defFalse = "false"; writeBoolTrue = (writeTrue) ? writeTrue : defTrue; writeBoolFalse = (writeFalse) ? writeFalse : defFalse; } const char* XMLUtil::ReadBOM( const char* p, bool* bom ) { TIXMLASSERT( p ); TIXMLASSERT( bom ); *bom = false; const unsigned char* pu = reinterpret_cast(p); // Check for BOM: if ( *(pu+0) == TIXML_UTF_LEAD_0 && *(pu+1) == TIXML_UTF_LEAD_1 && *(pu+2) == TIXML_UTF_LEAD_2 ) { *bom = true; p += 3; } TIXMLASSERT( p ); return p; } void XMLUtil::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) { const unsigned long BYTE_MASK = 0xBF; const unsigned long BYTE_MARK = 0x80; const unsigned long FIRST_BYTE_MARK[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; if (input < 0x80) { *length = 1; } else if ( input < 0x800 ) { *length = 2; } else if ( input < 0x10000 ) { *length = 3; } else if ( input < 0x200000 ) { *length = 4; } else { *length = 0; // This code won't convert this correctly anyway. return; } output += *length; // Scary scary fall throughs are annotated with carefully designed comments // to suppress compiler warnings such as -Wimplicit-fallthrough in gcc switch (*length) { case 4: --output; *output = (char)((input | BYTE_MARK) & BYTE_MASK); input >>= 6; //fall through case 3: --output; *output = (char)((input | BYTE_MARK) & BYTE_MASK); input >>= 6; //fall through case 2: --output; *output = (char)((input | BYTE_MARK) & BYTE_MASK); input >>= 6; //fall through case 1: --output; *output = (char)(input | FIRST_BYTE_MARK[*length]); break; default: TIXMLASSERT( false ); } } const char* XMLUtil::GetCharacterRef( const char* p, char* value, int* length ) { // Presume an entity, and pull it out. *length = 0; if ( *(p+1) == '#' && *(p+2) ) { unsigned long ucs = 0; TIXMLASSERT( sizeof( ucs ) >= 4 ); ptrdiff_t delta = 0; unsigned mult = 1; static const char SEMICOLON = ';'; if ( *(p+2) == 'x' ) { // Hexadecimal. const char* q = p+3; if ( !(*q) ) { return 0; } q = strchr( q, SEMICOLON ); if ( !q ) { return 0; } TIXMLASSERT( *q == SEMICOLON ); delta = q-p; --q; while ( *q != 'x' ) { unsigned int digit = 0; if ( *q >= '0' && *q <= '9' ) { digit = *q - '0'; } else if ( *q >= 'a' && *q <= 'f' ) { digit = *q - 'a' + 10; } else if ( *q >= 'A' && *q <= 'F' ) { digit = *q - 'A' + 10; } else { return 0; } TIXMLASSERT( digit < 16 ); TIXMLASSERT( digit == 0 || mult <= UINT_MAX / digit ); const unsigned int digitScaled = mult * digit; TIXMLASSERT( ucs <= ULONG_MAX - digitScaled ); ucs += digitScaled; TIXMLASSERT( mult <= UINT_MAX / 16 ); mult *= 16; --q; } } else { // Decimal. const char* q = p+2; if ( !(*q) ) { return 0; } q = strchr( q, SEMICOLON ); if ( !q ) { return 0; } TIXMLASSERT( *q == SEMICOLON ); delta = q-p; --q; while ( *q != '#' ) { if ( *q >= '0' && *q <= '9' ) { const unsigned int digit = *q - '0'; TIXMLASSERT( digit < 10 ); TIXMLASSERT( digit == 0 || mult <= UINT_MAX / digit ); const unsigned int digitScaled = mult * digit; TIXMLASSERT( ucs <= ULONG_MAX - digitScaled ); ucs += digitScaled; } else { return 0; } TIXMLASSERT( mult <= UINT_MAX / 10 ); mult *= 10; --q; } } // convert the UCS to UTF-8 ConvertUTF32ToUTF8( ucs, value, length ); return p + delta + 1; } return p+1; } void XMLUtil::ToStr( int v, char* buffer, int bufferSize ) { TIXML_SNPRINTF( buffer, bufferSize, "%d", v ); } void XMLUtil::ToStr( unsigned v, char* buffer, int bufferSize ) { TIXML_SNPRINTF( buffer, bufferSize, "%u", v ); } void XMLUtil::ToStr( bool v, char* buffer, int bufferSize ) { TIXML_SNPRINTF( buffer, bufferSize, "%s", v ? writeBoolTrue : writeBoolFalse); } /* ToStr() of a number is a very tricky topic. https://github.com/leethomason/tinyxml2/issues/106 */ void XMLUtil::ToStr( float v, char* buffer, int bufferSize ) { TIXML_SNPRINTF( buffer, bufferSize, "%.8g", v ); } void XMLUtil::ToStr( double v, char* buffer, int bufferSize ) { TIXML_SNPRINTF( buffer, bufferSize, "%.17g", v ); } void XMLUtil::ToStr(int64_t v, char* buffer, int bufferSize) { // horrible syntax trick to make the compiler happy about %lld TIXML_SNPRINTF(buffer, bufferSize, "%lld", (long long)v); } bool XMLUtil::ToInt( const char* str, int* value ) { if ( TIXML_SSCANF( str, "%d", value ) == 1 ) { return true; } return false; } bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) { if ( TIXML_SSCANF( str, "%u", value ) == 1 ) { return true; } return false; } bool XMLUtil::ToBool( const char* str, bool* value ) { int ival = 0; if ( ToInt( str, &ival )) { *value = (ival==0) ? false : true; return true; } if ( StringEqual( str, "true" ) ) { *value = true; return true; } else if ( StringEqual( str, "false" ) ) { *value = false; return true; } return false; } bool XMLUtil::ToFloat( const char* str, float* value ) { if ( TIXML_SSCANF( str, "%f", value ) == 1 ) { return true; } return false; } bool XMLUtil::ToDouble( const char* str, double* value ) { if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) { return true; } return false; } bool XMLUtil::ToInt64(const char* str, int64_t* value) { long long v = 0; // horrible syntax trick to make the compiler happy about %lld if (TIXML_SSCANF(str, "%lld", &v) == 1) { *value = (int64_t)v; return true; } return false; } char* XMLDocument::Identify( char* p, XMLNode** node ) { TIXMLASSERT( node ); TIXMLASSERT( p ); char* const start = p; int const startLine = _parseCurLineNum; p = XMLUtil::SkipWhiteSpace( p, &_parseCurLineNum ); if( !*p ) { *node = 0; TIXMLASSERT( p ); return p; } // These strings define the matching patterns: static const char* xmlHeader = { "( _commentPool ); returnNode->_parseLineNum = _parseCurLineNum; p += xmlHeaderLen; } else if ( XMLUtil::StringEqual( p, commentHeader, commentHeaderLen ) ) { returnNode = CreateUnlinkedNode( _commentPool ); returnNode->_parseLineNum = _parseCurLineNum; p += commentHeaderLen; } else if ( XMLUtil::StringEqual( p, cdataHeader, cdataHeaderLen ) ) { XMLText* text = CreateUnlinkedNode( _textPool ); returnNode = text; returnNode->_parseLineNum = _parseCurLineNum; p += cdataHeaderLen; text->SetCData( true ); } else if ( XMLUtil::StringEqual( p, dtdHeader, dtdHeaderLen ) ) { returnNode = CreateUnlinkedNode( _commentPool ); returnNode->_parseLineNum = _parseCurLineNum; p += dtdHeaderLen; } else if ( XMLUtil::StringEqual( p, elementHeader, elementHeaderLen ) ) { returnNode = CreateUnlinkedNode( _elementPool ); returnNode->_parseLineNum = _parseCurLineNum; p += elementHeaderLen; } else { returnNode = CreateUnlinkedNode( _textPool ); returnNode->_parseLineNum = _parseCurLineNum; // Report line of first non-whitespace character p = start; // Back it up, all the text counts. _parseCurLineNum = startLine; } TIXMLASSERT( returnNode ); TIXMLASSERT( p ); *node = returnNode; return p; } bool XMLDocument::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); if ( visitor->VisitEnter( *this ) ) { for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { if ( !node->Accept( visitor ) ) { break; } } } return visitor->VisitExit( *this ); } // --------- XMLNode ----------- // XMLNode::XMLNode( XMLDocument* doc ) : _document( doc ), _parent( 0 ), _value(), _parseLineNum( 0 ), _firstChild( 0 ), _lastChild( 0 ), _prev( 0 ), _next( 0 ), _userData( 0 ), _memPool( 0 ) { } XMLNode::~XMLNode() { DeleteChildren(); if ( _parent ) { _parent->Unlink( this ); } } const char* XMLNode::Value() const { // Edge case: XMLDocuments don't have a Value. Return null. if ( this->ToDocument() ) return 0; return _value.GetStr(); } void XMLNode::SetValue( const char* str, bool staticMem ) { if ( staticMem ) { _value.SetInternedStr( str ); } else { _value.SetStr( str ); } } XMLNode* XMLNode::DeepClone(XMLDocument* target) const { XMLNode* clone = this->ShallowClone(target); if (!clone) return 0; for (const XMLNode* child = this->FirstChild(); child; child = child->NextSibling()) { XMLNode* childClone = child->DeepClone(target); TIXMLASSERT(childClone); clone->InsertEndChild(childClone); } return clone; } void XMLNode::DeleteChildren() { while( _firstChild ) { TIXMLASSERT( _lastChild ); DeleteChild( _firstChild ); } _firstChild = _lastChild = 0; } void XMLNode::Unlink( XMLNode* child ) { TIXMLASSERT( child ); TIXMLASSERT( child->_document == _document ); TIXMLASSERT( child->_parent == this ); if ( child == _firstChild ) { _firstChild = _firstChild->_next; } if ( child == _lastChild ) { _lastChild = _lastChild->_prev; } if ( child->_prev ) { child->_prev->_next = child->_next; } if ( child->_next ) { child->_next->_prev = child->_prev; } child->_next = 0; child->_prev = 0; child->_parent = 0; } void XMLNode::DeleteChild( XMLNode* node ) { TIXMLASSERT( node ); TIXMLASSERT( node->_document == _document ); TIXMLASSERT( node->_parent == this ); Unlink( node ); TIXMLASSERT(node->_prev == 0); TIXMLASSERT(node->_next == 0); TIXMLASSERT(node->_parent == 0); DeleteNode( node ); } XMLNode* XMLNode::InsertEndChild( XMLNode* addThis ) { TIXMLASSERT( addThis ); if ( addThis->_document != _document ) { TIXMLASSERT( false ); return 0; } InsertChildPreamble( addThis ); if ( _lastChild ) { TIXMLASSERT( _firstChild ); TIXMLASSERT( _lastChild->_next == 0 ); _lastChild->_next = addThis; addThis->_prev = _lastChild; _lastChild = addThis; addThis->_next = 0; } else { TIXMLASSERT( _firstChild == 0 ); _firstChild = _lastChild = addThis; addThis->_prev = 0; addThis->_next = 0; } addThis->_parent = this; return addThis; } XMLNode* XMLNode::InsertFirstChild( XMLNode* addThis ) { TIXMLASSERT( addThis ); if ( addThis->_document != _document ) { TIXMLASSERT( false ); return 0; } InsertChildPreamble( addThis ); if ( _firstChild ) { TIXMLASSERT( _lastChild ); TIXMLASSERT( _firstChild->_prev == 0 ); _firstChild->_prev = addThis; addThis->_next = _firstChild; _firstChild = addThis; addThis->_prev = 0; } else { TIXMLASSERT( _lastChild == 0 ); _firstChild = _lastChild = addThis; addThis->_prev = 0; addThis->_next = 0; } addThis->_parent = this; return addThis; } XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) { TIXMLASSERT( addThis ); if ( addThis->_document != _document ) { TIXMLASSERT( false ); return 0; } TIXMLASSERT( afterThis ); if ( afterThis->_parent != this ) { TIXMLASSERT( false ); return 0; } if ( afterThis == addThis ) { // Current state: BeforeThis -> AddThis -> OneAfterAddThis // Now AddThis must disappear from it's location and then // reappear between BeforeThis and OneAfterAddThis. // So just leave it where it is. return addThis; } if ( afterThis->_next == 0 ) { // The last node or the only node. return InsertEndChild( addThis ); } InsertChildPreamble( addThis ); addThis->_prev = afterThis; addThis->_next = afterThis->_next; afterThis->_next->_prev = addThis; afterThis->_next = addThis; addThis->_parent = this; return addThis; } const XMLElement* XMLNode::FirstChildElement( const char* name ) const { for( const XMLNode* node = _firstChild; node; node = node->_next ) { const XMLElement* element = node->ToElementWithName( name ); if ( element ) { return element; } } return 0; } const XMLElement* XMLNode::LastChildElement( const char* name ) const { for( const XMLNode* node = _lastChild; node; node = node->_prev ) { const XMLElement* element = node->ToElementWithName( name ); if ( element ) { return element; } } return 0; } const XMLElement* XMLNode::NextSiblingElement( const char* name ) const { for( const XMLNode* node = _next; node; node = node->_next ) { const XMLElement* element = node->ToElementWithName( name ); if ( element ) { return element; } } return 0; } const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const { for( const XMLNode* node = _prev; node; node = node->_prev ) { const XMLElement* element = node->ToElementWithName( name ); if ( element ) { return element; } } return 0; } char* XMLNode::ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ) { // This is a recursive method, but thinking about it "at the current level" // it is a pretty simple flat list: // // // // With a special case: // // // // // Where the closing element (/foo) *must* be the next thing after the opening // element, and the names must match. BUT the tricky bit is that the closing // element will be read by the child. // // 'endTag' is the end tag for this node, it is returned by a call to a child. // 'parentEnd' is the end tag for the parent, which is filled in and returned. XMLDocument::DepthTracker tracker(_document); if (_document->Error()) return 0; while( p && *p ) { XMLNode* node = 0; p = _document->Identify( p, &node ); TIXMLASSERT( p ); if ( node == 0 ) { break; } int initialLineNum = node->_parseLineNum; StrPair endTag; p = node->ParseDeep( p, &endTag, curLineNumPtr ); if ( !p ) { DeleteNode( node ); if ( !_document->Error() ) { _document->SetError( XML_ERROR_PARSING, initialLineNum, 0); } break; } XMLDeclaration* decl = node->ToDeclaration(); if ( decl ) { // Declarations are only allowed at document level bool wellLocated = ( ToDocument() != 0 ); if ( wellLocated ) { // Multiple declarations are allowed but all declarations // must occur before anything else for ( const XMLNode* existingNode = _document->FirstChild(); existingNode; existingNode = existingNode->NextSibling() ) { if ( !existingNode->ToDeclaration() ) { wellLocated = false; break; } } } if ( !wellLocated ) { _document->SetError( XML_ERROR_PARSING_DECLARATION, initialLineNum, "XMLDeclaration value=%s", decl->Value()); DeleteNode( node ); break; } } XMLElement* ele = node->ToElement(); if ( ele ) { // We read the end tag. Return it to the parent. if ( ele->ClosingType() == XMLElement::CLOSING ) { if ( parentEndTag ) { ele->_value.TransferTo( parentEndTag ); } node->_memPool->SetTracked(); // created and then immediately deleted. DeleteNode( node ); return p; } // Handle an end tag returned to this level. // And handle a bunch of annoying errors. bool mismatch = false; if ( endTag.Empty() ) { if ( ele->ClosingType() == XMLElement::OPEN ) { mismatch = true; } } else { if ( ele->ClosingType() != XMLElement::OPEN ) { mismatch = true; } else if ( !XMLUtil::StringEqual( endTag.GetStr(), ele->Name() ) ) { mismatch = true; } } if ( mismatch ) { _document->SetError( XML_ERROR_MISMATCHED_ELEMENT, initialLineNum, "XMLElement name=%s", ele->Name()); DeleteNode( node ); break; } } InsertEndChild( node ); } return 0; } /*static*/ void XMLNode::DeleteNode( XMLNode* node ) { if ( node == 0 ) { return; } TIXMLASSERT(node->_document); if (!node->ToDocument()) { node->_document->MarkInUse(node); } MemPool* pool = node->_memPool; node->~XMLNode(); pool->Free( node ); } void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const { TIXMLASSERT( insertThis ); TIXMLASSERT( insertThis->_document == _document ); if (insertThis->_parent) { insertThis->_parent->Unlink( insertThis ); } else { insertThis->_document->MarkInUse(insertThis); insertThis->_memPool->SetTracked(); } } const XMLElement* XMLNode::ToElementWithName( const char* name ) const { const XMLElement* element = this->ToElement(); if ( element == 0 ) { return 0; } if ( name == 0 ) { return element; } if ( XMLUtil::StringEqual( element->Name(), name ) ) { return element; } return 0; } // --------- XMLText ---------- // char* XMLText::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) { if ( this->CData() ) { p = _value.ParseText( p, "]]>", StrPair::NEEDS_NEWLINE_NORMALIZATION, curLineNumPtr ); if ( !p ) { _document->SetError( XML_ERROR_PARSING_CDATA, _parseLineNum, 0 ); } return p; } else { int flags = _document->ProcessEntities() ? StrPair::TEXT_ELEMENT : StrPair::TEXT_ELEMENT_LEAVE_ENTITIES; if ( _document->WhitespaceMode() == COLLAPSE_WHITESPACE ) { flags |= StrPair::NEEDS_WHITESPACE_COLLAPSING; } p = _value.ParseText( p, "<", flags, curLineNumPtr ); if ( p && *p ) { return p-1; } if ( !p ) { _document->SetError( XML_ERROR_PARSING_TEXT, _parseLineNum, 0 ); } } return 0; } XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const { if ( !doc ) { doc = _document; } XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? text->SetCData( this->CData() ); return text; } bool XMLText::ShallowEqual( const XMLNode* compare ) const { TIXMLASSERT( compare ); const XMLText* text = compare->ToText(); return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); } bool XMLText::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); return visitor->Visit( *this ); } // --------- XMLComment ---------- // XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) { } XMLComment::~XMLComment() { } char* XMLComment::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) { // Comment parses as text. p = _value.ParseText( p, "-->", StrPair::COMMENT, curLineNumPtr ); if ( p == 0 ) { _document->SetError( XML_ERROR_PARSING_COMMENT, _parseLineNum, 0 ); } return p; } XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const { if ( !doc ) { doc = _document; } XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Intern? return comment; } bool XMLComment::ShallowEqual( const XMLNode* compare ) const { TIXMLASSERT( compare ); const XMLComment* comment = compare->ToComment(); return ( comment && XMLUtil::StringEqual( comment->Value(), Value() )); } bool XMLComment::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); return visitor->Visit( *this ); } // --------- XMLDeclaration ---------- // XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc ) { } XMLDeclaration::~XMLDeclaration() { //printf( "~XMLDeclaration\n" ); } char* XMLDeclaration::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) { // Declaration parses as text. p = _value.ParseText( p, "?>", StrPair::NEEDS_NEWLINE_NORMALIZATION, curLineNumPtr ); if ( p == 0 ) { _document->SetError( XML_ERROR_PARSING_DECLARATION, _parseLineNum, 0 ); } return p; } XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const { if ( !doc ) { doc = _document; } XMLDeclaration* dec = doc->NewDeclaration( Value() ); // fixme: this will always allocate memory. Intern? return dec; } bool XMLDeclaration::ShallowEqual( const XMLNode* compare ) const { TIXMLASSERT( compare ); const XMLDeclaration* declaration = compare->ToDeclaration(); return ( declaration && XMLUtil::StringEqual( declaration->Value(), Value() )); } bool XMLDeclaration::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); return visitor->Visit( *this ); } // --------- XMLUnknown ---------- // XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc ) { } XMLUnknown::~XMLUnknown() { } char* XMLUnknown::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) { // Unknown parses as text. p = _value.ParseText( p, ">", StrPair::NEEDS_NEWLINE_NORMALIZATION, curLineNumPtr ); if ( !p ) { _document->SetError( XML_ERROR_PARSING_UNKNOWN, _parseLineNum, 0 ); } return p; } XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const { if ( !doc ) { doc = _document; } XMLUnknown* text = doc->NewUnknown( Value() ); // fixme: this will always allocate memory. Intern? return text; } bool XMLUnknown::ShallowEqual( const XMLNode* compare ) const { TIXMLASSERT( compare ); const XMLUnknown* unknown = compare->ToUnknown(); return ( unknown && XMLUtil::StringEqual( unknown->Value(), Value() )); } bool XMLUnknown::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); return visitor->Visit( *this ); } // --------- XMLAttribute ---------- // const char* XMLAttribute::Name() const { return _name.GetStr(); } const char* XMLAttribute::Value() const { return _value.GetStr(); } char* XMLAttribute::ParseDeep( char* p, bool processEntities, int* curLineNumPtr ) { // Parse using the name rules: bug fix, was using ParseText before p = _name.ParseName( p ); if ( !p || !*p ) { return 0; } // Skip white space before = p = XMLUtil::SkipWhiteSpace( p, curLineNumPtr ); if ( *p != '=' ) { return 0; } ++p; // move up to opening quote p = XMLUtil::SkipWhiteSpace( p, curLineNumPtr ); if ( *p != '\"' && *p != '\'' ) { return 0; } char endTag[2] = { *p, 0 }; ++p; // move past opening quote p = _value.ParseText( p, endTag, processEntities ? StrPair::ATTRIBUTE_VALUE : StrPair::ATTRIBUTE_VALUE_LEAVE_ENTITIES, curLineNumPtr ); return p; } void XMLAttribute::SetName( const char* n ) { _name.SetStr( n ); } XMLError XMLAttribute::QueryIntValue( int* value ) const { if ( XMLUtil::ToInt( Value(), value )) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const { if ( XMLUtil::ToUnsigned( Value(), value )) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } XMLError XMLAttribute::QueryInt64Value(int64_t* value) const { if (XMLUtil::ToInt64(Value(), value)) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } XMLError XMLAttribute::QueryBoolValue( bool* value ) const { if ( XMLUtil::ToBool( Value(), value )) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } XMLError XMLAttribute::QueryFloatValue( float* value ) const { if ( XMLUtil::ToFloat( Value(), value )) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } XMLError XMLAttribute::QueryDoubleValue( double* value ) const { if ( XMLUtil::ToDouble( Value(), value )) { return XML_SUCCESS; } return XML_WRONG_ATTRIBUTE_TYPE; } void XMLAttribute::SetAttribute( const char* v ) { _value.SetStr( v ); } void XMLAttribute::SetAttribute( int v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); _value.SetStr( buf ); } void XMLAttribute::SetAttribute( unsigned v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); _value.SetStr( buf ); } void XMLAttribute::SetAttribute(int64_t v) { char buf[BUF_SIZE]; XMLUtil::ToStr(v, buf, BUF_SIZE); _value.SetStr(buf); } void XMLAttribute::SetAttribute( bool v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); _value.SetStr( buf ); } void XMLAttribute::SetAttribute( double v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); _value.SetStr( buf ); } void XMLAttribute::SetAttribute( float v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); _value.SetStr( buf ); } // --------- XMLElement ---------- // XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), _closingType( OPEN ), _rootAttribute( 0 ) { } XMLElement::~XMLElement() { while( _rootAttribute ) { XMLAttribute* next = _rootAttribute->_next; DeleteAttribute( _rootAttribute ); _rootAttribute = next; } } const XMLAttribute* XMLElement::FindAttribute( const char* name ) const { for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { if ( XMLUtil::StringEqual( a->Name(), name ) ) { return a; } } return 0; } const char* XMLElement::Attribute( const char* name, const char* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return 0; } if ( !value || XMLUtil::StringEqual( a->Value(), value )) { return a->Value(); } return 0; } int XMLElement::IntAttribute(const char* name, int defaultValue) const { int i = defaultValue; QueryIntAttribute(name, &i); return i; } unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const { unsigned i = defaultValue; QueryUnsignedAttribute(name, &i); return i; } int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const { int64_t i = defaultValue; QueryInt64Attribute(name, &i); return i; } bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const { bool b = defaultValue; QueryBoolAttribute(name, &b); return b; } double XMLElement::DoubleAttribute(const char* name, double defaultValue) const { double d = defaultValue; QueryDoubleAttribute(name, &d); return d; } float XMLElement::FloatAttribute(const char* name, float defaultValue) const { float f = defaultValue; QueryFloatAttribute(name, &f); return f; } const char* XMLElement::GetText() const { if ( FirstChild() && FirstChild()->ToText() ) { return FirstChild()->Value(); } return 0; } void XMLElement::SetText( const char* inText ) { if ( FirstChild() && FirstChild()->ToText() ) FirstChild()->SetValue( inText ); else { XMLText* theText = GetDocument()->NewText( inText ); InsertFirstChild( theText ); } } void XMLElement::SetText( int v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); SetText( buf ); } void XMLElement::SetText( unsigned v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); SetText( buf ); } void XMLElement::SetText(int64_t v) { char buf[BUF_SIZE]; XMLUtil::ToStr(v, buf, BUF_SIZE); SetText(buf); } void XMLElement::SetText( bool v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); SetText( buf ); } void XMLElement::SetText( float v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); SetText( buf ); } void XMLElement::SetText( double v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); SetText( buf ); } XMLError XMLElement::QueryIntText( int* ival ) const { if ( FirstChild() && FirstChild()->ToText() ) { const char* t = FirstChild()->Value(); if ( XMLUtil::ToInt( t, ival ) ) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } XMLError XMLElement::QueryUnsignedText( unsigned* uval ) const { if ( FirstChild() && FirstChild()->ToText() ) { const char* t = FirstChild()->Value(); if ( XMLUtil::ToUnsigned( t, uval ) ) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } XMLError XMLElement::QueryInt64Text(int64_t* ival) const { if (FirstChild() && FirstChild()->ToText()) { const char* t = FirstChild()->Value(); if (XMLUtil::ToInt64(t, ival)) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } XMLError XMLElement::QueryBoolText( bool* bval ) const { if ( FirstChild() && FirstChild()->ToText() ) { const char* t = FirstChild()->Value(); if ( XMLUtil::ToBool( t, bval ) ) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } XMLError XMLElement::QueryDoubleText( double* dval ) const { if ( FirstChild() && FirstChild()->ToText() ) { const char* t = FirstChild()->Value(); if ( XMLUtil::ToDouble( t, dval ) ) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } XMLError XMLElement::QueryFloatText( float* fval ) const { if ( FirstChild() && FirstChild()->ToText() ) { const char* t = FirstChild()->Value(); if ( XMLUtil::ToFloat( t, fval ) ) { return XML_SUCCESS; } return XML_CAN_NOT_CONVERT_TEXT; } return XML_NO_TEXT_NODE; } int XMLElement::IntText(int defaultValue) const { int i = defaultValue; QueryIntText(&i); return i; } unsigned XMLElement::UnsignedText(unsigned defaultValue) const { unsigned i = defaultValue; QueryUnsignedText(&i); return i; } int64_t XMLElement::Int64Text(int64_t defaultValue) const { int64_t i = defaultValue; QueryInt64Text(&i); return i; } bool XMLElement::BoolText(bool defaultValue) const { bool b = defaultValue; QueryBoolText(&b); return b; } double XMLElement::DoubleText(double defaultValue) const { double d = defaultValue; QueryDoubleText(&d); return d; } float XMLElement::FloatText(float defaultValue) const { float f = defaultValue; QueryFloatText(&f); return f; } XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name ) { XMLAttribute* last = 0; XMLAttribute* attrib = 0; for( attrib = _rootAttribute; attrib; last = attrib, attrib = attrib->_next ) { if ( XMLUtil::StringEqual( attrib->Name(), name ) ) { break; } } if ( !attrib ) { attrib = CreateAttribute(); TIXMLASSERT( attrib ); if ( last ) { TIXMLASSERT( last->_next == 0 ); last->_next = attrib; } else { TIXMLASSERT( _rootAttribute == 0 ); _rootAttribute = attrib; } attrib->SetName( name ); } return attrib; } void XMLElement::DeleteAttribute( const char* name ) { XMLAttribute* prev = 0; for( XMLAttribute* a=_rootAttribute; a; a=a->_next ) { if ( XMLUtil::StringEqual( name, a->Name() ) ) { if ( prev ) { prev->_next = a->_next; } else { _rootAttribute = a->_next; } DeleteAttribute( a ); break; } prev = a; } } char* XMLElement::ParseAttributes( char* p, int* curLineNumPtr ) { XMLAttribute* prevAttribute = 0; // Read the attributes. while( p ) { p = XMLUtil::SkipWhiteSpace( p, curLineNumPtr ); if ( !(*p) ) { _document->SetError( XML_ERROR_PARSING_ELEMENT, _parseLineNum, "XMLElement name=%s", Name() ); return 0; } // attribute. if (XMLUtil::IsNameStartChar( *p ) ) { XMLAttribute* attrib = CreateAttribute(); TIXMLASSERT( attrib ); attrib->_parseLineNum = _document->_parseCurLineNum; int attrLineNum = attrib->_parseLineNum; p = attrib->ParseDeep( p, _document->ProcessEntities(), curLineNumPtr ); if ( !p || Attribute( attrib->Name() ) ) { DeleteAttribute( attrib ); _document->SetError( XML_ERROR_PARSING_ATTRIBUTE, attrLineNum, "XMLElement name=%s", Name() ); return 0; } // There is a minor bug here: if the attribute in the source xml // document is duplicated, it will not be detected and the // attribute will be doubly added. However, tracking the 'prevAttribute' // avoids re-scanning the attribute list. Preferring performance for // now, may reconsider in the future. if ( prevAttribute ) { TIXMLASSERT( prevAttribute->_next == 0 ); prevAttribute->_next = attrib; } else { TIXMLASSERT( _rootAttribute == 0 ); _rootAttribute = attrib; } prevAttribute = attrib; } // end of the tag else if ( *p == '>' ) { ++p; break; } // end of the tag else if ( *p == '/' && *(p+1) == '>' ) { _closingType = CLOSED; return p+2; // done; sealed element. } else { _document->SetError( XML_ERROR_PARSING_ELEMENT, _parseLineNum, 0 ); return 0; } } return p; } void XMLElement::DeleteAttribute( XMLAttribute* attribute ) { if ( attribute == 0 ) { return; } MemPool* pool = attribute->_memPool; attribute->~XMLAttribute(); pool->Free( attribute ); } XMLAttribute* XMLElement::CreateAttribute() { TIXMLASSERT( sizeof( XMLAttribute ) == _document->_attributePool.ItemSize() ); XMLAttribute* attrib = new (_document->_attributePool.Alloc() ) XMLAttribute(); TIXMLASSERT( attrib ); attrib->_memPool = &_document->_attributePool; attrib->_memPool->SetTracked(); return attrib; } // // // foobar // char* XMLElement::ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ) { // Read the element name. p = XMLUtil::SkipWhiteSpace( p, curLineNumPtr ); // The closing element is the form. It is // parsed just like a regular element then deleted from // the DOM. if ( *p == '/' ) { _closingType = CLOSING; ++p; } p = _value.ParseName( p ); if ( _value.Empty() ) { return 0; } p = ParseAttributes( p, curLineNumPtr ); if ( !p || !*p || _closingType != OPEN ) { return p; } p = XMLNode::ParseDeep( p, parentEndTag, curLineNumPtr ); return p; } XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const { if ( !doc ) { doc = _document; } XMLElement* element = doc->NewElement( Value() ); // fixme: this will always allocate memory. Intern? for( const XMLAttribute* a=FirstAttribute(); a; a=a->Next() ) { element->SetAttribute( a->Name(), a->Value() ); // fixme: this will always allocate memory. Intern? } return element; } bool XMLElement::ShallowEqual( const XMLNode* compare ) const { TIXMLASSERT( compare ); const XMLElement* other = compare->ToElement(); if ( other && XMLUtil::StringEqual( other->Name(), Name() )) { const XMLAttribute* a=FirstAttribute(); const XMLAttribute* b=other->FirstAttribute(); while ( a && b ) { if ( !XMLUtil::StringEqual( a->Value(), b->Value() ) ) { return false; } a = a->Next(); b = b->Next(); } if ( a || b ) { // different count return false; } return true; } return false; } bool XMLElement::Accept( XMLVisitor* visitor ) const { TIXMLASSERT( visitor ); if ( visitor->VisitEnter( *this, _rootAttribute ) ) { for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { if ( !node->Accept( visitor ) ) { break; } } } return visitor->VisitExit( *this ); } // --------- XMLDocument ----------- // // Warning: List must match 'enum XMLError' const char* XMLDocument::_errorNames[XML_ERROR_COUNT] = { "XML_SUCCESS", "XML_NO_ATTRIBUTE", "XML_WRONG_ATTRIBUTE_TYPE", "XML_ERROR_FILE_NOT_FOUND", "XML_ERROR_FILE_COULD_NOT_BE_OPENED", "XML_ERROR_FILE_READ_ERROR", "UNUSED_XML_ERROR_ELEMENT_MISMATCH", "XML_ERROR_PARSING_ELEMENT", "XML_ERROR_PARSING_ATTRIBUTE", "UNUSED_XML_ERROR_IDENTIFYING_TAG", "XML_ERROR_PARSING_TEXT", "XML_ERROR_PARSING_CDATA", "XML_ERROR_PARSING_COMMENT", "XML_ERROR_PARSING_DECLARATION", "XML_ERROR_PARSING_UNKNOWN", "XML_ERROR_EMPTY_DOCUMENT", "XML_ERROR_MISMATCHED_ELEMENT", "XML_ERROR_PARSING", "XML_CAN_NOT_CONVERT_TEXT", "XML_NO_TEXT_NODE", "XML_ELEMENT_DEPTH_EXCEEDED" }; XMLDocument::XMLDocument( bool processEntities, Whitespace whitespaceMode ) : XMLNode( 0 ), _writeBOM( false ), _processEntities( processEntities ), _errorID(XML_SUCCESS), _whitespaceMode( whitespaceMode ), _errorStr(), _errorLineNum( 0 ), _charBuffer( 0 ), _parseCurLineNum( 0 ), _parsingDepth(0), _unlinked(), _elementPool(), _attributePool(), _textPool(), _commentPool() { // avoid VC++ C4355 warning about 'this' in initializer list (C4355 is off by default in VS2012+) _document = this; } XMLDocument::~XMLDocument() { Clear(); } void XMLDocument::MarkInUse(XMLNode* node) { TIXMLASSERT(node); TIXMLASSERT(node->_parent == 0); for (int i = 0; i < _unlinked.Size(); ++i) { if (node == _unlinked[i]) { _unlinked.SwapRemove(i); break; } } } void XMLDocument::Clear() { DeleteChildren(); while( _unlinked.Size()) { DeleteNode(_unlinked[0]); // Will remove from _unlinked as part of delete. } #ifdef TINYXML2_DEBUG const bool hadError = Error(); #endif ClearError(); delete [] _charBuffer; _charBuffer = 0; _parsingDepth = 0; #if 0 _textPool.Trace( "text" ); _elementPool.Trace( "element" ); _commentPool.Trace( "comment" ); _attributePool.Trace( "attribute" ); #endif #ifdef TINYXML2_DEBUG if ( !hadError ) { TIXMLASSERT( _elementPool.CurrentAllocs() == _elementPool.Untracked() ); TIXMLASSERT( _attributePool.CurrentAllocs() == _attributePool.Untracked() ); TIXMLASSERT( _textPool.CurrentAllocs() == _textPool.Untracked() ); TIXMLASSERT( _commentPool.CurrentAllocs() == _commentPool.Untracked() ); } #endif } void XMLDocument::DeepCopy(XMLDocument* target) const { TIXMLASSERT(target); if (target == this) { return; // technically success - a no-op. } target->Clear(); for (const XMLNode* node = this->FirstChild(); node; node = node->NextSibling()) { target->InsertEndChild(node->DeepClone(target)); } } XMLElement* XMLDocument::NewElement( const char* name ) { XMLElement* ele = CreateUnlinkedNode( _elementPool ); ele->SetName( name ); return ele; } XMLComment* XMLDocument::NewComment( const char* str ) { XMLComment* comment = CreateUnlinkedNode( _commentPool ); comment->SetValue( str ); return comment; } XMLText* XMLDocument::NewText( const char* str ) { XMLText* text = CreateUnlinkedNode( _textPool ); text->SetValue( str ); return text; } XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) { XMLDeclaration* dec = CreateUnlinkedNode( _commentPool ); dec->SetValue( str ? str : "xml version=\"1.0\" encoding=\"UTF-8\"" ); return dec; } XMLUnknown* XMLDocument::NewUnknown( const char* str ) { XMLUnknown* unk = CreateUnlinkedNode( _commentPool ); unk->SetValue( str ); return unk; } static FILE* callfopen( const char* filepath, const char* mode ) { TIXMLASSERT( filepath ); TIXMLASSERT( mode ); #if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE) FILE* fp = 0; errno_t err = fopen_s( &fp, filepath, mode ); if ( err ) { return 0; } #else FILE* fp = fopen( filepath, mode ); #endif return fp; } void XMLDocument::DeleteNode( XMLNode* node ) { TIXMLASSERT( node ); TIXMLASSERT(node->_document == this ); if (node->_parent) { node->_parent->DeleteChild( node ); } else { // Isn't in the tree. // Use the parent delete. // Also, we need to mark it tracked: we 'know' // it was never used. node->_memPool->SetTracked(); // Call the static XMLNode version: XMLNode::DeleteNode(node); } } XMLError XMLDocument::LoadFile( const char* filename ) { if ( !filename ) { TIXMLASSERT( false ); SetError( XML_ERROR_FILE_COULD_NOT_BE_OPENED, 0, "filename=" ); return _errorID; } Clear(); FILE* fp = callfopen( filename, "rb" ); if ( !fp ) { SetError( XML_ERROR_FILE_NOT_FOUND, 0, "filename=%s", filename ); return _errorID; } LoadFile( fp ); fclose( fp ); return _errorID; } // This is likely overengineered template art to have a check that unsigned long value incremented // by one still fits into size_t. If size_t type is larger than unsigned long type // (x86_64-w64-mingw32 target) then the check is redundant and gcc and clang emit // -Wtype-limits warning. This piece makes the compiler select code with a check when a check // is useful and code with no check when a check is redundant depending on how size_t and unsigned long // types sizes relate to each other. template = sizeof(size_t))> struct LongFitsIntoSizeTMinusOne { static bool Fits( unsigned long value ) { return value < (size_t)-1; } }; template <> struct LongFitsIntoSizeTMinusOne { static bool Fits( unsigned long ) { return true; } }; XMLError XMLDocument::LoadFile( FILE* fp ) { Clear(); fseek( fp, 0, SEEK_SET ); if ( fgetc( fp ) == EOF && ferror( fp ) != 0 ) { SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 ); return _errorID; } fseek( fp, 0, SEEK_END ); const long filelength = ftell( fp ); fseek( fp, 0, SEEK_SET ); if ( filelength == -1L ) { SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 ); return _errorID; } TIXMLASSERT( filelength >= 0 ); if ( !LongFitsIntoSizeTMinusOne<>::Fits( filelength ) ) { // Cannot handle files which won't fit in buffer together with null terminator SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 ); return _errorID; } if ( filelength == 0 ) { SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 ); return _errorID; } const size_t size = filelength; TIXMLASSERT( _charBuffer == 0 ); _charBuffer = new char[size+1]; size_t read = fread( _charBuffer, 1, size, fp ); if ( read != size ) { SetError( XML_ERROR_FILE_READ_ERROR, 0, 0 ); return _errorID; } _charBuffer[size] = 0; Parse(); return _errorID; } XMLError XMLDocument::SaveFile( const char* filename, bool compact ) { if ( !filename ) { TIXMLASSERT( false ); SetError( XML_ERROR_FILE_COULD_NOT_BE_OPENED, 0, "filename=" ); return _errorID; } FILE* fp = callfopen( filename, "w" ); if ( !fp ) { SetError( XML_ERROR_FILE_COULD_NOT_BE_OPENED, 0, "filename=%s", filename ); return _errorID; } SaveFile(fp, compact); fclose( fp ); return _errorID; } XMLError XMLDocument::SaveFile( FILE* fp, bool compact ) { // Clear any error from the last save, otherwise it will get reported // for *this* call. ClearError(); XMLPrinter stream( fp, compact ); Print( &stream ); return _errorID; } XMLError XMLDocument::Parse( const char* p, size_t len ) { Clear(); if ( len == 0 || !p || !*p ) { SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 ); return _errorID; } if ( len == (size_t)(-1) ) { len = strlen( p ); } TIXMLASSERT( _charBuffer == 0 ); _charBuffer = new char[ len+1 ]; memcpy( _charBuffer, p, len ); _charBuffer[len] = 0; Parse(); if ( Error() ) { // clean up now essentially dangling memory. // and the parse fail can put objects in the // pools that are dead and inaccessible. DeleteChildren(); _elementPool.Clear(); _attributePool.Clear(); _textPool.Clear(); _commentPool.Clear(); } return _errorID; } void XMLDocument::Print( XMLPrinter* streamer ) const { if ( streamer ) { Accept( streamer ); } else { XMLPrinter stdoutStreamer( stdout ); Accept( &stdoutStreamer ); } } void XMLDocument::SetError( XMLError error, int lineNum, const char* format, ... ) { TIXMLASSERT( error >= 0 && error < XML_ERROR_COUNT ); _errorID = error; _errorLineNum = lineNum; _errorStr.Reset(); size_t BUFFER_SIZE = 1000; char* buffer = new char[BUFFER_SIZE]; TIXML_SNPRINTF(buffer, BUFFER_SIZE, "Error=%s ErrorID=%d (0x%x) Line number=%d", ErrorIDToName(error), int(error), int(error), lineNum); if (format) { size_t len = strlen(buffer); TIXML_SNPRINTF(buffer + len, BUFFER_SIZE - len, ": "); len = strlen(buffer); va_list va; va_start(va, format); TIXML_VSNPRINTF(buffer + len, BUFFER_SIZE - len, format, va); va_end(va); } _errorStr.SetStr(buffer); delete[] buffer; } /*static*/ const char* XMLDocument::ErrorIDToName(XMLError errorID) { TIXMLASSERT( errorID >= 0 && errorID < XML_ERROR_COUNT ); const char* errorName = _errorNames[errorID]; TIXMLASSERT( errorName && errorName[0] ); return errorName; } const char* XMLDocument::ErrorStr() const { return _errorStr.Empty() ? "" : _errorStr.GetStr(); } void XMLDocument::PrintError() const { printf("%s\n", ErrorStr()); } const char* XMLDocument::ErrorName() const { return ErrorIDToName(_errorID); } void XMLDocument::Parse() { TIXMLASSERT( NoChildren() ); // Clear() must have been called previously TIXMLASSERT( _charBuffer ); _parseCurLineNum = 1; _parseLineNum = 1; char* p = _charBuffer; p = XMLUtil::SkipWhiteSpace( p, &_parseCurLineNum ); p = const_cast( XMLUtil::ReadBOM( p, &_writeBOM ) ); if ( !*p ) { SetError( XML_ERROR_EMPTY_DOCUMENT, 0, 0 ); return; } ParseDeep(p, 0, &_parseCurLineNum ); } void XMLDocument::PushDepth() { _parsingDepth++; if (_parsingDepth == TINYXML2_MAX_ELEMENT_DEPTH) { SetError(XML_ELEMENT_DEPTH_EXCEEDED, _parseCurLineNum, "Element nesting is too deep." ); } } void XMLDocument::PopDepth() { TIXMLASSERT(_parsingDepth > 0); --_parsingDepth; } XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth ) : _elementJustOpened( false ), _stack(), _firstElement( true ), _fp( file ), _depth( depth ), _textDepth( -1 ), _processEntities( true ), _compactMode( compact ), _buffer() { for( int i=0; i'] = true; // not required, but consistency is nice _buffer.Push( 0 ); } void XMLPrinter::Print( const char* format, ... ) { va_list va; va_start( va, format ); if ( _fp ) { vfprintf( _fp, format, va ); } else { const int len = TIXML_VSCPRINTF( format, va ); // Close out and re-start the va-args va_end( va ); TIXMLASSERT( len >= 0 ); va_start( va, format ); TIXMLASSERT( _buffer.Size() > 0 && _buffer[_buffer.Size() - 1] == 0 ); char* p = _buffer.PushArr( len ) - 1; // back up over the null terminator. TIXML_VSNPRINTF( p, len+1, format, va ); } va_end( va ); } void XMLPrinter::Write( const char* data, size_t size ) { if ( _fp ) { fwrite ( data , sizeof(char), size, _fp); } else { char* p = _buffer.PushArr( static_cast(size) ) - 1; // back up over the null terminator. memcpy( p, data, size ); p[size] = 0; } } void XMLPrinter::Putc( char ch ) { if ( _fp ) { fputc ( ch, _fp); } else { char* p = _buffer.PushArr( sizeof(char) ) - 1; // back up over the null terminator. p[0] = ch; p[1] = 0; } } void XMLPrinter::PrintSpace( int depth ) { for( int i=0; i 0 && *q < ENTITY_RANGE ) { // Check for entities. If one is found, flush // the stream up until the entity, write the // entity, and keep looking. if ( flag[(unsigned char)(*q)] ) { while ( p < q ) { const size_t delta = q - p; const int toPrint = ( INT_MAX < delta ) ? INT_MAX : (int)delta; Write( p, toPrint ); p += toPrint; } bool entityPatternPrinted = false; for( int i=0; i( bom ) ); } if ( writeDec ) { PushDeclaration( "xml version=\"1.0\"" ); } } void XMLPrinter::OpenElement( const char* name, bool compactMode ) { SealElementIfJustOpened(); _stack.Push( name ); if ( _textDepth < 0 && !_firstElement && !compactMode ) { Putc( '\n' ); } if ( !compactMode ) { PrintSpace( _depth ); } Write ( "<" ); Write ( name ); _elementJustOpened = true; _firstElement = false; ++_depth; } void XMLPrinter::PushAttribute( const char* name, const char* value ) { TIXMLASSERT( _elementJustOpened ); Putc ( ' ' ); Write( name ); Write( "=\"" ); PrintString( value, false ); Putc ( '\"' ); } void XMLPrinter::PushAttribute( const char* name, int v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); PushAttribute( name, buf ); } void XMLPrinter::PushAttribute( const char* name, unsigned v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); PushAttribute( name, buf ); } void XMLPrinter::PushAttribute(const char* name, int64_t v) { char buf[BUF_SIZE]; XMLUtil::ToStr(v, buf, BUF_SIZE); PushAttribute(name, buf); } void XMLPrinter::PushAttribute( const char* name, bool v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); PushAttribute( name, buf ); } void XMLPrinter::PushAttribute( const char* name, double v ) { char buf[BUF_SIZE]; XMLUtil::ToStr( v, buf, BUF_SIZE ); PushAttribute( name, buf ); } void XMLPrinter::CloseElement( bool compactMode ) { --_depth; const char* name = _stack.Pop(); if ( _elementJustOpened ) { Write( "/>" ); } else { if ( _textDepth < 0 && !compactMode) { Putc( '\n' ); PrintSpace( _depth ); } Write ( "" ); } if ( _textDepth == _depth ) { _textDepth = -1; } if ( _depth == 0 && !compactMode) { Putc( '\n' ); } _elementJustOpened = false; } void XMLPrinter::SealElementIfJustOpened() { if ( !_elementJustOpened ) { return; } _elementJustOpened = false; Putc( '>' ); } void XMLPrinter::PushText( const char* text, bool cdata ) { _textDepth = _depth-1; SealElementIfJustOpened(); if ( cdata ) { Write( "" ); } else { PrintString( text, true ); } } void XMLPrinter::PushText( int64_t value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushText( int value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushText( unsigned value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushText( bool value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushText( float value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushText( double value ) { char buf[BUF_SIZE]; XMLUtil::ToStr( value, buf, BUF_SIZE ); PushText( buf, false ); } void XMLPrinter::PushComment( const char* comment ) { SealElementIfJustOpened(); if ( _textDepth < 0 && !_firstElement && !_compactMode) { Putc( '\n' ); PrintSpace( _depth ); } _firstElement = false; Write( "" ); } void XMLPrinter::PushDeclaration( const char* value ) { SealElementIfJustOpened(); if ( _textDepth < 0 && !_firstElement && !_compactMode) { Putc( '\n' ); PrintSpace( _depth ); } _firstElement = false; Write( "" ); } void XMLPrinter::PushUnknown( const char* value ) { SealElementIfJustOpened(); if ( _textDepth < 0 && !_firstElement && !_compactMode) { Putc( '\n' ); PrintSpace( _depth ); } _firstElement = false; Write( "' ); } bool XMLPrinter::VisitEnter( const XMLDocument& doc ) { _processEntities = doc.ProcessEntities(); if ( doc.HasBOM() ) { PushHeader( true, false ); } return true; } bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) { const XMLElement* parentElem = 0; if ( element.Parent() ) { parentElem = element.Parent()->ToElement(); } const bool compactMode = parentElem ? CompactMode( *parentElem ) : _compactMode; OpenElement( element.Name(), compactMode ); while ( attribute ) { PushAttribute( attribute->Name(), attribute->Value() ); attribute = attribute->Next(); } return true; } bool XMLPrinter::VisitExit( const XMLElement& element ) { CloseElement( CompactMode(element) ); return true; } bool XMLPrinter::Visit( const XMLText& text ) { PushText( text.Value(), text.CData() ); return true; } bool XMLPrinter::Visit( const XMLComment& comment ) { PushComment( comment.Value() ); return true; } bool XMLPrinter::Visit( const XMLDeclaration& declaration ) { PushDeclaration( declaration.Value() ); return true; } bool XMLPrinter::Visit( const XMLUnknown& unknown ) { PushUnknown( unknown.Value() ); return true; } } // namespace tinyxml2 } } ================================================ FILE: sdk/src/external/tinyxml2/tinyxml2.h ================================================ /* Original code by Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #ifndef TINYXML2_INCLUDED #define TINYXML2_INCLUDED #if defined(ANDROID_NDK) || defined(__BORLANDC__) || defined(__QNXNTO__) # include # include # include # include # include # if defined(__PS3__) # include # endif #else # include # include # include # include # include #endif #include /* TODO: intern strings instead of allocation. */ /* gcc: g++ -Wall -DTINYXML2_DEBUG tinyxml2.cpp xmltest.cpp -o gccxmltest.exe Formatting, Artistic Style: AStyle.exe --style=1tbs --indent-switches --break-closing-brackets --indent-preprocessor tinyxml2.cpp tinyxml2.h */ #if defined( _DEBUG ) || defined (__DEBUG__) # ifndef TINYXML2_DEBUG # define TINYXML2_DEBUG # endif #endif #ifdef _MSC_VER # pragma warning(push) # pragma warning(disable: 4251) #endif #ifdef _WIN32 # ifdef TINYXML2_EXPORT # define TINYXML2_LIB __declspec(dllexport) # elif defined(TINYXML2_IMPORT) # define TINYXML2_LIB __declspec(dllimport) # else # define TINYXML2_LIB # endif #elif __GNUC__ >= 4 # define TINYXML2_LIB __attribute__((visibility("hidden"))) #else # define TINYXML2_LIB #endif #if defined(TINYXML2_DEBUG) # if defined(_MSC_VER) # // "(void)0," is for suppressing C4127 warning in "assert(false)", "assert(true)" and the like # define TIXMLASSERT( x ) if ( !((void)0,(x))) { __debugbreak(); } # elif defined (ANDROID_NDK) # include # define TIXMLASSERT( x ) if ( !(x)) { __android_log_assert( "assert", "grinliz", "ASSERT in '%s' at %d.", __FILE__, __LINE__ ); } # else # include # define TIXMLASSERT assert # endif #else # define TIXMLASSERT( x ) {} #endif /* Versioning, past 1.0.14: http://semver.org/ */ static const int TIXML2_MAJOR_VERSION = 6; static const int TIXML2_MINOR_VERSION = 2; static const int TIXML2_PATCH_VERSION = 0; #define TINYXML2_MAJOR_VERSION 6 #define TINYXML2_MINOR_VERSION 2 #define TINYXML2_PATCH_VERSION 0 // A fixed element depth limit is problematic. There needs to be a // limit to avoid a stack overflow. However, that limit varies per // system, and the capacity of the stack. On the other hand, it's a trivial // attack that can result from ill, malicious, or even correctly formed XML, // so there needs to be a limit in place. static const int TINYXML2_MAX_ELEMENT_DEPTH = 100; namespace AlibabaCloud { namespace OSS { namespace tinyxml2 { class XMLDocument; class XMLElement; class XMLAttribute; class XMLComment; class XMLText; class XMLDeclaration; class XMLUnknown; class XMLPrinter; /* A class that wraps strings. Normally stores the start and end pointers into the XML file itself, and will apply normalization and entity translation if actually read. Can also store (and memory manage) a traditional char[] */ class StrPair { public: enum { NEEDS_ENTITY_PROCESSING = 0x01, NEEDS_NEWLINE_NORMALIZATION = 0x02, NEEDS_WHITESPACE_COLLAPSING = 0x04, TEXT_ELEMENT = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION, TEXT_ELEMENT_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION, ATTRIBUTE_NAME = 0, ATTRIBUTE_VALUE = NEEDS_ENTITY_PROCESSING | NEEDS_NEWLINE_NORMALIZATION, ATTRIBUTE_VALUE_LEAVE_ENTITIES = NEEDS_NEWLINE_NORMALIZATION, COMMENT = NEEDS_NEWLINE_NORMALIZATION }; StrPair() : _flags( 0 ), _start( 0 ), _end( 0 ) {} ~StrPair(); void Set( char* start, char* end, int flags ) { TIXMLASSERT( start ); TIXMLASSERT( end ); Reset(); _start = start; _end = end; _flags = flags | NEEDS_FLUSH; } const char* GetStr(); bool Empty() const { return _start == _end; } void SetInternedStr( const char* str ) { Reset(); _start = const_cast(str); } void SetStr( const char* str, int flags=0 ); char* ParseText( char* in, const char* endTag, int strFlags, int* curLineNumPtr ); char* ParseName( char* in ); void TransferTo( StrPair* other ); void Reset(); private: void CollapseWhitespace(); enum { NEEDS_FLUSH = 0x100, NEEDS_DELETE = 0x200 }; int _flags; char* _start; char* _end; StrPair( const StrPair& other ); // not supported void operator=( StrPair& other ); // not supported, use TransferTo() }; /* A dynamic array of Plain Old Data. Doesn't support constructors, etc. Has a small initial memory pool, so that low or no usage will not cause a call to new/delete */ template class DynArray { public: DynArray() : _mem( _pool ), _allocated( INITIAL_SIZE ), _size( 0 ) { } ~DynArray() { if ( _mem != _pool ) { delete [] _mem; } } void Clear() { _size = 0; } void Push( T t ) { TIXMLASSERT( _size < INT_MAX ); EnsureCapacity( _size+1 ); _mem[_size] = t; ++_size; } T* PushArr( int count ) { TIXMLASSERT( count >= 0 ); TIXMLASSERT( _size <= INT_MAX - count ); EnsureCapacity( _size+count ); T* ret = &_mem[_size]; _size += count; return ret; } T Pop() { TIXMLASSERT( _size > 0 ); --_size; return _mem[_size]; } void PopArr( int count ) { TIXMLASSERT( _size >= count ); _size -= count; } bool Empty() const { return _size == 0; } T& operator[](int i) { TIXMLASSERT( i>= 0 && i < _size ); return _mem[i]; } const T& operator[](int i) const { TIXMLASSERT( i>= 0 && i < _size ); return _mem[i]; } const T& PeekTop() const { TIXMLASSERT( _size > 0 ); return _mem[ _size - 1]; } int Size() const { TIXMLASSERT( _size >= 0 ); return _size; } int Capacity() const { TIXMLASSERT( _allocated >= INITIAL_SIZE ); return _allocated; } void SwapRemove(int i) { TIXMLASSERT(i >= 0 && i < _size); TIXMLASSERT(_size > 0); _mem[i] = _mem[_size - 1]; --_size; } const T* Mem() const { TIXMLASSERT( _mem ); return _mem; } T* Mem() { TIXMLASSERT( _mem ); return _mem; } private: DynArray( const DynArray& ); // not supported void operator=( const DynArray& ); // not supported void EnsureCapacity( int cap ) { TIXMLASSERT( cap > 0 ); if ( cap > _allocated ) { TIXMLASSERT( cap <= INT_MAX / 2 ); int newAllocated = cap * 2; T* newMem = new T[newAllocated]; TIXMLASSERT( newAllocated >= _size ); memcpy( newMem, _mem, sizeof(T)*_size ); // warning: not using constructors, only works for PODs if ( _mem != _pool ) { delete [] _mem; } _mem = newMem; _allocated = newAllocated; } } T* _mem; T _pool[INITIAL_SIZE]; int _allocated; // objects allocated int _size; // number objects in use }; /* Parent virtual class of a pool for fast allocation and deallocation of objects. */ class MemPool { public: MemPool() {} virtual ~MemPool() {} virtual int ItemSize() const = 0; virtual void* Alloc() = 0; virtual void Free( void* ) = 0; virtual void SetTracked() = 0; virtual void Clear() = 0; }; /* Template child class to create pools of the correct type. */ template< int ITEM_SIZE > class MemPoolT : public MemPool { public: MemPoolT() : _blockPtrs(), _root(0), _currentAllocs(0), _nAllocs(0), _maxAllocs(0), _nUntracked(0) {} ~MemPoolT() { Clear(); } void Clear() { // Delete the blocks. while( !_blockPtrs.Empty()) { Block* lastBlock = _blockPtrs.Pop(); delete lastBlock; } _root = 0; _currentAllocs = 0; _nAllocs = 0; _maxAllocs = 0; _nUntracked = 0; } virtual int ItemSize() const { return ITEM_SIZE; } int CurrentAllocs() const { return _currentAllocs; } virtual void* Alloc() { if ( !_root ) { // Need a new block. Block* block = new Block(); _blockPtrs.Push( block ); Item* blockItems = block->items; for( int i = 0; i < ITEMS_PER_BLOCK - 1; ++i ) { blockItems[i].next = &(blockItems[i + 1]); } blockItems[ITEMS_PER_BLOCK - 1].next = 0; _root = blockItems; } Item* const result = _root; TIXMLASSERT( result != 0 ); _root = _root->next; ++_currentAllocs; if ( _currentAllocs > _maxAllocs ) { _maxAllocs = _currentAllocs; } ++_nAllocs; ++_nUntracked; return result; } virtual void Free( void* mem ) { if ( !mem ) { return; } --_currentAllocs; Item* item = static_cast( mem ); #ifdef TINYXML2_DEBUG memset( item, 0xfe, sizeof( *item ) ); #endif item->next = _root; _root = item; } void Trace( const char* name ) { printf( "Mempool %s watermark=%d [%dk] current=%d size=%d nAlloc=%d blocks=%d\n", name, _maxAllocs, _maxAllocs * ITEM_SIZE / 1024, _currentAllocs, ITEM_SIZE, _nAllocs, _blockPtrs.Size() ); } void SetTracked() { --_nUntracked; } int Untracked() const { return _nUntracked; } // This number is perf sensitive. 4k seems like a good tradeoff on my machine. // The test file is large, 170k. // Release: VS2010 gcc(no opt) // 1k: 4000 // 2k: 4000 // 4k: 3900 21000 // 16k: 5200 // 32k: 4300 // 64k: 4000 21000 // Declared public because some compilers do not accept to use ITEMS_PER_BLOCK // in private part if ITEMS_PER_BLOCK is private enum { ITEMS_PER_BLOCK = (4 * 1024) / ITEM_SIZE }; private: MemPoolT( const MemPoolT& ); // not supported void operator=( const MemPoolT& ); // not supported union Item { Item* next; char itemData[ITEM_SIZE]; }; struct Block { Item items[ITEMS_PER_BLOCK]; }; DynArray< Block*, 10 > _blockPtrs; Item* _root; int _currentAllocs; int _nAllocs; int _maxAllocs; int _nUntracked; }; /** Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a XMLVisitor class to handle callbacks. For nodes that contain other nodes (Document, Element) you will get called with a VisitEnter/VisitExit pair. Nodes that are always leafs are simply called with Visit(). If you return 'true' from a Visit method, recursive parsing will continue. If you return false, no children of this node or its siblings will be visited. All flavors of Visit methods have a default implementation that returns 'true' (continue visiting). You need to only override methods that are interesting to you. Generally Accept() is called on the XMLDocument, although all nodes support visiting. You should never change the document from a callback. @sa XMLNode::Accept() */ class TINYXML2_LIB XMLVisitor { public: virtual ~XMLVisitor() {} /// Visit a document. virtual bool VisitEnter( const XMLDocument& /*doc*/ ) { return true; } /// Visit a document. virtual bool VisitExit( const XMLDocument& /*doc*/ ) { return true; } /// Visit an element. virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { return true; } /// Visit an element. virtual bool VisitExit( const XMLElement& /*element*/ ) { return true; } /// Visit a declaration. virtual bool Visit( const XMLDeclaration& /*declaration*/ ) { return true; } /// Visit a text node. virtual bool Visit( const XMLText& /*text*/ ) { return true; } /// Visit a comment node. virtual bool Visit( const XMLComment& /*comment*/ ) { return true; } /// Visit an unknown node. virtual bool Visit( const XMLUnknown& /*unknown*/ ) { return true; } }; // WARNING: must match XMLDocument::_errorNames[] enum XMLError { XML_SUCCESS = 0, XML_NO_ATTRIBUTE, XML_WRONG_ATTRIBUTE_TYPE, XML_ERROR_FILE_NOT_FOUND, XML_ERROR_FILE_COULD_NOT_BE_OPENED, XML_ERROR_FILE_READ_ERROR, UNUSED_XML_ERROR_ELEMENT_MISMATCH, // remove at next major version XML_ERROR_PARSING_ELEMENT, XML_ERROR_PARSING_ATTRIBUTE, UNUSED_XML_ERROR_IDENTIFYING_TAG, // remove at next major version XML_ERROR_PARSING_TEXT, XML_ERROR_PARSING_CDATA, XML_ERROR_PARSING_COMMENT, XML_ERROR_PARSING_DECLARATION, XML_ERROR_PARSING_UNKNOWN, XML_ERROR_EMPTY_DOCUMENT, XML_ERROR_MISMATCHED_ELEMENT, XML_ERROR_PARSING, XML_CAN_NOT_CONVERT_TEXT, XML_NO_TEXT_NODE, XML_ELEMENT_DEPTH_EXCEEDED, XML_ERROR_COUNT }; /* Utility functionality. */ class TINYXML2_LIB XMLUtil { public: static const char* SkipWhiteSpace( const char* p, int* curLineNumPtr ) { TIXMLASSERT( p ); while( IsWhiteSpace(*p) ) { if (curLineNumPtr && *p == '\n') { ++(*curLineNumPtr); } ++p; } TIXMLASSERT( p ); return p; } static char* SkipWhiteSpace( char* p, int* curLineNumPtr ) { return const_cast( SkipWhiteSpace( const_cast(p), curLineNumPtr ) ); } // Anything in the high order range of UTF-8 is assumed to not be whitespace. This isn't // correct, but simple, and usually works. static bool IsWhiteSpace( char p ) { return !IsUTF8Continuation(p) && isspace( static_cast(p) ); } inline static bool IsNameStartChar( unsigned char ch ) { if ( ch >= 128 ) { // This is a heuristic guess in attempt to not implement Unicode-aware isalpha() return true; } if ( isalpha( ch ) ) { return true; } return ch == ':' || ch == '_'; } inline static bool IsNameChar( unsigned char ch ) { return IsNameStartChar( ch ) || isdigit( ch ) || ch == '.' || ch == '-'; } inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) { if ( p == q ) { return true; } TIXMLASSERT( p ); TIXMLASSERT( q ); TIXMLASSERT( nChar >= 0 ); return strncmp( p, q, nChar ) == 0; } inline static bool IsUTF8Continuation( char p ) { return ( p & 0x80 ) != 0; } static const char* ReadBOM( const char* p, bool* hasBOM ); // p is the starting location, // the UTF-8 value of the entity will be placed in value, and length filled in. static const char* GetCharacterRef( const char* p, char* value, int* length ); static void ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ); // converts primitive types to strings static void ToStr( int v, char* buffer, int bufferSize ); static void ToStr( unsigned v, char* buffer, int bufferSize ); static void ToStr( bool v, char* buffer, int bufferSize ); static void ToStr( float v, char* buffer, int bufferSize ); static void ToStr( double v, char* buffer, int bufferSize ); static void ToStr(int64_t v, char* buffer, int bufferSize); // converts strings to primitive types static bool ToInt( const char* str, int* value ); static bool ToUnsigned( const char* str, unsigned* value ); static bool ToBool( const char* str, bool* value ); static bool ToFloat( const char* str, float* value ); static bool ToDouble( const char* str, double* value ); static bool ToInt64(const char* str, int64_t* value); // Changes what is serialized for a boolean value. // Default to "true" and "false". Shouldn't be changed // unless you have a special testing or compatibility need. // Be careful: static, global, & not thread safe. // Be sure to set static const memory as parameters. static void SetBoolSerialization(const char* writeTrue, const char* writeFalse); private: static const char* writeBoolTrue; static const char* writeBoolFalse; }; /** XMLNode is a base class for every object that is in the XML Document Object Model (DOM), except XMLAttributes. Nodes have siblings, a parent, and children which can be navigated. A node is always in a XMLDocument. The type of a XMLNode can be queried, and it can be cast to its more defined type. A XMLDocument allocates memory for all its Nodes. When the XMLDocument gets deleted, all its Nodes will also be deleted. @verbatim A Document can contain: Element (container or leaf) Comment (leaf) Unknown (leaf) Declaration( leaf ) An Element can contain: Element (container or leaf) Text (leaf) Attributes (not on tree) Comment (leaf) Unknown (leaf) @endverbatim */ class TINYXML2_LIB XMLNode { friend class XMLDocument; friend class XMLElement; public: /// Get the XMLDocument that owns this XMLNode. const XMLDocument* GetDocument() const { TIXMLASSERT( _document ); return _document; } /// Get the XMLDocument that owns this XMLNode. XMLDocument* GetDocument() { TIXMLASSERT( _document ); return _document; } /// Safely cast to an Element, or null. virtual XMLElement* ToElement() { return 0; } /// Safely cast to Text, or null. virtual XMLText* ToText() { return 0; } /// Safely cast to a Comment, or null. virtual XMLComment* ToComment() { return 0; } /// Safely cast to a Document, or null. virtual XMLDocument* ToDocument() { return 0; } /// Safely cast to a Declaration, or null. virtual XMLDeclaration* ToDeclaration() { return 0; } /// Safely cast to an Unknown, or null. virtual XMLUnknown* ToUnknown() { return 0; } virtual const XMLElement* ToElement() const { return 0; } virtual const XMLText* ToText() const { return 0; } virtual const XMLComment* ToComment() const { return 0; } virtual const XMLDocument* ToDocument() const { return 0; } virtual const XMLDeclaration* ToDeclaration() const { return 0; } virtual const XMLUnknown* ToUnknown() const { return 0; } /** The meaning of 'value' changes for the specific type. @verbatim Document: empty (NULL is returned, not an empty string) Element: name of the element Comment: the comment text Unknown: the tag contents Text: the text string @endverbatim */ const char* Value() const; /** Set the Value of an XML node. @sa Value() */ void SetValue( const char* val, bool staticMem=false ); /// Gets the line number the node is in, if the document was parsed from a file. int GetLineNum() const { return _parseLineNum; } /// Get the parent of this node on the DOM. const XMLNode* Parent() const { return _parent; } XMLNode* Parent() { return _parent; } /// Returns true if this node has no children. bool NoChildren() const { return !_firstChild; } /// Get the first child node, or null if none exists. const XMLNode* FirstChild() const { return _firstChild; } XMLNode* FirstChild() { return _firstChild; } /** Get the first child element, or optionally the first child element with the specified name. */ const XMLElement* FirstChildElement( const char* name = 0 ) const; XMLElement* FirstChildElement( const char* name = 0 ) { return const_cast(const_cast(this)->FirstChildElement( name )); } /// Get the last child node, or null if none exists. const XMLNode* LastChild() const { return _lastChild; } XMLNode* LastChild() { return _lastChild; } /** Get the last child element or optionally the last child element with the specified name. */ const XMLElement* LastChildElement( const char* name = 0 ) const; XMLElement* LastChildElement( const char* name = 0 ) { return const_cast(const_cast(this)->LastChildElement(name) ); } /// Get the previous (left) sibling node of this node. const XMLNode* PreviousSibling() const { return _prev; } XMLNode* PreviousSibling() { return _prev; } /// Get the previous (left) sibling element of this node, with an optionally supplied name. const XMLElement* PreviousSiblingElement( const char* name = 0 ) const ; XMLElement* PreviousSiblingElement( const char* name = 0 ) { return const_cast(const_cast(this)->PreviousSiblingElement( name ) ); } /// Get the next (right) sibling node of this node. const XMLNode* NextSibling() const { return _next; } XMLNode* NextSibling() { return _next; } /// Get the next (right) sibling element of this node, with an optionally supplied name. const XMLElement* NextSiblingElement( const char* name = 0 ) const; XMLElement* NextSiblingElement( const char* name = 0 ) { return const_cast(const_cast(this)->NextSiblingElement( name ) ); } /** Add a child node as the last (right) child. If the child node is already part of the document, it is moved from its old location to the new location. Returns the addThis argument or 0 if the node does not belong to the same document. */ XMLNode* InsertEndChild( XMLNode* addThis ); XMLNode* LinkEndChild( XMLNode* addThis ) { return InsertEndChild( addThis ); } /** Add a child node as the first (left) child. If the child node is already part of the document, it is moved from its old location to the new location. Returns the addThis argument or 0 if the node does not belong to the same document. */ XMLNode* InsertFirstChild( XMLNode* addThis ); /** Add a node after the specified child node. If the child node is already part of the document, it is moved from its old location to the new location. Returns the addThis argument or 0 if the afterThis node is not a child of this node, or if the node does not belong to the same document. */ XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ); /** Delete all the children of this node. */ void DeleteChildren(); /** Delete a child of this node. */ void DeleteChild( XMLNode* node ); /** Make a copy of this node, but not its children. You may pass in a Document pointer that will be the owner of the new Node. If the 'document' is null, then the node returned will be allocated from the current Document. (this->GetDocument()) Note: if called on a XMLDocument, this will return null. */ virtual XMLNode* ShallowClone( XMLDocument* document ) const = 0; /** Make a copy of this node and all its children. If the 'target' is null, then the nodes will be allocated in the current document. If 'target' is specified, the memory will be allocated is the specified XMLDocument. NOTE: This is probably not the correct tool to copy a document, since XMLDocuments can have multiple top level XMLNodes. You probably want to use XMLDocument::DeepCopy() */ XMLNode* DeepClone( XMLDocument* target ) const; /** Test if 2 nodes are the same, but don't test children. The 2 nodes do not need to be in the same Document. Note: if called on a XMLDocument, this will return false. */ virtual bool ShallowEqual( const XMLNode* compare ) const = 0; /** Accept a hierarchical visit of the nodes in the TinyXML-2 DOM. Every node in the XML tree will be conditionally visited and the host will be called back via the XMLVisitor interface. This is essentially a SAX interface for TinyXML-2. (Note however it doesn't re-parse the XML for the callbacks, so the performance of TinyXML-2 is unchanged by using this interface versus any other.) The interface has been based on ideas from: - http://www.saxproject.org/ - http://c2.com/cgi/wiki?HierarchicalVisitorPattern Which are both good references for "visiting". An example of using Accept(): @verbatim XMLPrinter printer; tinyxmlDoc.Accept( &printer ); const char* xmlcstr = printer.CStr(); @endverbatim */ virtual bool Accept( XMLVisitor* visitor ) const = 0; /** Set user data into the XMLNode. TinyXML-2 in no way processes or interprets user data. It is initially 0. */ void SetUserData(void* userData) { _userData = userData; } /** Get user data set into the XMLNode. TinyXML-2 in no way processes or interprets user data. It is initially 0. */ void* GetUserData() const { return _userData; } protected: XMLNode( XMLDocument* ); virtual ~XMLNode(); virtual char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr); XMLDocument* _document; XMLNode* _parent; mutable StrPair _value; int _parseLineNum; XMLNode* _firstChild; XMLNode* _lastChild; XMLNode* _prev; XMLNode* _next; void* _userData; private: MemPool* _memPool; void Unlink( XMLNode* child ); static void DeleteNode( XMLNode* node ); void InsertChildPreamble( XMLNode* insertThis ) const; const XMLElement* ToElementWithName( const char* name ) const; XMLNode( const XMLNode& ); // not supported XMLNode& operator=( const XMLNode& ); // not supported }; /** XML text. Note that a text node can have child element nodes, for example: @verbatim This is bold @endverbatim A text node can have 2 ways to output the next. "normal" output and CDATA. It will default to the mode it was parsed from the XML file and you generally want to leave it alone, but you can change the output mode with SetCData() and query it with CData(). */ class TINYXML2_LIB XMLText : public XMLNode { friend class XMLDocument; public: virtual bool Accept( XMLVisitor* visitor ) const; virtual XMLText* ToText() { return this; } virtual const XMLText* ToText() const { return this; } /// Declare whether this should be CDATA or standard text. void SetCData( bool isCData ) { _isCData = isCData; } /// Returns true if this is a CDATA text element. bool CData() const { return _isCData; } virtual XMLNode* ShallowClone( XMLDocument* document ) const; virtual bool ShallowEqual( const XMLNode* compare ) const; protected: XMLText( XMLDocument* doc ) : XMLNode( doc ), _isCData( false ) {} virtual ~XMLText() {} char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ); private: bool _isCData; XMLText( const XMLText& ); // not supported XMLText& operator=( const XMLText& ); // not supported }; /** An XML Comment. */ class TINYXML2_LIB XMLComment : public XMLNode { friend class XMLDocument; public: virtual XMLComment* ToComment() { return this; } virtual const XMLComment* ToComment() const { return this; } virtual bool Accept( XMLVisitor* visitor ) const; virtual XMLNode* ShallowClone( XMLDocument* document ) const; virtual bool ShallowEqual( const XMLNode* compare ) const; protected: XMLComment( XMLDocument* doc ); virtual ~XMLComment(); char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr); private: XMLComment( const XMLComment& ); // not supported XMLComment& operator=( const XMLComment& ); // not supported }; /** In correct XML the declaration is the first entry in the file. @verbatim @endverbatim TinyXML-2 will happily read or write files without a declaration, however. The text of the declaration isn't interpreted. It is parsed and written as a string. */ class TINYXML2_LIB XMLDeclaration : public XMLNode { friend class XMLDocument; public: virtual XMLDeclaration* ToDeclaration() { return this; } virtual const XMLDeclaration* ToDeclaration() const { return this; } virtual bool Accept( XMLVisitor* visitor ) const; virtual XMLNode* ShallowClone( XMLDocument* document ) const; virtual bool ShallowEqual( const XMLNode* compare ) const; protected: XMLDeclaration( XMLDocument* doc ); virtual ~XMLDeclaration(); char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ); private: XMLDeclaration( const XMLDeclaration& ); // not supported XMLDeclaration& operator=( const XMLDeclaration& ); // not supported }; /** Any tag that TinyXML-2 doesn't recognize is saved as an unknown. It is a tag of text, but should not be modified. It will be written back to the XML, unchanged, when the file is saved. DTD tags get thrown into XMLUnknowns. */ class TINYXML2_LIB XMLUnknown : public XMLNode { friend class XMLDocument; public: virtual XMLUnknown* ToUnknown() { return this; } virtual const XMLUnknown* ToUnknown() const { return this; } virtual bool Accept( XMLVisitor* visitor ) const; virtual XMLNode* ShallowClone( XMLDocument* document ) const; virtual bool ShallowEqual( const XMLNode* compare ) const; protected: XMLUnknown( XMLDocument* doc ); virtual ~XMLUnknown(); char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ); private: XMLUnknown( const XMLUnknown& ); // not supported XMLUnknown& operator=( const XMLUnknown& ); // not supported }; /** An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name. @note The attributes are not XMLNodes. You may only query the Next() attribute in a list. */ class TINYXML2_LIB XMLAttribute { friend class XMLElement; public: /// The name of the attribute. const char* Name() const; /// The value of the attribute. const char* Value() const; /// Gets the line number the attribute is in, if the document was parsed from a file. int GetLineNum() const { return _parseLineNum; } /// The next attribute in the list. const XMLAttribute* Next() const { return _next; } /** IntValue interprets the attribute as an integer, and returns the value. If the value isn't an integer, 0 will be returned. There is no error checking; use QueryIntValue() if you need error checking. */ int IntValue() const { int i = 0; QueryIntValue(&i); return i; } int64_t Int64Value() const { int64_t i = 0; QueryInt64Value(&i); return i; } /// Query as an unsigned integer. See IntValue() unsigned UnsignedValue() const { unsigned i=0; QueryUnsignedValue( &i ); return i; } /// Query as a boolean. See IntValue() bool BoolValue() const { bool b=false; QueryBoolValue( &b ); return b; } /// Query as a double. See IntValue() double DoubleValue() const { double d=0; QueryDoubleValue( &d ); return d; } /// Query as a float. See IntValue() float FloatValue() const { float f=0; QueryFloatValue( &f ); return f; } /** QueryIntValue interprets the attribute as an integer, and returns the value in the provided parameter. The function will return XML_SUCCESS on success, and XML_WRONG_ATTRIBUTE_TYPE if the conversion is not successful. */ XMLError QueryIntValue( int* value ) const; /// See QueryIntValue XMLError QueryUnsignedValue( unsigned int* value ) const; /// See QueryIntValue XMLError QueryInt64Value(int64_t* value) const; /// See QueryIntValue XMLError QueryBoolValue( bool* value ) const; /// See QueryIntValue XMLError QueryDoubleValue( double* value ) const; /// See QueryIntValue XMLError QueryFloatValue( float* value ) const; /// Set the attribute to a string value. void SetAttribute( const char* value ); /// Set the attribute to value. void SetAttribute( int value ); /// Set the attribute to value. void SetAttribute( unsigned value ); /// Set the attribute to value. void SetAttribute(int64_t value); /// Set the attribute to value. void SetAttribute( bool value ); /// Set the attribute to value. void SetAttribute( double value ); /// Set the attribute to value. void SetAttribute( float value ); private: enum { BUF_SIZE = 200 }; XMLAttribute() : _name(), _value(),_parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {} virtual ~XMLAttribute() {} XMLAttribute( const XMLAttribute& ); // not supported void operator=( const XMLAttribute& ); // not supported void SetName( const char* name ); char* ParseDeep( char* p, bool processEntities, int* curLineNumPtr ); mutable StrPair _name; mutable StrPair _value; int _parseLineNum; XMLAttribute* _next; MemPool* _memPool; }; /** The element is a container class. It has a value, the element name, and can contain other elements, text, comments, and unknowns. Elements also contain an arbitrary number of attributes. */ class TINYXML2_LIB XMLElement : public XMLNode { friend class XMLDocument; public: /// Get the name of an element (which is the Value() of the node.) const char* Name() const { return Value(); } /// Set the name of the element. void SetName( const char* str, bool staticMem=false ) { SetValue( str, staticMem ); } virtual XMLElement* ToElement() { return this; } virtual const XMLElement* ToElement() const { return this; } virtual bool Accept( XMLVisitor* visitor ) const; /** Given an attribute name, Attribute() returns the value for the attribute of that name, or null if none exists. For example: @verbatim const char* value = ele->Attribute( "foo" ); @endverbatim The 'value' parameter is normally null. However, if specified, the attribute will only be returned if the 'name' and 'value' match. This allow you to write code: @verbatim if ( ele->Attribute( "foo", "bar" ) ) callFooIsBar(); @endverbatim rather than: @verbatim if ( ele->Attribute( "foo" ) ) { if ( strcmp( ele->Attribute( "foo" ), "bar" ) == 0 ) callFooIsBar(); } @endverbatim */ const char* Attribute( const char* name, const char* value=0 ) const; /** Given an attribute name, IntAttribute() returns the value of the attribute interpreted as an integer. The default value will be returned if the attribute isn't present, or if there is an error. (For a method with error checking, see QueryIntAttribute()). */ int IntAttribute(const char* name, int defaultValue = 0) const; /// See IntAttribute() unsigned UnsignedAttribute(const char* name, unsigned defaultValue = 0) const; /// See IntAttribute() int64_t Int64Attribute(const char* name, int64_t defaultValue = 0) const; /// See IntAttribute() bool BoolAttribute(const char* name, bool defaultValue = false) const; /// See IntAttribute() double DoubleAttribute(const char* name, double defaultValue = 0) const; /// See IntAttribute() float FloatAttribute(const char* name, float defaultValue = 0) const; /** Given an attribute name, QueryIntAttribute() returns XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion can't be performed, or XML_NO_ATTRIBUTE if the attribute doesn't exist. If successful, the result of the conversion will be written to 'value'. If not successful, nothing will be written to 'value'. This allows you to provide default value: @verbatim int value = 10; QueryIntAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10 @endverbatim */ XMLError QueryIntAttribute( const char* name, int* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return XML_NO_ATTRIBUTE; } return a->QueryIntValue( value ); } /// See QueryIntAttribute() XMLError QueryUnsignedAttribute( const char* name, unsigned int* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return XML_NO_ATTRIBUTE; } return a->QueryUnsignedValue( value ); } /// See QueryIntAttribute() XMLError QueryInt64Attribute(const char* name, int64_t* value) const { const XMLAttribute* a = FindAttribute(name); if (!a) { return XML_NO_ATTRIBUTE; } return a->QueryInt64Value(value); } /// See QueryIntAttribute() XMLError QueryBoolAttribute( const char* name, bool* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return XML_NO_ATTRIBUTE; } return a->QueryBoolValue( value ); } /// See QueryIntAttribute() XMLError QueryDoubleAttribute( const char* name, double* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return XML_NO_ATTRIBUTE; } return a->QueryDoubleValue( value ); } /// See QueryIntAttribute() XMLError QueryFloatAttribute( const char* name, float* value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) { return XML_NO_ATTRIBUTE; } return a->QueryFloatValue( value ); } /// See QueryIntAttribute() XMLError QueryStringAttribute(const char* name, const char** value) const { const XMLAttribute* a = FindAttribute(name); if (!a) { return XML_NO_ATTRIBUTE; } *value = a->Value(); return XML_SUCCESS; } /** Given an attribute name, QueryAttribute() returns XML_SUCCESS, XML_WRONG_ATTRIBUTE_TYPE if the conversion can't be performed, or XML_NO_ATTRIBUTE if the attribute doesn't exist. It is overloaded for the primitive types, and is a generally more convenient replacement of QueryIntAttribute() and related functions. If successful, the result of the conversion will be written to 'value'. If not successful, nothing will be written to 'value'. This allows you to provide default value: @verbatim int value = 10; QueryAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10 @endverbatim */ int QueryAttribute( const char* name, int* value ) const { return QueryIntAttribute( name, value ); } int QueryAttribute( const char* name, unsigned int* value ) const { return QueryUnsignedAttribute( name, value ); } int QueryAttribute(const char* name, int64_t* value) const { return QueryInt64Attribute(name, value); } int QueryAttribute( const char* name, bool* value ) const { return QueryBoolAttribute( name, value ); } int QueryAttribute( const char* name, double* value ) const { return QueryDoubleAttribute( name, value ); } int QueryAttribute( const char* name, float* value ) const { return QueryFloatAttribute( name, value ); } /// Sets the named attribute to value. void SetAttribute( const char* name, const char* value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /// Sets the named attribute to value. void SetAttribute( const char* name, int value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /// Sets the named attribute to value. void SetAttribute( const char* name, unsigned value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /// Sets the named attribute to value. void SetAttribute(const char* name, int64_t value) { XMLAttribute* a = FindOrCreateAttribute(name); a->SetAttribute(value); } /// Sets the named attribute to value. void SetAttribute( const char* name, bool value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /// Sets the named attribute to value. void SetAttribute( const char* name, double value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /// Sets the named attribute to value. void SetAttribute( const char* name, float value ) { XMLAttribute* a = FindOrCreateAttribute( name ); a->SetAttribute( value ); } /** Delete an attribute. */ void DeleteAttribute( const char* name ); /// Return the first attribute in the list. const XMLAttribute* FirstAttribute() const { return _rootAttribute; } /// Query a specific attribute in the list. const XMLAttribute* FindAttribute( const char* name ) const; /** Convenience function for easy access to the text inside an element. Although easy and concise, GetText() is limited compared to getting the XMLText child and accessing it directly. If the first child of 'this' is a XMLText, the GetText() returns the character string of the Text node, else null is returned. This is a convenient method for getting the text of simple contained text: @verbatim This is text const char* str = fooElement->GetText(); @endverbatim 'str' will be a pointer to "This is text". Note that this function can be misleading. If the element foo was created from this XML: @verbatim This is text @endverbatim then the value of str would be null. The first child node isn't a text node, it is another element. From this XML: @verbatim This is text @endverbatim GetText() will return "This is ". */ const char* GetText() const; /** Convenience function for easy access to the text inside an element. Although easy and concise, SetText() is limited compared to creating an XMLText child and mutating it directly. If the first child of 'this' is a XMLText, SetText() sets its value to the given string, otherwise it will create a first child that is an XMLText. This is a convenient method for setting the text of simple contained text: @verbatim This is text fooElement->SetText( "Hullaballoo!" ); Hullaballoo! @endverbatim Note that this function can be misleading. If the element foo was created from this XML: @verbatim This is text @endverbatim then it will not change "This is text", but rather prefix it with a text element: @verbatim Hullaballoo!This is text @endverbatim For this XML: @verbatim @endverbatim SetText() will generate @verbatim Hullaballoo! @endverbatim */ void SetText( const char* inText ); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText( int value ); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText( unsigned value ); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText(int64_t value); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText( bool value ); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText( double value ); /// Convenience method for setting text inside an element. See SetText() for important limitations. void SetText( float value ); /** Convenience method to query the value of a child text node. This is probably best shown by example. Given you have a document is this form: @verbatim 1 1.4 @endverbatim The QueryIntText() and similar functions provide a safe and easier way to get to the "value" of x and y. @verbatim int x = 0; float y = 0; // types of x and y are contrived for example const XMLElement* xElement = pointElement->FirstChildElement( "x" ); const XMLElement* yElement = pointElement->FirstChildElement( "y" ); xElement->QueryIntText( &x ); yElement->QueryFloatText( &y ); @endverbatim @returns XML_SUCCESS (0) on success, XML_CAN_NOT_CONVERT_TEXT if the text cannot be converted to the requested type, and XML_NO_TEXT_NODE if there is no child text to query. */ XMLError QueryIntText( int* ival ) const; /// See QueryIntText() XMLError QueryUnsignedText( unsigned* uval ) const; /// See QueryIntText() XMLError QueryInt64Text(int64_t* uval) const; /// See QueryIntText() XMLError QueryBoolText( bool* bval ) const; /// See QueryIntText() XMLError QueryDoubleText( double* dval ) const; /// See QueryIntText() XMLError QueryFloatText( float* fval ) const; int IntText(int defaultValue = 0) const; /// See QueryIntText() unsigned UnsignedText(unsigned defaultValue = 0) const; /// See QueryIntText() int64_t Int64Text(int64_t defaultValue = 0) const; /// See QueryIntText() bool BoolText(bool defaultValue = false) const; /// See QueryIntText() double DoubleText(double defaultValue = 0) const; /// See QueryIntText() float FloatText(float defaultValue = 0) const; // internal: enum ElementClosingType { OPEN, // CLOSED, // CLOSING // }; ElementClosingType ClosingType() const { return _closingType; } virtual XMLNode* ShallowClone( XMLDocument* document ) const; virtual bool ShallowEqual( const XMLNode* compare ) const; protected: char* ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ); private: XMLElement( XMLDocument* doc ); virtual ~XMLElement(); XMLElement( const XMLElement& ); // not supported void operator=( const XMLElement& ); // not supported XMLAttribute* FindAttribute( const char* name ) { return const_cast(const_cast(this)->FindAttribute( name )); } XMLAttribute* FindOrCreateAttribute( const char* name ); //void LinkAttribute( XMLAttribute* attrib ); char* ParseAttributes( char* p, int* curLineNumPtr ); static void DeleteAttribute( XMLAttribute* attribute ); XMLAttribute* CreateAttribute(); enum { BUF_SIZE = 200 }; ElementClosingType _closingType; // The attribute list is ordered; there is no 'lastAttribute' // because the list needs to be scanned for dupes before adding // a new attribute. XMLAttribute* _rootAttribute; }; enum Whitespace { PRESERVE_WHITESPACE, COLLAPSE_WHITESPACE }; /** A Document binds together all the functionality. It can be saved, loaded, and printed to the screen. All Nodes are connected and allocated to a Document. If the Document is deleted, all its Nodes are also deleted. */ class TINYXML2_LIB XMLDocument : public XMLNode { friend class XMLElement; // Gives access to SetError and Push/PopDepth, but over-access for everything else. // Wishing C++ had "internal" scope. friend class XMLNode; friend class XMLText; friend class XMLComment; friend class XMLDeclaration; friend class XMLUnknown; public: /// constructor XMLDocument( bool processEntities = true, Whitespace whitespaceMode = PRESERVE_WHITESPACE ); ~XMLDocument(); virtual XMLDocument* ToDocument() { TIXMLASSERT( this == _document ); return this; } virtual const XMLDocument* ToDocument() const { TIXMLASSERT( this == _document ); return this; } /** Parse an XML file from a character string. Returns XML_SUCCESS (0) on success, or an errorID. You may optionally pass in the 'nBytes', which is the number of bytes which will be parsed. If not specified, TinyXML-2 will assume 'xml' points to a null terminated string. */ XMLError Parse( const char* xml, size_t nBytes=(size_t)(-1) ); /** Load an XML file from disk. Returns XML_SUCCESS (0) on success, or an errorID. */ XMLError LoadFile( const char* filename ); /** Load an XML file from disk. You are responsible for providing and closing the FILE*. NOTE: The file should be opened as binary ("rb") not text in order for TinyXML-2 to correctly do newline normalization. Returns XML_SUCCESS (0) on success, or an errorID. */ XMLError LoadFile( FILE* ); /** Save the XML file to disk. Returns XML_SUCCESS (0) on success, or an errorID. */ XMLError SaveFile( const char* filename, bool compact = false ); /** Save the XML file to disk. You are responsible for providing and closing the FILE*. Returns XML_SUCCESS (0) on success, or an errorID. */ XMLError SaveFile( FILE* fp, bool compact = false ); bool ProcessEntities() const { return _processEntities; } Whitespace WhitespaceMode() const { return _whitespaceMode; } /** Returns true if this document has a leading Byte Order Mark of UTF8. */ bool HasBOM() const { return _writeBOM; } /** Sets whether to write the BOM when writing the file. */ void SetBOM( bool useBOM ) { _writeBOM = useBOM; } /** Return the root element of DOM. Equivalent to FirstChildElement(). To get the first node, use FirstChild(). */ XMLElement* RootElement() { return FirstChildElement(); } const XMLElement* RootElement() const { return FirstChildElement(); } /** Print the Document. If the Printer is not provided, it will print to stdout. If you provide Printer, this can print to a file: @verbatim XMLPrinter printer( fp ); doc.Print( &printer ); @endverbatim Or you can use a printer to print to memory: @verbatim XMLPrinter printer; doc.Print( &printer ); // printer.CStr() has a const char* to the XML @endverbatim */ void Print( XMLPrinter* streamer=0 ) const; virtual bool Accept( XMLVisitor* visitor ) const; /** Create a new Element associated with this Document. The memory for the Element is managed by the Document. */ XMLElement* NewElement( const char* name ); /** Create a new Comment associated with this Document. The memory for the Comment is managed by the Document. */ XMLComment* NewComment( const char* comment ); /** Create a new Text associated with this Document. The memory for the Text is managed by the Document. */ XMLText* NewText( const char* text ); /** Create a new Declaration associated with this Document. The memory for the object is managed by the Document. If the 'text' param is null, the standard declaration is used.: @verbatim @endverbatim */ XMLDeclaration* NewDeclaration( const char* text=0 ); /** Create a new Unknown associated with this Document. The memory for the object is managed by the Document. */ XMLUnknown* NewUnknown( const char* text ); /** Delete a node associated with this document. It will be unlinked from the DOM. */ void DeleteNode( XMLNode* node ); void ClearError() { SetError(XML_SUCCESS, 0, 0); } /// Return true if there was an error parsing the document. bool Error() const { return _errorID != XML_SUCCESS; } /// Return the errorID. XMLError ErrorID() const { return _errorID; } const char* ErrorName() const; static const char* ErrorIDToName(XMLError errorID); /** Returns a "long form" error description. A hopefully helpful diagnostic with location, line number, and/or additional info. */ const char* ErrorStr() const; /// A (trivial) utility function that prints the ErrorStr() to stdout. void PrintError() const; /// Return the line where the error occured, or zero if unknown. int ErrorLineNum() const { return _errorLineNum; } /// Clear the document, resetting it to the initial state. void Clear(); /** Copies this document to a target document. The target will be completely cleared before the copy. If you want to copy a sub-tree, see XMLNode::DeepClone(). NOTE: that the 'target' must be non-null. */ void DeepCopy(XMLDocument* target) const; // internal char* Identify( char* p, XMLNode** node ); // internal void MarkInUse(XMLNode*); virtual XMLNode* ShallowClone( XMLDocument* /*document*/ ) const { return 0; } virtual bool ShallowEqual( const XMLNode* /*compare*/ ) const { return false; } private: XMLDocument( const XMLDocument& ); // not supported void operator=( const XMLDocument& ); // not supported bool _writeBOM; bool _processEntities; XMLError _errorID; Whitespace _whitespaceMode; mutable StrPair _errorStr; int _errorLineNum; char* _charBuffer; int _parseCurLineNum; int _parsingDepth; // Memory tracking does add some overhead. // However, the code assumes that you don't // have a bunch of unlinked nodes around. // Therefore it takes less memory to track // in the document vs. a linked list in the XMLNode, // and the performance is the same. DynArray _unlinked; MemPoolT< sizeof(XMLElement) > _elementPool; MemPoolT< sizeof(XMLAttribute) > _attributePool; MemPoolT< sizeof(XMLText) > _textPool; MemPoolT< sizeof(XMLComment) > _commentPool; static const char* _errorNames[XML_ERROR_COUNT]; void Parse(); void SetError( XMLError error, int lineNum, const char* format, ... ); // Something of an obvious security hole, once it was discovered. // Either an ill-formed XML or an excessively deep one can overflow // the stack. Track stack depth, and error out if needed. class DepthTracker { public: DepthTracker(XMLDocument * document) { this->_document = document; document->PushDepth(); } ~DepthTracker() { _document->PopDepth(); } private: XMLDocument * _document; }; void PushDepth(); void PopDepth(); template NodeType* CreateUnlinkedNode( MemPoolT& pool ); }; template inline NodeType* XMLDocument::CreateUnlinkedNode( MemPoolT& pool ) { TIXMLASSERT( sizeof( NodeType ) == PoolElementSize ); TIXMLASSERT( sizeof( NodeType ) == pool.ItemSize() ); NodeType* returnNode = new (pool.Alloc()) NodeType( this ); TIXMLASSERT( returnNode ); returnNode->_memPool = &pool; _unlinked.Push(returnNode); return returnNode; } /** A XMLHandle is a class that wraps a node pointer with null checks; this is an incredibly useful thing. Note that XMLHandle is not part of the TinyXML-2 DOM structure. It is a separate utility class. Take an example: @verbatim @endverbatim Assuming you want the value of "attributeB" in the 2nd "Child" element, it's very easy to write a *lot* of code that looks like: @verbatim XMLElement* root = document.FirstChildElement( "Document" ); if ( root ) { XMLElement* element = root->FirstChildElement( "Element" ); if ( element ) { XMLElement* child = element->FirstChildElement( "Child" ); if ( child ) { XMLElement* child2 = child->NextSiblingElement( "Child" ); if ( child2 ) { // Finally do something useful. @endverbatim And that doesn't even cover "else" cases. XMLHandle addresses the verbosity of such code. A XMLHandle checks for null pointers so it is perfectly safe and correct to use: @verbatim XMLHandle docHandle( &document ); XMLElement* child2 = docHandle.FirstChildElement( "Document" ).FirstChildElement( "Element" ).FirstChildElement().NextSiblingElement(); if ( child2 ) { // do something useful @endverbatim Which is MUCH more concise and useful. It is also safe to copy handles - internally they are nothing more than node pointers. @verbatim XMLHandle handleCopy = handle; @endverbatim See also XMLConstHandle, which is the same as XMLHandle, but operates on const objects. */ class TINYXML2_LIB XMLHandle { public: /// Create a handle from any node (at any depth of the tree.) This can be a null pointer. XMLHandle( XMLNode* node ) : _node( node ) { } /// Create a handle from a node. XMLHandle( XMLNode& node ) : _node( &node ) { } /// Copy constructor XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { } /// Assignment XMLHandle& operator=( const XMLHandle& ref ) { _node = ref._node; return *this; } /// Get the first child of this handle. XMLHandle FirstChild() { return XMLHandle( _node ? _node->FirstChild() : 0 ); } /// Get the first child element of this handle. XMLHandle FirstChildElement( const char* name = 0 ) { return XMLHandle( _node ? _node->FirstChildElement( name ) : 0 ); } /// Get the last child of this handle. XMLHandle LastChild() { return XMLHandle( _node ? _node->LastChild() : 0 ); } /// Get the last child element of this handle. XMLHandle LastChildElement( const char* name = 0 ) { return XMLHandle( _node ? _node->LastChildElement( name ) : 0 ); } /// Get the previous sibling of this handle. XMLHandle PreviousSibling() { return XMLHandle( _node ? _node->PreviousSibling() : 0 ); } /// Get the previous sibling element of this handle. XMLHandle PreviousSiblingElement( const char* name = 0 ) { return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 ); } /// Get the next sibling of this handle. XMLHandle NextSibling() { return XMLHandle( _node ? _node->NextSibling() : 0 ); } /// Get the next sibling element of this handle. XMLHandle NextSiblingElement( const char* name = 0 ) { return XMLHandle( _node ? _node->NextSiblingElement( name ) : 0 ); } /// Safe cast to XMLNode. This can return null. XMLNode* ToNode() { return _node; } /// Safe cast to XMLElement. This can return null. XMLElement* ToElement() { return ( _node ? _node->ToElement() : 0 ); } /// Safe cast to XMLText. This can return null. XMLText* ToText() { return ( _node ? _node->ToText() : 0 ); } /// Safe cast to XMLUnknown. This can return null. XMLUnknown* ToUnknown() { return ( _node ? _node->ToUnknown() : 0 ); } /// Safe cast to XMLDeclaration. This can return null. XMLDeclaration* ToDeclaration() { return ( _node ? _node->ToDeclaration() : 0 ); } private: XMLNode* _node; }; /** A variant of the XMLHandle class for working with const XMLNodes and Documents. It is the same in all regards, except for the 'const' qualifiers. See XMLHandle for API. */ class TINYXML2_LIB XMLConstHandle { public: XMLConstHandle( const XMLNode* node ) : _node( node ) { } XMLConstHandle( const XMLNode& node ) : _node( &node ) { } XMLConstHandle( const XMLConstHandle& ref ) : _node( ref._node ) { } XMLConstHandle& operator=( const XMLConstHandle& ref ) { _node = ref._node; return *this; } const XMLConstHandle FirstChild() const { return XMLConstHandle( _node ? _node->FirstChild() : 0 ); } const XMLConstHandle FirstChildElement( const char* name = 0 ) const { return XMLConstHandle( _node ? _node->FirstChildElement( name ) : 0 ); } const XMLConstHandle LastChild() const { return XMLConstHandle( _node ? _node->LastChild() : 0 ); } const XMLConstHandle LastChildElement( const char* name = 0 ) const { return XMLConstHandle( _node ? _node->LastChildElement( name ) : 0 ); } const XMLConstHandle PreviousSibling() const { return XMLConstHandle( _node ? _node->PreviousSibling() : 0 ); } const XMLConstHandle PreviousSiblingElement( const char* name = 0 ) const { return XMLConstHandle( _node ? _node->PreviousSiblingElement( name ) : 0 ); } const XMLConstHandle NextSibling() const { return XMLConstHandle( _node ? _node->NextSibling() : 0 ); } const XMLConstHandle NextSiblingElement( const char* name = 0 ) const { return XMLConstHandle( _node ? _node->NextSiblingElement( name ) : 0 ); } const XMLNode* ToNode() const { return _node; } const XMLElement* ToElement() const { return ( _node ? _node->ToElement() : 0 ); } const XMLText* ToText() const { return ( _node ? _node->ToText() : 0 ); } const XMLUnknown* ToUnknown() const { return ( _node ? _node->ToUnknown() : 0 ); } const XMLDeclaration* ToDeclaration() const { return ( _node ? _node->ToDeclaration() : 0 ); } private: const XMLNode* _node; }; /** Printing functionality. The XMLPrinter gives you more options than the XMLDocument::Print() method. It can: -# Print to memory. -# Print to a file you provide. -# Print XML without a XMLDocument. Print to Memory @verbatim XMLPrinter printer; doc.Print( &printer ); SomeFunction( printer.CStr() ); @endverbatim Print to a File You provide the file pointer. @verbatim XMLPrinter printer( fp ); doc.Print( &printer ); @endverbatim Print without a XMLDocument When loading, an XML parser is very useful. However, sometimes when saving, it just gets in the way. The code is often set up for streaming, and constructing the DOM is just overhead. The Printer supports the streaming case. The following code prints out a trivially simple XML file without ever creating an XML document. @verbatim XMLPrinter printer( fp ); printer.OpenElement( "foo" ); printer.PushAttribute( "foo", "bar" ); printer.CloseElement(); @endverbatim */ class TINYXML2_LIB XMLPrinter : public XMLVisitor { public: /** Construct the printer. If the FILE* is specified, this will print to the FILE. Else it will print to memory, and the result is available in CStr(). If 'compact' is set to true, then output is created with only required whitespace and newlines. */ XMLPrinter( FILE* file=0, bool compact = false, int depth = 0 ); virtual ~XMLPrinter() {} /** If streaming, write the BOM and declaration. */ void PushHeader( bool writeBOM, bool writeDeclaration ); /** If streaming, start writing an element. The element must be closed with CloseElement() */ void OpenElement( const char* name, bool compactMode=false ); /// If streaming, add an attribute to an open element. void PushAttribute( const char* name, const char* value ); void PushAttribute( const char* name, int value ); void PushAttribute( const char* name, unsigned value ); void PushAttribute(const char* name, int64_t value); void PushAttribute( const char* name, bool value ); void PushAttribute( const char* name, double value ); /// If streaming, close the Element. virtual void CloseElement( bool compactMode=false ); /// Add a text node. void PushText( const char* text, bool cdata=false ); /// Add a text node from an integer. void PushText( int value ); /// Add a text node from an unsigned. void PushText( unsigned value ); /// Add a text node from an unsigned. void PushText(int64_t value); /// Add a text node from a bool. void PushText( bool value ); /// Add a text node from a float. void PushText( float value ); /// Add a text node from a double. void PushText( double value ); /// Add a comment void PushComment( const char* comment ); void PushDeclaration( const char* value ); void PushUnknown( const char* value ); virtual bool VisitEnter( const XMLDocument& /*doc*/ ); virtual bool VisitExit( const XMLDocument& /*doc*/ ) { return true; } virtual bool VisitEnter( const XMLElement& element, const XMLAttribute* attribute ); virtual bool VisitExit( const XMLElement& element ); virtual bool Visit( const XMLText& text ); virtual bool Visit( const XMLComment& comment ); virtual bool Visit( const XMLDeclaration& declaration ); virtual bool Visit( const XMLUnknown& unknown ); /** If in print to memory mode, return a pointer to the XML file in memory. */ const char* CStr() const { return _buffer.Mem(); } /** If in print to memory mode, return the size of the XML file in memory. (Note the size returned includes the terminating null.) */ int CStrSize() const { return _buffer.Size(); } /** If in print to memory mode, reset the buffer to the beginning. */ void ClearBuffer() { _buffer.Clear(); _buffer.Push(0); _firstElement = true; } protected: virtual bool CompactMode( const XMLElement& ) { return _compactMode; } /** Prints out the space before an element. You may override to change the space and tabs used. A PrintSpace() override should call Print(). */ virtual void PrintSpace( int depth ); void Print( const char* format, ... ); void Write( const char* data, size_t size ); inline void Write( const char* data ) { Write( data, strlen( data ) ); } void Putc( char ch ); void SealElementIfJustOpened(); bool _elementJustOpened; DynArray< const char*, 10 > _stack; private: void PrintString( const char*, bool restrictedEntitySet ); // prints out, after detecting entities. bool _firstElement; FILE* _fp; int _depth; int _textDepth; bool _processEntities; bool _compactMode; enum { ENTITY_RANGE = 64, BUF_SIZE = 200 }; bool _entityFlag[ENTITY_RANGE]; bool _restrictedEntityFlag[ENTITY_RANGE]; DynArray< char, 20 > _buffer; // Prohibit cloning, intentionally not implemented XMLPrinter( const XMLPrinter& ); XMLPrinter& operator=( const XMLPrinter& ); }; } // tinyxml2 } } #if defined(_MSC_VER) # pragma warning(pop) #endif #endif // TINYXML2_INCLUDED ================================================ FILE: sdk/src/http/CurlHttpClient.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "CurlHttpClient.h" #include #include #include #include #include #include #include #include #include <../utils/Crc64.h> #include #include #include "../utils/LogUtils.h" #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; namespace AlibabaCloud { namespace OSS { const char * TAG = "CurlHttpClient"; //////////////////////////////////////////////////////////////////////////////////////////// template< typename RESOURCE_TYPE> class ResourceManager_ { public: ResourceManager_() : m_shutdown(false) {} RESOURCE_TYPE Acquire() { std::unique_lock locker(m_queueLock); while(!m_shutdown.load() && m_resources.size() == 0) { m_semaphore.wait(locker, [&](){ return m_shutdown.load() || m_resources.size() > 0; }); } assert(!m_shutdown.load()); RESOURCE_TYPE resource = m_resources.back(); m_resources.pop_back(); return resource; } bool HasResourcesAvailable() { std::lock_guard locker(m_queueLock); return m_resources.size() > 0 && !m_shutdown.load(); } void Release(RESOURCE_TYPE resource) { std::unique_lock locker(m_queueLock); m_resources.push_back(resource); locker.unlock(); m_semaphore.notify_one(); } void PutResource(RESOURCE_TYPE resource) { m_resources.push_back(resource); } std::vector ShutdownAndWait(size_t resourceCount) { std::vector resources; std::unique_lock locker(m_queueLock); m_shutdown = true; while (m_resources.size() < resourceCount) { m_semaphore.wait(locker, [&]() { return m_resources.size() == resourceCount; }); } resources = m_resources; m_resources.clear(); return resources; } private: std::vector m_resources; std::mutex m_queueLock; std::condition_variable m_semaphore; std::atomic m_shutdown; }; class CurlContainer { public: CurlContainer(unsigned maxSize = 16, long requestTimeout = 10000, long connectTimeout = 5000): maxPoolSize_(maxSize), requestTimeout_(requestTimeout), connectTimeout_(connectTimeout), poolSize_(0) { } ~CurlContainer() { for (CURL* handle : handleContainer_.ShutdownAndWait(poolSize_)) { curl_easy_cleanup(handle); } } CURL* Acquire() { if(!handleContainer_.HasResourcesAvailable()) { growPool(); } CURL* handle = handleContainer_.Acquire(); return handle; } void Release(CURL* handle, bool force) { if (handle) { curl_easy_reset(handle); if (force) { CURL* newhandle = curl_easy_init(); if (newhandle) { curl_easy_cleanup(handle); handle = newhandle; } } setDefaultOptions(handle); handleContainer_.Release(handle); } } private: CurlContainer(const CurlContainer&) = delete; const CurlContainer& operator = (const CurlContainer&) = delete; CurlContainer(const CurlContainer&&) = delete; const CurlContainer& operator = (const CurlContainer&&) = delete; bool growPool() { std::lock_guard locker(containerLock_); if (poolSize_ < maxPoolSize_) { unsigned multiplier = poolSize_ > 0 ? poolSize_ : 1; unsigned amountToAdd = (std::min)(multiplier * 2, maxPoolSize_ - poolSize_); unsigned actuallyAdded = 0; for (unsigned i = 0; i < amountToAdd; ++i) { CURL* curlHandle = curl_easy_init(); if (curlHandle) { setDefaultOptions(curlHandle); handleContainer_.Release(curlHandle); ++actuallyAdded; } else { break; } } poolSize_ += actuallyAdded; return actuallyAdded > 0; } return false; } void setDefaultOptions(CURL* handle) { curl_easy_setopt(handle, CURLOPT_NOSIGNAL, 1L); curl_easy_setopt(handle, CURLOPT_TCP_NODELAY, 1); curl_easy_setopt(handle, CURLOPT_NETRC, CURL_NETRC_IGNORED); curl_easy_setopt(handle, CURLOPT_TIMEOUT_MS, 0L); curl_easy_setopt(handle, CURLOPT_CONNECTTIMEOUT_MS, connectTimeout_); curl_easy_setopt(handle, CURLOPT_LOW_SPEED_LIMIT, 1L); curl_easy_setopt(handle, CURLOPT_LOW_SPEED_TIME, requestTimeout_ / 1000); curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L); curl_easy_setopt(handle, CURLOPT_SSL_VERIFYHOST, 0L); } private: ResourceManager_ handleContainer_; unsigned maxPoolSize_; unsigned long requestTimeout_; unsigned long connectTimeout_; unsigned poolSize_; std::mutex containerLock_; }; ///////////////////////////////////////////////////////////////////////////////////////////// struct TransferState { CurlHttpClient *owner; CURL * curl; HttpRequest *request; HttpResponse *response; int64_t transferred; int64_t total; bool firstRecvData; std::iostream::pos_type recvBodyPos; TransferProgressHandler progress; void *userData; bool enableCrc64; uint64_t sendCrc64Value; uint64_t recvCrc64Value; int sendSpeed; int recvSpeed; }; static size_t sendBody(char *ptr, size_t size, size_t nmemb, void *userdata) { TransferState *state = static_cast(userdata); if (state == nullptr || state->request == nullptr) { return 0; } std::shared_ptr &content = state->request->Body(); const size_t wanted = size * nmemb; size_t got = 0; if (content != nullptr && wanted > 0) { size_t read = wanted; if (state->total > 0) { int64_t remains = state->total - state->transferred; if (remains < static_cast(wanted)) { read = static_cast(remains); } } content->read(ptr, read); got = static_cast(content->gcount()); } state->transferred += got; if (state->progress) { state->progress(got, state->transferred, state->total, state->userData); } if (state->enableCrc64) { state->sendCrc64Value = CRC64::CalcCRC(state->sendCrc64Value, (void *)ptr, got); } return got; } static size_t recvBody(char *ptr, size_t size, size_t nmemb, void *userdata) { TransferState *state = static_cast(userdata); const size_t wanted = size * nmemb; if (state == nullptr || state->response == nullptr || wanted == 0) { return -1; } if (state->firstRecvData) { long response_code = 0; curl_easy_getinfo(state->curl, CURLINFO_RESPONSE_CODE, &response_code); if (response_code / 100 == 2) { state->response->addBody(state->request->ResponseStreamFactory()()); if (state->response->Body() != nullptr) { state->recvBodyPos = state->response->Body()->tellp(); } OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) setResponseBody, recvBodyPos:%lld", state->request, state->recvBodyPos); } else { state->response->addBody(std::make_shared()); } state->firstRecvData = false; } std::shared_ptr &content = state->response->Body(); if (content == nullptr || content->fail()) { return -2; } content->write(ptr, static_cast(wanted)); if (content->bad()) { return -3; } state->transferred += wanted; if (state->progress) { state->progress(wanted, state->transferred, state->total, state->userData); } if (state->enableCrc64) { state->recvCrc64Value = CRC64::CalcCRC(state->recvCrc64Value, (void *)ptr, wanted); } return wanted; } static size_t recvHeaders(char *buffer, size_t size, size_t nitems, void *userdata) { TransferState *state = static_cast(userdata); const size_t length = nitems * size; std::string line(buffer); auto pos = line.find(':'); if (pos != line.npos) { size_t posEnd = line.rfind('\r'); if (posEnd != line.npos) { posEnd = posEnd - pos - 2; } std::string name = line.substr(0, pos); std::string value = line.substr(pos + 2, posEnd); state->response->setHeader(name, value); } if (length == 2 && (buffer[0] == 0x0D) && (buffer[1] == 0x0A)) { if (state->response->hasHeader(Http::CONTENT_LENGTH)) { double dval; curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &dval); state->total = (int64_t)dval; } } return length; } static int debugCallback(void *handle, curl_infotype type, char *data, size_t size, void *userp) { UNUSED_PARAM(userp); switch (type) { default: break; case CURLINFO_TEXT: OSS_LOG(LogLevel::LogInfo, TAG, "handle(%p)=> Info: %.*s", handle, size, data); break; case CURLINFO_HEADER_OUT: OSS_LOG(LogLevel::LogDebug, TAG, "handle(%p)=> Send header: %.*s", handle, size, data); break; case CURLINFO_HEADER_IN: OSS_LOG(LogLevel::LogDebug, TAG, "handle(%p)=> Recv header: %.*s", handle, size, data); break; } return 0; } static int progressCallback(void *userdata, double dltotal, double dlnow, double ultotal, double ulnow) { UNUSED_PARAM(dltotal); UNUSED_PARAM(dlnow); UNUSED_PARAM(ultotal); UNUSED_PARAM(ulnow); TransferState *state = static_cast(userdata); if (state == nullptr || state->owner == nullptr) { return 0; } CurlHttpClient *thiz = static_cast(state->owner); //stop by upper caller if (!thiz->isEnable()) { return 1; } //for speed update if (thiz->sendRateLimiter_ != nullptr) { auto rate = thiz->sendRateLimiter_->Rate(); if (rate != state->sendSpeed) { state->sendSpeed = rate; auto speed = static_cast(rate); speed = speed * 1024; curl_easy_setopt(state->curl, CURLOPT_MAX_SEND_SPEED_LARGE, speed); } } if (thiz->recvRateLimiter_ != nullptr) { auto rate = thiz->recvRateLimiter_->Rate(); if (rate != state->recvSpeed) { state->recvSpeed = rate; auto speed = static_cast(rate); speed = speed * 1024; curl_easy_setopt(state->curl, CURLOPT_MAX_RECV_SPEED_LARGE, speed); } } return 0; } bool static ignoreHeader(const std::string& header, const std::string expect) { if ((expect.length() == header.length()) && std::equal(header.begin(), header.end(), expect.begin(), [](char a, char b) {return ::tolower(a) == ::tolower(b); })) { return true; } return false; } } } void CurlHttpClient::initGlobalState() { curl_global_init(CURL_GLOBAL_ALL); } void CurlHttpClient::cleanupGlobalState() { curl_global_cleanup(); } CurlHttpClient::CurlHttpClient(const ClientConfiguration &configuration) : HttpClient(), curlContainer_(new CurlContainer(configuration.maxConnections, configuration.requestTimeoutMs, configuration.connectTimeoutMs)), userAgent_(configuration.userAgent), proxyScheme_(configuration.proxyScheme), proxyHost_(configuration.proxyHost), proxyPort_(configuration.proxyPort), proxyUserName_(configuration.proxyUserName), proxyPassword_(configuration.proxyPassword), verifySSL_(configuration.verifySSL), caPath_(configuration.caPath), caFile_(configuration.caFile), networkInterface_(configuration.networkInterface), sendRateLimiter_(configuration.sendRateLimiter), recvRateLimiter_(configuration.recvRateLimiter), httpInterceptor_(configuration.httpInterceptor) { } CurlHttpClient::~CurlHttpClient() { if (curlContainer_) { delete curlContainer_; } } std::shared_ptr CurlHttpClient::makeRequest(const std::shared_ptr &request) { OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) enter makeRequest", request.get()); curl_slist *list = nullptr; auto& headers = request->Headers(); for (const auto &p : headers) { if (p.second.empty()) continue; std::string str = p.first; // ignore content-length if (request->chunkedEncoding() && ignoreHeader(str, "Content-Length")) { continue; } str.append(": ").append(p.second); list = curl_slist_append(list, str.c_str()); } // Disable Expect: 100-continue list = curl_slist_append(list, "Expect:"); auto response = std::make_shared(request); std::iostream::pos_type requestBodyPos = -1; if (request->Body() != nullptr) { requestBodyPos = request->Body()->tellg(); } CURL * curl = curlContainer_->Acquire(); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) acquire curl handle:%p", request.get(), curl); uint64_t initCRC64 = 0; #ifdef ENABLE_OSS_TEST if (headers.find("oss-test-crc64") != headers.end()) { initCRC64 = std::strtoull(headers.at("oss-test-crc64").c_str(), nullptr, 10); } #endif TransferState transferState = { this, curl, request.get(), response.get(), 0, -1, true, -1, request->TransferProgress().Handler, request->TransferProgress().UserData, request->hasCheckCrc64(), initCRC64, initCRC64, 0, 0 }; int64_t contentlength = -1; if (request->hasHeader(Http::CONTENT_LENGTH)) { transferState.total = std::atoll(request->Header(Http::CONTENT_LENGTH).c_str()); contentlength = transferState.total; } std::string url = request->url().toString(); curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); switch (request->method()) { case Http::Method::Head: curl_easy_setopt(curl, CURLOPT_NOBODY, 1); break; case Http::Method::Put: curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L); if (contentlength < 0) { // if nobody, set it to 0 if (request->Body() == nullptr) { curl_off_t uploadsize = 0; curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, uploadsize); } } else { if (!request->chunkedEncoding()) { curl_off_t uploadsize = static_cast(contentlength); curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, uploadsize); } } break; case Http::Method::Post: curl_easy_setopt(curl, CURLOPT_POST, 1L); if (contentlength < 0) { // if nobody, set it to 0 if (request->Body() == nullptr) { curl_off_t length_of_data = 0; curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, length_of_data); } } else { if (!request->chunkedEncoding()) { curl_off_t length_of_data = static_cast(contentlength); curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE, length_of_data); } } break; case Http::Method::Delete: curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "DELETE"); break; case Http::Method::Get: default: break; } curl_easy_setopt(curl, CURLOPT_USERAGENT,userAgent_.c_str()); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, list); curl_easy_setopt(curl, CURLOPT_HEADERDATA, &transferState); curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, recvHeaders); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &transferState); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, recvBody); curl_easy_setopt(curl, CURLOPT_READDATA, &transferState); curl_easy_setopt(curl, CURLOPT_READFUNCTION, sendBody); if (verifySSL_) { curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2L); } if(!caPath_.empty()) { curl_easy_setopt(curl, CURLOPT_CAPATH, caPath_.c_str()); } if(!caFile_.empty()){ curl_easy_setopt(curl, CURLOPT_CAINFO, caFile_.c_str()); } if (!proxyHost_.empty()) { std::stringstream ss; ss << Http::SchemeToString(proxyScheme_) << "://" << proxyHost_; curl_easy_setopt(curl, CURLOPT_PROXY, ss.str().c_str()); curl_easy_setopt(curl, CURLOPT_PROXYPORT, (long) proxyPort_); curl_easy_setopt(curl, CURLOPT_PROXYUSERNAME, proxyUserName_.c_str()); curl_easy_setopt(curl, CURLOPT_PROXYPASSWORD, proxyPassword_.c_str()); } if (!networkInterface_.empty()) { curl_easy_setopt(curl, CURLOPT_INTERFACE, networkInterface_.c_str()); } //debug if (GetLogLevelInner() >= LogLevel::LogInfo) { curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, debugCallback); } //Error Buffer char errbuf[CURL_ERROR_SIZE]; curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errbuf); errbuf[0] = 0; //progress Callback curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressCallback); curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &transferState); curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); //Send bytes/sec if (sendRateLimiter_ != nullptr) { transferState.sendSpeed = sendRateLimiter_->Rate(); auto speed = static_cast(transferState.sendSpeed); speed = speed * 1024; curl_easy_setopt(curl, CURLOPT_MAX_SEND_SPEED_LARGE, speed); } //Recv bytes/sec if (recvRateLimiter_ != nullptr) { transferState.recvSpeed = recvRateLimiter_->Rate(); auto speed = static_cast(transferState.recvSpeed); speed = speed * 1024; curl_easy_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, speed); } if (httpInterceptor_ != nullptr) { httpInterceptor_->preSendRequest(curl, request); } CURLcode res = curl_easy_perform(curl); long response_code= 0; curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); if (res == CURLE_OK) { response->setStatusCode(response_code); } else { response->setStatusCode(res + ERROR_CURL_BASE); switch (res) { case 23: //CURLE_WRITE_ERROR { std::string msg(curl_easy_strerror(res)); if (response->Body() == nullptr) { msg.append(". Caused by content is null."); } else if (response->Body()->bad()) { msg.append(". Caused by content is in bad state(Read/writing error on i/o operation)."); } else if (response->Body()->fail()) { msg.append(". Caused by content is in fail state(Logical error on i/o operation)."); } response->setStatusMsg(msg); } break; default: { std::string msg(curl_easy_strerror(res)); msg.append(".").append(errbuf); response->setStatusMsg(msg); } break; }; } switch (request->method()) { case Http::Method::Put: case Http::Method::Post: request->setCrc64Result(transferState.sendCrc64Value); break; default: request->setCrc64Result(transferState.recvCrc64Value); break; } request->setTransferedBytes(transferState.transferred); curlContainer_->Release(curl, (res != CURLE_OK)); curl_slist_free_all(list); auto & body = response->Body(); if (body != nullptr) { body->flush(); if (res != CURLE_OK && transferState.recvBodyPos != static_cast(-1)) { OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) setResponseBody, tellp:%lld, recvBodyPos:%lld", request.get(), body->tellp(), transferState.recvBodyPos); body->clear(); body->seekp(transferState.recvBodyPos); } } else { response->addBody(std::make_shared()); } if (requestBodyPos != static_cast(-1)) { request->Body()->clear(); request->Body()->seekg(requestBodyPos); } OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) leave makeRequest, CURLcode:%d, ResponseCode:%d", request.get(), res, response_code); return response; } ================================================ FILE: sdk/src/http/CurlHttpClient.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class CurlContainer; class RateLimiter; class CurlHttpClient : public HttpClient { public: CurlHttpClient(const ClientConfiguration &configuration); ~CurlHttpClient(); static void initGlobalState(); static void cleanupGlobalState(); virtual std::shared_ptr makeRequest(const std::shared_ptr &request) override; private: CurlContainer *curlContainer_; std::string userAgent_; Http::Scheme proxyScheme_; std::string proxyHost_; unsigned int proxyPort_; std::string proxyUserName_; std::string proxyPassword_; bool verifySSL_; std::string caPath_; std::string caFile_; std::string networkInterface_; public: std::shared_ptr sendRateLimiter_; std::shared_ptr recvRateLimiter_; std::shared_ptr httpInterceptor_; }; } } ================================================ FILE: sdk/src/http/HttpClient.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; HttpClient::HttpClient(): disable_(false) { } HttpClient::~HttpClient() { } bool HttpClient::isEnable() { return disable_.load() == false; } void HttpClient::disable() { disable_ = true; requestSignal_.notify_all(); } void HttpClient::enable() { disable_ = false; } void HttpClient::waitForRetry(long milliseconds) { if (milliseconds == 0) return; std::unique_lock lck(requestLock_); requestSignal_.wait_for(lck, std::chrono::milliseconds(milliseconds), [this] ()-> bool { return disable_.load() == true; }); } ================================================ FILE: sdk/src/http/HttpMessage.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; HttpMessage::HttpMessage() : headers_(), body_() { } HttpMessage::HttpMessage(const HttpMessage &other) : headers_(other.headers_), body_(other.body_) { } HttpMessage::HttpMessage(HttpMessage &&other) { *this = std::move(other); } HttpMessage& HttpMessage::operator=(const HttpMessage &other) { if (this != &other) { body_ = other.body_; headers_ = other.headers_; } return *this; } HttpMessage& HttpMessage::operator=(HttpMessage &&other) { if (this != &other) { body_ = std::move(other.body_); headers_ = std::move(other.headers_); } return *this; } void HttpMessage::addHeader(const std::string & name, const std::string & value) { setHeader(name, value); } void HttpMessage::setHeader(const std::string & name, const std::string & value) { headers_[name] = value; } void HttpMessage::removeHeader(const std::string & name) { headers_.erase(name); } bool HttpMessage::hasHeader(const std::string &name) const { return (headers_.find(name) != headers_.end()) ? true : false; } std::string HttpMessage::Header(const std::string & name) const { auto it = headers_.find(name); if (it != headers_.end()) return it->second; else return std::string(); } const HeaderCollection &HttpMessage::Headers() const { return headers_; } HttpMessage::~HttpMessage() { } ================================================ FILE: sdk/src/http/HttpRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; std::string Http::MethodToString(Method method) { static const char* name[] = {"GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "PATCH", "TRACE"}; return name[(method - Http::Method::Get)]; } std::string Http::SchemeToString(Scheme scheme) { static const char* name[] = {"http", "https"}; return name[scheme - Http::Scheme::HTTP]; } const char* Http::ACCEPT = "Accept"; const char* Http::ACCEPT_CHARSET = "Accept-Charset"; const char* Http::ACCEPT_ENCODING = "Accept-Encoding"; const char* Http::ACCEPT_LANGUAGE = "Accept-Language"; const char* Http::AUTHORIZATION = "Authorization"; const char* Http::CACHE_CONTROL = "Cache-Control"; const char* Http::CONTENT_DISPOSITION = "Content-Disposition"; const char* Http::CONTENT_ENCODING = "Content-Encoding"; const char* Http::CONTENT_LENGTH = "Content-Length"; const char* Http::CONTENT_MD5 = "Content-MD5"; const char* Http::CONTENT_RANGE = "Content-Range"; const char* Http::CONTENT_TYPE = "Content-Type"; const char* Http::DATE = "Date"; const char* Http::EXPECT = "Expect"; const char* Http::EXPIRES = "Expires"; const char* Http::ETAG = "ETag"; const char* Http::LAST_MODIFIED = "Last-Modified"; const char* Http::RANGE = "Range"; const char* Http::USER_AGENT = "User-Agent"; HttpRequest::HttpRequest(Http::Method method) : HttpMessage(), method_(method), url_(), responseStreamFactory_(nullptr), hasCheckCrc64_(false), crc64Result_(0), transferedBytes_(0), chunkedEncoding_(false) { } HttpRequest::~HttpRequest() { } Http::Method HttpRequest::method() const { return method_; } void HttpRequest::setMethod(Http::Method method) { method_ = method; } void HttpRequest::setUrl(const Url &url) { url_ = url; } Url HttpRequest::url()const { return url_; } ================================================ FILE: sdk/src/http/HttpResponse.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include namespace { #define INVALID_STATUS_CODE -1 } using namespace AlibabaCloud::OSS; HttpResponse::HttpResponse(const std::shared_ptr & request) : HttpMessage(), request_(request), statusCode_(INVALID_STATUS_CODE) { } HttpResponse::~HttpResponse() { } const HttpRequest & HttpResponse::request() const { return *request_.get(); } void HttpResponse::setStatusCode(int code) { statusCode_ = code; } int HttpResponse::statusCode() const { return statusCode_; } void HttpResponse::setStatusMsg(std::string &msg) { statusMsg_ = msg; } void HttpResponse::setStatusMsg(const char *msg) { statusMsg_ = msg; } std::string HttpResponse::statusMsg() const { return statusMsg_; } ================================================ FILE: sdk/src/http/Url.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include using namespace AlibabaCloud::OSS; namespace { #define INVALID_PORT -1 } Url::Url(const std::string & url) : scheme_(), userName_(), password_(), host_(), path_(), port_(INVALID_PORT), query_(), fragment_() { if(!url.empty()) fromString(url); } Url::~Url() { } bool Url::operator==(const Url &url) const { return scheme_ == url.scheme_ && userName_ == url.userName_ && password_ == url.password_ && host_ == url.host_ && path_ == url.path_ && port_ == url.port_ && query_ == url.query_ && fragment_ == url.fragment_; } bool Url::operator!=(const Url &url) const { return !(*this == url); } std::string Url::authority() const { if (!isValid()) return std::string(); std::ostringstream out; std::string str = userInfo(); if (!str.empty()) out << str << "@"; out << host_; if (port_ != INVALID_PORT) out << ":" << port_; return out.str(); } void Url::clear() { scheme_.clear(); userName_.clear(); password_.clear(); host_.clear(); path_.clear(); port_ = INVALID_PORT; query_.clear(); fragment_.clear(); } std::string Url::fragment() const { return fragment_; } void Url::fromString(const std::string & url) { clear(); if (url.empty()) return; std::string str = url; std::string::size_type pos = 0; std::string authority, fragment, path, query, scheme; pos = str.find("://"); if (pos != str.npos) { scheme = str.substr(0, pos); str.erase(0, pos + 3); } pos = str.find('#'); if (pos != str.npos) { fragment = str.substr(pos + 1); str.erase(pos); } pos = str.find('?'); if (pos != str.npos) { query = str.substr(pos + 1); str.erase(pos); } pos = str.find('/'); if (pos != str.npos) { path = str.substr(pos); str.erase(pos); } else path = "/"; authority = str; setScheme(scheme); setAuthority(authority); setPath(path); setQuery(query); setFragment(fragment); } bool Url::hasFragment() const { return !fragment_.empty(); } bool Url::hasQuery() const { return !query_.empty(); } std::string Url::host() const { return host_; } bool Url::isEmpty() const { return scheme_.empty() && userName_.empty() && password_.empty() && host_.empty() && path_.empty() && (port_ == INVALID_PORT) && query_.empty() && fragment_.empty(); } bool Url::isValid() const { if (isEmpty()) return false; if (host_.empty()) return false; bool valid = true; if (userName_.empty()) valid = password_.empty(); return valid; } int Url::port() const { return port_; } std::string Url::password() const { return password_; } std::string Url::path() const { return path_; } std::string Url::query() const { return query_; } std::string Url::scheme() const { return scheme_; } void Url::setAuthority(const std::string & authority) { if (authority.empty()) { setUserInfo(""); setHost(""); setPort(INVALID_PORT); return; } std::string userinfo, host, port; std::string::size_type pos = 0, prevpos = 0; pos = authority.find('@'); if (pos != authority.npos) { userinfo = authority.substr(0, pos); prevpos = pos + 1; } else { pos = 0; } pos = authority.find(':', prevpos); if (pos == authority.npos) host = authority.substr(prevpos); else { host = authority.substr(prevpos, pos - prevpos); port = authority.substr(pos + 1); } setUserInfo(userinfo); setHost(host); setPort(!port.empty() ? atoi(port.c_str()): INVALID_PORT); } void Url::setFragment(const std::string & fragment) { fragment_ = fragment; } void Url::setHost(const std::string & host) { if(host.empty()){ host_.clear(); return; } host_ = host; std::transform(host_.begin(), host_.end(), host_.begin(), ::tolower); } void Url::setPassword(const std::string & password) { password_ = password; } void Url::setPath(const std::string & path) { path_ = path; } void Url::setPort(int port) { port_ = port; } void Url::setQuery(const std::string & query) { query_ = query; } void Url::setScheme(const std::string & scheme) { if(scheme.empty()){ scheme_.clear(); return; } scheme_ = scheme; std::transform(scheme_.begin(), scheme_.end(), scheme_.begin(), ::tolower); } void Url::setUserInfo(const std::string & userInfo) { if (userInfo.empty()) { userName_.clear(); password_.clear(); return; } auto pos = userInfo.find(':'); if (pos == userInfo.npos) userName_ = userInfo; else { userName_ = userInfo.substr(0, pos); password_ = userInfo.substr(pos + 1); } } void Url::setUserName(const std::string & userName) { userName_ = userName; } std::string Url::toString() const { if (!isValid()) return std::string(); std::ostringstream out; if (!scheme_.empty()) out << scheme_ << "://"; std::string str = authority(); if (!str.empty()) out << authority(); if (path_.empty()) out << "/"; else out << path_; if (hasQuery()) out << "?" << query_; if (hasFragment()) out << "#" << fragment_; return out.str(); } std::string Url::userInfo() const { if (!isValid()) return std::string(); std::ostringstream out; out << userName_; if (!password_.empty()) out << ":" << password_; return out.str(); } std::string Url::userName() const { return userName_; } ================================================ FILE: sdk/src/model/AbortBucketWormRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; AbortBucketWormRequest::AbortBucketWormRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection AbortBucketWormRequest::specialParameters() const { ParameterCollection parameters; parameters["worm"] = ""; return parameters; } ================================================ FILE: sdk/src/model/AbortMultipartUploadRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; AbortMultipartUploadRequest::AbortMultipartUploadRequest( const std::string &bucket, const std::string &key, const std::string &uploadId) : OssObjectRequest(bucket, key), uploadId_(uploadId) { } ParameterCollection AbortMultipartUploadRequest::specialParameters() const { ParameterCollection parameters; parameters["uploadId"] = uploadId_; return parameters; } ================================================ FILE: sdk/src/model/AppendObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; AppendObjectRequest::AppendObjectRequest(const std::string &bucket, const std::string &key, const std::shared_ptr& content): OssObjectRequest(bucket, key), position_(0), content_(content) { } AppendObjectRequest::AppendObjectRequest(const std::string &bucket, const std::string &key, const std::shared_ptr& content, const ObjectMetaData &metaData): OssObjectRequest(bucket, key), position_(0), content_(content), metaData_(metaData) { } void AppendObjectRequest::setPosition(uint64_t position) { position_ = position; } void AppendObjectRequest::setCacheControl(const std::string& value) { metaData_.addHeader(Http::CACHE_CONTROL, value); } void AppendObjectRequest::setContentDisposition(const std::string& value) { metaData_.addHeader(Http::CONTENT_DISPOSITION, value); } void AppendObjectRequest::setContentEncoding(const std::string& value) { metaData_.addHeader(Http::CONTENT_ENCODING, value); } void AppendObjectRequest::setContentMd5(const std::string& value) { metaData_.addHeader(Http::CONTENT_MD5, value); } void AppendObjectRequest::setExpires(uint64_t expires) { metaData_.addHeader(Http::EXPIRES, std::to_string(expires)); } void AppendObjectRequest::setExpires(const std::string& value) { metaData_.addHeader(Http::EXPIRES, value); } void AppendObjectRequest::setAcl(const CannedAccessControlList& acl) { metaData_.addHeader("x-oss-object-acl", ToAclName(acl)); } void AppendObjectRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } void AppendObjectRequest::setTrafficLimit(uint64_t value) { metaData_.addHeader("x-oss-traffic-limit", std::to_string(value)); } std::shared_ptr AppendObjectRequest::Body() const { return content_; } HeaderCollection AppendObjectRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); if (headers.find(Http::CONTENT_TYPE) == headers.end()) { headers[Http::CONTENT_TYPE] = LookupMimeType(Key()); } auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } ParameterCollection AppendObjectRequest::specialParameters() const { ParameterCollection paramters; paramters["append"] = ""; paramters["position"] = std::to_string(position_); return paramters; } ================================================ FILE: sdk/src/model/AppendObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; AppendObjectResult::AppendObjectResult(): OssObjectResult(), length_(0), crc64_(0) { } AppendObjectResult::AppendObjectResult(const HeaderCollection& headers): OssObjectResult(headers), length_(0), crc64_(0) { if (headers.find("x-oss-next-append-position") == headers.end()) { parseDone_ = false; } else { length_ = std::strtoull(headers.at("x-oss-next-append-position").c_str(), nullptr, 10); } if (headers.find("x-oss-hash-crc64ecma") == headers.end()) { parseDone_ = false; } else { crc64_ = std::strtoull(headers.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); } parseDone_ = true; } ================================================ FILE: sdk/src/model/Bucket.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; Bucket::~Bucket() { } ================================================ FILE: sdk/src/model/CompleteBucketWormRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; CompleteBucketWormRequest::CompleteBucketWormRequest(const std::string &bucket, const std::string& wormId) : OssBucketRequest(bucket), wormId_(wormId) { } ParameterCollection CompleteBucketWormRequest::specialParameters() const { ParameterCollection parameters; parameters["wormId"] = wormId_; return parameters; } ================================================ FILE: sdk/src/model/CompleteMultipartUploadRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" using namespace AlibabaCloud::OSS; CompleteMultipartUploadRequest::CompleteMultipartUploadRequest( const std::string &bucket, const std::string &key) : CompleteMultipartUploadRequest(bucket, key, PartList()) { } CompleteMultipartUploadRequest::CompleteMultipartUploadRequest( const std::string &bucket, const std::string &key, const PartList &partList) : CompleteMultipartUploadRequest(bucket, key, partList, "") { } CompleteMultipartUploadRequest::CompleteMultipartUploadRequest( const std::string &bucket, const std::string &key, const PartList &partList, const std::string &uploadId): OssObjectRequest(bucket, key), partList_(partList), uploadId_(uploadId), encodingTypeIsSet_(false) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } int CompleteMultipartUploadRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret != 0) { return ret; } if(partList_.empty()) return ARG_ERROR_MULTIPARTUPLOAD_PARTLIST_EMPTY; return 0; } void CompleteMultipartUploadRequest::setPartList(const PartList &partList) { partList_ = partList; } void CompleteMultipartUploadRequest::setEncodingType(const std::string &encodingType) { encodingType_ = encodingType; encodingTypeIsSet_ = true; } void CompleteMultipartUploadRequest::setUploadId(const std::string &uploadId) { uploadId_ = uploadId; } void CompleteMultipartUploadRequest::setAcl(CannedAccessControlList acl) { metaData_.addHeader("x-oss-object-acl", ToAclName(acl)); } void CompleteMultipartUploadRequest::setCallback(const std::string& callback, const std::string& callbackVar) { metaData_.removeHeader("x-oss-callback"); metaData_.removeHeader("x-oss-callback-var"); if (!callback.empty()) { metaData_.addHeader("x-oss-callback", callback); } if (!callbackVar.empty()) { metaData_.addHeader("x-oss-callback-var", callbackVar); } } ObjectMetaData& CompleteMultipartUploadRequest::MetaData() { return metaData_; } ParameterCollection CompleteMultipartUploadRequest::specialParameters()const { ParameterCollection parameters; parameters["uploadId"] = uploadId_; if(encodingTypeIsSet_) { parameters["encoding-type"] = encodingType_; } return parameters; } HeaderCollection CompleteMultipartUploadRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } std::string CompleteMultipartUploadRequest::payload() const { std::stringstream ss; ss << "" << std::endl; for (auto const &part : partList_) { ss << "" << std::endl; ss << " "; ss << std::to_string(part.PartNumber()); ss << "" << std::endl; ss << " "; ss << part.ETag(); ss << "" << std::endl; ss << ""; } ss << ""; return ss.str(); } ================================================ FILE: sdk/src/model/CompleteMultipartUploadResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; using namespace tinyxml2; CompleteMultipartUploadResult::CompleteMultipartUploadResult() : OssObjectResult(), crc64_(0), content_(nullptr) { } CompleteMultipartUploadResult::CompleteMultipartUploadResult(const std::string& result) : CompleteMultipartUploadResult() { *this = result; } CompleteMultipartUploadResult::CompleteMultipartUploadResult(const std::shared_ptr& result, const HeaderCollection& headers) : OssObjectResult(headers), crc64_(0), content_(nullptr) { std::string contentType; if (headers.find(Http::CONTENT_TYPE) != headers.end()) { contentType = ToLower(headers.at(Http::CONTENT_TYPE).c_str()); } if (contentType.compare("application/json") != 0) { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } else { content_ = result; parseDone_ = true; } if (headers.find("x-oss-hash-crc64ecma") != headers.end()) { crc64_ = std::strtoull(headers.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); } if (eTag_.empty() && headers.find(Http::ETAG) != headers.end()) { eTag_ = TrimQuotes(headers.at(Http::ETAG).c_str()); } } CompleteMultipartUploadResult& CompleteMultipartUploadResult::operator =(const std::string& result) { if (result.empty()) { parseDone_ = true; return *this; } XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("CompleteMultipartUploadResult", root->Name(), 29)) { XMLElement *node; node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) { encodingType_ = node->GetText(); } bool bEncode = false; bEncode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); node = root->FirstChildElement("Bucket"); if (node && node->GetText()) { bucket_ = node->GetText(); } node = root->FirstChildElement("Location"); if(node && node->GetText()) { if (bEncode) { location_ = UrlDecode(node->GetText()); } else { location_ = node->GetText(); } } node = root->FirstChildElement("Key"); if(node && node->GetText()) { if(bEncode) { key_ = UrlDecode(node->GetText()); }else{ key_ = node->GetText(); } } node = root->FirstChildElement("ETag"); if(node && node->GetText()) { eTag_ = node->GetText(); } parseDone_ = true; } } return *this; } const std::string& CompleteMultipartUploadResult::Location() const { return location_; } const std::string& CompleteMultipartUploadResult::Key() const { return key_; } const std::string& CompleteMultipartUploadResult::Bucket() const { return bucket_; } const std::string& CompleteMultipartUploadResult::ETag() const { return eTag_; } const std::string& CompleteMultipartUploadResult::EncodingType() const { return encodingType_; } uint64_t CompleteMultipartUploadResult::CRC64() const { return crc64_; } const std::shared_ptr& CompleteMultipartUploadResult::Content() const { return content_; } ================================================ FILE: sdk/src/model/CopyObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; CopyObjectRequest::CopyObjectRequest(const std::string &bucket, const std::string &key): OssObjectRequest(bucket, key), sourceBucket_(), sourceKey_() { } CopyObjectRequest::CopyObjectRequest(const std::string &bucket, const std::string &key, const ObjectMetaData &metaData): OssObjectRequest(bucket, key), sourceBucket_(), sourceKey_(), metaData_(metaData) { } void CopyObjectRequest::setCopySource(const std::string& srcBucket,const std::string& srcKey) { sourceBucket_ = srcBucket; sourceKey_ = srcKey; } void CopyObjectRequest::setSourceIfMatchETag(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-match", value); } void CopyObjectRequest::setSourceIfNotMatchETag(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-none-match", value); } void CopyObjectRequest::setSourceIfUnModifiedSince(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-unmodified-since", value); } void CopyObjectRequest::setSourceIfModifiedSince(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-modified-since", value); } void CopyObjectRequest::setMetadataDirective(const CopyActionList& action) { metaData_.addHeader("x-oss-metadata-directive", ToCopyActionName(action)); } void CopyObjectRequest::setAcl(const CannedAccessControlList& acl) { metaData_.addHeader("x-oss-object-acl", ToAclName(acl)); } void CopyObjectRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } void CopyObjectRequest::setTaggingDirective(const CopyActionList& action) { metaData_.addHeader("x-oss-tagging-directive", ToCopyActionName(action)); } void CopyObjectRequest::setTrafficLimit(uint64_t value) { metaData_.addHeader("x-oss-traffic-limit", std::to_string(value)); } HeaderCollection CopyObjectRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); if (headers.find(Http::CONTENT_TYPE) == headers.end()) { headers[Http::CONTENT_TYPE] = LookupMimeType(Key()); } std::string source; source.append("/").append(sourceBucket_).append("/").append(UrlEncode(sourceKey_)); if (!versionId_.empty()) { source.append("?versionId=").append(versionId_); } headers["x-oss-copy-source"] = source; auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } ParameterCollection CopyObjectRequest::specialParameters() const { return ParameterCollection(); } ================================================ FILE: sdk/src/model/CopyObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; CopyObjectResult::CopyObjectResult() : OssObjectResult() { } CopyObjectResult::CopyObjectResult(const std::string& data): CopyObjectResult() { *this = data; } CopyObjectResult::CopyObjectResult(const std::shared_ptr& data): CopyObjectResult() { std::istreambuf_iterator isb(*data.get()), end; std::string str(isb, end); *this = str; } CopyObjectResult::CopyObjectResult(const HeaderCollection& headers, const std::shared_ptr& data): OssObjectResult(headers) { if (headers.find("x-oss-copy-source-version-id") != headers.end()) { sourceVersionId_ = headers.at("x-oss-copy-source-version-id"); } std::istreambuf_iterator isb(*data.get()), end; std::string str(isb, end); *this = str; } CopyObjectResult& CopyObjectResult::operator =(const std::string& data) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(data.c_str(), data.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("CopyObjectResult", root->Name(), strlen("CopyObjectResult"))) { XMLElement *node; node = root->FirstChildElement("LastModified"); if (node && node->GetText()) { lastModified_ = node->GetText(); } node = root->FirstChildElement("ETag"); if (node && node->GetText()) { etag_ = TrimQuotes(node->GetText()); } //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/CreateBucketRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include <../utils/Utils.h> using namespace AlibabaCloud::OSS; CreateBucketRequest::CreateBucketRequest(const std::string &bucket, StorageClass storageClass): CreateBucketRequest(bucket, storageClass, CannedAccessControlList::Default) { } CreateBucketRequest::CreateBucketRequest(const std::string &bucket, StorageClass storageClass, CannedAccessControlList acl): OssBucketRequest(bucket), storageClass_(storageClass), acl_(acl), dataRedundancyType_(DataRedundancyType::NotSet) { } std::string CreateBucketRequest::payload() const { std::string str; str.append("\n"); str.append("\n"); str.append(""); str.append(ToStorageClassName(storageClass_)); str.append("\n"); if (dataRedundancyType_ != DataRedundancyType::NotSet) { str.append(""); str.append(ToDataRedundancyTypeName(dataRedundancyType_)); str.append("\n"); } str.append(""); return str; } HeaderCollection CreateBucketRequest::specialHeaders() const { if (acl_ < CannedAccessControlList::Default) { HeaderCollection headers; headers["x-oss-acl"] = ToAclName(acl_); return headers; } return OssRequest::specialHeaders(); } ================================================ FILE: sdk/src/model/CreateSelectObjectMetaRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "ModelError.h" #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; CreateSelectObjectMetaRequest::CreateSelectObjectMetaRequest(const std::string& bucket, const std::string& key) : OssObjectRequest(bucket, key), inputFormat_(nullptr), overWriteIfExists_(false) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void CreateSelectObjectMetaRequest::setOverWriteIfExists(bool overWriteIfExists) { overWriteIfExists_ = overWriteIfExists; } void CreateSelectObjectMetaRequest::setInputFormat(InputFormat& inputFormat) { inputFormat_ = &inputFormat; } std::string CreateSelectObjectMetaRequest::payload() const { std::stringstream ss; if (inputFormat_->Type() == "csv") { ss << "" << std::endl; ss << inputFormat_->toXML(0) << std::endl; ss << "" << (overWriteIfExists_ ? "true" : "false") << "" << std::endl; ss << "" << std::endl; } else { ss << "" << std::endl; ss << inputFormat_->toXML(0) << std::endl; ss << "" << (overWriteIfExists_ ? "true" : "false") << "" << std::endl; ss << "" << std::endl; } return ss.str(); } int CreateSelectObjectMetaRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret != 0) { return ret; } if (inputFormat_ == nullptr) { return ARG_ERROR_CREATE_SELECT_OBJECT_META_NULL_POINT; } return 0; } ParameterCollection CreateSelectObjectMetaRequest::specialParameters() const { ParameterCollection parameters; if (inputFormat_) { auto type = inputFormat_->Type(); type.append("/meta"); parameters["x-oss-process"] = type; } return parameters; } ================================================ FILE: sdk/src/model/CreateSelectObjectMetaResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Crc32.h" #define FRAME_HEADER_LEN (12+8) #define PARSE_FOUR_BYTES(a, b, c, d) (((uint32_t)(a) << 24)|((uint32_t)(b) << 16)|((uint32_t)(c) << 8)|(d)) #define PARSE_EIGHT_BYTES(a, b, c, d, e, f, g, h) (((uint64_t)(a)<<56)|((uint64_t)(b)<<48)| ((uint64_t)(c)<<40)| ((uint64_t)(d)<<32)| ((uint64_t)(e)<<24)| ((uint64_t)(f)<<16)| ((uint64_t)(g)<<8)| (h)) using namespace AlibabaCloud::OSS; CreateSelectObjectMetaResult::CreateSelectObjectMetaResult() :OssResult(), offset_(0), totalScanned_(0), status_(0), splitsCount_(0), rowsCount_(0), colsCount_(0) { } CreateSelectObjectMetaResult::CreateSelectObjectMetaResult( const std::string& bucket, const std::string& key, const std::string& requestId, const std::shared_ptr& data) : CreateSelectObjectMetaResult() { bucket_ = bucket; key_ = key; requestId_ = requestId; *this = data; } CreateSelectObjectMetaResult& CreateSelectObjectMetaResult::operator=(const std::shared_ptr& data) { data->seekg(0, data->beg); uint8_t buffer[36]; char messageBuffer[256]; parseDone_ = true; while (data->good()) { // header 12 bytes data->read(reinterpret_cast(buffer), 12); if (!data->good()) { break; } // type 3 bytes int type = 0; type = (buffer[1] << 16) | (buffer[2] << 8) | buffer[3]; // payload length 4 bytes uint32_t length = PARSE_FOUR_BYTES(buffer[4], buffer[5], buffer[6], buffer[7]); // header checksum // payload switch (type) { case 0x800006: case 0x800007: { uint32_t payloadCrc32 = 0; uint32_t messageLength = length - 32; data->read(reinterpret_cast(buffer), 32); payloadCrc32 = CRC32::CalcCRC(payloadCrc32, buffer, 32); // offset 8 bytes offset_ = PARSE_EIGHT_BYTES(buffer[0],buffer[1],buffer[2],buffer[3], buffer[4],buffer[5],buffer[6],buffer[7]); // total scaned 8bytes totalScanned_ = PARSE_EIGHT_BYTES(buffer[8],buffer[9],buffer[10],buffer[11], buffer[12],buffer[13],buffer[14],buffer[15]); // status 4 bytes status_ = PARSE_FOUR_BYTES(buffer[16], buffer[17], buffer[18], buffer[19]); // splitsCount 4 bytes splitsCount_ = PARSE_FOUR_BYTES(buffer[20], buffer[21], buffer[22], buffer[23]); // rowsCount 8 bytes rowsCount_ = PARSE_EIGHT_BYTES(buffer[24],buffer[25],buffer[26],buffer[27], buffer[28],buffer[29],buffer[30],buffer[31]); if (type == 0x800006) { messageLength -= 4; // colsCount data->read(reinterpret_cast(buffer), 4); payloadCrc32 = CRC32::CalcCRC(payloadCrc32, buffer, 4); colsCount_ = PARSE_FOUR_BYTES(buffer[0],buffer[1],buffer[2],buffer[3]); } data->read(messageBuffer, messageLength); payloadCrc32 = CRC32::CalcCRC(payloadCrc32, messageBuffer, messageLength); errorMessage_ = std::string(messageBuffer); if (!data->good()) { parseDone_ = false; break; } // payload crc32 checksum uint32_t payloadChecksum = 0; data->read(reinterpret_cast(buffer), 4); payloadChecksum = PARSE_FOUR_BYTES(buffer[0],buffer[1],buffer[2],buffer[3]); if (payloadChecksum != 0 && payloadChecksum != payloadCrc32) { parseDone_ = false; return *this; } } break; default: data->seekg(length + 4, data->cur); break; } } return *this; } ================================================ FILE: sdk/src/model/CreateSymlinkRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; CreateSymlinkRequest::CreateSymlinkRequest(const std::string &bucket, const std::string &key): OssObjectRequest(bucket, key) { } CreateSymlinkRequest::CreateSymlinkRequest(const std::string &bucket, const std::string &key, const ObjectMetaData &metaData): OssObjectRequest(bucket, key), metaData_(metaData) { } void CreateSymlinkRequest::SetSymlinkTarget(const std::string& value) { metaData_.addHeader("x-oss-symlink-target", value); } void CreateSymlinkRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } HeaderCollection CreateSymlinkRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } ParameterCollection CreateSymlinkRequest::specialParameters() const { ParameterCollection paramters; paramters["symlink"] = ""; return paramters; } ================================================ FILE: sdk/src/model/CreateSymlinkResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; CreateSymlinkResult::CreateSymlinkResult(): OssObjectResult() { } CreateSymlinkResult::CreateSymlinkResult(const std::string& etag): OssObjectResult(), etag_(TrimQuotes(etag.c_str())) { } CreateSymlinkResult::CreateSymlinkResult(const HeaderCollection& headers): OssObjectResult(headers) { if (headers.find(Http::ETAG) != headers.end()) { etag_ = TrimQuotes(headers.at(Http::ETAG).c_str()); } } ================================================ FILE: sdk/src/model/DeleteBucketCorsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketCorsRequest::DeleteBucketCorsRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketCorsRequest::specialParameters() const { ParameterCollection parameters; parameters["cors"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketEncryptionRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketEncryptionRequest::DeleteBucketEncryptionRequest(const std::string& bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketEncryptionRequest::specialParameters() const { ParameterCollection parameters; parameters["encryption"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketInventoryConfigurationRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketInventoryConfigurationRequest::DeleteBucketInventoryConfigurationRequest(const std::string& bucket) : OssBucketRequest(bucket) { } DeleteBucketInventoryConfigurationRequest::DeleteBucketInventoryConfigurationRequest(const std::string& bucket, const std::string& id) : DeleteBucketInventoryConfigurationRequest(bucket) { id_ = id; } ParameterCollection DeleteBucketInventoryConfigurationRequest::specialParameters() const { ParameterCollection parameters; parameters["inventory"] = ""; parameters["inventoryId"] = id_; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketLifecycleRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketLifecycleRequest::DeleteBucketLifecycleRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketLifecycleRequest::specialParameters() const { ParameterCollection parameters; parameters["lifecycle"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketLoggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketLoggingRequest::DeleteBucketLoggingRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketLoggingRequest::specialParameters() const { ParameterCollection parameters; parameters["logging"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketPolicyRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketPolicyRequest::DeleteBucketPolicyRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketPolicyRequest::specialParameters() const { ParameterCollection parameters; parameters["policy"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketQosInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketQosInfoRequest::DeleteBucketQosInfoRequest(const std::string& bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketQosInfoRequest::specialParameters() const { ParameterCollection parameters; parameters["qosInfo"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketTaggingRequest::DeleteBucketTaggingRequest(const std::string& bucket) : OssBucketRequest(bucket) { } void DeleteBucketTaggingRequest::setTagging(const Tagging& tagging) { tagging_ = tagging; } ParameterCollection DeleteBucketTaggingRequest::specialParameters() const { ParameterCollection parameters; std::string str; for (const Tag& tag : tagging_.Tags()) { if (!str.empty()) str += ","; str += tag.Key(); } parameters["tagging"] = str; return parameters; } ================================================ FILE: sdk/src/model/DeleteBucketWebsiteRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteBucketWebsiteRequest::DeleteBucketWebsiteRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection DeleteBucketWebsiteRequest::specialParameters() const { ParameterCollection parameters; parameters["website"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteLiveChannelRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include "ModelError.h" using namespace AlibabaCloud::OSS; DeleteLiveChannelRequest::DeleteLiveChannelRequest(const std::string &bucket, const std::string &channelName) :LiveChannelRequest(bucket, channelName) { } ParameterCollection DeleteLiveChannelRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; return collection; } int DeleteLiveChannelRequest::validate() const { return LiveChannelRequest::validate(); } ================================================ FILE: sdk/src/model/DeleteObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; DeleteObjectResult::DeleteObjectResult(): OssObjectResult(), deleteMarker_(false) { } DeleteObjectResult::DeleteObjectResult(const HeaderCollection& headers): OssObjectResult(headers), deleteMarker_(false) { if (headers.find("x-oss-delete-marker") != headers.end()) { deleteMarker_ = true; } } bool DeleteObjectResult::DeleteMarker() const { return deleteMarker_; } ================================================ FILE: sdk/src/model/DeleteObjectTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; DeleteObjectTaggingRequest::DeleteObjectTaggingRequest(const std::string& bucket, const std::string& key): OssObjectRequest(bucket, key) { } ParameterCollection DeleteObjectTaggingRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["tagging"] = ""; return parameters; } ================================================ FILE: sdk/src/model/DeleteObjectVersionsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; DeleteObjectVersionsRequest::DeleteObjectVersionsRequest(const std::string &bucket) : OssBucketRequest(bucket), quiet_(false), encodingType_(), requestPayer_(RequestPayer::NotSet) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } bool DeleteObjectVersionsRequest::Quiet() const { return quiet_; } const std::string &DeleteObjectVersionsRequest::EncodingType() const { return encodingType_; } void DeleteObjectVersionsRequest::addObject(const ObjectIdentifier& object) { objects_.push_back(object); } void DeleteObjectVersionsRequest::setObjects(const ObjectIdentifierList& objects) { objects_ = objects; } const ObjectIdentifierList& DeleteObjectVersionsRequest::Objects() const { return objects_; } void DeleteObjectVersionsRequest::clearObjects() { objects_.clear(); } void DeleteObjectVersionsRequest::setQuiet(bool quiet) { quiet_ = quiet; } void DeleteObjectVersionsRequest::setEncodingType(const std::string &value) { encodingType_ = value; } void DeleteObjectVersionsRequest::setRequestPayer(RequestPayer value) { requestPayer_ = value; } std::string DeleteObjectVersionsRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << (quiet_ ? "true":"false") << "" << std::endl; for (auto const& object : objects_) { ss << " " << std::endl << ""; ss << " " << XmlEscape(object.Key()) << "" << std::endl; if (!object.VersionId().empty()) { ss << " " << object.VersionId() << "" << std::endl; } ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection DeleteObjectVersionsRequest::specialParameters() const { ParameterCollection parameters; parameters["delete"] = ""; if (!encodingType_.empty()) { parameters["encoding-type"] = encodingType_; } return parameters; } HeaderCollection DeleteObjectVersionsRequest::specialHeaders() const { HeaderCollection headers; if (requestPayer_ == RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(RequestPayer::Requester)); } return headers; } ================================================ FILE: sdk/src/model/DeleteObjectVersionsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; DeleteObjectVersionsResult::DeleteObjectVersionsResult() : OssResult(), quiet_(false), deletedObjects_() { } DeleteObjectVersionsResult::DeleteObjectVersionsResult(const std::string& result) : DeleteObjectVersionsResult() { *this = result; } DeleteObjectVersionsResult::DeleteObjectVersionsResult(const std::shared_ptr& result) : DeleteObjectVersionsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } DeleteObjectVersionsResult& DeleteObjectVersionsResult::operator =(const std::string& result) { if (result.empty()) { quiet_ = true; parseDone_ = true; return *this; } XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("DeleteResult", root->Name(), 12)) { XMLElement *node; std::string encodeType; node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodeType = node->GetText(); bool useUrlDecode = !ToLower(encodeType.c_str()).compare(0, 3, "url", 3); //Deleted node = root->FirstChildElement("Deleted"); for (; node; node = node->NextSiblingElement("Deleted")) { XMLElement *sub_node; DeletedObject object; sub_node = node->FirstChildElement("Key"); if (sub_node && sub_node->GetText()) { object.setKey(useUrlDecode ? UrlDecode(sub_node->GetText()) : sub_node->GetText()); } sub_node = node->FirstChildElement("VersionId"); if (sub_node && sub_node->GetText()) { object.setVersionId(sub_node->GetText()); } sub_node = node->FirstChildElement("DeleteMarker"); if (sub_node && sub_node->GetText()) { object.setDeleteMarker(!std::strncmp("true", sub_node->GetText(), 4)); } sub_node = node->FirstChildElement("DeleteMarkerVersionId"); if (sub_node && sub_node->GetText()) { object.setDeleteMarkerVersionId(sub_node->GetText()); } deletedObjects_.push_back(object); } } parseDone_ = true; } return *this; } bool DeleteObjectVersionsResult::Quiet() const { return quiet_; } const DeletedObjectList& DeleteObjectVersionsResult::DeletedObjects() const { return deletedObjects_; } ================================================ FILE: sdk/src/model/DeleteObjectsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; DeleteObjectsRequest::DeleteObjectsRequest(const std::string &bucket) : OssBucketRequest(bucket), quiet_(false), encodingType_(), requestPayer_(RequestPayer::NotSet) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } bool DeleteObjectsRequest::Quiet() const { return quiet_; } const std::string &DeleteObjectsRequest::EncodingType() const { return encodingType_; } const std::list &DeleteObjectsRequest::KeyList() const { return keyList_; } void DeleteObjectsRequest::setQuiet(bool quiet) { quiet_ = quiet; } void DeleteObjectsRequest::setEncodingType(const std::string &value) { encodingType_ = value; } void DeleteObjectsRequest::addKey(const std::string &key) { keyList_.push_back(key); } void DeleteObjectsRequest::setKeyList(const DeletedKeyList &keyList) { keyList_ = keyList; } void DeleteObjectsRequest::clearKeyList() { keyList_.clear(); } void DeleteObjectsRequest::setRequestPayer(RequestPayer value) { requestPayer_ = value; } std::string DeleteObjectsRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << (quiet_ ? "true":"false") << "" << std::endl; for (auto const &key : keyList_) { ss << " " << std::endl << ""; ss << " " << XmlEscape(key) << "" << std::endl; ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection DeleteObjectsRequest::specialParameters() const { ParameterCollection parameters; parameters["delete"] = ""; if (!encodingType_.empty()) { parameters["encoding-type"] = encodingType_; } return parameters; } HeaderCollection DeleteObjectsRequest::specialHeaders() const { HeaderCollection headers; if (requestPayer_ == RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(RequestPayer::Requester)); } return headers; } ================================================ FILE: sdk/src/model/DeleteObjectsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; DeleteObjectsResult::DeleteObjectsResult() : OssResult(), quiet_(false), keyList_() { } DeleteObjectsResult::DeleteObjectsResult(const std::string& result) : DeleteObjectsResult() { *this = result; } DeleteObjectsResult::DeleteObjectsResult(const std::shared_ptr& result) : DeleteObjectsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } DeleteObjectsResult& DeleteObjectsResult::operator =(const std::string& result) { if (result.empty()) { quiet_ = true; parseDone_ = true; return *this; } XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("DeleteResult", root->Name(), 12)) { XMLElement *node; std::string encodeType; node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodeType = node->GetText(); bool useUrlDecode = !ToLower(encodeType.c_str()).compare(0, 3, "url", 3); //Deleted node = root->FirstChildElement("Deleted"); for (; node; node = node->NextSiblingElement("Deleted")) { XMLElement *sub_node; sub_node = node->FirstChildElement("Key"); if (sub_node && sub_node->GetText()) keyList_.push_back(useUrlDecode?UrlDecode(sub_node->GetText()):sub_node->GetText()); } } parseDone_ = true; } return *this; } bool DeleteObjectsResult::Quiet() const { return quiet_; } const std::list& DeleteObjectsResult::keyList() const { return keyList_; } ================================================ FILE: sdk/src/model/ExtendBucketWormRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; ExtendBucketWormRequest::ExtendBucketWormRequest(const std::string &bucket, const std::string &wormId, uint32_t day) : OssBucketRequest(bucket), wormId_(wormId), day_(day) { } std::string ExtendBucketWormRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::to_string(day_) << "" << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection ExtendBucketWormRequest::specialParameters() const { ParameterCollection parameters; parameters["wormId"] = wormId_; parameters["wormExtend"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GeneratePresignedUrlRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include #include using namespace AlibabaCloud::OSS; GeneratePresignedUrlRequest::GeneratePresignedUrlRequest(const std::string &bucket, const std::string &key) : GeneratePresignedUrlRequest(bucket, key, Http::Method::Get) { } GeneratePresignedUrlRequest::GeneratePresignedUrlRequest(const std::string &bucket, const std::string &key, Http::Method method): bucket_(bucket), key_(key), method_(method), unencodedSlash_(false) { //defalt 15 min expires_ = (int64_t)(std::time(nullptr) + 15*60); } void GeneratePresignedUrlRequest::setBucket(const std::string &bucket) { bucket_ = bucket; } void GeneratePresignedUrlRequest::setKey(const std::string &key) { key_ = key; } void GeneratePresignedUrlRequest::setContentType(const std::string &value) { metaData_.HttpMetaData()[Http::CONTENT_TYPE] = value; } void GeneratePresignedUrlRequest::setContentMd5(const std::string &value) { metaData_.HttpMetaData()[Http::CONTENT_MD5] = value; } void GeneratePresignedUrlRequest::setExpires(int64_t unixTime) { expires_ = unixTime; } void GeneratePresignedUrlRequest::setProcess(const std::string &value) { parameters_["x-oss-process"] = value; } void GeneratePresignedUrlRequest::setTrafficLimit(uint64_t value) { parameters_["x-oss-traffic-limit"] = std::to_string(value); } void GeneratePresignedUrlRequest::setVersionId(const std::string& versionId) { parameters_["versionId"] = versionId; } void GeneratePresignedUrlRequest::setRequestPayer(RequestPayer value) { if (value == RequestPayer::Requester) { parameters_["x-oss-request-payer"] = ToLower(ToRequestPayerName(value)); } } void GeneratePresignedUrlRequest::addResponseHeaders(RequestResponseHeader header, const std::string &value) { static const char *ResponseHeader[] = { "response-content-type", "response-content-language", "response-expires", "response-cache-control", "response-content-disposition", "response-content-encoding" }; parameters_[ResponseHeader[header - RequestResponseHeader::ContentType]] = value; } void GeneratePresignedUrlRequest::addParameter(const std::string&key, const std::string &value) { parameters_[key] = value; } MetaData &GeneratePresignedUrlRequest::UserMetaData() { return metaData_.UserMetaData(); } MetaData &GeneratePresignedUrlRequest::HttpMetaData() { return metaData_.HttpMetaData(); } void GeneratePresignedUrlRequest::setUnencodedSlash(bool value) { unencodedSlash_ = value; } void GeneratePresignedUrlRequest::addAdditionalSignHeader(const std::string&key) { additionalSignHeaders_.emplace(key); } ================================================ FILE: sdk/src/model/GenerateRTMPSignedUrlRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; GenerateRTMPSignedUrlRequest::GenerateRTMPSignedUrlRequest( const std::string& bucket, const std::string& channelName, const std::string& playlist, uint64_t expires): LiveChannelRequest(bucket, channelName), playList_(playlist), expires_(expires) { } ParameterCollection GenerateRTMPSignedUrlRequest::Parameters() const { ParameterCollection collection; if(!playList_.empty()) { collection["playlistName"] = playList_; } return collection; } void GenerateRTMPSignedUrlRequest::setPlayList(const std::string &playList) { playList_ = playList; } void GenerateRTMPSignedUrlRequest::setExpires(uint64_t expires) { expires_ = expires; } const std::string& GenerateRTMPSignedUrlRequest::PlayList() const { return playList_; } uint64_t GenerateRTMPSignedUrlRequest::Expires() const { return expires_; } ================================================ FILE: sdk/src/model/GetBucketAclRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketAclRequest::GetBucketAclRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketAclRequest::specialParameters() const { ParameterCollection parameters; parameters["acl"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketAclResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketAclResult::GetBucketAclResult() : OssResult() { } GetBucketAclResult::GetBucketAclResult(const std::string& result): GetBucketAclResult() { *this = result; } GetBucketAclResult::GetBucketAclResult(const std::shared_ptr& result): GetBucketAclResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketAclResult& GetBucketAclResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("AccessControlPolicy", root->Name(), 19)) { XMLElement *node; node = root->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } node = root->FirstChildElement("AccessControlList"); if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("Grant"); if (sub_node && sub_node->GetText()) acl_ = ToAclType(sub_node->GetText()); } owner_ = AlibabaCloud::OSS::Owner(owner_ID, owner_DisplayName); //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketCorsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketCorsRequest::GetBucketCorsRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketCorsRequest::specialParameters() const { ParameterCollection parameters; parameters["cors"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketCorsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketCorsResult::GetBucketCorsResult() : OssResult() { } GetBucketCorsResult::GetBucketCorsResult(const std::string& result): GetBucketCorsResult() { *this = result; } GetBucketCorsResult::GetBucketCorsResult(const std::shared_ptr& result): GetBucketCorsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketCorsResult& GetBucketCorsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("CORSConfiguration", root->Name(), 17)) { XMLElement *rule_node = root->FirstChildElement("CORSRule"); for (; rule_node; rule_node = rule_node->NextSiblingElement("CORSRule")) { XMLElement *node = rule_node->FirstChildElement(); CORSRule rule; for (; node; node = node->NextSiblingElement()) { if (!strncmp(node->Name(), "AllowedOrigin", 13)) if (node->GetText()) rule.addAllowedOrigin(node->GetText()); if (!strncmp(node->Name(), "AllowedMethod", 13)) if (node->GetText()) rule.addAllowedMethod(node->GetText()); if (!strncmp(node->Name(), "AllowedHeader", 13)) if (node->GetText()) rule.addAllowedHeader(node->GetText()); if (!strncmp(node->Name(), "ExposeHeader", 12)) if (node->GetText()) rule.addExposeHeader(node->GetText()); if (!strncmp(node->Name(), "MaxAgeSeconds", 13)) if (node->GetText()) rule.setMaxAgeSeconds(std::atoi(node->GetText())); } ruleList_.push_back(rule); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketEncryptionRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketEncryptionRequest::GetBucketEncryptionRequest(const std::string& bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketEncryptionRequest::specialParameters() const { ParameterCollection parameters; parameters["encryption"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketEncryptionResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketEncryptionResult::GetBucketEncryptionResult() : OssResult() { } GetBucketEncryptionResult::GetBucketEncryptionResult(const std::string& result) : GetBucketEncryptionResult() { *this = result; } GetBucketEncryptionResult::GetBucketEncryptionResult(const std::shared_ptr& result) : GetBucketEncryptionResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketEncryptionResult& GetBucketEncryptionResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("ServerSideEncryptionRule", root->Name(), 24)) { XMLElement* node; node = root->FirstChildElement("ApplyServerSideEncryptionByDefault"); if (node) { XMLElement* sub_node; sub_node = node->FirstChildElement("SSEAlgorithm"); if (sub_node && sub_node->GetText()) SSEAlgorithm_ = ToSSEAlgorithm(sub_node->GetText()); sub_node = node->FirstChildElement("KMSMasterKeyID"); if (sub_node && sub_node->GetText()) KMSMasterKeyID_ = sub_node->GetText(); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketInfoRequest::GetBucketInfoRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketInfoRequest::specialParameters() const { ParameterCollection parameters; parameters["bucketInfo"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketInfoResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketInfoResult::GetBucketInfoResult() : OssResult(), dataRedundancyType_(AlibabaCloud::OSS::DataRedundancyType::NotSet), sseAlgorithm_(AlibabaCloud::OSS::SSEAlgorithm::NotSet), versioningStatus_(AlibabaCloud::OSS::VersioningStatus::NotSet) { } GetBucketInfoResult::GetBucketInfoResult(const std::string& result): GetBucketInfoResult() { *this = result; } GetBucketInfoResult::GetBucketInfoResult(const std::shared_ptr& result): GetBucketInfoResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketInfoResult& GetBucketInfoResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("BucketInfo", root->Name(), 10)) { XMLElement *node; XMLElement *bucket_node; bucket_node = root->FirstChildElement("Bucket"); if (bucket_node) { node = bucket_node->FirstChildElement("CreationDate"); if (node && node->GetText()) creationDate_ = node->GetText(); node = bucket_node->FirstChildElement("ExtranetEndpoint"); if (node && node->GetText()) extranetEndpoint_ = node->GetText(); node = bucket_node->FirstChildElement("IntranetEndpoint"); if (node && node->GetText()) intranetEndpoint_ = node->GetText(); node = bucket_node->FirstChildElement("Location"); if (node && node->GetText()) location_ = node->GetText(); node = bucket_node->FirstChildElement("Name"); if (node && node->GetText()) name_ = node->GetText(); node = bucket_node->FirstChildElement("StorageClass"); if (node && node->GetText()) storageClass_ = ToStorageClassType(node->GetText()); node = bucket_node->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } owner_ = AlibabaCloud::OSS::Owner(owner_ID, owner_DisplayName); node = bucket_node->FirstChildElement("AccessControlList"); if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("Grant"); if (sub_node && sub_node->GetText()) acl_ = ToAclType(sub_node->GetText()); } node = bucket_node->FirstChildElement("DataRedundancyType"); if (node && node->GetText()) dataRedundancyType_ = ToDataRedundancyType(node->GetText()); node = bucket_node->FirstChildElement("Comment"); if (node && node->GetText()) comment_ = node->GetText(); node = bucket_node->FirstChildElement("ServerSideEncryptionRule"); if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("SSEAlgorithm"); if (sub_node && sub_node->GetText()) sseAlgorithm_ = ToSSEAlgorithm(sub_node->GetText()); sub_node = node->FirstChildElement("KMSMasterKeyID"); if (sub_node && sub_node->GetText()) kmsMasterKeyID_ = sub_node->GetText(); } node = bucket_node->FirstChildElement("Versioning"); if (node && node->GetText()) versioningStatus_ = ToVersioningStatusType(node->GetText()); } //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketInventoryConfigurationRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketInventoryConfigurationRequest::GetBucketInventoryConfigurationRequest(const std::string& bucket) : OssBucketRequest(bucket) { } GetBucketInventoryConfigurationRequest::GetBucketInventoryConfigurationRequest(const std::string& bucket, const std::string& id) : GetBucketInventoryConfigurationRequest(bucket) { id_ = id; } ParameterCollection GetBucketInventoryConfigurationRequest::specialParameters() const { ParameterCollection parameters; parameters["inventory"] = ""; parameters["inventoryId"] = id_; return parameters; } ================================================ FILE: sdk/src/model/GetBucketInventoryConfigurationResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketInventoryConfigurationResult::GetBucketInventoryConfigurationResult() : OssResult() { } GetBucketInventoryConfigurationResult::GetBucketInventoryConfigurationResult(const std::string& result) : GetBucketInventoryConfigurationResult() { *this = result; } GetBucketInventoryConfigurationResult::GetBucketInventoryConfigurationResult(const std::shared_ptr& result) : GetBucketInventoryConfigurationResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketInventoryConfigurationResult& GetBucketInventoryConfigurationResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("InventoryConfiguration", root->Name(), 22)) { XMLElement* node; node = root->FirstChildElement("Id"); if (node && node->GetText()) inventoryConfiguration_.setId(node->GetText()); node = root->FirstChildElement("IsEnabled"); if (node && node->GetText()) inventoryConfiguration_.setIsEnabled((std::strncmp(node->GetText(), "true", 4) ? false : true)); node = root->FirstChildElement("Filter"); if (node) { InventoryFilter filter; XMLElement* prefix_node = node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) filter.setPrefix(prefix_node->GetText()); inventoryConfiguration_.setFilter(filter); } node = root->FirstChildElement("Destination"); if (node) { XMLElement* next_node; next_node = node->FirstChildElement("OSSBucketDestination"); if (next_node) { XMLElement* sub_node; InventoryOSSBucketDestination dest; sub_node = next_node->FirstChildElement("Format"); if (sub_node && sub_node->GetText()) dest.setFormat(ToInventoryFormatType(sub_node->GetText())); sub_node = next_node->FirstChildElement("AccountId"); if (sub_node && sub_node->GetText()) dest.setAccountId(sub_node->GetText()); sub_node = next_node->FirstChildElement("RoleArn"); if (sub_node && sub_node->GetText()) dest.setRoleArn(sub_node->GetText()); sub_node = next_node->FirstChildElement("Bucket"); if (sub_node && sub_node->GetText()) dest.setBucket(ToInventoryBucketShortName(sub_node->GetText())); sub_node = next_node->FirstChildElement("Prefix"); if (sub_node && sub_node->GetText()) dest.setPrefix(sub_node->GetText()); sub_node = next_node->FirstChildElement("Encryption"); if (sub_node) { InventoryEncryption encryption; XMLElement* sse_node; sse_node = sub_node->FirstChildElement("SSE-KMS"); if (sse_node) { InventorySSEKMS ssekms; XMLElement* key_node; key_node = sse_node->FirstChildElement("KeyId"); if (key_node && key_node->GetText()) ssekms.setKeyId(key_node->GetText()); encryption.setSSEKMS(ssekms); } sse_node = sub_node->FirstChildElement("SSE-OSS"); if (sse_node) { encryption.setSSEOSS(InventorySSEOSS()); } dest.setEncryption(encryption); } inventoryConfiguration_.setDestination(InventoryDestination(dest)); } } node = root->FirstChildElement("Schedule"); if (node) { XMLElement* freq_node = node->FirstChildElement("Frequency"); if (freq_node && freq_node->GetText()) inventoryConfiguration_.setSchedule(ToInventoryFrequencyType(freq_node->GetText())); } node = root->FirstChildElement("IncludedObjectVersions"); if (node && node->GetText()) inventoryConfiguration_.setIncludedObjectVersions(ToInventoryIncludedObjectVersionsType(node->GetText())); node = root->FirstChildElement("OptionalFields"); if (node) { InventoryOptionalFields field; XMLElement* field_node = node->FirstChildElement("Field"); for (; field_node; field_node = field_node->NextSiblingElement()) { if (field_node->GetText()) field.push_back(ToInventoryOptionalFieldType(field_node->GetText())); } inventoryConfiguration_.setOptionalFields(field); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketLifecycleRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketLifecycleRequest::GetBucketLifecycleRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketLifecycleRequest::specialParameters() const { ParameterCollection parameters; parameters["lifecycle"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketLifecycleResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketLifecycleResult::GetBucketLifecycleResult() : OssResult() { } GetBucketLifecycleResult::GetBucketLifecycleResult(const std::string& result): GetBucketLifecycleResult() { *this = result; } GetBucketLifecycleResult::GetBucketLifecycleResult(const std::shared_ptr& result): GetBucketLifecycleResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketLifecycleResult& GetBucketLifecycleResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("LifecycleConfiguration", root->Name(), 22)) { XMLElement *rule_node = root->FirstChildElement("Rule"); for (; rule_node; rule_node = rule_node->NextSiblingElement("Rule")) { LifecycleRule rule; XMLElement *node; node = rule_node->FirstChildElement("ID"); if (node && node->GetText()) rule.setID(node->GetText()); node = rule_node->FirstChildElement("Prefix"); if (node && node->GetText()) rule.setPrefix(node->GetText()); node = rule_node->FirstChildElement("Status"); if (node && node->GetText()) rule.setStatus(ToRuleStatusType(node->GetText())); node = rule_node->FirstChildElement("Expiration"); if (node) { XMLElement *subNode; //Days subNode = node->FirstChildElement("Days"); if (subNode && subNode->GetText()) { rule.Expiration().setDays(std::stoi(subNode->GetText(), nullptr, 10)); } //CreatedBeforeDate subNode = node->FirstChildElement("CreatedBeforeDate"); if (subNode && subNode->GetText()) { rule.Expiration().setCreatedBeforeDate(subNode->GetText()); } //ExpiredObjectDeleteMarker subNode = node->FirstChildElement("ExpiredObjectDeleteMarker"); if (subNode && subNode->GetText()) { rule.setExpiredObjectDeleteMarker(!std::strncmp("true", subNode->GetText(), 4)); } } node = rule_node->FirstChildElement("Transition"); for (; node; node = node->NextSiblingElement("Transition")) { LifeCycleTransition transiton; XMLElement *subNode; //Days subNode = node->FirstChildElement("Days"); if (subNode && subNode->GetText()) { transiton.Expiration().setDays(std::stoi(subNode->GetText(), nullptr, 10)); } //CreatedBeforeDate subNode = node->FirstChildElement("CreatedBeforeDate"); if (subNode && subNode->GetText()) { transiton.Expiration().setCreatedBeforeDate(subNode->GetText()); } //StorageClass subNode = node->FirstChildElement("StorageClass"); if (subNode && subNode->GetText()) { transiton.setStorageClass(ToStorageClassType(subNode->GetText())); } rule.addTransition(transiton); } node = rule_node->FirstChildElement("AbortMultipartUpload"); if (node) { XMLElement *subNode; //Days subNode = node->FirstChildElement("Days"); if (subNode && subNode->GetText()) { rule.AbortMultipartUpload().setDays(std::stoi(subNode->GetText(), nullptr, 10)); } //CreatedBeforeDate subNode = node->FirstChildElement("CreatedBeforeDate"); if (subNode && subNode->GetText()) { rule.AbortMultipartUpload().setCreatedBeforeDate(subNode->GetText()); } } node = rule_node->FirstChildElement("Tag"); for (; node; node = node->NextSiblingElement("Tag")) { Tag tag; XMLElement *subNode; //Key subNode = node->FirstChildElement("Key"); if (subNode && subNode->GetText()) { tag.setKey(subNode->GetText()); } //Value subNode = node->FirstChildElement("Value"); if (subNode && subNode->GetText()) { tag.setValue(subNode->GetText()); } rule.addTag(tag); } node = rule_node->FirstChildElement("NoncurrentVersionExpiration"); if (node) { XMLElement *subNode; //Days subNode = node->FirstChildElement("NoncurrentDays"); if (subNode && subNode->GetText()) { rule.NoncurrentVersionExpiration().setDays(std::stoi(subNode->GetText(), nullptr, 10)); } } node = rule_node->FirstChildElement("NoncurrentVersionTransition"); for (; node; node = node->NextSiblingElement("NoncurrentVersionTransition")) { LifeCycleTransition transiton; XMLElement *subNode; //Days subNode = node->FirstChildElement("NoncurrentDays"); if (subNode && subNode->GetText()) { transiton.Expiration().setDays(std::stoi(subNode->GetText(), nullptr, 10)); } //StorageClass subNode = node->FirstChildElement("StorageClass"); if (subNode && subNode->GetText()) { transiton.setStorageClass(ToStorageClassType(subNode->GetText())); } rule.addNoncurrentVersionTransition(transiton); } lifecycleRuleList_.emplace_back(std::move(rule)); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketLocationRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketLocationRequest::GetBucketLocationRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketLocationRequest::specialParameters() const { ParameterCollection parameters; parameters["location"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketLocationResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketLocationResult::GetBucketLocationResult() : OssResult() { } GetBucketLocationResult::GetBucketLocationResult(const std::string& result): GetBucketLocationResult() { *this = result; } GetBucketLocationResult::GetBucketLocationResult(const std::shared_ptr& result): GetBucketLocationResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketLocationResult& GetBucketLocationResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("LocationConstraint", root->Name(), 18)) { if (root->GetText()) location_ = root->GetText(); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketLoggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketLoggingRequest::GetBucketLoggingRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketLoggingRequest::specialParameters() const { ParameterCollection parameters; parameters["logging"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketLoggingResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketLoggingResult::GetBucketLoggingResult() : OssResult() { } GetBucketLoggingResult::GetBucketLoggingResult(const std::string& result): GetBucketLoggingResult() { *this = result; } GetBucketLoggingResult::GetBucketLoggingResult(const std::shared_ptr& result): GetBucketLoggingResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketLoggingResult& GetBucketLoggingResult::operator=(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("BucketLoggingStatus", root->Name(), 19)) { XMLElement *log_node; log_node = root->FirstChildElement("LoggingEnabled"); if (log_node) { XMLElement *node; node = log_node->FirstChildElement("TargetBucket"); if (node && node->GetText()) targetBucket_ = node->GetText(); node = log_node->FirstChildElement("TargetPrefix"); if (node && node->GetText()) targetPrefix_ = node->GetText(); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketPaymentRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketRequestPaymentRequest::GetBucketRequestPaymentRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketRequestPaymentRequest::specialParameters() const { ParameterCollection parameters; parameters["requestPayment"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketPaymentResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketPaymentResult::GetBucketPaymentResult() : OssResult() { } GetBucketPaymentResult::GetBucketPaymentResult(const std::string& result) : GetBucketPaymentResult() { *this = result; } GetBucketPaymentResult::GetBucketPaymentResult(const std::shared_ptr& result) : GetBucketPaymentResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketPaymentResult& GetBucketPaymentResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("RequestPaymentConfiguration", root->Name(), 27)) { XMLElement* node; node = root->FirstChildElement("Payer"); if (node && node->GetText()) payer_ = ToRequestPayer(node->GetText()); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketPolicyRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketPolicyRequest::GetBucketPolicyRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketPolicyRequest::specialParameters() const { ParameterCollection parameters; parameters["policy"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketPolicyResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketPolicyResult::GetBucketPolicyResult() : OssResult() { } GetBucketPolicyResult::GetBucketPolicyResult(const std::string& result): GetBucketPolicyResult() { *this = result; } GetBucketPolicyResult::GetBucketPolicyResult(const std::shared_ptr& result): GetBucketPolicyResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketPolicyResult& GetBucketPolicyResult::operator =(const std::string& result) { policy_ = result; parseDone_ = true; return *this; } ================================================ FILE: sdk/src/model/GetBucketQosInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketQosInfoRequest::GetBucketQosInfoRequest(const std::string& bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketQosInfoRequest::specialParameters() const { ParameterCollection parameters; parameters["qosInfo"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketQosInfoResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketQosInfoResult::GetBucketQosInfoResult() : OssResult() { } GetBucketQosInfoResult::GetBucketQosInfoResult(const std::string& result) : GetBucketQosInfoResult() { *this = result; } GetBucketQosInfoResult::GetBucketQosInfoResult(const std::shared_ptr& result) : GetBucketQosInfoResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketQosInfoResult& GetBucketQosInfoResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("QoSConfiguration", root->Name(), 16)) { XMLElement* node; node = root->FirstChildElement("TotalUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setTotalUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setIntranetUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setExtranetUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("TotalDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setTotalDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setIntranetDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setExtranetDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("TotalQps"); if (node && node->GetText()) { qosInfo_.setTotalQps(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetQps"); if (node && node->GetText()) { qosInfo_.setIntranetQps(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetQps"); if (node && node->GetText()) { qosInfo_.setExtranetQps(std::strtoll(node->GetText(), nullptr, 10)); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketRefererRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketRefererRequest::GetBucketRefererRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketRefererRequest::specialParameters() const { ParameterCollection parameters; parameters["referer"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketRefererResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketRefererResult::GetBucketRefererResult() : OssResult() { } GetBucketRefererResult::GetBucketRefererResult(const std::string& result): GetBucketRefererResult() { *this = result; } GetBucketRefererResult::GetBucketRefererResult(const std::shared_ptr& result): GetBucketRefererResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketRefererResult& GetBucketRefererResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("RefererConfiguration", root->Name(), 20)) { XMLElement *node; node = root->FirstChildElement("AllowEmptyReferer"); if (node && node->GetText()) allowEmptyReferer_ = (std::strncmp(node->GetText(), "true", 4)? false:true); node = root->FirstChildElement("RefererList"); if (node) { XMLElement *referer_node = node->FirstChildElement("Referer"); for (; referer_node; referer_node = referer_node->NextSiblingElement()) { if (referer_node->GetText()) refererList_.push_back(referer_node->GetText()); } } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketStatRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketStatRequest::GetBucketStatRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketStatRequest::specialParameters() const { ParameterCollection parameters; parameters["stat"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketStatResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketStatResult::GetBucketStatResult() : OssResult(), storage_(0), objectCount_(0), multipartUploadCount_(0), liveChannelCount_(0), lastModifiedTime_(0), standardStorage_(0), standardObjectCount_(0), infrequentAccessStorage_(0), infrequentAccessObjectCount_(0), archiveStorage_(0), archiveObjectCount_(0), coldArchiveStorage_(0), coldArchiveObjectCount_(0) { } GetBucketStatResult::GetBucketStatResult(const std::string& result): GetBucketStatResult() { *this = result; } GetBucketStatResult::GetBucketStatResult(const std::shared_ptr& result): GetBucketStatResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketStatResult& GetBucketStatResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("BucketStat", root->Name(), 10)) { XMLElement *node; node = root->FirstChildElement("Storage"); if (node && node->GetText()) storage_ = atoll(node->GetText()); node = root->FirstChildElement("ObjectCount"); if (node && node->GetText()) objectCount_ = atoll(node->GetText()); node = root->FirstChildElement("MultipartUploadCount"); if (node && node->GetText()) multipartUploadCount_ = atoll(node->GetText()); node = root->FirstChildElement("LiveChannelCount"); if (node && node->GetText()) liveChannelCount_ = atoll(node->GetText()); node = root->FirstChildElement("LastModifiedTime"); if (node && node->GetText()) lastModifiedTime_ = atoll(node->GetText()); node = root->FirstChildElement("StandardStorage"); if (node && node->GetText()) standardStorage_ = atoll(node->GetText()); node = root->FirstChildElement("StandardObjectCount"); if (node && node->GetText()) standardObjectCount_ = atoll(node->GetText()); node = root->FirstChildElement("InfrequentAccessStorage"); if (node && node->GetText()) infrequentAccessStorage_ = atoll(node->GetText()); node = root->FirstChildElement("InfrequentAccessObjectCount"); if (node && node->GetText()) infrequentAccessObjectCount_ = atoll(node->GetText()); node = root->FirstChildElement("ArchiveStorage"); if (node && node->GetText()) archiveStorage_ = atoll(node->GetText()); node = root->FirstChildElement("ArchiveObjectCount"); if (node && node->GetText()) archiveObjectCount_ = atoll(node->GetText()); node = root->FirstChildElement("ColdArchiveStorage"); if (node && node->GetText()) coldArchiveStorage_ = atoll(node->GetText()); node = root->FirstChildElement("ColdArchiveObjectCount"); if (node && node->GetText()) coldArchiveObjectCount_ = atoll(node->GetText()); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketStorageCapacityRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketStorageCapacityRequest::GetBucketStorageCapacityRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketStorageCapacityRequest::specialParameters() const { ParameterCollection parameters; parameters["qos"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketStorageCapacityResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketStorageCapacityResult::GetBucketStorageCapacityResult() : OssResult(), storageCapacity_(-1) { } GetBucketStorageCapacityResult::GetBucketStorageCapacityResult(const std::string& result): GetBucketStorageCapacityResult() { *this = result; } GetBucketStorageCapacityResult::GetBucketStorageCapacityResult(const std::shared_ptr& result): GetBucketStorageCapacityResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketStorageCapacityResult& GetBucketStorageCapacityResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("BucketUserQos", root->Name(), 13)) { XMLElement *node = root->FirstChildElement("StorageCapacity"); if (node && node->GetText()) storageCapacity_ = std::atoll(node->GetText()); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketTaggingRequest::GetBucketTaggingRequest(const std::string& bucket) :OssBucketRequest(bucket) { } ParameterCollection GetBucketTaggingRequest::specialParameters() const { ParameterCollection paramters; paramters["tagging"] = ""; return paramters; } ================================================ FILE: sdk/src/model/GetBucketTaggingResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketTaggingResult::GetBucketTaggingResult() : OssResult() { } GetBucketTaggingResult::GetBucketTaggingResult(const std::string& result) : GetBucketTaggingResult() { *this = result; } GetBucketTaggingResult::GetBucketTaggingResult(const std::shared_ptr& result) : GetBucketTaggingResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketTaggingResult& GetBucketTaggingResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("Tagging", root->Name(), 7)) { XMLElement* tagSet_node = root->FirstChildElement("TagSet"); if (tagSet_node) { XMLElement* tag_node = tagSet_node->FirstChildElement("Tag"); for (; tag_node; tag_node = tag_node->NextSiblingElement("Tag")) { XMLElement* subNode; Tag tag; //Key subNode = tag_node->FirstChildElement("Key"); if (subNode && subNode->GetText()) { tag.setKey(subNode->GetText()); } //Value subNode = tag_node->FirstChildElement("Value"); if (subNode && subNode->GetText()) { tag.setValue(subNode->GetText()); } tagging_.addTag(tag); } } //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketVersioningRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketVersioningRequest::GetBucketVersioningRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketVersioningRequest::specialParameters() const { ParameterCollection parameters; parameters["versioning"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketVersioningResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketVersioningResult::GetBucketVersioningResult() : OssResult(), status_(VersioningStatus::NotSet) { } GetBucketVersioningResult::GetBucketVersioningResult(const std::string& result): GetBucketVersioningResult() { *this = result; } GetBucketVersioningResult::GetBucketVersioningResult(const std::shared_ptr& result): GetBucketVersioningResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketVersioningResult& GetBucketVersioningResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("VersioningConfiguration", root->Name(), 23)) { XMLElement *node; node = root->FirstChildElement("Status"); if (node && node->GetText()) { status_ = ToVersioningStatusType(node->GetText()); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketWebsiteRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketWebsiteRequest::GetBucketWebsiteRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketWebsiteRequest::specialParameters() const { ParameterCollection parameters; parameters["website"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketWebsiteResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketWebsiteResult::GetBucketWebsiteResult() : OssResult() { } GetBucketWebsiteResult::GetBucketWebsiteResult(const std::string& result): GetBucketWebsiteResult() { *this = result; } GetBucketWebsiteResult::GetBucketWebsiteResult(const std::shared_ptr& result): GetBucketWebsiteResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketWebsiteResult& GetBucketWebsiteResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("WebsiteConfiguration", root->Name(), 20)) { XMLElement *node; node = root->FirstChildElement("IndexDocument"); if (node) node = node->FirstChildElement("Suffix"); if (node && node->GetText()) indexDocument_ = node->GetText(); node = root->FirstChildElement("ErrorDocument"); if (node) node = node->FirstChildElement("Key"); if (node && node->GetText()) errorDocument_ = node->GetText(); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetBucketWormRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetBucketWormRequest::GetBucketWormRequest(const std::string &bucket) : OssBucketRequest(bucket) { } ParameterCollection GetBucketWormRequest::specialParameters() const { ParameterCollection parameters; parameters["worm"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetBucketWormResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetBucketWormResult::GetBucketWormResult() : OssResult(), day_(0) { } GetBucketWormResult::GetBucketWormResult(const std::string& result): GetBucketWormResult() { *this = result; } GetBucketWormResult::GetBucketWormResult(const std::shared_ptr& result): GetBucketWormResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetBucketWormResult& GetBucketWormResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("WormConfiguration", root->Name(), 17)) { XMLElement *node; node = root->FirstChildElement("WormId"); if (node && node->GetText()) wormId_ = node->GetText(); node = root->FirstChildElement("CreationDate"); if (node && node->GetText()) creationDate_ = node->GetText(); node = root->FirstChildElement("State"); if (node && node->GetText()) state_ = node->GetText(); node = root->FirstChildElement("RetentionPeriodInDays"); if (node && node->GetText()) day_ = (uint32_t)std::strtoul(node->GetText(), nullptr, 10); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetLiveChannelHistoryRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; GetLiveChannelHistoryRequest::GetLiveChannelHistoryRequest(const std::string& bucket, const std::string& channelName): LiveChannelRequest(bucket, channelName) { } ParameterCollection GetLiveChannelHistoryRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; collection["comp"] = "history"; return collection; } int GetLiveChannelHistoryRequest::validate() const { return LiveChannelRequest::validate(); } ================================================ FILE: sdk/src/model/GetLiveChannelHistoryResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetLiveChannelHistoryResult::GetLiveChannelHistoryResult() : OssResult() { } GetLiveChannelHistoryResult::GetLiveChannelHistoryResult(const std::string& result): GetLiveChannelHistoryResult() { *this = result; } GetLiveChannelHistoryResult::GetLiveChannelHistoryResult(const std::shared_ptr& result): GetLiveChannelHistoryResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetLiveChannelHistoryResult& GetLiveChannelHistoryResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("LiveChannelHistory", root->Name(), 18)) { XMLElement *node; XMLElement *recordNode = root->FirstChildElement("LiveRecord"); for(; recordNode; recordNode = recordNode->NextSiblingElement("LiveRecord")) { LiveRecord rec; node = recordNode->FirstChildElement("StartTime"); if(node && node->GetText()) { rec.startTime = node->GetText(); } node = recordNode->FirstChildElement("EndTime"); if(node && node->GetText()) { rec.endTime = node->GetText(); } node = recordNode->FirstChildElement("RemoteAddr"); if(node && node->GetText()) { rec.remoteAddr = node->GetText(); } recordList_.push_back(rec); } parseDone_ = true; } } return *this; } const LiveRecordVec& GetLiveChannelHistoryResult::LiveRecordList() const { return recordList_; } ================================================ FILE: sdk/src/model/GetLiveChannelInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; GetLiveChannelInfoRequest::GetLiveChannelInfoRequest(const std::string& bucket, const std::string& channelName): LiveChannelRequest(bucket, channelName) { } ParameterCollection GetLiveChannelInfoRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; return collection; } int GetLiveChannelInfoRequest::validate() const { return LiveChannelRequest::validate(); } ================================================ FILE: sdk/src/model/GetLiveChannelInfoResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetLiveChannelInfoResult::GetLiveChannelInfoResult() : OssResult(), fragDuration_(0), fragCount_(0) { } GetLiveChannelInfoResult::GetLiveChannelInfoResult(const std::string& result): GetLiveChannelInfoResult() { *this = result; } GetLiveChannelInfoResult::GetLiveChannelInfoResult(const std::shared_ptr& result): GetLiveChannelInfoResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetLiveChannelInfoResult& GetLiveChannelInfoResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("LiveChannelConfiguration", root->Name(), 24)) { XMLElement *node; node = root->FirstChildElement("Description"); if(node && node->GetText()) { description_ = node->GetText(); } node = root->FirstChildElement("Status"); if(node && node->GetText()) { status_ = ToLiveChannelStatusType(node->GetText()); } XMLElement *targetNode = root->FirstChildElement("Target"); if(targetNode) { node = targetNode->FirstChildElement("Type"); if(node && node->GetText()) { channelType_ = node->GetText(); } node = targetNode->FirstChildElement("FragDuration"); if(node && node->GetText()) { fragDuration_ = std::strtoull(node->GetText(), nullptr, 10); } node = targetNode->FirstChildElement("FragCount"); if(node && node->GetText()) { fragCount_ = std::strtoull(node->GetText(), nullptr, 10); } node = targetNode->FirstChildElement("PlaylistName"); if(node && node->GetText()) { playListName_ = node->GetText(); } } parseDone_ = true; } } return *this; } const std::string& GetLiveChannelInfoResult::Description() const { return description_; } LiveChannelStatus GetLiveChannelInfoResult::Status() const { return status_; } const std::string& GetLiveChannelInfoResult::Type() const { return channelType_; } uint64_t GetLiveChannelInfoResult::FragDuration() const { return fragDuration_; } uint64_t GetLiveChannelInfoResult::FragCount() const { return fragCount_; } const std::string& GetLiveChannelInfoResult::PlaylistName() const { return playListName_; } ================================================ FILE: sdk/src/model/GetLiveChannelStatRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; GetLiveChannelStatRequest::GetLiveChannelStatRequest(const std::string& bucket, const std::string& channelName): LiveChannelRequest(bucket, channelName) { } ParameterCollection GetLiveChannelStatRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; collection["comp"] = "stat"; return collection; } int GetLiveChannelStatRequest::validate() const { return LiveChannelRequest::validate(); } ================================================ FILE: sdk/src/model/GetLiveChannelStatResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetLiveChannelStatResult::GetLiveChannelStatResult() : OssResult(), width_(0), height_(0), frameRate_(0), videoBandWidth_(0), sampleRate_(0), audioBandWidth_(0) { } GetLiveChannelStatResult::GetLiveChannelStatResult(const std::string& result): GetLiveChannelStatResult() { *this = result; } GetLiveChannelStatResult::GetLiveChannelStatResult(const std::shared_ptr& result): GetLiveChannelStatResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetLiveChannelStatResult& GetLiveChannelStatResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("LiveChannelStat", root->Name(), 15)) { XMLElement *node; node = root->FirstChildElement("Status"); if(node && node->GetText()) { status_ = ToLiveChannelStatusType(node->GetText()); } node = root->FirstChildElement("ConnectedTime"); if(node && node->GetText()) { connectedTime_ = node->GetText(); } node = root->FirstChildElement("RemoteAddr"); if(node && node->GetText()) { remoteAddr_ = node->GetText(); } XMLElement *videoRoot = root->FirstChildElement("Video"); if(videoRoot) { node = videoRoot->FirstChildElement("Width"); if(node && node->GetText()) { width_ = std::strtoul(node->GetText(), nullptr, 10); } node = videoRoot->FirstChildElement("Height"); if(node && node->GetText()) { height_ = std::strtoul(node->GetText(), nullptr, 10); } node = videoRoot->FirstChildElement("FrameRate"); if(node && node->GetText()) { frameRate_ = std::strtoull(node->GetText(), nullptr, 10); } node = videoRoot->FirstChildElement("Bandwidth"); if(node && node->GetText()) { videoBandWidth_ = std::strtoull(node->GetText(), nullptr, 10); } node = videoRoot->FirstChildElement("Codec"); if(node && node->GetText()) { videoCodec_ = node->GetText(); } } XMLElement *audioRoot = root->FirstChildElement("Audio"); if(audioRoot) { node = audioRoot->FirstChildElement("Bandwidth"); if(node && node->GetText()) { audioBandWidth_ = std::strtoull(node->GetText(), nullptr, 10); } node = audioRoot->FirstChildElement("SampleRate"); if(node && node->GetText()) { sampleRate_ = std::strtoull(node->GetText(), nullptr, 10); } node = audioRoot->FirstChildElement("Codec"); if(node && node->GetText()) { audioCodec_ = node->GetText(); } } parseDone_ = true; } } return *this; } LiveChannelStatus GetLiveChannelStatResult::Status() const { return status_; } const std::string& GetLiveChannelStatResult::ConnectedTime() const { return connectedTime_; } const std::string& GetLiveChannelStatResult::RemoteAddr() const { return remoteAddr_; } uint32_t GetLiveChannelStatResult::Width() const { return width_; } uint32_t GetLiveChannelStatResult::Height() const { return height_; } uint64_t GetLiveChannelStatResult::FrameRate() const { return frameRate_; } uint64_t GetLiveChannelStatResult::VideoBandWidth() const { return videoBandWidth_; } const std::string& GetLiveChannelStatResult::VideoCodec() const { return videoCodec_; } uint64_t GetLiveChannelStatResult::SampleRate() const { return sampleRate_; } uint64_t GetLiveChannelStatResult::AudioBandWidth() const { return audioBandWidth_; } const std::string& GetLiveChannelStatResult::AudioCodec() const { return audioCodec_; } ================================================ FILE: sdk/src/model/GetObjectAclRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; GetObjectAclRequest::GetObjectAclRequest(const std::string &bucket, const std::string &key) :OssObjectRequest(bucket,key) { } ParameterCollection GetObjectAclRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["acl"]=""; return parameters; } ================================================ FILE: sdk/src/model/GetObjectAclResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetObjectAclResult::GetObjectAclResult() : OssObjectResult() { } GetObjectAclResult::GetObjectAclResult(const std::string& result): GetObjectAclResult() { *this = result; } GetObjectAclResult::GetObjectAclResult(const std::shared_ptr& result): GetObjectAclResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetObjectAclResult::GetObjectAclResult(const HeaderCollection& headers, const std::shared_ptr& result) : OssObjectResult(headers) { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetObjectAclResult& GetObjectAclResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("AccessControlPolicy", root->Name(), 19)) { XMLElement *node; node = root->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } node = root->FirstChildElement("AccessControlList"); if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("Grant"); if (sub_node && sub_node->GetText()) acl_ = ToAclType(sub_node->GetText()); } owner_ = AlibabaCloud::OSS::Owner(owner_ID, owner_DisplayName); //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetObjectByUrlRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include using namespace AlibabaCloud::OSS; GetObjectByUrlRequest::GetObjectByUrlRequest(const std::string &url): GetObjectByUrlRequest(url, ObjectMetaData()) { } GetObjectByUrlRequest::GetObjectByUrlRequest(const std::string &url, const ObjectMetaData &metaData) : ServiceRequest(), metaData_(metaData) { setPath(url); setFlags(Flags()|REQUEST_FLAG_PARAM_IN_PATH|REQUEST_FLAG_CHECK_CRC64); } HeaderCollection GetObjectByUrlRequest::Headers() const { auto headers = metaData_.toHeaderCollection(); if (!metaData_.hasHeader(Http::DATE)) { headers[Http::DATE] = ""; } return headers; } ParameterCollection GetObjectByUrlRequest::Parameters() const { return ParameterCollection(); } std::shared_ptr GetObjectByUrlRequest::Body() const { return nullptr; } ================================================ FILE: sdk/src/model/GetObjectMetaRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; ParameterCollection GetObjectMetaRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["objectMeta"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include #include using namespace AlibabaCloud::OSS; GetObjectRequest::GetObjectRequest(const std::string &bucket, const std::string &key): GetObjectRequest(bucket, key, "") { } GetObjectRequest::GetObjectRequest(const std::string &bucket, const std::string &key, const std::string &process) : OssObjectRequest(bucket, key), rangeIsSet_(false), process_(process), trafficLimit_(0), rangeIsStandardMode_(false), userAgent_() { setFlags(Flags() | REQUEST_FLAG_CHECK_CRC64); } GetObjectRequest::GetObjectRequest(const std::string& bucket, const std::string& key, const std::string &modifiedSince, const std::string &unmodifiedSince, const std::vector &matchingETags, const std::vector &nonmatchingETags, const std::map &responseHeaderParameters) : OssObjectRequest(bucket, key), rangeIsSet_(false), modifiedSince_(modifiedSince), unmodifiedSince_(unmodifiedSince), matchingETags_(matchingETags), nonmatchingETags_(nonmatchingETags), process_(""), responseHeaderParameters_(responseHeaderParameters), trafficLimit_(0), rangeIsStandardMode_(false), userAgent_() { } void GetObjectRequest::setRange(int64_t start, int64_t end) { range_[0] = start; range_[1] = end; rangeIsSet_ = true; rangeIsStandardMode_ = false; } void GetObjectRequest::setRange(int64_t start, int64_t end, bool standard) { range_[0] = start; range_[1] = end; rangeIsSet_ = true; rangeIsStandardMode_ = standard; } void GetObjectRequest::setModifiedSinceConstraint(const std::string &gmt) { modifiedSince_ = gmt; } void GetObjectRequest::setUnmodifiedSinceConstraint(const std::string &gmt) { unmodifiedSince_ = gmt; } void GetObjectRequest::setMatchingETagConstraints(const std::vector &match) { matchingETags_ = match; } void GetObjectRequest::addMatchingETagConstraint(const std::string &match) { matchingETags_.push_back(match); } void GetObjectRequest::setNonmatchingETagConstraints(const std::vector &match) { nonmatchingETags_ = match; } void GetObjectRequest::addNonmatchingETagConstraint(const std::string &match) { nonmatchingETags_.push_back(match); } void GetObjectRequest::setProcess(const std::string &process) { process_ = process; } void GetObjectRequest::addResponseHeaders(RequestResponseHeader header, const std::string &value) { static const char *ResponseHeader[] = { "response-content-type", "response-content-language", "response-expires", "response-cache-control", "response-content-disposition", "response-content-encoding"}; responseHeaderParameters_[ResponseHeader[header - RequestResponseHeader::ContentType]] = value; } void GetObjectRequest::setTrafficLimit(uint64_t value) { trafficLimit_ = value; } void GetObjectRequest::setUserAgent(const std::string& ua) { userAgent_ = ua; } std::pair GetObjectRequest::Range() const { int64_t begin = -1; int64_t end = -1; if (rangeIsSet_) { begin = range_[0]; end = range_[1]; } return std::pair(begin, end); } int GetObjectRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret != 0) return ret; if (rangeIsSet_ && (range_[0] < 0 || range_[1] < -1 || (range_[1] > -1 && range_[1] < range_[0]) )) return ARG_ERROR_OBJECT_RANGE_INVALID; return 0; } HeaderCollection GetObjectRequest::specialHeaders() const { auto headers = OssObjectRequest::specialHeaders(); if (rangeIsSet_) { std::stringstream ss; ss << "bytes=" << std::to_string(range_[0]) << "-"; if (range_[1] != -1) ss << std::to_string(range_[1]); headers[Http::RANGE] = ss.str(); if (rangeIsStandardMode_) { headers["x-oss-range-behavior"] = "standard"; } } if (!modifiedSince_.empty()) { headers["If-Modified-Since"] = modifiedSince_; } if (!unmodifiedSince_.empty()) { headers["If-Unmodified-Since"] = unmodifiedSince_; } if (matchingETags_.size() > 0) { std::stringstream ss; bool first = true; for (auto const& str : matchingETags_) { if (!first) { ss << ","; } ss << str; first = false; } headers["If-Match"] = ss.str(); } if (nonmatchingETags_.size() > 0) { std::stringstream ss; bool first = true; for (auto const& str : nonmatchingETags_) { if (!first) { ss << ","; } ss << str; first = false; } headers["If-None-Match"] = ss.str(); } if (trafficLimit_ != 0) { headers["x-oss-traffic-limit"] = std::to_string(trafficLimit_); } if (!userAgent_.empty()) { headers[Http::USER_AGENT] = userAgent_; } return headers; } ParameterCollection GetObjectRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); for (auto const& param : responseHeaderParameters_) { parameters[param.first] = param.second; } if (!process_.empty()) { parameters["x-oss-process"] = process_; } return parameters; } ================================================ FILE: sdk/src/model/GetObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; GetObjectResult::GetObjectResult() : OssObjectResult() { } GetObjectResult::GetObjectResult( const std::string &bucket, const std::string &key, const std::shared_ptr &content, const HeaderCollection &headers): OssObjectResult(headers), bucket_(bucket), key_(key), content_(content) { metaData_ = headers; std::string etag = metaData_.HttpMetaData()[Http::ETAG]; metaData_.HttpMetaData()[Http::ETAG] = TrimQuotes(etag.c_str()); } GetObjectResult::GetObjectResult( const std::string& bucket, const std::string& key, const ObjectMetaData& metaData) : bucket_(bucket), key_(key) { metaData_ = metaData; requestId_ = metaData_.HttpMetaData()["x-oss-request-id"]; versionId_ = metaData_.HttpMetaData()["x-oss-version-id"]; } ================================================ FILE: sdk/src/model/GetObjectTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetObjectTaggingRequest::GetObjectTaggingRequest(const std::string &bucket, const std::string &key) :OssObjectRequest(bucket, key) { } ParameterCollection GetObjectTaggingRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["tagging"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetObjectTaggingResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetObjectTaggingResult::GetObjectTaggingResult() : OssObjectResult() { } GetObjectTaggingResult::GetObjectTaggingResult(const std::string& result): GetObjectTaggingResult() { *this = result; } GetObjectTaggingResult::GetObjectTaggingResult(const std::shared_ptr& result): GetObjectTaggingResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetObjectTaggingResult::GetObjectTaggingResult(const HeaderCollection& headers, const std::shared_ptr& result): OssObjectResult(headers) { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetObjectTaggingResult& GetObjectTaggingResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("Tagging", root->Name(), 7)) { XMLElement* tagSet_node = root->FirstChildElement("TagSet"); if (tagSet_node) { XMLElement *tag_node = tagSet_node->FirstChildElement("Tag"); for (; tag_node; tag_node = tag_node->NextSiblingElement("Tag")) { XMLElement *subNode; Tag tag; //Key subNode = tag_node->FirstChildElement("Key"); if (subNode && subNode->GetText()) { tag.setKey(subNode->GetText()); } //Value subNode = tag_node->FirstChildElement("Value"); if (subNode && subNode->GetText()) { tag.setValue(subNode->GetText()); } tagging_.addTag(tag); } } //TODO check the result and the parse flag; parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetSymlinkRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetSymlinkRequest::GetSymlinkRequest(const std::string &bucket, const std::string &key): OssObjectRequest(bucket, key) { } ParameterCollection GetSymlinkRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["symlink"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetSymlinkResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; GetSymlinkResult::GetSymlinkResult(): OssObjectResult() { } GetSymlinkResult::GetSymlinkResult(const std::string& symlink, const std::string& etag) : OssObjectResult(), symlink_(symlink), etag_(etag) { } GetSymlinkResult::GetSymlinkResult(const HeaderCollection& headers): OssObjectResult(headers) { if (headers.find("x-oss-symlink-target") != headers.end()) { symlink_ = headers.at("x-oss-symlink-target"); } if (headers.find(Http::ETAG) != headers.end()) { etag_ = TrimQuotes(headers.at(Http::ETAG).c_str()); } } ================================================ FILE: sdk/src/model/GetUserQosInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; GetUserQosInfoRequest::GetUserQosInfoRequest() : OssRequest() { } ParameterCollection GetUserQosInfoRequest::specialParameters() const { ParameterCollection parameters; parameters["qosInfo"] = ""; return parameters; } ================================================ FILE: sdk/src/model/GetUserQosInfoResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; GetUserQosInfoResult::GetUserQosInfoResult() : OssResult() { } GetUserQosInfoResult::GetUserQosInfoResult(const std::string& result) : GetUserQosInfoResult() { *this = result; } GetUserQosInfoResult::GetUserQosInfoResult(const std::shared_ptr& result) : GetUserQosInfoResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetUserQosInfoResult& GetUserQosInfoResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("QoSConfiguration", root->Name(), 16)) { XMLElement* node; node = root->FirstChildElement("Region"); if (node && node->GetText()) { region_ = node->GetText(); } node = root->FirstChildElement("TotalUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setTotalUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setIntranetUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetUploadBandwidth"); if (node && node->GetText()) { qosInfo_.setExtranetUploadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("TotalDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setTotalDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setIntranetDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetDownloadBandwidth"); if (node && node->GetText()) { qosInfo_.setExtranetDownloadBandwidth(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("TotalQps"); if (node && node->GetText()) { qosInfo_.setTotalQps(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("IntranetQps"); if (node && node->GetText()) { qosInfo_.setIntranetQps(std::strtoll(node->GetText(), nullptr, 10)); } node = root->FirstChildElement("ExtranetQps"); if (node && node->GetText()) { qosInfo_.setExtranetQps(std::strtoll(node->GetText(), nullptr, 10)); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/GetVodPlaylistRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; GetVodPlaylistRequest::GetVodPlaylistRequest(const std::string& bucket, const std::string& channelName) :GetVodPlaylistRequest(bucket, channelName, 0, 0) { } GetVodPlaylistRequest::GetVodPlaylistRequest(const std::string& bucket, const std::string& channelName, uint64_t startTime, uint64_t endTime) :LiveChannelRequest(bucket, channelName), startTime_(startTime), endTime_(endTime) { } void GetVodPlaylistRequest::setStartTime(uint64_t startTime) { startTime_ = startTime; } void GetVodPlaylistRequest::setEndTime(uint64_t endTime) { endTime_ = endTime; } int GetVodPlaylistRequest::validate() const { int ret = LiveChannelRequest::validate(); if(ret) { return ret; } if(startTime_ == 0 || endTime_ == 0 || endTime_ < startTime_ || endTime_ > (startTime_ + SecondsOfDay)) { return ARG_ERROR_LIVECHANNEL_BAD_TIME_PARAM; } return 0; } ParameterCollection GetVodPlaylistRequest::specialParameters() const { ParameterCollection collection; collection["startTime"] = std::to_string(startTime_); collection["endTime"] = std::to_string(endTime_); collection["vod"] = ""; return collection; } ================================================ FILE: sdk/src/model/GetVodPlaylistResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; GetVodPlaylistResult::GetVodPlaylistResult(): OssResult() { } GetVodPlaylistResult::GetVodPlaylistResult(const std::string& result): GetVodPlaylistResult() { *this = result; } GetVodPlaylistResult::GetVodPlaylistResult(const std::shared_ptr& result): GetVodPlaylistResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } GetVodPlaylistResult& GetVodPlaylistResult::operator =(const std::string& result) { playListContent_ = result; parseDone_ = true; return *this; } const std::string& GetVodPlaylistResult::PlaylistContent() const { return playListContent_; } ================================================ FILE: sdk/src/model/InitiateBucketWormRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; InitiateBucketWormRequest::InitiateBucketWormRequest(const std::string &bucket, uint32_t day) : OssBucketRequest(bucket), day_(day) { } std::string InitiateBucketWormRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::to_string(day_) << "" << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection InitiateBucketWormRequest::specialParameters() const { ParameterCollection parameters; parameters["worm"] = ""; return parameters; } ================================================ FILE: sdk/src/model/InitiateBucketWormResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; InitiateBucketWormResult::InitiateBucketWormResult() : OssResult() { } InitiateBucketWormResult::InitiateBucketWormResult(const HeaderCollection& header) : OssResult(header) { if (header.find("x-oss-worm-id") != header.end()) { wormId_ = header.at("x-oss-worm-id"); } parseDone_ = true; } ================================================ FILE: sdk/src/model/InitiateMultipartUploadRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; InitiateMultipartUploadRequest::InitiateMultipartUploadRequest(const std::string &bucket, const std::string &key) : InitiateMultipartUploadRequest(bucket, key, ObjectMetaData()) { } InitiateMultipartUploadRequest::InitiateMultipartUploadRequest(const std::string &bucket, const std::string &key, const ObjectMetaData &metaData) : OssObjectRequest(bucket, key), metaData_(metaData), encodingTypeIsSet_(false), sequential_(false) { } void InitiateMultipartUploadRequest::setEncodingType(const std::string &encodingType) { encodingType_ = encodingType; encodingTypeIsSet_ = true; } void InitiateMultipartUploadRequest::setCacheControl(const std::string &value) { metaData_.addHeader(Http::CACHE_CONTROL, value); } void InitiateMultipartUploadRequest::setContentDisposition(const std::string &value) { metaData_.addHeader(Http::CONTENT_DISPOSITION, value); } void InitiateMultipartUploadRequest::setContentEncoding(const std::string &value) { metaData_.addHeader(Http::CONTENT_ENCODING, value); } void InitiateMultipartUploadRequest::setExpires(const std::string &value) { metaData_.addHeader(Http::EXPIRES, value); } void InitiateMultipartUploadRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } void InitiateMultipartUploadRequest::setSequential(bool value) { sequential_ = value; } ObjectMetaData &InitiateMultipartUploadRequest::MetaData() { return metaData_; } HeaderCollection InitiateMultipartUploadRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); if (headers.find(Http::CONTENT_TYPE) == headers.end()) { headers[Http::CONTENT_TYPE] = LookupMimeType(Key()); } auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } ParameterCollection InitiateMultipartUploadRequest::specialParameters() const { ParameterCollection parameters; parameters["uploads"] = ""; if (encodingTypeIsSet_) { parameters["encoding-type"] = encodingType_; } if (sequential_) { parameters["sequential"] = ""; } return parameters; } ================================================ FILE: sdk/src/model/InitiateMultipartUploadResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; InitiateMultipartUploadResult::InitiateMultipartUploadResult() : OssResult() { } InitiateMultipartUploadResult::InitiateMultipartUploadResult(const std::string& result): InitiateMultipartUploadResult() { *this = result; } InitiateMultipartUploadResult::InitiateMultipartUploadResult(const std::shared_ptr& result): InitiateMultipartUploadResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } InitiateMultipartUploadResult& InitiateMultipartUploadResult::operator =( const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("InitiateMultipartUploadResult", root->Name(), 29)) { XMLElement *node; node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodingType_ = node->GetText(); //Detect encode type bool useUrlDecode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); node = root->FirstChildElement("Bucket"); if (node && node->GetText()) bucket_ = node->GetText(); node = root->FirstChildElement("Key"); if (node && node->GetText()) key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = root->FirstChildElement("UploadId"); if (node && node->GetText()) uploadId_ = node->GetText(); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/InputFormat.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" using namespace AlibabaCloud::OSS; static inline std::string CSVHeader_Str(CSVHeader num) { static const std::string strings[] = { "None\0", "Ignore\0", "Use\0" }; return strings[num]; } static inline std::string CompressionType_Str(CompressionType num) { static const std::string strings[] = { "NONE\0", "GZIP\0" }; return strings[num]; } static inline std::string JsonType_Str(JsonType num) { static const std::string strings[] = { "DOCUMENT\0", "LINES\0" }; return strings[num]; } static std::string Range_Str(const std::string rangePrefix, bool isSet, const int64_t range[2]) { int64_t start = 0, end = 0; start = range[0]; end = range[1]; if (!isSet || (start < 0 && end < 0) || (start > 0 && end > 0 && start > end)) { return ""; } std::ostringstream ostr; if (start < 0) { ostr << rangePrefix << "-" << end; } else if (end < 0) { ostr << rangePrefix << start << "-"; } else { ostr << rangePrefix << start << "-" << end; } std::string str = ostr.str(); return str; } InputFormat::InputFormat() : compressionType_(CompressionType::NONE),lineRangeIsSet_(false), splitRangeIsSet_(false) { } void InputFormat::setCompressionType(CompressionType compressionType) { compressionType_ = compressionType; } const std::string InputFormat::CompressionTypeInfo() const { std::string str = CompressionType_Str(compressionType_); return str; } void InputFormat::setLineRange(int64_t start, int64_t end) { lineRange_[0] = start; lineRange_[1] = end; lineRangeIsSet_ = true; splitRangeIsSet_ = false; } void InputFormat::setSplitRange(int64_t start, int64_t end) { splitRange_[0] = start; splitRange_[1] = end; splitRangeIsSet_ = true; lineRangeIsSet_ = false; } int InputFormat::validate() const { if (lineRangeIsSet_ && splitRangeIsSet_) { return ARG_ERROR_SELECT_OBJECT_RANGE_INVALID; } if (lineRangeIsSet_ && (lineRange_[0] < 0 || lineRange_[1] < -1 || (lineRange_[1] > -1 && lineRange_[1] < lineRange_[0]))) { return ARG_ERROR_SELECT_OBJECT_LINE_RANGE_INVALID; } if (splitRangeIsSet_ && (splitRange_[0] < 0 || splitRange_[1] < -1 || (splitRange_[1] > -1 && splitRange_[1] < splitRange_[0]))) { return ARG_ERROR_SELECT_OBJECT_SPLIT_RANGE_INVALID; } return 0; } std::string InputFormat::RangeToString() const { if (lineRangeIsSet_ && splitRangeIsSet_) { return ""; } if (lineRangeIsSet_) { return Range_Str("line-range=", lineRangeIsSet_, lineRange_); } if (splitRangeIsSet_) { return Range_Str("split-range=", splitRangeIsSet_, splitRange_); } return ""; } ///////////////////////////////////////////////////////////////////////////////////////// CSVInputFormat::CSVInputFormat() : CSVInputFormat(CSVHeader::None, "\n", ",", "\"", "#") {} CSVInputFormat::CSVInputFormat(CSVHeader headerInfo, const std::string& recordDelimiter, const std::string& fieldDelimiter, const std::string& quoteChar, const std::string& commentChar): InputFormat(), headerInfo_(headerInfo), recordDelimiter_(recordDelimiter), fieldDelimiter_(fieldDelimiter), quoteChar_(quoteChar), commentChar_(commentChar) {} void CSVInputFormat::setHeaderInfo(CSVHeader headerInfo) { headerInfo_ = headerInfo; } void CSVInputFormat::setCommentChar(const std::string& commentChar) { commentChar_ = commentChar; } void CSVInputFormat::setQuoteChar(const std::string& quoteChar) { quoteChar_ = quoteChar; } void CSVInputFormat::setFieldDelimiter(const std::string& fieldDelimiter) { fieldDelimiter_ = fieldDelimiter; } void CSVInputFormat::setRecordDelimiter(const std::string& recordDelimiter) { recordDelimiter_ = recordDelimiter; } CSVHeader CSVInputFormat::HeaderInfo() const { return headerInfo_; } const std::string& CSVInputFormat::RecordDelimiter() const { return recordDelimiter_; } const std::string& CSVInputFormat::FieldDelimiter() const { return fieldDelimiter_; } const std::string& CSVInputFormat::QuoteChar() const { return quoteChar_; } const std::string& CSVInputFormat::CommentChar() const { return commentChar_; } std::string CSVInputFormat::Type() const { return "csv"; } std::string CSVInputFormat::toXML(int flag) const { std::stringstream ss; ss << "" << std::endl; ss << "" << InputFormat::CompressionTypeInfo() << "" << std::endl; ss << "" << std::endl; ss << "" << Base64Encode(recordDelimiter_) << "" << std::endl; ss << "" << Base64Encode(fieldDelimiter_.empty() ? "" : std::string(1, fieldDelimiter_.front())) << "" << std::endl; ss << "" << Base64Encode(quoteChar_.empty() ? "" : std::string(1, quoteChar_.front())) << "" << std::endl; if (flag == 1) { ss << "" << CSVHeader_Str(headerInfo_) << "" << std::endl; ss << "" << Base64Encode(commentChar_.empty() ? "" : std::string(1, commentChar_.front())) << "" << std::endl; ss << "" << InputFormat::RangeToString() << "" << std::endl; } ss << "" << std::endl; ss << "" << std::endl; return ss.str(); } //////////////////////////////////////////////////////////////////////////////////////// JSONInputFormat::JSONInputFormat() : InputFormat() {} JSONInputFormat::JSONInputFormat(JsonType jsonType) : InputFormat(), jsonType_(jsonType) {} void JSONInputFormat::setJsonType(JsonType jsonType) { jsonType_ = jsonType; } void JSONInputFormat::setParseJsonNumberAsString(bool parseJsonNumberAsString) { parseJsonNumberAsString_ = parseJsonNumberAsString; } JsonType JSONInputFormat::JsonInfo() const { return jsonType_; } bool JSONInputFormat::ParseJsonNumberAsString() const { return parseJsonNumberAsString_; } std::string JSONInputFormat::Type() const { return "json"; } std::string JSONInputFormat::toXML(int flag) const { std::stringstream ss; ss << "" << std::endl; ss << "" << InputFormat::CompressionTypeInfo() << "" << std::endl; ss << "" << std::endl; if (flag == 1) { ss << "" << JsonType_Str(jsonType_) << "" << std::endl; ss << "" << (parseJsonNumberAsString_ ? "true" : "false") << "" << std::endl; ss << "" << InputFormat::RangeToString() << "" << std::endl; } else { ss << "" << "LINES" << "" << std::endl; } ss << "" << std::endl; ss << "" << std::endl; return ss.str(); } ================================================ FILE: sdk/src/model/InventoryConfiguration.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include #include using namespace AlibabaCloud::OSS; InventoryFilter::InventoryFilter() { } InventoryFilter::InventoryFilter(const std::string& prefix) : prefix_(prefix) { } InventorySSEOSS::InventorySSEOSS() { } InventorySSEKMS::InventorySSEKMS() { } InventorySSEKMS::InventorySSEKMS(const std::string& key) : keyId_(key) { } InventoryEncryption::InventoryEncryption() : inventorySSEOSIsSet_(false), inventorySSEKMSIsSet_(false) { } InventoryEncryption::InventoryEncryption(const InventorySSEOSS& value) : inventorySSEOSS_(value), inventorySSEOSIsSet_(true), inventorySSEKMSIsSet_(false) { } InventoryEncryption::InventoryEncryption(const InventorySSEKMS& value) : inventorySSEOSIsSet_(false), inventorySSEKMS_(value), inventorySSEKMSIsSet_(true) { } InventoryOSSBucketDestination::InventoryOSSBucketDestination(): format_(InventoryFormat::NotSet) { } InventoryConfiguration::InventoryConfiguration(): isEnabled_(false), schedule_(InventoryFrequency::NotSet), includedObjectVersions_(InventoryIncludedObjectVersions::NotSet) { } ================================================ FILE: sdk/src/model/LifecycleRule.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; LifeCycleExpiration::LifeCycleExpiration() : LifeCycleExpiration(0) { } LifeCycleExpiration::LifeCycleExpiration(uint32_t days) : days_(days), createdBeforeDate_() { } LifeCycleExpiration::LifeCycleExpiration(const std::string &createdBeforeDate) : days_(0), createdBeforeDate_(createdBeforeDate) { } void LifeCycleExpiration::setDays(uint32_t days) { days_ = days; createdBeforeDate_.clear(); } void LifeCycleExpiration::setCreatedBeforeDate(const std::string &date) { createdBeforeDate_ = date; days_ = 0; } LifeCycleTransition::LifeCycleTransition(const LifeCycleExpiration& expiration, AlibabaCloud::OSS::StorageClass storageClass) : expiration_(expiration), storageClass_(storageClass) { } void LifeCycleTransition::setExpiration(const LifeCycleExpiration &expiration) { expiration_ = expiration; } void LifeCycleTransition::setStorageClass(AlibabaCloud::OSS::StorageClass storageClass) { storageClass_ = storageClass; } LifecycleRule::LifecycleRule() : status_(RuleStatus::Enabled), expiredObjectDeleteMarker_(false) { } bool LifecycleRule::hasExpiration() const { return (expiration_.Days() > 0 || !expiration_.CreatedBeforeDate().empty() || expiredObjectDeleteMarker_); } bool LifecycleRule::hasTransitionList() const { return !transitionList_.empty(); } bool LifecycleRule::hasAbortMultipartUpload() const { return (abortMultipartUpload_.Days() > 0 || !abortMultipartUpload_.CreatedBeforeDate().empty()); } bool LifecycleRule::hasNoncurrentVersionExpiration() const { return (noncurrentVersionExpiration_.Days() > 0); } bool LifecycleRule::hasNoncurrentVersionTransitionList() const { return !noncurrentVersionTransitionList_.empty(); } bool LifecycleRule::operator==(const LifecycleRule& right) const { if (id_ != right.id_ || prefix_ != right.prefix_ || status_ != right.status_) { return false; } if (expiration_.Days() != right.expiration_.Days() || expiration_.CreatedBeforeDate() != right.expiration_.CreatedBeforeDate()) { return false; } if (abortMultipartUpload_.Days() != right.abortMultipartUpload_.Days() || abortMultipartUpload_.CreatedBeforeDate() != right.abortMultipartUpload_.CreatedBeforeDate()) { return false; } if (transitionList_.size() != right.transitionList_.size()) { return false; } auto first = transitionList_.begin(); auto Rightfirst = right.transitionList_.begin(); for (; first != transitionList_.end(); ) { if (first->Expiration().Days() != Rightfirst->Expiration().Days() || first->Expiration().CreatedBeforeDate() != Rightfirst->Expiration().CreatedBeforeDate() || first->StorageClass() != Rightfirst->StorageClass()) { return false; } first++; Rightfirst++; } if (tagSet_.size() != right.tagSet_.size()) { return false; } auto firstTag = tagSet_.begin(); auto RightfirstTag = right.tagSet_.begin(); for (; firstTag != tagSet_.end(); ) { if (firstTag->Key() != RightfirstTag->Key() || firstTag->Value()!= RightfirstTag->Value()) { return false; } firstTag++; RightfirstTag++; } if (expiredObjectDeleteMarker_ != right.expiredObjectDeleteMarker_) { return false; } if (noncurrentVersionExpiration_.Days() != right.noncurrentVersionExpiration_.Days() || noncurrentVersionExpiration_.CreatedBeforeDate() != right.noncurrentVersionExpiration_.CreatedBeforeDate()) { return false; } if (noncurrentVersionTransitionList_.size() != right.noncurrentVersionTransitionList_.size()) { return false; } first = noncurrentVersionTransitionList_.begin(); Rightfirst = right.noncurrentVersionTransitionList_.begin(); for (; first != noncurrentVersionTransitionList_.end(); ) { if (first->Expiration().Days() != Rightfirst->Expiration().Days() || first->Expiration().CreatedBeforeDate() != Rightfirst->Expiration().CreatedBeforeDate() || first->StorageClass() != Rightfirst->StorageClass()) { return false; } first++; Rightfirst++; } return true; } ================================================ FILE: sdk/src/model/ListBucketInventoryConfigurationsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; ListBucketInventoryConfigurationsRequest::ListBucketInventoryConfigurationsRequest(const std::string& bucket) : OssBucketRequest(bucket) { } ParameterCollection ListBucketInventoryConfigurationsRequest::specialParameters() const { ParameterCollection parameters; parameters["inventory"] = ""; if (!continuationToken_.empty()) { parameters["continuation-token"] = continuationToken_; } return parameters; } ================================================ FILE: sdk/src/model/ListBucketInventoryConfigurationsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListBucketInventoryConfigurationsResult::ListBucketInventoryConfigurationsResult() : OssResult() { } ListBucketInventoryConfigurationsResult::ListBucketInventoryConfigurationsResult(const std::string& result) : ListBucketInventoryConfigurationsResult() { *this = result; } ListBucketInventoryConfigurationsResult::ListBucketInventoryConfigurationsResult(const std::shared_ptr& result) : ListBucketInventoryConfigurationsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListBucketInventoryConfigurationsResult& ListBucketInventoryConfigurationsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root = doc.RootElement(); if (root && !std::strncmp("ListInventoryConfigurationsResult", root->Name(), 33)) { XMLElement* node; node = root->FirstChildElement("InventoryConfiguration"); for (; node; node = node->NextSiblingElement("InventoryConfiguration")) { XMLElement* conf_node; InventoryConfiguration inventoryConfiguration; conf_node = node->FirstChildElement("Id"); if (conf_node && conf_node->GetText()) inventoryConfiguration.setId(conf_node->GetText()); conf_node = node->FirstChildElement("IsEnabled"); if (conf_node && conf_node->GetText()) inventoryConfiguration.setIsEnabled((std::strncmp(conf_node->GetText(), "true", 4) ? false : true)); conf_node = node->FirstChildElement("Filter"); if (conf_node) { InventoryFilter filter; XMLElement* prefix_node = conf_node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) filter.setPrefix(prefix_node->GetText()); inventoryConfiguration.setFilter(filter); } conf_node = node->FirstChildElement("Destination"); if (conf_node) { XMLElement* next_node; next_node = conf_node->FirstChildElement("OSSBucketDestination"); if (next_node) { XMLElement* sub_node; InventoryOSSBucketDestination dest; sub_node = next_node->FirstChildElement("Format"); if (sub_node && sub_node->GetText()) dest.setFormat(ToInventoryFormatType(sub_node->GetText())); sub_node = next_node->FirstChildElement("AccountId"); if (sub_node && sub_node->GetText()) dest.setAccountId(sub_node->GetText()); sub_node = next_node->FirstChildElement("RoleArn"); if (sub_node && sub_node->GetText()) dest.setRoleArn(sub_node->GetText()); sub_node = next_node->FirstChildElement("Bucket"); if (sub_node && sub_node->GetText()) dest.setBucket(ToInventoryBucketShortName(sub_node->GetText())); sub_node = next_node->FirstChildElement("Prefix"); if (sub_node && sub_node->GetText()) dest.setPrefix(sub_node->GetText()); sub_node = next_node->FirstChildElement("Encryption"); if (sub_node) { InventoryEncryption encryption; XMLElement* sse_node; sse_node = sub_node->FirstChildElement("SSE-KMS"); if (sse_node) { InventorySSEKMS ssekms; XMLElement* key_node; key_node = sse_node->FirstChildElement("KeyId"); if (key_node && key_node->GetText()) ssekms.setKeyId(key_node->GetText()); encryption.setSSEKMS(ssekms); } sse_node = sub_node->FirstChildElement("SSE-OSS"); if (sse_node) { encryption.setSSEOSS(InventorySSEOSS()); } dest.setEncryption(encryption); } inventoryConfiguration.setDestination(InventoryDestination(dest)); } } conf_node = node->FirstChildElement("Schedule"); if (conf_node) { XMLElement* freq_node = conf_node->FirstChildElement("Frequency"); if (freq_node && freq_node->GetText()) inventoryConfiguration.setSchedule(ToInventoryFrequencyType(freq_node->GetText())); } conf_node = node->FirstChildElement("IncludedObjectVersions"); if (conf_node && conf_node->GetText()) inventoryConfiguration.setIncludedObjectVersions(ToInventoryIncludedObjectVersionsType(conf_node->GetText())); conf_node = node->FirstChildElement("OptionalFields"); if (conf_node) { InventoryOptionalFields field; XMLElement* field_node = conf_node->FirstChildElement("Field"); for (; field_node; field_node = field_node->NextSiblingElement()) { if (field_node->GetText()) field.push_back(ToInventoryOptionalFieldType(field_node->GetText())); } inventoryConfiguration.setOptionalFields(field); } inventoryConfigurationList_.push_back(inventoryConfiguration); } node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = (std::strncmp(node->GetText(), "true", 4) ? false : true); node = root->FirstChildElement("NextContinuationToken"); if (node && node->GetText()) nextContinuationToken_ = node->GetText(); parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/ListBucketsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; ListBucketsRequest::ListBucketsRequest() : OssRequest(), prefixIsSet_(false), markerIsSet_(false), maxKeysIsSet_(false), tagIsSet(false), regionList_(false) { } ListBucketsRequest::ListBucketsRequest(const std::string& prefix, const std::string& marker, int maxKeys) : OssRequest(), prefix_(prefix), prefixIsSet_(true), marker_(marker), markerIsSet_(true), maxKeys_(maxKeys), maxKeysIsSet_(true), tagIsSet(false), regionList_(false) { } ParameterCollection ListBucketsRequest::specialParameters() const { ParameterCollection params; if (prefixIsSet_) params["prefix"] = prefix_; if (markerIsSet_) params["marker"] = marker_; if (maxKeysIsSet_) params["max-keys"] = std::to_string(maxKeys_); if (tagIsSet) { if (!tag_.Key().empty()) { params["tag-key"] = tag_.Key(); if (!tag_.Value().empty()) { params["tag-value"] = tag_.Value(); } } } if (regionList_) params["regionList"] = ""; return params; } ================================================ FILE: sdk/src/model/ListBucketsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListBucketsResult::ListBucketsResult(): OssResult(), prefix_(), marker_(), nextMarker_(), isTruncated_(false), maxKeys_() { } ListBucketsResult::ListBucketsResult(const std::string& result): ListBucketsResult() { *this = result; } ListBucketsResult::ListBucketsResult(const std::shared_ptr& result): ListBucketsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListBucketsResult& ListBucketsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListAllMyBucketsResult", root->Name(), 22)) { XMLElement *node; node = root->FirstChildElement("Prefix"); if (node && node->GetText()) prefix_ = node->GetText(); node = root->FirstChildElement("Marker"); if (node && node->GetText()) marker_ = node->GetText(); node = root->FirstChildElement("MaxKeys"); if (node && node->GetText()) maxKeys_ = atoi(node->GetText()); node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = !std::strncmp("true", node->GetText(), 4); node = root->FirstChildElement("NextMarker"); if (node && node->GetText()) nextMarker_ = node->GetText(); node = root->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } Owner owner(owner_ID, owner_DisplayName); //buckets XMLElement *buckets_node = root->FirstChildElement("Buckets"); if (buckets_node) { XMLElement *bucket_node = buckets_node->FirstChildElement("Bucket"); for (; bucket_node; bucket_node = bucket_node->NextSiblingElement()) { Bucket bucket; node = bucket_node->FirstChildElement("CreationDate"); if (node && node->GetText()) bucket.creationDate_ = node->GetText(); node = bucket_node->FirstChildElement("ExtranetEndpoint"); if (node && node->GetText()) bucket.extranetEndpoint_ = node->GetText(); node = bucket_node->FirstChildElement("IntranetEndpoint"); if (node && node->GetText()) bucket.intranetEndpoint_ = node->GetText(); node = bucket_node->FirstChildElement("Location"); if (node && node->GetText()) bucket.location_ = node->GetText(); node = bucket_node->FirstChildElement("Name"); if (node && node->GetText()) bucket.name_ = node->GetText(); node = bucket_node->FirstChildElement("StorageClass"); if (node && node->GetText()) bucket.storageClass_ = ToStorageClassType(node->GetText()); bucket.owner_ = owner; buckets_.push_back(bucket); } } } //TODO check the result and the parse flag; parseDone_ = true; } return *this; } ================================================ FILE: sdk/src/model/ListLiveChannelRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; ListLiveChannelRequest::ListLiveChannelRequest(const std::string &bucket): OssBucketRequest(bucket), maxKeys_(100) { } ParameterCollection ListLiveChannelRequest::specialParameters() const { ParameterCollection colletion; colletion["live"] = ""; if(!marker_.empty()) { colletion["marker"] = marker_; } if(!prefix_.empty()) { colletion["prefix"] = prefix_; } if(0 != maxKeys_) { colletion["max-keys"] = std::to_string(maxKeys_); } return colletion; } int ListLiveChannelRequest::validate() const { if(0 == maxKeys_ || MaxListLiveChannelKeys < maxKeys_) { return ARG_ERROR_LIVECHANNEL_BAD_MAXKEY_PARAM; } return OssBucketRequest::validate(); } void ListLiveChannelRequest::setMarker(const std::string &marker) { marker_ = marker; } void ListLiveChannelRequest::setPrefix(const std::string &prefix) { prefix_ = prefix; } void ListLiveChannelRequest::setMaxKeys(uint32_t maxKeys) { maxKeys_ = maxKeys; } ================================================ FILE: sdk/src/model/ListLiveChannelResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListLiveChannelResult::ListLiveChannelResult(): OssResult(),maxKeys_(0) { } ListLiveChannelResult::ListLiveChannelResult(const std::string& result): ListLiveChannelResult() { *this = result; } ListLiveChannelResult::ListLiveChannelResult(const std::shared_ptr& result): ListLiveChannelResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListLiveChannelResult& ListLiveChannelResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListLiveChannelResult", root->Name(), 21)) { XMLElement *node; node = root->FirstChildElement("Prefix"); if(node && node->GetText()) { prefix_ = node->GetText(); } node = root->FirstChildElement("Marker"); if(node && node->GetText()) { marker_ = node->GetText(); } node = root->FirstChildElement("MaxKeys"); if(node && node->GetText()) { maxKeys_ = std::strtoul(node->GetText(), nullptr, 10); } node = root->FirstChildElement("IsTruncated"); if(node && node->GetText()) { isTruncated_ = node->BoolText(); } node = root->FirstChildElement("NextMarker"); if(node && node->GetText()) { nextMarker_ = node->GetText(); } XMLNode *livechannelNode = root->FirstChildElement("LiveChannel"); for(; livechannelNode; livechannelNode = livechannelNode->NextSiblingElement("LiveChannel")) { LiveChannelInfo info; node = livechannelNode->FirstChildElement("Name"); if(node && node->GetText()) { info.name = node->GetText(); } node = livechannelNode->FirstChildElement("Description"); if(node && node->GetText()) { info.description = node->GetText(); } node = livechannelNode->FirstChildElement("Status"); if(node && node->GetText()) { info.status = node->GetText(); } node = livechannelNode->FirstChildElement("LastModified"); if(node && node->GetText()) { info.lastModified = node->GetText(); } XMLNode *publishNode = livechannelNode->FirstChildElement("PublishUrls"); if(publishNode) { node = publishNode->FirstChildElement("Url"); if(node && node->GetText()) { info.publishUrl = node->GetText(); } } XMLNode *playNode = livechannelNode->FirstChildElement("PlayUrls"); if(playNode) { node = playNode->FirstChildElement("Url"); if(node && node->GetText()) { info.playUrl = node->GetText(); } } liveChannelList_.push_back(info); } parseDone_ = true; } } return *this; } const std::string& ListLiveChannelResult::Marker() const { return marker_; } uint32_t ListLiveChannelResult::MaxKeys() const { return maxKeys_; } const std::string& ListLiveChannelResult::Prefix() const { return prefix_; } const std::string& ListLiveChannelResult::NextMarker() const { return nextMarker_; } bool ListLiveChannelResult::IsTruncated() const { return isTruncated_; } const LiveChannelListInfo& ListLiveChannelResult::LiveChannelList() const { return liveChannelList_; } ================================================ FILE: sdk/src/model/ListMultipartUploadsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; using std::stringstream; ListMultipartUploadsRequest::ListMultipartUploadsRequest(const std::string &bucket): OssBucketRequest(bucket), delimiterIsSet_(false), keyMarkerIsSet_(false), prefixIsSet_(false), uploadIdMarkerIsSet_(false), encodingTypeIsSet_(false), maxUploadsIsSet_(false), requestPayer_(RequestPayer::NotSet) { } void ListMultipartUploadsRequest::setDelimiter(const std::string &delimiter) { delimiter_ = delimiter; delimiterIsSet_ = true; } void ListMultipartUploadsRequest::setMaxUploads(uint32_t maxUploads) { maxUploads_ = maxUploads > MaxUploads ? MaxUploads : maxUploads; maxUploadsIsSet_ = true; } void ListMultipartUploadsRequest::setKeyMarker(const std::string &keyMarker) { keyMarker_ = keyMarker; keyMarkerIsSet_ = true; } void ListMultipartUploadsRequest::setPrefix(const std::string &prefix) { prefix_ = prefix; prefixIsSet_ = true; } void ListMultipartUploadsRequest::setUploadIdMarker(const std::string &uploadIdMarker) { uploadIdMarker_ = uploadIdMarker; uploadIdMarkerIsSet_ = true; } void ListMultipartUploadsRequest::setEncodingType(const std::string &encodingType) { encodingType_ = encodingType; encodingTypeIsSet_ = true; } void ListMultipartUploadsRequest::setRequestPayer(RequestPayer value) { requestPayer_ = value; } ParameterCollection ListMultipartUploadsRequest::specialParameters() const { ParameterCollection parameters; parameters["uploads"] = ""; if(delimiterIsSet_){ parameters["delimiter"] = delimiter_; } if (maxUploadsIsSet_) { parameters["max-uploads"] = std::to_string(maxUploads_); } if(keyMarkerIsSet_){ parameters["key-marker"] = keyMarker_; if (uploadIdMarkerIsSet_) { parameters["upload-id-marker"] = uploadIdMarker_; } } if(prefixIsSet_){ parameters["prefix"] = prefix_; } if(encodingTypeIsSet_){ parameters["encoding-type"] = encodingType_; } return parameters; } HeaderCollection ListMultipartUploadsRequest::specialHeaders() const { HeaderCollection headers; if (requestPayer_ == RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(RequestPayer::Requester)); } return headers; } ================================================ FILE: sdk/src/model/ListMultipartUploadsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; using std::stringstream; ListMultipartUploadsResult::ListMultipartUploadsResult() : OssResult(), maxUploads_(0), isTruncated_(false) { } ListMultipartUploadsResult::ListMultipartUploadsResult( const std::string& result): ListMultipartUploadsResult() { *this = result; } ListMultipartUploadsResult::ListMultipartUploadsResult( const std::shared_ptr& result): ListMultipartUploadsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListMultipartUploadsResult& ListMultipartUploadsResult::operator =( const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListMultipartUploadsResult", root->Name(), 26)) { XMLElement *node; node = root->FirstChildElement("Bucket"); if (node && node->GetText()) { bucket_ = node->GetText(); } node = root->FirstChildElement("EncodingType"); bool isUrlEncode = false; if (node && node->GetText()) { encodingType_ = node->GetText(); isUrlEncode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); } node = root->FirstChildElement("KeyMarker"); if(node && node->GetText()) { keyMarker_ = isUrlEncode ? UrlDecode(node->GetText()) : node->GetText(); } node = root->FirstChildElement("UploadIdMarker"); if(node && node->GetText()) { uploadIdMarker_ = node->GetText(); } node = root->FirstChildElement("NextKeyMarker"); if(node && node->GetText()) { nextKeyMarker_ = isUrlEncode ? UrlDecode(node->GetText()) : node->GetText(); } node = root->FirstChildElement("NextUploadIdMarker"); if(node && node->GetText()) { nextUploadIdMarker_ = node->GetText(); } node = root->FirstChildElement("MaxUploads"); if(node && node->GetText()) { maxUploads_ = std::strtoul(node->GetText(), nullptr, 10); } //CommonPrefixes node = root->FirstChildElement("CommonPrefixes"); for (; node; node = node->NextSiblingElement("CommonPrefixes")) { XMLElement *prefix_node = node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) commonPrefixes_.push_back( (isUrlEncode ? UrlDecode(prefix_node->GetText()) : prefix_node->GetText())); } node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) { isTruncated_ = node->BoolText(); } XMLElement * uploadNode = root->FirstChildElement("Upload"); for( ; uploadNode ; uploadNode = uploadNode->NextSiblingElement("Upload")) { MultipartUpload rec; node = uploadNode->FirstChildElement("Key"); if(node && node->GetText()) { rec.Key = isUrlEncode ? UrlDecode(node->GetText()) : node->GetText(); } node = uploadNode->FirstChildElement("UploadId"); if(node && node->GetText()) { rec.UploadId = node->GetText(); } node = uploadNode->FirstChildElement("Initiated"); if(node && node->GetText()) { rec.Initiated = node->GetText(); } multipartUploadList_.push_back(rec); } parseDone_ = true; } } return *this; } ================================================ FILE: sdk/src/model/ListObjectVersionsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListObjectVersionsResult::ListObjectVersionsResult() : OssResult(), name_(), prefix_(), keyMarker_(), nextKeyMarker_(), versionIdMarker_(), nextVersionIdMarker_(), delimiter_(), encodingType_(), isTruncated_(false), maxKeys_(), commonPrefixes_(), objectVersionSummarys_(), deleteMarkerSummarys_() { } ListObjectVersionsResult::ListObjectVersionsResult(const std::string& result): ListObjectVersionsResult() { *this = result; } ListObjectVersionsResult::ListObjectVersionsResult(const std::shared_ptr& result): ListObjectVersionsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListObjectVersionsResult& ListObjectVersionsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListVersionsResult", root->Name(), 18)) { XMLElement *node; node = root->FirstChildElement("Name"); if (node && node->GetText()) name_ = node->GetText(); node = root->FirstChildElement("Prefix"); if (node && node->GetText()) prefix_ = node->GetText(); node = root->FirstChildElement("KeyMarker"); if (node && node->GetText()) keyMarker_ = node->GetText(); node = root->FirstChildElement("NextKeyMarker"); if (node && node->GetText()) nextKeyMarker_ = node->GetText(); node = root->FirstChildElement("VersionIdMarker"); if (node && node->GetText()) versionIdMarker_ = node->GetText(); node = root->FirstChildElement("NextVersionIdMarker"); if (node && node->GetText()) nextVersionIdMarker_ = node->GetText(); node = root->FirstChildElement("Delimiter"); if (node && node->GetText()) delimiter_ = node->GetText(); node = root->FirstChildElement("MaxKeys"); if (node && node->GetText()) maxKeys_ = atoi(node->GetText()); node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = !std::strncmp("true", node->GetText(), 4); node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodingType_ = node->GetText(); //Detect encode type bool useUrlDecode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); //CommonPrefixes node = root->FirstChildElement("CommonPrefixes"); for (; node; node = node->NextSiblingElement("CommonPrefixes")) { XMLElement *prefix_node = node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) commonPrefixes_.push_back( (useUrlDecode ? UrlDecode(prefix_node->GetText()) : prefix_node->GetText())); } //Version XMLElement *contents_node = root->FirstChildElement("Version"); for (; contents_node; contents_node = contents_node->NextSiblingElement("Version")) { ObjectVersionSummary content; node = contents_node->FirstChildElement("Key"); if (node && node->GetText()) content.key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = contents_node->FirstChildElement("VersionId"); if (node && node->GetText()) content.versionid_ = node->GetText(); node = contents_node->FirstChildElement("IsLatest"); if (node && node->GetText()) content.isLatest_ = !std::strncmp("true", node->GetText(), 4); node = contents_node->FirstChildElement("LastModified"); if (node && node->GetText()) content.lastModified_ = node->GetText(); node = contents_node->FirstChildElement("ETag"); if (node && node->GetText()) content.eTag_ = TrimQuotes(node->GetText()); node = contents_node->FirstChildElement("Size"); if (node && node->GetText()) content.size_ = std::atoll(node->GetText()); node = contents_node->FirstChildElement("StorageClass"); if (node && node->GetText()) content.storageClass_ = node->GetText(); node = contents_node->FirstChildElement("Type"); if (node && node->GetText()) content.type_ = node->GetText(); node = contents_node->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } content.owner_ = Owner(owner_ID, owner_DisplayName); objectVersionSummarys_.push_back(content); } //DeleteMarker contents_node = root->FirstChildElement("DeleteMarker"); for (; contents_node; contents_node = contents_node->NextSiblingElement("DeleteMarker")) { DeleteMarkerSummary content; node = contents_node->FirstChildElement("Key"); if (node && node->GetText()) content.key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = contents_node->FirstChildElement("VersionId"); if (node && node->GetText()) content.versionid_ = node->GetText(); node = contents_node->FirstChildElement("IsLatest"); if (node && node->GetText()) content.isLatest_ = !std::strncmp("true", node->GetText(), 4); node = contents_node->FirstChildElement("LastModified"); if (node && node->GetText()) content.lastModified_ = node->GetText(); node = contents_node->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } content.owner_ = Owner(owner_ID, owner_DisplayName); deleteMarkerSummarys_.push_back(content); } //EncodingType if (useUrlDecode) { delimiter_ = UrlDecode(delimiter_); keyMarker_ = UrlDecode(keyMarker_); nextKeyMarker_ = UrlDecode(nextKeyMarker_); prefix_ = UrlDecode(prefix_); } } //TODO check the result and the parse flag; parseDone_ = true; } return *this; } ================================================ FILE: sdk/src/model/ListObjectsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; ParameterCollection ListObjectsRequest::specialParameters() const { ParameterCollection params; if (delimiterIsSet_) params["delimiter"] = delimiter_; if (markerIsSet_) params["marker"] = marker_; if (maxKeysIsSet_) params["max-keys"] = std::to_string(maxKeys_); if (prefixIsSet_) params["prefix"] = prefix_; if (encodingTypeIsSet_) params["encoding-type"] = encodingType_; return params; } HeaderCollection ListObjectsRequest::specialHeaders() const { HeaderCollection headers; if (requestPayer_ == RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(RequestPayer::Requester)); } return headers; } ================================================ FILE: sdk/src/model/ListObjectsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListObjectsResult::ListObjectsResult() : OssResult(), name_(), prefix_(), marker_(), delimiter_(), nextMarker_(), isTruncated_(false), maxKeys_(), commonPrefixes_(), objectSummarys_() { } ListObjectsResult::ListObjectsResult(const std::string& result): ListObjectsResult() { *this = result; } ListObjectsResult::ListObjectsResult(const std::shared_ptr& result): ListObjectsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListObjectsResult& ListObjectsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListBucketResult", root->Name(), 16)) { XMLElement *node; node = root->FirstChildElement("Name"); if (node && node->GetText()) name_ = node->GetText(); node = root->FirstChildElement("Prefix"); if (node && node->GetText()) prefix_ = node->GetText(); node = root->FirstChildElement("Marker"); if (node && node->GetText()) marker_ = node->GetText(); node = root->FirstChildElement("Delimiter"); if (node && node->GetText()) delimiter_ = node->GetText(); node = root->FirstChildElement("MaxKeys"); if (node && node->GetText()) maxKeys_ = atoi(node->GetText()); node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = !std::strncmp("true", node->GetText(), 4); node = root->FirstChildElement("NextMarker"); if (node && node->GetText()) nextMarker_ = node->GetText(); node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodingType_ = node->GetText(); //Detect encode type bool useUrlDecode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); //CommonPrefixes node = root->FirstChildElement("CommonPrefixes"); for (; node; node = node->NextSiblingElement("CommonPrefixes")) { XMLElement *prefix_node = node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) commonPrefixes_.push_back( (useUrlDecode ? UrlDecode(prefix_node->GetText()) : prefix_node->GetText())); } //Contents XMLElement *contents_node = root->FirstChildElement("Contents"); for (; contents_node; contents_node = contents_node->NextSiblingElement("Contents")) { ObjectSummary content; node = contents_node->FirstChildElement("Key"); if (node && node->GetText()) content.key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = contents_node->FirstChildElement("LastModified"); if (node && node->GetText()) content.lastModified_ = node->GetText(); node = contents_node->FirstChildElement("ETag"); if (node && node->GetText()) content.eTag_ = TrimQuotes(node->GetText()); node = contents_node->FirstChildElement("Size"); if (node && node->GetText()) content.size_ = std::atoll(node->GetText()); node = contents_node->FirstChildElement("StorageClass"); if (node && node->GetText()) content.storageClass_ = node->GetText(); node = contents_node->FirstChildElement("Type"); if (node && node->GetText()) content.type_ = node->GetText(); node = contents_node->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } content.owner_ = Owner(owner_ID, owner_DisplayName); node = contents_node->FirstChildElement("RestoreInfo"); if (node && node->GetText()) content.restoreInfo_ = node->GetText(); objectSummarys_.push_back(content); } //EncodingType if (useUrlDecode) { delimiter_ = UrlDecode(delimiter_); marker_ = UrlDecode(marker_); nextMarker_ = UrlDecode(nextMarker_); prefix_ = UrlDecode(prefix_); } } //TODO check the result and the parse flag; parseDone_ = true; } return *this; } ================================================ FILE: sdk/src/model/ListObjectsV2Request.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; ParameterCollection ListObjectsV2Request::specialParameters() const { ParameterCollection params; params["list-type"] = "2"; if (delimiterIsSet_) params["delimiter"] = delimiter_; if (startAfterIsSet_) params["start-after"] = startAfter_; if (continuationTokenIsSet_) params["continuation-token"] = continuationToken_; if (maxKeysIsSet_) params["max-keys"] = std::to_string(maxKeys_); if (prefixIsSet_) params["prefix"] = prefix_; if (encodingTypeIsSet_) params["encoding-type"] = encodingType_; if (fetchOwnerIsSet_) params["fetch-owner"] = fetchOwner_? "true":"false"; return params; } HeaderCollection ListObjectsV2Request::specialHeaders() const { HeaderCollection headers; if (requestPayer_ == RequestPayer::Requester) { headers["x-oss-request-payer"] = ToLower(ToRequestPayerName(RequestPayer::Requester)); } return headers; } ================================================ FILE: sdk/src/model/ListObjectsV2Result.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; ListObjectsV2Result::ListObjectsV2Result() : OssResult(), name_(), prefix_(), startAfter_(), continuationToken_(), nextContinuationToken_(), delimiter_(), maxKeys_(), keyCount_(), isTruncated_(false), commonPrefixes_(), objectSummarys_() { } ListObjectsV2Result::ListObjectsV2Result(const std::string& result): ListObjectsV2Result() { *this = result; } ListObjectsV2Result::ListObjectsV2Result(const std::shared_ptr& result): ListObjectsV2Result() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListObjectsV2Result& ListObjectsV2Result::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListBucketResult", root->Name(), 16)) { XMLElement *node; node = root->FirstChildElement("Name"); if (node && node->GetText()) name_ = node->GetText(); node = root->FirstChildElement("Prefix"); if (node && node->GetText()) prefix_ = node->GetText(); node = root->FirstChildElement("StartAfter"); if (node && node->GetText()) startAfter_ = node->GetText(); node = root->FirstChildElement("ContinuationToken"); if (node && node->GetText()) continuationToken_ = node->GetText(); node = root->FirstChildElement("NextContinuationToken"); if (node && node->GetText()) nextContinuationToken_ = node->GetText(); node = root->FirstChildElement("Delimiter"); if (node && node->GetText()) delimiter_ = node->GetText(); node = root->FirstChildElement("MaxKeys"); if (node && node->GetText()) maxKeys_ = atoi(node->GetText()); node = root->FirstChildElement("KeyCount"); if (node && node->GetText()) keyCount_ = atoi(node->GetText()); node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = !std::strncmp("true", node->GetText(), 4); node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodingType_ = node->GetText(); //Detect encode type bool useUrlDecode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); //CommonPrefixes node = root->FirstChildElement("CommonPrefixes"); for (; node; node = node->NextSiblingElement("CommonPrefixes")) { XMLElement *prefix_node = node->FirstChildElement("Prefix"); if (prefix_node && prefix_node->GetText()) commonPrefixes_.push_back( (useUrlDecode ? UrlDecode(prefix_node->GetText()) : prefix_node->GetText())); } //Contents XMLElement *contents_node = root->FirstChildElement("Contents"); for (; contents_node; contents_node = contents_node->NextSiblingElement("Contents")) { ObjectSummary content; node = contents_node->FirstChildElement("Key"); if (node && node->GetText()) content.key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = contents_node->FirstChildElement("LastModified"); if (node && node->GetText()) content.lastModified_ = node->GetText(); node = contents_node->FirstChildElement("ETag"); if (node && node->GetText()) content.eTag_ = TrimQuotes(node->GetText()); node = contents_node->FirstChildElement("Size"); if (node && node->GetText()) content.size_ = std::atoll(node->GetText()); node = contents_node->FirstChildElement("StorageClass"); if (node && node->GetText()) content.storageClass_ = node->GetText(); node = contents_node->FirstChildElement("Type"); if (node && node->GetText()) content.type_ = node->GetText(); node = contents_node->FirstChildElement("Owner"); std::string owner_ID, owner_DisplayName; if (node) { XMLElement *sub_node; sub_node = node->FirstChildElement("ID"); if (sub_node && sub_node->GetText()) owner_ID = sub_node->GetText(); sub_node = node->FirstChildElement("DisplayName"); if (sub_node && sub_node->GetText()) owner_DisplayName = sub_node->GetText(); } content.owner_ = Owner(owner_ID, owner_DisplayName); node = contents_node->FirstChildElement("RestoreInfo"); if (node && node->GetText()) content.restoreInfo_ = node->GetText(); objectSummarys_.push_back(content); } //EncodingType if (useUrlDecode) { delimiter_ = UrlDecode(delimiter_); startAfter_ = UrlDecode(startAfter_); prefix_ = UrlDecode(prefix_); } } //TODO check the result and the parse flag; parseDone_ = true; } return *this; } ================================================ FILE: sdk/src/model/ListPartsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; using std::stringstream; ListPartsRequest::ListPartsRequest(const std::string &bucket, const std::string &key) : ListPartsRequest(bucket, key, std::string()) { } ListPartsRequest::ListPartsRequest(const std::string &bucket, const std::string &key, const std::string &uploadId) : OssObjectRequest(bucket, key), uploadId_(uploadId), maxPartsIsSet_(false), partNumberMarkerIsSet_(false), encodingTypeIsSet_(false) { } void ListPartsRequest::setUploadId(const std::string &uploadId) { uploadId_ = uploadId; } void ListPartsRequest::setEncodingType(const std::string &str) { encodingType_ = str; encodingTypeIsSet_ = true; } void ListPartsRequest::setMaxParts(uint32_t maxParts) { maxParts_ = maxParts > MaxReturnedKeys ? MaxReturnedKeys: maxParts; maxPartsIsSet_ = true; } void ListPartsRequest::setPartNumberMarker(uint32_t partNumberMarker) { partNumberMarker_ = partNumberMarker; partNumberMarkerIsSet_ = true; } ParameterCollection ListPartsRequest::specialParameters() const { ParameterCollection parameters; parameters["uploadId"] = uploadId_; if (maxPartsIsSet_) { parameters["max-parts"] = std::to_string(maxParts_); } if (partNumberMarkerIsSet_) { parameters["part-number-marker"] = std::to_string(partNumberMarker_); } if (encodingTypeIsSet_) { parameters["encoding-type"] = encodingType_; } return parameters; } ================================================ FILE: sdk/src/model/ListPartsResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; using std::stringstream; ListPartsResult::ListPartsResult(): OssResult(), maxParts_(0), partNumberMarker_(0), nextPartNumberMarker_(0), isTruncated_(false) { } ListPartsResult::ListPartsResult(const std::string& result): ListPartsResult() { *this = result; } ListPartsResult::ListPartsResult(const std::shared_ptr& result): ListPartsResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } ListPartsResult& ListPartsResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("ListPartsResult", root->Name(), 15)) { XMLElement *node; node = root->FirstChildElement("EncodingType"); if (node && node->GetText()) encodingType_ = node->GetText(); //Detect encode type bool useUrlDecode = !ToLower(encodingType_.c_str()).compare(0, 3, "url", 3); node = root->FirstChildElement("Bucket"); if (node && node->GetText()) bucket_ = node->GetText(); node = root->FirstChildElement("Key"); if (node && node->GetText()) key_ = useUrlDecode ? UrlDecode(node->GetText()) : node->GetText(); node = root->FirstChildElement("UploadId"); if (node && node->GetText()) uploadId_ = node->GetText(); node = root->FirstChildElement("PartNumberMarker"); if(node && node->GetText()) { partNumberMarker_ = std::strtoul(node->GetText(), nullptr, 10); } node = root->FirstChildElement("NextPartNumberMarker"); if(node && node->GetText()) { nextPartNumberMarker_ = std::strtoul(node->GetText(), nullptr, 10); } node = root->FirstChildElement("MaxParts"); if (node && node->GetText()) { maxParts_ = std::strtoul(node->GetText(), nullptr, 10); } node = root->FirstChildElement("IsTruncated"); if (node && node->GetText()) isTruncated_ = node->BoolText(); XMLElement * partNode = root->FirstChildElement("Part"); for( ; partNode ; partNode = partNode->NextSiblingElement("Part")) { Part part; node = partNode->FirstChildElement("PartNumber"); if(node && node->GetText()) { part.partNumber_ = std::atoi(node->GetText()); } node = partNode->FirstChildElement("LastModified"); if(node && node->GetText()) part.lastModified_ = node->GetText(); node = partNode->FirstChildElement("ETag"); if (node && node->GetText()) part.eTag_ = TrimQuotes(node->GetText()); node = partNode->FirstChildElement("Size"); if(node && node->GetText()) { part.size_ = std::strtoll(node->GetText(), nullptr, 10); } node = partNode->FirstChildElement("HashCrc64ecma"); if(node && node->GetText()) { part.cRC64_ = std::strtoull(node->GetText(), nullptr, 10); } partList_.push_back(part); } } //TODO check the result and the parse flag; parseDone_ = true; } return *this; } const std::string& ListPartsResult::UploadId() const { return uploadId_; } const std::string& ListPartsResult::Key() const { return key_; } const std::string& ListPartsResult::Bucket() const { return bucket_; } const std::string& ListPartsResult::EncodingType() const { return encodingType_; } uint32_t ListPartsResult::MaxParts() const { return maxParts_; } uint32_t ListPartsResult::PartNumberMarker() const { return partNumberMarker_; } uint32_t ListPartsResult::NextPartNumberMarker() const { return nextPartNumberMarker_; } const PartList& ListPartsResult::PartList() const { return partList_; } bool ListPartsResult::IsTruncated() const { return isTruncated_; } ================================================ FILE: sdk/src/model/ModelError.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "ModelError.h" using namespace AlibabaCloud::OSS; static const char * GetArgErrorMsg(const int code) { static const char * msg[] = { "Argument is invalid, please check.", /*Common 1-2*/ "The bucket name is invalid. A bucket name must be comprised of lower-case characters, numbers or dash(-) with 3-63 characters long.", "The object key is invalid. An object name should be between 1-1023 bytes long and cannot begin with '/' or '\\'", /*CORS 3-10*/ "One bucket not allow exceed ten item of CORSRules.", "CORSRule.AllowedOrigins should not be empty.", "CORSRule.AllowedOrigins allowes at most one asterisk wildcard.", "CORSRule.AllowedMethods should not be empty.", "CORSRule.AllowedMethods only supports GET/PUT/DELETE/POST/HEAD.", "CORSRule.AllowedHeaders allowes at most one asterisk wildcard.", "CORSRule.ExposedHeader dose not allowe asterisk wildcard.", "CORSRule.MaxAgeSeconds should not be less than 0 or greater than 999999999.", /*Logging -11*/ "Invalid logging prefix.", /*storageCapacity -12*/ "Storage capacity must greater than -1.", /*WebSiet -13*/ "Index document must not be empty.", "Invalid index document, must be end with.html.", "Invalid error document, must be end with .html.", /*iostream request body -16*/ "Request body is null.", "Request body is in fail state. Logical error on i/o operation.", "Request body is in bad state. Read/writing error on i/o operation.", /*MultipartUpload -19*/ "PartList is empty.", "PartSize should not be less than 100*1024 or greater than 5*1024*1024*1024.", "PartNumber should not be less than 1 or greater than 10000.", /*Lifecycle Rules -22*/ "One bucket not allow exceed one thousand item of LifecycleRules.", "LifecycleRule should not be null or empty.", "Only one expiration property should be specified.", "You have a rule for a prefix, and therefore you cannot create the rule for the whole bucket.", "Configure at least one of file and fragment lifecycle.", /*ResumableUpload -27*/ "The path of file to upload is empty.", "Open upload file failed.", "The part size is less than 100KB.", "The thread num is less than 1.", "Checkpoint directory is not exist.", "Parse resumable upload record failed.", "Upload file has been modified since last upload.", "Upload record is invalid, it has been modified.", /*ResumableCopy -35*/ "Parse resumable copy record failed.", "Source object has been modified since last copy.", "Copy record is invalid, it has been modified.", /*ResumableDownload -38*/ "Invalid range of resumable download", "The path of file download to is empty", "Source object has been modified since last download.", "Parse resumable download record failed.", "invalid range values in download record record file.", "Range values has been modified since last download.", "Open temp file for download failed", /*GetObject -45*/ "The range is invalid. The start should not be less than 0 or less then the end. The end could be -1 to get the rest of the data.", /*LiveChannel -46*/ "The status param is invalid, it must be 'enabled' or 'disabled' ", "The channelName param is invalid, it shouldn't contain '/' and length < 1023", "The dest bucket name is invalid", "The live channel description is invalied, it should be shorter than 129", "The channel type is invalid, it shoudld only be HLS", "The live channel frag duration param is invalid, it should be [1,100]", "The live channel frag count param is invalid, it should be [1,100]", "The live channel play list param is invalid, it should end with '.m3u8' & length in [6,128]", "The snapshot param is invalid, please check.", "The time param is invalid, endTime should bigger than startTime and difference smaller than 24*60*60", "The Max Key param is invalid, it's default valus is 100, and smaller than 1000", /*SelectObject -57*/ "The range is invalid. It cannot set lien range and split range at the same time.", "The line range is invalid. The start should not be less than 0 or less then the end. The end could be -1 to get the rest of the data.", "The split range is invalid. The start should not be less than 0 or less then the end. The end could be -1 to get the rest of the data.", "The select object expressiontype must is SQL.", "The select object content checksum failed.", "The request InputFormat/OutputFormat is invalid. It cannot set InputFormat or OutputFormat as nullptr.", "The request InputFormat/OutputFormat is invalid. It cannot set InputFormat and OutputFormat in difficent type.", /*CreateSelectObject -64*/ "The request InputFormat is invalid. It cannot set InputFormat as nullptr.", /*Tagging -65*/ "Object tags cannot be greater than 10.", "Object Tag key is invalid, it's length should be [1, 128].", "Object Tag value is invalid, it's length should be less than 256.", /*Resumable for wstring path -68*/ "Only support wstring path in windows os.", "The type of filePath and checkpointDir should be the same, either string or wstring." }; int index = code - ARG_ERROR_START; int msg_size = sizeof(msg)/sizeof(msg[0]); if (code < ARG_ERROR_START || index > msg_size) { index = 0; } return msg[index]; } const char * AlibabaCloud::OSS::GetModelErrorMsg(const int code) { if (code >= ARG_ERROR_START && code <= ARG_ERROR_END) { return GetArgErrorMsg(code); } return "Model error, but undefined."; } ================================================ FILE: sdk/src/model/ModelError.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { const char * GetModelErrorMsg(const int code); /*Error For Argument Check*/ const int ARG_ERROR_BASE = ERROR_CLIENT_BASE + 1000; const int ARG_ERROR_START = ARG_ERROR_BASE; const int ARG_ERROR_END = ARG_ERROR_START + 999; /*Default*/ const int ARG_ERROR_DEFAULT = ARG_ERROR_BASE + 0; /*Common*/ const int ARG_ERROR_BUCKET_NAME = ARG_ERROR_BASE + 1; const int ARG_ERROR_OBJECT_NAME = ARG_ERROR_BASE + 2; /*CORS*/ const int ARG_ERROR_CORS_RULE_LIMIT = ARG_ERROR_BASE + 3; const int ARG_ERROR_CORS_ALLOWEDORIGINS_EMPTY = ARG_ERROR_BASE + 4; const int ARG_ERROR_CORS_ALLOWEDORIGINS_ASTERISK_COUNT = ARG_ERROR_BASE + 5; const int ARG_ERROR_CORS_ALLOWEDMETHODS_EMPTY = ARG_ERROR_BASE + 6; const int ARG_ERROR_CORS_ALLOWEDMETHODS_VALUE = ARG_ERROR_BASE + 7; const int ARG_ERROR_CORS_ALLOWEDHEADERS_ASTERISK_COUNT = ARG_ERROR_BASE + 8; const int ARG_ERROR_CORS_EXPOSEHEADERS_ASTERISK_COUNT = ARG_ERROR_BASE + 9; const int ARG_ERROR_CORS_MAXAGESECONDS_RANGE = ARG_ERROR_BASE + 10; /*Logging*/ const int ARG_ERROR_LOGGING_TARGETPREFIX_INVALID = ARG_ERROR_BASE + 11; /*StorageCapacity*/ const int ARG_ERROR_STORAGECAPACITY_INVALID = ARG_ERROR_BASE + 12; /*WebSiet*/ const int ARG_ERROR_WEBSITE_INDEX_DOCCUMENT_EMPTY = ARG_ERROR_BASE + 13; const int ARG_ERROR_WEBSITE_INDEX_DOCCUMENT_NAME_INVALID = ARG_ERROR_BASE + 14; const int ARG_ERROR_WEBSITE_ERROR_DOCCUMENT_NAME_INVALID = ARG_ERROR_BASE + 15; /*iostream request body*/ const int ARG_ERROR_REQUEST_BODY_NULLPTR = ARG_ERROR_BASE + 16; const int ARG_ERROR_REQUEST_BODY_FAIL_STATE = ARG_ERROR_BASE + 17; const int ARG_ERROR_REQUEST_BODY_BAD_STATE = ARG_ERROR_BASE + 18; /*MultipartUpload*/ const int ARG_ERROR_MULTIPARTUPLOAD_PARTLIST_EMPTY = ARG_ERROR_BASE + 19; const int ARG_ERROR_MULTIPARTUPLOAD_PARTSIZE_RANGE = ARG_ERROR_BASE + 20; const int ARG_ERROR_MULTIPARTUPLOAD_PARTNUMBER_RANGE = ARG_ERROR_BASE + 21; /*Lifecycle Rules*/ const int ARG_ERROR_LIFECYCLE_RULE_LIMIT = ARG_ERROR_BASE + 22; const int ARG_ERROR_LIFECYCLE_RULE_EMPTY = ARG_ERROR_BASE + 23; const int ARG_ERROR_LIFECYCLE_RULE_EXPIRATION = ARG_ERROR_BASE + 24; const int ARG_ERROR_LIFECYCLE_RULE_ONLY_ONE_FOR_BUCKET = ARG_ERROR_BASE + 25; const int ARG_ERROR_LIFECYCLE_RULE_CONFIG_EMPTY = ARG_ERROR_BASE + 26; /*Resumable Upload*/ const int ARG_ERROR_UPLOAD_FILE_PATH_EMPTY = ARG_ERROR_BASE + 27; const int ARG_ERROR_OPEN_UPLOAD_FILE = ARG_ERROR_BASE + 28; const int ARG_ERROR_CHECK_PART_SIZE_LOWER = ARG_ERROR_BASE + 29; const int ARG_ERROR_CHECK_THREAD_NUM_LOWER = ARG_ERROR_BASE + 30; const int ARG_ERROR_CHECK_POINT_DIR_NONEXIST = ARG_ERROR_BASE + 31; const int ARG_ERROR_PARSE_UPLOAD_RECORD_FILE = ARG_ERROR_BASE + 32; const int ARG_ERROR_UPLOAD_FILE_MODIFIED = ARG_ERROR_BASE + 33; const int ARG_ERROR_UPLOAD_RECORD_INVALID = ARG_ERROR_BASE + 34; /*Resumable Copy*/ const int ARG_ERROR_PARSE_COPY_RECORD_FILE = ARG_ERROR_BASE + 35; const int ARG_ERROR_COPY_SRC_OBJECT_MODIFIED = ARG_ERROR_BASE + 36; const int ARG_ERROR_COPY_RECORD_INVALID = ARG_ERROR_BASE + 37; /*Resumable Download*/ const int ARG_ERROR_INVALID_RANGE = ARG_ERROR_BASE + 38; const int ARG_ERROR_DOWNLOAD_FILE_PATH_EMPTY = ARG_ERROR_BASE + 39; const int ARG_ERROR_DOWNLOAD_OBJECT_MODIFIED = ARG_ERROR_BASE + 40; const int ARG_ERROR_PARSE_DOWNLOAD_RECORD_FILE = ARG_ERROR_BASE + 41; const int ARG_ERROR_INVALID_RANGE_IN_DWONLOAD_RECORD = ARG_ERROR_BASE + 42; const int ARG_ERROR_RANGE_HAS_BEEN_RESET = ARG_ERROR_BASE + 43; const int ARG_ERROR_OPEN_DOWNLOAD_TEMP_FILE = ARG_ERROR_BASE + 44; /*GetObject*/ const int ARG_ERROR_OBJECT_RANGE_INVALID = ARG_ERROR_BASE + 45; /*LiveChannel*/ const int ARG_ERROR_LIVECHANNEL_BAD_STATUS_PARAM = ARG_ERROR_BASE + 46; const int ARG_ERROR_LIVECHANNEL_BAD_CHANNELNAME_PARAM = ARG_ERROR_BASE + 47; const int ARG_ERROR_LIVECHANNEL_BAD_DEST_BUCKET_PARAM = ARG_ERROR_BASE + 48; const int ARG_ERROR_LIVECHANNEL_BAD_DESCRIPTION_PARAM = ARG_ERROR_BASE + 49; const int ARG_ERROR_LIVECHANNEL_BAD_CHANNEL_TYPE_PARAM = ARG_ERROR_BASE + 50; const int ARG_ERROR_LIVECHANNEL_BAD_FRAGDURATION_PARAM = ARG_ERROR_BASE + 51; const int ARG_ERROR_LIVECHANNEL_BAD_FRAGCOUNT_PARAM = ARG_ERROR_BASE + 52; const int ARG_ERROR_LIVECHANNEL_BAD_PALYLIST_PARAM = ARG_ERROR_BASE + 53; const int ARG_ERROR_LIVECHANNEL_BAD_SNAPSHOT_PARAM = ARG_ERROR_BASE + 54; const int ARG_ERROR_LIVECHANNEL_BAD_TIME_PARAM = ARG_ERROR_BASE + 55; const int ARG_ERROR_LIVECHANNEL_BAD_MAXKEY_PARAM = ARG_ERROR_BASE + 56; /*SelectObject*/ const int ARG_ERROR_SELECT_OBJECT_RANGE_INVALID = ARG_ERROR_BASE + 57; const int ARG_ERROR_SELECT_OBJECT_LINE_RANGE_INVALID = ARG_ERROR_BASE + 58; const int ARG_ERROR_SELECT_OBJECT_SPLIT_RANGE_INVALID = ARG_ERROR_BASE + 59; const int ARG_ERROR_SELECT_OBJECT_NOT_SQL_EXPRESSION = ARG_ERROR_BASE + 60; const int ARG_ERROR_SELECT_OBJECT_CHECK_SUM_FAILED = ARG_ERROR_BASE + 61; const int ARG_ERROR_SELECT_OBJECT_NULL_POINT = ARG_ERROR_BASE + 62; const int ARG_ERROR_SELECT_OBJECT_PROCESS_NOT_SAME = ARG_ERROR_BASE + 63; /*CreateSelectObjectMeta*/ const int ARG_ERROR_CREATE_SELECT_OBJECT_META_NULL_POINT = ARG_ERROR_BASE + 64; /*Tagging*/ const int ARG_ERROR_TAGGING_TAGS_LIMIT = ARG_ERROR_BASE + 65; const int ARG_ERROR_TAGGING_TAG_KEY_LIMIT = ARG_ERROR_BASE + 66; const int ARG_ERROR_TAGGING_TAG_VALUE_LIMIT = ARG_ERROR_BASE + 67; /*Resumable for wstring path*/ const int ARG_ERROR_PATH_NOT_SUPPORT_WSTRING_TYPE = ARG_ERROR_BASE + 68; const int ARG_ERROR_PATH_NOT_SAME_TYPE = ARG_ERROR_BASE + 69; } } ================================================ FILE: sdk/src/model/ObjectCallbackBuilder.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; ObjectCallbackBuilder::ObjectCallbackBuilder(const std::string &url, const std::string &body): ObjectCallbackBuilder(url, body, "", Type::URL) { } ObjectCallbackBuilder::ObjectCallbackBuilder(const std::string &url, const std::string &body, const std::string &host, Type type): callbackUrl_(url), callbackHost_(host), callbackBody_(body), callbackBodyType_(type) { } std::string ObjectCallbackBuilder::build() { if (callbackUrl_.empty() || callbackBody_.empty()) { return ""; } std::stringstream ss; ss << "{"; ss << "\"callbackUrl\":\"" << callbackUrl_ << "\""; if (!callbackHost_.empty()) { ss << ",\"callbackHost\":\"" << callbackHost_ << "\""; } ss << ",\"callbackBody\":\"" << callbackBody_ << "\""; if (callbackBodyType_ == Type::JSON) { ss << ",\"callbackBodyType\":\"" << "application/json" << "\""; } ss << "}"; return Base64Encode(ss.str()); } bool ObjectCallbackVariableBuilder::addCallbackVariable(const std::string &key, const std::string &value) { if (!!key.compare(0, 2 , "x:", 2)) { return false; } callbackVariable_[key] = value; return true; } std::string ObjectCallbackVariableBuilder::build() { if (callbackVariable_.size() == 0) { return ""; } std::stringstream ss; ss << "{"; int i = 0; for (auto const& var : callbackVariable_) { if (i > 0) { ss << ","; } ss << "\"" << var.first << "\":\"" << var.second << "\""; i++; } ss << "}"; return Base64Encode(ss.str()); } ================================================ FILE: sdk/src/model/ObjectMetaData.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; static const std::string gEmpty = ""; ObjectMetaData::ObjectMetaData(const HeaderCollection& data) { *this = data; } ObjectMetaData& ObjectMetaData::operator=(const HeaderCollection& data) { for (auto const &header : data) { if (!header.first.compare(0, 11, "x-oss-meta-", 11)) userMetaData_[header.first.substr(11)] = header.second; else metaData_[header.first] = header.second; } if (metaData_.find(Http::ETAG) != metaData_.end()) { metaData_[Http::ETAG] = TrimQuotes(metaData_.at(Http::ETAG).c_str()); } return *this; } const std::string &ObjectMetaData::LastModified() const { if (metaData_.find(Http::LAST_MODIFIED) != metaData_.end()) { return metaData_.at(Http::LAST_MODIFIED); } return gEmpty; } const std::string &ObjectMetaData::ExpirationTime() const { if (metaData_.find(Http::EXPIRES) != metaData_.end()) { return metaData_.at(Http::EXPIRES); } return gEmpty; } int64_t ObjectMetaData::ContentLength() const { if (metaData_.find(Http::CONTENT_LENGTH) != metaData_.end()) { return atoll(metaData_.at(Http::CONTENT_LENGTH).c_str()); } return -1; } const std::string &ObjectMetaData::ContentType() const { if (metaData_.find(Http::CONTENT_TYPE) != metaData_.end()) { return metaData_.at(Http::CONTENT_TYPE); } return gEmpty; } const std::string &ObjectMetaData::ContentEncoding() const { if (metaData_.find(Http::CONTENT_ENCODING) != metaData_.end()) { return metaData_.at(Http::CONTENT_ENCODING); } return gEmpty; } const std::string &ObjectMetaData::CacheControl() const { if (metaData_.find(Http::CACHE_CONTROL) != metaData_.end()) { return metaData_.at(Http::CACHE_CONTROL); } return gEmpty; } const std::string &ObjectMetaData::ContentDisposition() const { if (metaData_.find(Http::CONTENT_DISPOSITION) != metaData_.end()) { return metaData_.at(Http::CONTENT_DISPOSITION); } return gEmpty; } const std::string &ObjectMetaData::ETag() const { if (metaData_.find(Http::ETAG) != metaData_.end()) { return metaData_.at(Http::ETAG); } return gEmpty; } const std::string &ObjectMetaData::ContentMd5() const { if (metaData_.find(Http::CONTENT_MD5) != metaData_.end()) { return metaData_.at(Http::CONTENT_MD5); } return gEmpty; } uint64_t ObjectMetaData::CRC64() const { if (metaData_.find("x-oss-hash-crc64ecma") != metaData_.end()) { return std::strtoull(metaData_.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); } return 0ULL; } const std::string &ObjectMetaData::ObjectType() const { if (metaData_.find("x-oss-object-type") != metaData_.end()) { return metaData_.at("x-oss-object-type"); } return gEmpty; } const std::string& ObjectMetaData::VersionId() const { if (metaData_.find("x-oss-version-id") != metaData_.end()) { return metaData_.at("x-oss-version-id"); } return gEmpty; } void ObjectMetaData::setExpirationTime(const std::string &value) { metaData_[Http::EXPIRES] = value; } void ObjectMetaData::setContentLength(int64_t value) { metaData_[Http::CONTENT_LENGTH] = std::to_string(value); } void ObjectMetaData::setContentType(const std::string &value) { metaData_[Http::CONTENT_TYPE] = value; } void ObjectMetaData::setContentEncoding(const std::string &value) { metaData_[Http::CONTENT_ENCODING] = value; } void ObjectMetaData::setCacheControl(const std::string &value) { metaData_[Http::CACHE_CONTROL] = value; } void ObjectMetaData::setContentDisposition(const std::string &value) { metaData_[Http::CONTENT_DISPOSITION] = value; } void ObjectMetaData::setETag(const std::string &value) { metaData_[Http::ETAG] = value; } void ObjectMetaData::setContentMd5(const std::string &value) { metaData_[Http::CONTENT_MD5] = value; } void ObjectMetaData::setCrc64(uint64_t value) { metaData_["x-oss-hash-crc64ecma"] = std::to_string(value); } void ObjectMetaData::addHeader(const std::string &key, const std::string &value) { metaData_[key] = value; } bool ObjectMetaData::hasHeader(const std::string& key) const { return (metaData_.find(key) != metaData_.end()); } void ObjectMetaData::removeHeader(const std::string& key) { if (metaData_.find(key) != metaData_.end()) { metaData_.erase(key); } } MetaData &ObjectMetaData::HttpMetaData() { return metaData_; } const MetaData &ObjectMetaData::HttpMetaData() const { return metaData_; } void ObjectMetaData::addUserHeader(const std::string &key, const std::string &value) { userMetaData_[key] = value; } bool ObjectMetaData::hasUserHeader(const std::string& key) const { return (userMetaData_.find(key) != userMetaData_.end()); } void ObjectMetaData::removeUserHeader(const std::string& key) { if (userMetaData_.find(key) != userMetaData_.end()) { userMetaData_.erase(key); } } MetaData &ObjectMetaData::UserMetaData() { return userMetaData_; } const MetaData &ObjectMetaData::UserMetaData() const { return userMetaData_; } HeaderCollection ObjectMetaData::toHeaderCollection() const { HeaderCollection headers; for (auto const&header : metaData_) { headers[header.first] = header.second; } for (auto const&header : userMetaData_) { std::string key("x-oss-meta-"); key.append(header.first); headers[key] = header.second; } return headers; } ================================================ FILE: sdk/src/model/OutputFormat.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; OutputFormat::OutputFormat(): keepAllColumns_(false), outputRawData_(false), enablePayloadCrc_(true), outputHeader_(false) {} void OutputFormat::setEnablePayloadCrc(bool enablePayloadCrc) { enablePayloadCrc_ = enablePayloadCrc; } void OutputFormat::setKeepAllColumns(bool keepAllColumns) { keepAllColumns_ = keepAllColumns; } void OutputFormat::setOutputHeader(bool outputHeader) { outputHeader_ = outputHeader; } void OutputFormat::setOutputRawData(bool outputRawData) { outputRawData_ = outputRawData; } bool OutputFormat::OutputRawData() const { return outputRawData_; } bool OutputFormat::KeepAllColumns() const { return keepAllColumns_; } bool OutputFormat::EnablePayloadCrc() const { return enablePayloadCrc_; } bool OutputFormat::OutputHeader() const { return outputHeader_; } int OutputFormat::validate() const { return 0; } //////////////////////////////////////////////////////////////////////////////////////// CSVOutputFormat::CSVOutputFormat() : CSVOutputFormat("\n", ",") {} CSVOutputFormat::CSVOutputFormat( const std::string& recordDelimiter, const std::string& fieldDelimiter) : OutputFormat(), recordDelimiter_(recordDelimiter), fieldDelimiter_(fieldDelimiter) {} void CSVOutputFormat::setRecordDelimiter(const std::string& recordDelimiter) { recordDelimiter_ = recordDelimiter; } void CSVOutputFormat::setFieldDelimiter(const std::string& fieldDelimiter) { fieldDelimiter_ = fieldDelimiter; } const std::string& CSVOutputFormat::FieldDelimiter() const { return fieldDelimiter_; } const std::string& CSVOutputFormat::RecordDelimiter() const { return recordDelimiter_; } std::string CSVOutputFormat::Type() const { return "csv"; } std::string CSVOutputFormat::toXML() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << "" << Base64Encode(recordDelimiter_) << "" << std::endl; ss << "" << Base64Encode(fieldDelimiter_.empty() ? "" : std::string(1, fieldDelimiter_.front())) << "" << std::endl; ss << "" << std::endl; ss << "" << (OutputFormat::KeepAllColumns() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::OutputRawData() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::OutputHeader() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::EnablePayloadCrc() ? "true" : "false") << "" << std::endl; ss << "" << std::endl; return ss.str(); } //////////////////////////////////////////////////////////////////////////////////////// JSONOutputFormat::JSONOutputFormat() :JSONOutputFormat("\n") {} JSONOutputFormat::JSONOutputFormat(const std::string& recordDelimiter) :OutputFormat(), recordDelimiter_(recordDelimiter) {} void JSONOutputFormat::setRecordDelimiter(const std::string& recordDelimiter) { recordDelimiter_ = recordDelimiter; } const std::string& JSONOutputFormat::RecordDelimiter() const { return recordDelimiter_; } std::string JSONOutputFormat::Type() const { return "json"; } std::string JSONOutputFormat::toXML() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << "" << Base64Encode(recordDelimiter_) << "" << std::endl; ss << "" << std::endl; ss << "" << (OutputFormat::KeepAllColumns() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::OutputRawData() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::OutputHeader() ? "true" : "false") << "" << std::endl; ss << "" << (OutputFormat::EnablePayloadCrc() ? "true" : "false") << "" << std::endl; ss << "" << std::endl; return ss.str(); } ================================================ FILE: sdk/src/model/PostVodPlaylistRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; PostVodPlaylistRequest::PostVodPlaylistRequest(const std::string& bucket, const std::string& channelName, const std::string& playlist, uint64_t startTime, uint64_t endTime) :LiveChannelRequest(bucket, channelName), playList_(playlist), startTime_(startTime), endTime_(endTime) { key_.append("/").append(playList_); } int PostVodPlaylistRequest::validate() const { int ret = LiveChannelRequest::validate(); if(ret) { return ret; } if(!IsValidPlayListName(playList_)) { return ARG_ERROR_LIVECHANNEL_BAD_PALYLIST_PARAM; } if(endTime_ <= startTime_ || endTime_ > (startTime_ + SecondsOfDay)) { return ARG_ERROR_LIVECHANNEL_BAD_TIME_PARAM; } return 0; } ParameterCollection PostVodPlaylistRequest::specialParameters() const { ParameterCollection collection; collection["vod"] = ""; collection["endTime"] = std::to_string(endTime_); collection["startTime"] = std::to_string(startTime_); return collection; } void PostVodPlaylistRequest::setPlayList(const std::string &playList) { playList_ = playList; } void PostVodPlaylistRequest::setStartTime(uint64_t startTime) { startTime_ = startTime; } void PostVodPlaylistRequest::setEndTime(uint64_t endTime) { endTime_ = endTime; } ================================================ FILE: sdk/src/model/ProcessObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; ProcessObjectRequest::ProcessObjectRequest(const std::string &bucket, const std::string &key): ProcessObjectRequest(bucket, key, "") { } ProcessObjectRequest::ProcessObjectRequest(const std::string &bucket, const std::string &key, const std::string &process) : OssObjectRequest(bucket, key), process_(process) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void ProcessObjectRequest::setProcess(const std::string &process) { process_ = process; } ParameterCollection ProcessObjectRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["x-oss-process"]; return parameters; } std::string ProcessObjectRequest::payload() const { std::stringstream ss; ss << "x-oss-process=" << process_; return ss.str(); } ================================================ FILE: sdk/src/model/PutLiveChannelRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include "Const.h" using namespace AlibabaCloud::OSS; PutLiveChannelRequest::PutLiveChannelRequest(const std::string& bucket, const std::string& channelName, const std::string& type) :LiveChannelRequest(bucket, channelName), channelType_(type), playListName_("playlist.m3u8"), status_(LiveChannelStatus::EnabledStatus), fragDuration_(5), fragCount_(3), snapshot_(false) { } void PutLiveChannelRequest::setChannelType(const std::string& channelType) { channelType_ = channelType; } void PutLiveChannelRequest::setDescripition(const std::string& description) { description_ = description; } void PutLiveChannelRequest::setDestBucket(const std::string& destBucket) { destBucket_ = destBucket; snapshot_ = true; } void PutLiveChannelRequest::setFragCount(uint64_t fragCount) { fragCount_ = fragCount; } void PutLiveChannelRequest::setFragDuration(uint64_t fragDuration) { fragDuration_ = fragDuration; } void PutLiveChannelRequest::setStatus(LiveChannelStatus status) { status_ = status; } void PutLiveChannelRequest::setInterval(uint64_t interval) { interval_ = interval; snapshot_ = true; } void PutLiveChannelRequest::setNotifyTopic(const std::string& notifyTopic) { notifyTopic_ = notifyTopic; snapshot_ = true; } void PutLiveChannelRequest::setRoleName(const std::string& roleName) { roleName_ = roleName; snapshot_ = true; } void PutLiveChannelRequest::setPlayListName(const std::string& playListName) { playListName_ = playListName; std::size_t pos = playListName_.find_last_of('.'); if(pos != std::string::npos) { std::string suffixStr = playListName_.substr(pos); if(ToLower(suffixStr.c_str()) == ".m3u8") { std::string prefixStr; if(pos > 0) { prefixStr = playListName_.substr(0, pos); playListName_ = prefixStr + ".m3u8"; } } } } int PutLiveChannelRequest::validate() const { int ret = LiveChannelRequest::validate(); if(ret) { return ret; } if(!description_.empty() && description_.size() > MaxLiveChannelDescriptionLength) { return ARG_ERROR_LIVECHANNEL_BAD_DESCRIPTION_PARAM; } if(status_ != LiveChannelStatus::EnabledStatus && status_ != LiveChannelStatus::DisabledStatus) { return ARG_ERROR_LIVECHANNEL_BAD_STATUS_PARAM; } if(channelType_ != "HLS") { return ARG_ERROR_LIVECHANNEL_BAD_CHANNEL_TYPE_PARAM; } if(fragDuration_ < MinLiveChannelFragDuration || fragDuration_ > MaxLiveChannelFragDuration) { return ARG_ERROR_LIVECHANNEL_BAD_FRAGDURATION_PARAM; } if(fragCount_ < MinLiveChannelFragCount || fragCount_ > MaxLiveChannelFragCount) { return ARG_ERROR_LIVECHANNEL_BAD_FRAGCOUNT_PARAM; } if(!IsValidPlayListName(playListName_)) { return ARG_ERROR_LIVECHANNEL_BAD_PALYLIST_PARAM; } if(snapshot_) { if(roleName_.empty() || notifyTopic_.empty() || destBucket_.empty() || !IsValidBucketName(bucket_) || interval_ < MinLiveChannelInterval || interval_ > MaxLiveChannelInterval) { return ARG_ERROR_LIVECHANNEL_BAD_SNAPSHOT_PARAM; } } return 0; } std::string PutLiveChannelRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << " " << description_ << "" << std::endl; ss << " " << ToLiveChannelStatusName(status_) << "" << std::endl; ss << " " << std::endl; ss << " " << channelType_ << "" << std::endl; ss << " " << std::to_string(fragDuration_) << "" << std::endl; ss << " " << std::to_string(fragCount_) << "" << std::endl; ss << " " << playListName_ << "" << std::endl; ss << " " << std::endl; if(snapshot_) { ss << " " << std::endl; ss << " " << roleName_ << "" << std::endl; ss << " " << destBucket_ << "" << std::endl; ss << " " << notifyTopic_ << "" << std::endl; ss << " " << std::to_string(interval_) << "" << std::endl; ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection PutLiveChannelRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; return collection; } ================================================ FILE: sdk/src/model/PutLiveChannelResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; PutLiveChannelResult::PutLiveChannelResult(): OssResult() { } PutLiveChannelResult::PutLiveChannelResult(const std::string& result): PutLiveChannelResult() { *this = result; } PutLiveChannelResult::PutLiveChannelResult(const std::shared_ptr& result): PutLiveChannelResult() { std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } PutLiveChannelResult& PutLiveChannelResult::operator =(const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("CreateLiveChannelResult", root->Name(), 23)) { XMLElement *node; XMLElement* publishNode = root->FirstChildElement("PublishUrls"); if(publishNode && (node = publishNode->FirstChildElement("Url"))){ publishUrl_ = node->GetText(); } XMLElement* playNode = root->FirstChildElement("PlayUrls"); if(playNode && (node = playNode->FirstChildElement("Url"))){ playUrl_ = node->GetText(); } } parseDone_ = true; } return *this; } const std::string& PutLiveChannelResult::PublishUrl() const { return publishUrl_; } const std::string& PutLiveChannelResult::PlayUrl() const { return playUrl_; } ================================================ FILE: sdk/src/model/PutLiveChannelStatusRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" using namespace AlibabaCloud::OSS; PutLiveChannelStatusRequest::PutLiveChannelStatusRequest(const std::string& bucket, const std::string& channelName) :LiveChannelRequest(bucket, channelName), status_(LiveChannelStatus::EnabledStatus) { } PutLiveChannelStatusRequest::PutLiveChannelStatusRequest(const std::string& bucket, const std::string& channelName, LiveChannelStatus status) :LiveChannelRequest(bucket, channelName), status_(status) { } ParameterCollection PutLiveChannelStatusRequest::specialParameters() const { ParameterCollection collection; collection["live"] = ""; collection["status"] = ToLiveChannelStatusName(status_); return collection; } void PutLiveChannelStatusRequest::setStatus(LiveChannelStatus status) { status_ = status; } int PutLiveChannelStatusRequest::validate() const { int ret = LiveChannelRequest::validate(); if (ret) { return ret; } if(status_ != LiveChannelStatus::EnabledStatus && status_ != LiveChannelStatus::DisabledStatus) { return ARG_ERROR_LIVECHANNEL_BAD_STATUS_PARAM; } return 0; } ================================================ FILE: sdk/src/model/PutObjectByUrlRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include using namespace AlibabaCloud::OSS; PutObjectByUrlRequest::PutObjectByUrlRequest( const std::string &url, const std::shared_ptr &content) : PutObjectByUrlRequest(url, content, ObjectMetaData()) { } PutObjectByUrlRequest::PutObjectByUrlRequest( const std::string &url, const std::shared_ptr &content, const ObjectMetaData &metaData) : ServiceRequest(), content_(content), metaData_(metaData) { setPath(url); setFlags(Flags()|REQUEST_FLAG_PARAM_IN_PATH|REQUEST_FLAG_CHECK_CRC64); } HeaderCollection PutObjectByUrlRequest::Headers() const { auto headers = metaData_.toHeaderCollection(); if (headers.find(Http::DATE) == headers.end()) { headers[Http::DATE] = ""; } return headers; } ParameterCollection PutObjectByUrlRequest::Parameters() const { return ParameterCollection(); } std::shared_ptr PutObjectByUrlRequest::Body() const { return content_; } ================================================ FILE: sdk/src/model/PutObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; PutObjectRequest::PutObjectRequest(const std::string &bucket, const std::string &key, const std::shared_ptr &content) : OssObjectRequest(bucket, key), content_(content) { setFlags(Flags() | REQUEST_FLAG_CHECK_CRC64 | REQUEST_FLAG_CHUNKED_ENCODING); } PutObjectRequest::PutObjectRequest(const std::string &bucket, const std::string &key, const std::shared_ptr &content, const ObjectMetaData &metaData) : OssObjectRequest(bucket, key), content_(content), metaData_(metaData) { setFlags(Flags() | REQUEST_FLAG_CHECK_CRC64 | REQUEST_FLAG_CHUNKED_ENCODING); } void PutObjectRequest::setCacheControl(const std::string &value) { metaData_.addHeader(Http::CACHE_CONTROL, value); } void PutObjectRequest::setContentDisposition(const std::string &value) { metaData_.addHeader(Http::CONTENT_DISPOSITION, value); } void PutObjectRequest::setContentEncoding(const std::string &value) { metaData_.addHeader(Http::CONTENT_ENCODING, value); } void PutObjectRequest::setContentMd5(const std::string &value) { metaData_.addHeader(Http::CONTENT_MD5, value); } void PutObjectRequest::setExpires(const std::string &value) { metaData_.addHeader(Http::EXPIRES, value); } void PutObjectRequest::setCallback(const std::string& callback, const std::string& callbackVar) { metaData_.removeHeader("x-oss-callback"); metaData_.removeHeader("x-oss-callback-var"); if (!callback.empty()) { metaData_.addHeader("x-oss-callback", callback); } if (!callbackVar.empty()) { metaData_.addHeader("x-oss-callback-var", callbackVar); } } void PutObjectRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } void PutObjectRequest::setTrafficLimit(uint64_t value) { metaData_.addHeader("x-oss-traffic-limit", std::to_string(value)); } ObjectMetaData &PutObjectRequest::MetaData() { return metaData_; } std::shared_ptr PutObjectRequest::Body() const { return content_; } HeaderCollection PutObjectRequest::specialHeaders() const { auto headers = metaData_.toHeaderCollection(); if (headers.find(Http::CONTENT_TYPE) == headers.end()) { headers[Http::CONTENT_TYPE] = LookupMimeType(Key()); } auto baseHeaders = OssObjectRequest::specialHeaders(); headers.insert(baseHeaders.begin(), baseHeaders.end()); return headers; } int PutObjectRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret != 0) { return ret; } if (content_ == nullptr) { return ARG_ERROR_REQUEST_BODY_NULLPTR; } if (content_->bad()) { return ARG_ERROR_REQUEST_BODY_BAD_STATE; } if (content_->fail()) { return ARG_ERROR_REQUEST_BODY_FAIL_STATE; } return 0; } ================================================ FILE: sdk/src/model/PutObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; PutObjectResult::PutObjectResult(): OssObjectResult(), content_(nullptr) { } PutObjectResult::PutObjectResult(const HeaderCollection& header, const std::shared_ptr& content): OssObjectResult(header) { if (header.find(Http::ETAG) != header.end()) { eTag_ = TrimQuotes(header.at(Http::ETAG).c_str()); } if (header.find("x-oss-hash-crc64ecma") != header.end()) { crc64_ = std::strtoull(header.at("x-oss-hash-crc64ecma").c_str(), nullptr, 10); } if (content != nullptr && content->peek() != EOF) { content_ = content; } } PutObjectResult::PutObjectResult(const HeaderCollection & header): PutObjectResult(header, nullptr) { } const std::string& PutObjectResult::ETag() const { return eTag_; } uint64_t PutObjectResult::CRC64() { return crc64_; } const std::shared_ptr& PutObjectResult::Content() const { return content_; } ================================================ FILE: sdk/src/model/RestoreObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include <../utils/Utils.h> #include using namespace AlibabaCloud::OSS; RestoreObjectRequest::RestoreObjectRequest(const std::string &bucket, const std::string &key) :OssObjectRequest(bucket,key), days_(1U), tierTypeIsSet_(false) { } void RestoreObjectRequest::setDays(uint32_t days) { days_ = days; } void RestoreObjectRequest::setTierType(TierType type) { tierType_ = type; tierTypeIsSet_ = true; } std::string RestoreObjectRequest::payload() const { std::stringstream ss; if (tierTypeIsSet_) { ss << "" << std::endl; ss << "" << std::endl; ss << "" << std::to_string(days_) << "" << std::endl; ss << "" << ToTierTypeName(tierType_) << "" << std::endl; ss << "" << std::endl; } return ss.str(); } ParameterCollection RestoreObjectRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["restore"]=""; return parameters; } ================================================ FILE: sdk/src/model/RestoreObjectResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; RestoreObjectResult::RestoreObjectResult(): OssObjectResult() { } RestoreObjectResult::RestoreObjectResult(const HeaderCollection& header): OssObjectResult(header) { } ================================================ FILE: sdk/src/model/SelectObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "ModelError.h" #include "../utils/Utils.h" #include "../utils/LogUtils.h" #include "../utils/Crc32.h" #include "../utils/StreamBuf.h" #define FRAME_HEADER_LEN (12+8) using namespace AlibabaCloud::OSS; struct SelectObjectFrame { int frame_type; int init_crc32; int32_t header_len; int32_t tail_len; int32_t payload_remains; uint8_t tail[4]; uint8_t header[FRAME_HEADER_LEN]; uint8_t end_frame[256]; uint32_t end_frame_size; uint32_t payload_crc32; }; class SelectObjectStreamBuf : public StreamBufProxy { public: SelectObjectStreamBuf(std::iostream& stream, int initCrc32) : StreamBufProxy(stream), lastStatus_(0) { // init frame frame_.init_crc32 = initCrc32; frame_.header_len = 0; frame_.tail_len = 0; frame_.payload_remains = 0; frame_.end_frame_size = 0; }; int LastStatus() { return lastStatus_; } protected: int selectObjectDepackFrame(const char *ptr, int len, int *frame_type, int *payload_len, char **payload_buf, SelectObjectFrame *frame) { int remain = len; //Version | Frame - Type | Payload Length | Header Checksum | Payload | Payload Checksum //<1 byte> <--3 bytes--> <-- 4 bytes --> <------4 bytes--> <----4bytes------> //Payload // //<8 types> // header if (frame->header_len < FRAME_HEADER_LEN) { int copy = FRAME_HEADER_LEN - frame->header_len; copy = ((remain > copy) ? copy : remain); memcpy(frame->header + frame->header_len, ptr, copy); frame->header_len += copy; ptr += copy; remain -= copy; // if deal with header done if (frame->header_len == FRAME_HEADER_LEN) { uint32_t payload_length; // calculation payload length payload_length = frame->header[4]; payload_length = (payload_length << 8) | frame->header[5]; payload_length = (payload_length << 8) | frame->header[6]; payload_length = (payload_length << 8) | frame->header[7]; frame->payload_remains = payload_length - 8; frame->payload_crc32 = CRC32::CalcCRC(frame->init_crc32, frame->header + 12, 8); } } // payload if (frame->payload_remains > 0) { int copy = (frame->payload_remains > remain) ? remain : frame->payload_remains; uint32_t type; type = frame->header[1]; type = (type << 8) | frame->header[2]; type = (type << 8) | frame->header[3]; *frame_type = type; *payload_len = copy; *payload_buf = (char *)ptr; remain -= copy; frame->payload_remains -= copy; frame->payload_crc32 = CRC32::CalcCRC(frame->payload_crc32, ptr, copy); return len - remain; } // tail if (frame->tail_len < 4) { int copy = 4 - frame->tail_len; copy = (copy > remain ? remain : copy); memcpy(frame->tail + frame->tail_len, ptr, copy); frame->tail_len += copy; remain -= copy; *frame_type = 0; } return len - remain; } int selectObjectTransferContent(SelectObjectFrame *frame, const char *ptr, int wanted) { int remain = wanted; char *payload_buf; // the actual length of the write int result = 0; // deal with the whole buffer while (remain > 0) { int frame_type = 0, payload_len = 0; int ret = selectObjectDepackFrame(ptr, remain, &frame_type, &payload_len, &payload_buf, frame); switch (frame_type) { case 0x800001: int temp; temp = static_cast(StreamBufProxy::xsputn(payload_buf, payload_len)); if (temp < 0) { return temp; } result += temp; break; case 0x800004: //Continuous Frame break; case 0x800005: //Select object End Frame { int32_t copy = sizeof(frame->end_frame) - frame->end_frame_size; copy = (copy > payload_len) ? payload_len : copy; if (copy > 0) { memcpy(frame->end_frame + frame->end_frame_size, ptr, copy); frame->end_frame_size += copy; } } break; default: // get payload checksum if (frame->tail_len == 4) { // compare check sum uint32_t payload_crc32; payload_crc32 = frame->tail[0]; payload_crc32 = (payload_crc32 << 8) | frame->tail[1]; payload_crc32 = (payload_crc32 << 8) | frame->tail[2]; payload_crc32 = (payload_crc32 << 8) | frame->tail[3]; if (payload_crc32 != 0 && payload_crc32 != frame->payload_crc32) { // CRC32 Checksum failed return -1; } // reset to get next frame frame->header_len = 0; frame->tail_len = 0; frame->payload_remains = 0; frame->end_frame_size = 0; } break; } ptr += ret; remain -= ret; } return result; } std::streamsize xsputn(const char *ptr, std::streamsize count) { int result = selectObjectTransferContent(&frame_, ptr, static_cast(count)); if (result < 0) { if (result == -1) { lastStatus_ = ARG_ERROR_SELECT_OBJECT_CHECK_SUM_FAILED; } return static_cast(result); } return count; } private: SelectObjectFrame frame_; int lastStatus_; }; ///////////////////////////////////////////////////////////// SelectObjectRequest::SelectObjectRequest(const std::string& bucket, const std::string& key) : GetObjectRequest(bucket, key), expressionType_(ExpressionType::SQL), skipPartialDataRecord_(false), maxSkippedRecordsAllowed_(0), inputFormat_(nullptr), outputFormat_(nullptr), streamBuffer_(nullptr), upperContent_(nullptr) { setResponseStreamFactory(ResponseStreamFactory()); // close CRC Checksum int flag = Flags(); flag |= REQUEST_FLAG_CONTENTMD5; flag &= ~REQUEST_FLAG_CHECK_CRC64; setFlags(flag); } void SelectObjectRequest::setResponseStreamFactory(const IOStreamFactory& factory) { upperResponseStreamFactory_ = factory; ServiceRequest::setResponseStreamFactory([this]() { streamBuffer_ = nullptr; auto content = upperResponseStreamFactory_(); if (!outputFormat_->OutputRawData()) { int initCrc32 = 0; #ifdef ENABLE_OSS_TEST if (!!(Flags() & 0x20000000)) { const char* TAG = "SelectObjectClient"; OSS_LOG(LogLevel::LogDebug, TAG, "Payload checksum fail."); initCrc32 = 1; } #endif // ENABLE_OSS_TEST streamBuffer_ = std::make_shared(*content, initCrc32); } upperContent_ = content; return content; }); } uint64_t SelectObjectRequest::MaxSkippedRecordsAllowed() const { return maxSkippedRecordsAllowed_; } void SelectObjectRequest::setSkippedRecords(bool skipPartialDataRecord, uint64_t maxSkippedRecords) { skipPartialDataRecord_ = skipPartialDataRecord; maxSkippedRecordsAllowed_ = maxSkippedRecords; } void SelectObjectRequest::setExpression(const std::string& expression, ExpressionType type) { expressionType_ = type; expression_ = expression; } void SelectObjectRequest::setInputFormat(InputFormat& inputFormat) { inputFormat_ = &inputFormat; } void SelectObjectRequest::setOutputFormat(OutputFormat& OutputFormat) { outputFormat_ = &OutputFormat; } int SelectObjectRequest::validate() const { int ret = GetObjectRequest::validate(); if (ret != 0) { return ret; } if (expressionType_ != ExpressionType::SQL) { return ARG_ERROR_SELECT_OBJECT_NOT_SQL_EXPRESSION; } if (inputFormat_ == nullptr || outputFormat_ == nullptr) { return ARG_ERROR_SELECT_OBJECT_NULL_POINT; } ret = inputFormat_->validate(); if (ret != 0) { return ret; } ret = outputFormat_->validate(); if (ret != 0) { return ret; } // check type if (inputFormat_->Type() != outputFormat_->Type()) { return ARG_ERROR_SELECT_OBJECT_PROCESS_NOT_SAME; } return 0; } std::string SelectObjectRequest::payload() const { std::stringstream ss; ss << "" << std::endl; // Expression ss << "" << Base64Encode(expression_) << "" << std::endl; // input format ss << inputFormat_->toXML(1) << std::endl; // output format ss << outputFormat_->toXML() << std::endl; // options ss << "" << std::endl; ss << "" << (skipPartialDataRecord_ ? "true" : "false") << "" << std::endl; ss << "" << std::to_string(MaxSkippedRecordsAllowed()) << "" << std::endl; ss << "" << std::endl; ss << "" << std::endl; return ss.str(); } int SelectObjectRequest::dispose() const { int ret = 0; if (streamBuffer_ != nullptr) { auto buf = std::static_pointer_cast(streamBuffer_); ret = buf->LastStatus(); streamBuffer_ = nullptr; } upperContent_ = nullptr; return ret; } ParameterCollection SelectObjectRequest::specialParameters() const { auto parameters = GetObjectRequest::specialParameters(); if (inputFormat_) { auto type = inputFormat_->Type(); type.append("/select"); parameters["x-oss-process"] = type; } return parameters; } ================================================ FILE: sdk/src/model/SetBucketAclRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; SetBucketAclRequest::SetBucketAclRequest(const std::string &bucket, CannedAccessControlList acl) : OssBucketRequest(bucket), acl_(acl) { } void SetBucketAclRequest::setAcl(CannedAccessControlList acl) { acl_ = acl; } HeaderCollection SetBucketAclRequest::specialHeaders() const { HeaderCollection headers; if (acl_ < CannedAccessControlList::Default) { headers["x-oss-acl"] = ToAclName(acl_); } return headers; } ParameterCollection SetBucketAclRequest::specialParameters() const { ParameterCollection parameters; parameters["acl"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketCorsRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include "ModelError.h" #include #include #include using namespace AlibabaCloud::OSS; SetBucketCorsRequest::SetBucketCorsRequest(const std::string &bucket) : OssBucketRequest(bucket) { } void SetBucketCorsRequest::addCORSRule(const CORSRule &rule) { ruleList_.push_back(rule); } void SetBucketCorsRequest::setCORSRules(const CORSRuleList &rules) { ruleList_ = rules; } std::string SetBucketCorsRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; for (const auto &rule : ruleList_) { ss << " " << std::endl; for (const auto &origin : rule.AllowedOrigins()) ss << " " << origin << "" << std::endl; for (const auto &method : rule.AllowedMethods()) ss << " " << method << "" << std::endl; for (const auto &header : rule.AllowedHeaders()) ss << " " << header << "" << std::endl; for (const auto &header : rule.ExposeHeaders()) ss << " " << header << "" << std::endl; if (rule.MaxAgeSeconds() > 0) ss << " " << std::to_string(rule.MaxAgeSeconds()) << "" << std::endl; ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketCorsRequest::specialParameters() const { ParameterCollection parameters; parameters["cors"] = ""; return parameters; } static int CountOfAsterisk(const CORSAllowedList &items) { int count = 0; for (auto const&item : items) { count += item.compare("*") ? 0 : 1; } return count; } static bool InAllowedMethods(const CORSAllowedList &items) { static std::set allowedMethods = { "GET" , "PUT" , "DELETE", "POST", "HEAD" }; //if (items.empty()) // return false; for (auto const&item : items) { if (allowedMethods.find(Trim(item.c_str())) == allowedMethods.end()) { return false; } } return true; } int SetBucketCorsRequest::validate() const { int ret = OssBucketRequest::validate(); if (ret) return ret; if (ruleList_.size() > BucketCorsRuleLimit) return ARG_ERROR_CORS_RULE_LIMIT; for (auto const &rule : ruleList_) { if (rule.AllowedOrigins().empty()) return ARG_ERROR_CORS_ALLOWEDORIGINS_EMPTY; if (CountOfAsterisk(rule.AllowedOrigins()) > 1) return ARG_ERROR_CORS_ALLOWEDORIGINS_ASTERISK_COUNT; if (rule.AllowedMethods().empty()) return ARG_ERROR_CORS_ALLOWEDMETHODS_EMPTY; if (!InAllowedMethods(rule.AllowedMethods())) return ARG_ERROR_CORS_ALLOWEDMETHODS_VALUE; if (CountOfAsterisk(rule.AllowedHeaders()) > 1) return ARG_ERROR_CORS_ALLOWEDHEADERS_ASTERISK_COUNT; if (CountOfAsterisk(rule.ExposeHeaders()) > 0) return ARG_ERROR_CORS_EXPOSEHEADERS_ASTERISK_COUNT; if ((rule.MaxAgeSeconds() != CORSRule::UNSET_AGE_SEC) && (rule.MaxAgeSeconds() < 0 || rule.MaxAgeSeconds() > 999999999)) { return ARG_ERROR_CORS_MAXAGESECONDS_RANGE; } } return 0; } ================================================ FILE: sdk/src/model/SetBucketEncryptionRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; SetBucketEncryptionRequest::SetBucketEncryptionRequest(const std::string& bucket, SSEAlgorithm sse, const std::string& key): OssBucketRequest(bucket), SSEAlgorithm_(sse), KMSMasterKeyID_(key) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void SetBucketEncryptionRequest::setSSEAlgorithm(SSEAlgorithm sse) { SSEAlgorithm_ = sse; } void SetBucketEncryptionRequest::setKMSMasterKeyID(const std::string& key) { KMSMasterKeyID_ = key; } ParameterCollection SetBucketEncryptionRequest::specialParameters() const { ParameterCollection parameters; parameters["encryption"] = ""; return parameters; } std::string SetBucketEncryptionRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::endl; ss << "" << ToSSEAlgorithmName(SSEAlgorithm_) << "" << std::endl; ss << "" << KMSMasterKeyID_ << "" << std::endl; ss << "" << std::endl; ss << "" << std::endl; return ss.str(); } ================================================ FILE: sdk/src/model/SetBucketInventoryConfigurationRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; SetBucketInventoryConfigurationRequest::SetBucketInventoryConfigurationRequest(const std::string& bucket) : SetBucketInventoryConfigurationRequest(bucket, InventoryConfiguration()) { } SetBucketInventoryConfigurationRequest::SetBucketInventoryConfigurationRequest(const std::string& bucket, const InventoryConfiguration& conf) : OssBucketRequest(bucket), inventoryConfiguration_(conf) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void SetBucketInventoryConfigurationRequest::setInventoryConfiguration(InventoryConfiguration conf) { inventoryConfiguration_ = conf; } ParameterCollection SetBucketInventoryConfigurationRequest::specialParameters() const { ParameterCollection parameters; parameters["inventory"] = ""; parameters["inventoryId"] = inventoryConfiguration_.Id(); return parameters; } std::string SetBucketInventoryConfigurationRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << inventoryConfiguration_.Id() << "" << std::endl; ss << " " << (inventoryConfiguration_.IsEnabled() ? "true" : "false") << "" << std::endl; if (!inventoryConfiguration_.Filter().Prefix().empty()) { ss << " " << std::endl; ss << " " << inventoryConfiguration_.Filter().Prefix() << "" << std::endl; ss << " " << std::endl; } bool hasEncryption = inventoryConfiguration_.Destination().OSSBucketDestination().Encryption().hasSSEKMS() || inventoryConfiguration_.Destination().OSSBucketDestination().Encryption().hasSSEOSS(); ss << " " << std::endl; ss << " " << std::endl; ss << " " << ToInventoryFormatName(inventoryConfiguration_.Destination().OSSBucketDestination().Format()) << "" << std::endl; ss << " " << inventoryConfiguration_.Destination().OSSBucketDestination().AccountId() << "" << std::endl; ss << " " << inventoryConfiguration_.Destination().OSSBucketDestination().RoleArn() << "" << std::endl; ss << " " << ToInventoryBucketFullName(inventoryConfiguration_.Destination().OSSBucketDestination().Bucket()) << "" << std::endl; ss << " " << inventoryConfiguration_.Destination().OSSBucketDestination().Prefix() << "" << std::endl; if (hasEncryption) { ss << " " << std::endl; if (inventoryConfiguration_.Destination().OSSBucketDestination().Encryption().hasSSEKMS()) { ss << " " << std::endl; ss << " " << inventoryConfiguration_.Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId() << "" << std::endl; ss << " " << std::endl; } if (inventoryConfiguration_.Destination().OSSBucketDestination().Encryption().hasSSEOSS()) { ss << " " << std::endl; ss << " " << std::endl; } ss << " " << std::endl; } ss << " " << std::endl; ss << " " << std::endl; ss << " " << std::endl; ss << " " << ToInventoryFrequencyName(inventoryConfiguration_.Schedule()) << "" << std::endl; ss << " " << std::endl; ss << " " << ToInventoryIncludedObjectVersionsName(inventoryConfiguration_.IncludedObjectVersions()) << "" << std::endl; if (!inventoryConfiguration_.OptionalFields().empty()) { ss << " " << std::endl; for (const auto& field : inventoryConfiguration_.OptionalFields()) { ss << " " << ToInventoryOptionalFieldName(field) << "" << std::endl; } ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ================================================ FILE: sdk/src/model/SetBucketLifecycleRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include <../utils/Utils.h> #include "ModelError.h" using namespace AlibabaCloud::OSS; SetBucketLifecycleRequest::SetBucketLifecycleRequest(const std::string& bucket) : OssBucketRequest(bucket) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketLifecycleRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; for (auto const &rule : lifecycleRules_) { ss << " " << std::endl; ss << " " << rule.ID() << "" << std::endl; ss << " " << rule.Prefix() << "" << std::endl; for (const auto& tag : rule.Tags()) { ss << " " << tag.Key() << "" << tag.Value() << "" << std::endl; } ss << " " << ToRuleStatusName(rule.Status()) << "" << std::endl; if (rule.hasExpiration()) { ss << " " << std::endl; if (rule.Expiration().Days() > 0) { ss << " " << std::to_string(rule.Expiration().Days()) << "" << std::endl; } else if (!rule.Expiration().CreatedBeforeDate().empty()){ ss << " " << rule.Expiration().CreatedBeforeDate() << "" << std::endl; } if (rule.ExpiredObjectDeleteMarker()) { ss << " true" << std::endl; } ss << " " << std::endl; } for (auto const & transition: rule.TransitionList()) { ss << " " << std::endl; if (transition.Expiration().Days() > 0) { ss << " " << std::to_string(transition.Expiration().Days()) << "" << std::endl; } else { ss << " " << transition.Expiration().CreatedBeforeDate() << "" << std::endl; } ss << " " << ToStorageClassName(transition.StorageClass()) << "" << std::endl; ss << " " << std::endl; } if (rule.hasAbortMultipartUpload()) { ss << " " << std::endl; if (rule.AbortMultipartUpload().Days() > 0) { ss << " " << std::to_string(rule.AbortMultipartUpload().Days()) << "" << std::endl; } else { ss << " " << rule.AbortMultipartUpload().CreatedBeforeDate() << "" << std::endl; } ss << " " << std::endl; } if (rule.hasNoncurrentVersionExpiration()) { ss << " " << std::endl; ss << " " << std::to_string(rule.NoncurrentVersionExpiration().Days()) << "" << std::endl; ss << " " << std::endl; } for (auto const & transition : rule.NoncurrentVersionTransitionList()) { ss << " " << std::endl; if (transition.Expiration().Days() > 0) { ss << " " << std::to_string(transition.Expiration().Days()) << "" << std::endl; } ss << " " << ToStorageClassName(transition.StorageClass()) << "" << std::endl; ss << " " << std::endl; } ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketLifecycleRequest::specialParameters() const { ParameterCollection parameters; parameters["lifecycle"] = ""; return parameters; } int SetBucketLifecycleRequest::validate() const { int ret; if ((ret = OssBucketRequest::validate()) != 0) { return ret; } if (lifecycleRules_.size() > LifecycleRuleLimit) { return ARG_ERROR_LIFECYCLE_RULE_LIMIT; } if (lifecycleRules_.empty()) { return ARG_ERROR_LIFECYCLE_RULE_EMPTY; } for (auto const &rule : lifecycleRules_) { //no config rule if (!rule.hasAbortMultipartUpload() && !rule.hasExpiration() && !rule.hasTransitionList() && !rule.hasNoncurrentVersionExpiration() && !rule.hasNoncurrentVersionTransitionList()) { return ARG_ERROR_LIFECYCLE_RULE_CONFIG_EMPTY; } if (rule.Prefix().empty() && lifecycleRules_.size() > 1) { return ARG_ERROR_LIFECYCLE_RULE_ONLY_ONE_FOR_BUCKET; } } return 0; } ================================================ FILE: sdk/src/model/SetBucketLoggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include <../utils/Utils.h> #include "ModelError.h" using namespace AlibabaCloud::OSS; SetBucketLoggingRequest::SetBucketLoggingRequest(const std::string& bucket) : SetBucketLoggingRequest(bucket, "", "") { } SetBucketLoggingRequest::SetBucketLoggingRequest(const std::string& bucket, const std::string& targetBucket, const std::string& targetPrefix) : OssBucketRequest(bucket), targetBucket_(targetBucket), targetPrefix_(targetPrefix) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketLoggingRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << "" << std::endl; ss << "" << targetBucket_ << "" << std::endl; ss << "" << targetPrefix_ << "" << std::endl; ss << "" << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketLoggingRequest::specialParameters() const { ParameterCollection parameters; parameters["logging"] = ""; return parameters; } int SetBucketLoggingRequest::validate() const { int ret; if ((ret = OssBucketRequest::validate()) != 0 ) { return ret; } if (!IsValidBucketName(targetBucket_)) { return ARG_ERROR_BUCKET_NAME; } if (!IsValidLoggingPrefix(targetPrefix_)) { return ARG_ERROR_LOGGING_TARGETPREFIX_INVALID; } return 0; } ================================================ FILE: sdk/src/model/SetBucketPaymentRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; SetBucketRequestPaymentRequest::SetBucketRequestPaymentRequest(const std::string& bucket) : SetBucketRequestPaymentRequest(bucket, RequestPayer::NotSet) { } SetBucketRequestPaymentRequest::SetBucketRequestPaymentRequest(const std::string& bucket, RequestPayer payer) : OssBucketRequest(bucket), payer_(payer) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketRequestPaymentRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << "" << ToRequestPayerName(payer_) << "" << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketRequestPaymentRequest::specialParameters() const { ParameterCollection parameters; parameters["requestPayment"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketPolicyRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; SetBucketPolicyRequest::SetBucketPolicyRequest(const std::string& bucket) : SetBucketPolicyRequest(bucket, "") { } SetBucketPolicyRequest::SetBucketPolicyRequest(const std::string& bucket, const std::string& policy) : OssBucketRequest(bucket), policy_(policy) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketPolicyRequest::payload() const { return policy_; } ParameterCollection SetBucketPolicyRequest::specialParameters() const { ParameterCollection parameters; parameters["policy"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketQosInfoRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; SetBucketQosInfoRequest::SetBucketQosInfoRequest(const std::string& bucket) : SetBucketQosInfoRequest(bucket, QosConfiguration()) { } SetBucketQosInfoRequest::SetBucketQosInfoRequest(const std::string& bucket, const QosConfiguration& qos) : OssBucketRequest(bucket), qosInfo_(qos) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketQosInfoRequest::payload() const { std::string str; str.append("\n"); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.TotalUploadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.IntranetUploadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.ExtranetUploadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.TotalDownloadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.IntranetDownloadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.ExtranetDownloadBandwidth())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.TotalQps())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.IntranetQps())); str.append("\n"); str.append(""); str.append(std::to_string(qosInfo_.ExtranetQps())); str.append("\n"); str.append(""); return str; } ParameterCollection SetBucketQosInfoRequest::specialParameters() const { ParameterCollection parameters; parameters["qosInfo"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketRefererRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include using namespace AlibabaCloud::OSS; SetBucketRefererRequest::SetBucketRefererRequest(const std::string& bucket) : OssBucketRequest(bucket), allowEmptyReferer_(true) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } SetBucketRefererRequest::SetBucketRefererRequest(const std::string& bucket, const RefererList& refererList) : SetBucketRefererRequest(bucket, refererList, true) { } SetBucketRefererRequest::SetBucketRefererRequest(const std::string& bucket, const RefererList& refererList, bool allowEmptyReferer) : OssBucketRequest(bucket), allowEmptyReferer_(allowEmptyReferer), refererList_(refererList) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketRefererRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << (allowEmptyReferer_ ? "true" : "false") << "" << std::endl; ss << " " << std::endl; for (const auto &referer : refererList_) { ss << " " << referer << "" << std::endl; } ss << " " << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketRefererRequest::specialParameters() const { ParameterCollection parameters; parameters["referer"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketStorageCapacityRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; SetBucketStorageCapacityRequest::SetBucketStorageCapacityRequest(const std::string &bucket, int64_t storageCapacity) : OssBucketRequest(bucket), storageCapacity_(storageCapacity) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } ParameterCollection SetBucketStorageCapacityRequest::specialParameters() const { ParameterCollection parameters; parameters["qos"] = ""; return parameters; } std::string SetBucketStorageCapacityRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::to_string(storageCapacity_) << "" << std::endl; ss << "" << std::endl; return ss.str(); } int SetBucketStorageCapacityRequest::validate() const { int ret; if ((ret = OssBucketRequest::validate()) != 0) { return ret; } if (storageCapacity_ < 0) return ARG_ERROR_STORAGECAPACITY_INVALID; return 0; } ================================================ FILE: sdk/src/model/SetBucketTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; SetBucketTaggingRequest::SetBucketTaggingRequest(const std::string& bucket) : SetBucketTaggingRequest(bucket, Tagging()) { } SetBucketTaggingRequest::SetBucketTaggingRequest(const std::string& bucket, const Tagging& tagging) : OssBucketRequest(bucket), tagging_(tagging) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void SetBucketTaggingRequest::setTagging(const Tagging& tagging) { tagging_ = tagging; } std::string SetBucketTaggingRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::endl; for (const auto& tag : tagging_.Tags()) { ss << " " << tag.Key() << "" << tag.Value() << "" << std::endl; } ss << " " << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketTaggingRequest::specialParameters() const { ParameterCollection parameters; parameters["tagging"] = ""; return parameters; } int SetBucketTaggingRequest::validate() const { int ret; if ((ret = OssBucketRequest::validate()) != 0) { return ret; } if (tagging_.Tags().empty() || tagging_.Tags().size() > MaxTagSize) { return ARG_ERROR_TAGGING_TAGS_LIMIT; } for (const auto& tag : tagging_.Tags()) { if (!IsValidTagKey(tag.Key())) return ARG_ERROR_TAGGING_TAG_KEY_LIMIT; if (!IsValidTagValue(tag.Value())) return ARG_ERROR_TAGGING_TAG_VALUE_LIMIT; } return 0; } ================================================ FILE: sdk/src/model/SetBucketVersioningRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include <../utils/Utils.h> #include "ModelError.h" using namespace AlibabaCloud::OSS; SetBucketVersioningRequest::SetBucketVersioningRequest(const std::string& bucket, VersioningStatus status) : OssBucketRequest(bucket), status_(status) { } void SetBucketVersioningRequest::setStatus(VersioningStatus status) { status_ = status; } std::string SetBucketVersioningRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << "" << ToVersioningStatusName(status_) << "" << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketVersioningRequest::specialParameters() const { ParameterCollection parameters; parameters["versioning"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetBucketWebsiteRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include <../utils/Utils.h> #include "ModelError.h" using namespace AlibabaCloud::OSS; SetBucketWebsiteRequest::SetBucketWebsiteRequest(const std::string& bucket) : OssBucketRequest(bucket), indexDocumentIsSet_(false), errorDocumentIsSet_(false) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } std::string SetBucketWebsiteRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::endl; ss << " " << indexDocument_ << "" << std::endl; ss << " " << std::endl; if (errorDocumentIsSet_) { ss << " " << std::endl; ss << " " << errorDocument_ << "" << std::endl; ss << " " << std::endl; } ss << "" << std::endl; return ss.str(); } ParameterCollection SetBucketWebsiteRequest::specialParameters() const { ParameterCollection parameters; parameters["website"] = ""; return parameters; } static bool IsValidWebpage(const std::string &webpage) { const std::string pageSuffix = ".html"; return (webpage.size() > pageSuffix.size()) && (webpage.substr(webpage.size() - 5).compare(".html") == 0); } int SetBucketWebsiteRequest::validate() const { int ret = OssBucketRequest::validate(); if (ret != 0) return ret; if (indexDocument_.empty()) return ARG_ERROR_WEBSITE_INDEX_DOCCUMENT_EMPTY; if (!IsValidWebpage(indexDocument_)) return ARG_ERROR_WEBSITE_INDEX_DOCCUMENT_NAME_INVALID; if (errorDocumentIsSet_ && !IsValidWebpage(errorDocument_)) return ARG_ERROR_WEBSITE_ERROR_DOCCUMENT_NAME_INVALID; return 0; } ================================================ FILE: sdk/src/model/SetObjectAclRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; SetObjectAclRequest::SetObjectAclRequest(const std::string &bucket, const std::string &key) : OssObjectRequest(bucket,key), hasSetAcl_(false) { } SetObjectAclRequest::SetObjectAclRequest(const std::string &bucket ,const std::string &key, CannedAccessControlList acl) : OssObjectRequest(bucket,key), acl_(acl), hasSetAcl_(true) { } void SetObjectAclRequest::setAcl(CannedAccessControlList acl) { acl_ = acl; hasSetAcl_ = true; } HeaderCollection SetObjectAclRequest::specialHeaders() const { auto headers = OssObjectRequest::specialHeaders(); if (hasSetAcl_) { headers["x-oss-object-acl"] = ToAclName(acl_); } return headers; } ParameterCollection SetObjectAclRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["acl"] = ""; return parameters; } ================================================ FILE: sdk/src/model/SetObjectAclResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; SetObjectAclResult::SetObjectAclResult(): OssObjectResult() { } SetObjectAclResult::SetObjectAclResult(const HeaderCollection& header): OssObjectResult(header) { } ================================================ FILE: sdk/src/model/SetObjectTaggingRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; SetObjectTaggingRequest::SetObjectTaggingRequest(const std::string& bucket, const std::string& key): OssObjectRequest(bucket, key) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } SetObjectTaggingRequest::SetObjectTaggingRequest(const std::string& bucket, const std::string& key, const Tagging& tagging): OssObjectRequest(bucket, key), tagging_(tagging) { setFlags(Flags() | REQUEST_FLAG_CONTENTMD5); } void SetObjectTaggingRequest::setTagging(const Tagging& tagging) { tagging_ = tagging; } std::string SetObjectTaggingRequest::payload() const { std::stringstream ss; ss << "" << std::endl; ss << "" << std::endl; ss << " " << std::endl; for (const auto& tag : tagging_.Tags()) { ss << " "<< tag.Key() <<"" << tag.Value() << "" << std::endl; } ss << " " << std::endl; ss << "" << std::endl; return ss.str(); } ParameterCollection SetObjectTaggingRequest::specialParameters() const { auto parameters = OssObjectRequest::specialParameters(); parameters["tagging"] = ""; return parameters; } int SetObjectTaggingRequest::validate() const { int ret; if ((ret = OssObjectRequest::validate()) != 0) { return ret; } if (tagging_.Tags().empty() || tagging_.Tags().size() > MaxTagSize) { return ARG_ERROR_TAGGING_TAGS_LIMIT; } for (const auto& tag : tagging_.Tags()) { if (!IsValidTagKey(tag.Key())) return ARG_ERROR_TAGGING_TAG_KEY_LIMIT; if (!IsValidTagValue(tag.Value())) return ARG_ERROR_TAGGING_TAG_VALUE_LIMIT; } return 0; } ================================================ FILE: sdk/src/model/Tagging.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "../utils/Utils.h" #include using namespace AlibabaCloud::OSS; std::string Tagging::toQueryParameters() { std::string sep; std::stringstream ss; for (const auto& tag : tagSet_) { if (tag.Key().empty()) continue; if (tag.Value().empty()) ss << sep << UrlEncode(tag.Key()); else ss << sep << UrlEncode(tag.Key()) << "=" << UrlEncode(tag.Value()); sep = "&"; } return ss.str(); } ================================================ FILE: sdk/src/model/UploadPartCopyRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; using std::stringstream; UploadPartCopyRequest::UploadPartCopyRequest(const std::string &bucket, const std::string &key) : UploadPartCopyRequest(bucket, key, std::string(), std::string(), std::string(), 0) { } UploadPartCopyRequest::UploadPartCopyRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey) : UploadPartCopyRequest(bucket, key, srcBucket, srcKey, std::string(), 0) { } UploadPartCopyRequest::UploadPartCopyRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::string &uploadId, int partNumber): OssObjectRequest(bucket, key), uploadId_(uploadId), sourceBucket_(srcBucket), sourceKey_(srcKey), partNumber_(partNumber), sourceRangeIsSet_(false), sourceIfMatchETagIsSet_(false), sourceIfNotMatchETagIsSet_(false), sourceIfModifiedSinceIsSet_(false), sourceIfUnModifiedSinceIsSet_(false), trafficLimit_(0) { } UploadPartCopyRequest::UploadPartCopyRequest(const std::string& bucket, const std::string& key, const std::string& srcBucket, const std::string& srcKey, const std::string& uploadId, int partNumber, const std::string& sourceIfMatchETag, const std::string& sourceIfNotMatchETag, const std::string& sourceIfModifiedSince, const std::string& sourceIfUnModifiedSince) : OssObjectRequest(bucket, key), uploadId_(uploadId), sourceBucket_(srcBucket), sourceKey_(srcKey), partNumber_(partNumber), sourceRangeIsSet_(false), trafficLimit_(0) { if (!sourceIfMatchETag.empty()) { sourceIfMatchETag_ = sourceIfMatchETag; sourceIfMatchETagIsSet_ = true; } else { sourceIfMatchETagIsSet_ = false; } if (!sourceIfNotMatchETag.empty()) { sourceIfNotMatchETag_ = sourceIfNotMatchETag; sourceIfNotMatchETagIsSet_ = true; } else { sourceIfNotMatchETagIsSet_ = false; } if (!sourceIfModifiedSince.empty()) { sourceIfModifiedSince_ = sourceIfModifiedSince; sourceIfModifiedSinceIsSet_ = true; } else { sourceIfModifiedSinceIsSet_ = false; } if (!sourceIfUnModifiedSince.empty()) { sourceIfUnModifiedSince_ = sourceIfUnModifiedSince; sourceIfUnModifiedSinceIsSet_ = true; } else { sourceIfUnModifiedSinceIsSet_ = false; } } void UploadPartCopyRequest::setPartNumber(uint32_t partNumber) { partNumber_ = partNumber; } void UploadPartCopyRequest::setUploadId(const std::string &uploadId) { uploadId_ = uploadId; } void UploadPartCopyRequest::SetCopySource(const std::string& srcBucket, const std::string& srcKey) { sourceBucket_ = srcBucket; sourceKey_ = srcKey; } void UploadPartCopyRequest::setCopySourceRange(uint64_t begin, uint64_t end) { sourceRange_[0] = begin; sourceRange_[1] = end; sourceRangeIsSet_ = true; } void UploadPartCopyRequest::SetSourceIfMatchETag(const std::string& value) { sourceIfMatchETag_ = value; sourceIfMatchETagIsSet_ = true; } void UploadPartCopyRequest::SetSourceIfNotMatchETag(const std::string& value) { sourceIfNotMatchETag_ = value; sourceIfNotMatchETagIsSet_ = true; } void UploadPartCopyRequest::SetSourceIfModifiedSince(const std::string& value) { sourceIfModifiedSince_ = value; sourceIfModifiedSinceIsSet_ = true; } void UploadPartCopyRequest::SetSourceIfUnModifiedSince(const std::string& value) { sourceIfUnModifiedSince_ = value; sourceIfUnModifiedSinceIsSet_ = true; } void UploadPartCopyRequest::setTrafficLimit(uint64_t value) { trafficLimit_ = value; } ParameterCollection UploadPartCopyRequest::specialParameters() const { ParameterCollection parameters; parameters["partNumber"] = std::to_string(partNumber_); parameters["uploadId"] = uploadId_; return parameters; } HeaderCollection UploadPartCopyRequest::specialHeaders() const { auto headers = OssObjectRequest::specialHeaders(); std::string source; source.append("/").append(sourceBucket_).append("/").append(UrlEncode(sourceKey_)); if (!versionId_.empty()) { source.append("?versionId=").append(versionId_); } headers["x-oss-copy-source"] = source; if (sourceRangeIsSet_) { std::string range("bytes="); range.append(std::to_string(sourceRange_[0])).append("-"); if (sourceRange_[1] > 0){ range.append(std::to_string(sourceRange_[1])); } headers["x-oss-copy-source-range"] = range; } if(sourceIfMatchETagIsSet_) { headers["x-oss-copy-source-if-match"] = sourceIfMatchETag_; } if(sourceIfNotMatchETagIsSet_) { headers["x-oss-copy-source-if-none-match"] = sourceIfNotMatchETag_; } if(sourceIfModifiedSinceIsSet_) { headers["x-oss-copy-source-if-modified-since"] = sourceIfModifiedSince_; } if (sourceIfUnModifiedSinceIsSet_) { headers["x-oss-copy-source-if-unmodified-since"] = sourceIfUnModifiedSince_; } if (trafficLimit_ != 0) { headers["x-oss-traffic-limit"] = std::to_string(trafficLimit_); } return headers; } int UploadPartCopyRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret != 0){ return ret; } if (!IsValidBucketName(sourceBucket_)) { return ARG_ERROR_BUCKET_NAME; } if (!IsValidObjectKey(sourceKey_)) { return ARG_ERROR_OBJECT_NAME; } if (sourceRangeIsSet_ && ((sourceRange_[1] < sourceRange_[0]) || ((sourceRange_[1] - sourceRange_[0] + 1) > MaxFileSize))) { return ARG_ERROR_MULTIPARTUPLOAD_PARTSIZE_RANGE; } if(!(partNumber_ > 0 && partNumber_ < PartNumberUpperLimit)){ return ARG_ERROR_MULTIPARTUPLOAD_PARTNUMBER_RANGE; } return 0; } ================================================ FILE: sdk/src/model/UploadPartCopyResult.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; using namespace tinyxml2; UploadPartCopyResult::UploadPartCopyResult() : OssObjectResult() { } UploadPartCopyResult::UploadPartCopyResult(const std::string& result): UploadPartCopyResult() { *this = result; } UploadPartCopyResult::UploadPartCopyResult(const std::shared_ptr& result, const HeaderCollection &headers): OssObjectResult(headers) { if (headers.find("x-oss-copy-source-version-id") != headers.end()) { sourceVersionId_ = headers.at("x-oss-copy-source-version-id"); } std::istreambuf_iterator isb(*result.get()), end; std::string str(isb, end); *this = str; } UploadPartCopyResult& UploadPartCopyResult::operator =( const std::string& result) { XMLDocument doc; XMLError xml_err; if ((xml_err = doc.Parse(result.c_str(), result.size())) == XML_SUCCESS) { XMLElement* root =doc.RootElement(); if (root && !std::strncmp("CopyPartResult", root->Name(), 14)) { XMLElement *node; node = root->FirstChildElement("LastModified"); if (node && node->GetText()) { lastModified_ = node->GetText(); } node = root->FirstChildElement("ETag"); if (node && node->GetText()) { eTag_ = TrimQuotes(node->GetText()); } parseDone_ = true; } } return *this; } const std::string& UploadPartCopyResult::LastModified() const { return lastModified_; } const std::string& UploadPartCopyResult::ETag() const { return eTag_; } ================================================ FILE: sdk/src/model/UploadPartRequest.cc ================================================ /* * Copyright 2009-2018 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../utils/Utils.h" #include "ModelError.h" #include using namespace AlibabaCloud::OSS; UploadPartRequest::UploadPartRequest(const std::string &bucket, const std::string &key, const std::shared_ptr &content) : UploadPartRequest(bucket, key, 0, "", content) { } UploadPartRequest::UploadPartRequest(const std::string &bucket, const std::string &key, int partNumber, const std::string &uploadId, const std::shared_ptr &content) : OssObjectRequest(bucket, key), partNumber_(partNumber), uploadId_(uploadId), content_(content), contentLengthIsSet_(false), trafficLimit_(0), userAgent_(), contentMd5IsSet_(false) { setFlags(Flags() | REQUEST_FLAG_CHECK_CRC64 | REQUEST_FLAG_CHUNKED_ENCODING); } void UploadPartRequest::setPartNumber(int partNumber) { partNumber_ = partNumber; } void UploadPartRequest::setUploadId(const std::string &uploadId) { uploadId_ = uploadId; } void UploadPartRequest::setContent(const std::shared_ptr &content) { content_ = content; } void UploadPartRequest::setConetent(const std::shared_ptr &content) { content_ = content; } void UploadPartRequest::setContentLength(uint64_t length) { contentLength_ = length; contentLengthIsSet_ = true; } void UploadPartRequest::setTrafficLimit(uint64_t value) { trafficLimit_ = value; } void UploadPartRequest::setUserAgent(const std::string& ua) { userAgent_ = ua; } void UploadPartRequest::setContentMd5(const std::string& value) { contentMd5_ = value; contentMd5IsSet_ = true; } int UploadPartRequest::PartNumber() const { return partNumber_; } std::shared_ptr UploadPartRequest::Body() const { return content_; } HeaderCollection UploadPartRequest::specialHeaders() const { auto headers = OssObjectRequest::specialHeaders(); headers[Http::CONTENT_TYPE] = ""; if (contentLengthIsSet_) { headers[Http::CONTENT_LENGTH] = std::to_string(contentLength_); } if (trafficLimit_ != 0) { headers["x-oss-traffic-limit"] = std::to_string(trafficLimit_); } if (!userAgent_.empty()) { headers[Http::USER_AGENT] = userAgent_; } if (contentMd5IsSet_) { headers[Http::CONTENT_MD5] = contentMd5_; } return headers; } ParameterCollection UploadPartRequest::specialParameters() const { ParameterCollection parameters; parameters["partNumber"] = std::to_string(partNumber_); parameters["uploadId"] = uploadId_; return parameters; } int UploadPartRequest::validate() const { int ret = OssObjectRequest::validate(); if (ret) { return ret; } if (content_ == nullptr) { return ARG_ERROR_REQUEST_BODY_NULLPTR; } if (content_->bad()) { return ARG_ERROR_REQUEST_BODY_BAD_STATE; } if (content_->fail()) { return ARG_ERROR_REQUEST_BODY_FAIL_STATE; } if (!(partNumber_ > 0 && partNumber_ < PartNumberUpperLimit)) { return ARG_ERROR_MULTIPARTUPLOAD_PARTNUMBER_RANGE; } uint64_t partSize; if (contentLengthIsSet_) { partSize = contentLength_; } else { partSize = GetIOStreamLength(*content_); } if (partSize > MaxFileSize) { return ARG_ERROR_MULTIPARTUPLOAD_PARTSIZE_RANGE; } return 0; } ================================================ FILE: sdk/src/resumable/DownloadObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../model/ModelError.h" #include "../utils/FileSystemUtils.h" using namespace AlibabaCloud::OSS; DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir, const uint64_t partSize, const uint32_t threadNum): OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), rangeIsSet_(false), filePath_(filePath) { tempFilePath_ = filePath + ".temp"; } DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir) : DownloadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath) : DownloadObjectRequest(bucket, key, filePath, "", DefaultPartSize, DefaultResumableThreadNum) {} //wstring DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir, const uint64_t partSize, const uint32_t threadNum) : OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), rangeIsSet_(false), filePathW_(filePath) { tempFilePathW_ = filePath + L".temp"; } DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir) : DownloadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} DownloadObjectRequest::DownloadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath) : DownloadObjectRequest(bucket, key, filePath, L"", DefaultPartSize, DefaultResumableThreadNum) {} void DownloadObjectRequest::setRange(int64_t start, int64_t end) { range_[0] = start; range_[1] = end; rangeIsSet_ = true; } void DownloadObjectRequest::setModifiedSinceConstraint(const std::string &value) { modifiedSince_ = value; } void DownloadObjectRequest::setUnmodifiedSinceConstraint(const std::string &value) { unmodifiedSince_ = value; } void DownloadObjectRequest::setMatchingETagConstraints(const std::vector &values) { matchingETags_ = values; } void DownloadObjectRequest::setNonmatchingETagConstraints(const std::vector &values) { nonmatchingETags_ = values; } void DownloadObjectRequest::addResponseHeaders(RequestResponseHeader header, const std::string &value) { static const char *ResponseHeader[] = { "response-content-type", "response-content-language", "response-expires", "response-cache-control", "response-content-disposition", "response-content-encoding" }; responseHeaderParameters_[ResponseHeader[header - RequestResponseHeader::ContentType]] = value; } int DownloadObjectRequest::validate() const { auto ret = OssResumableBaseRequest::validate(); if (ret != 0) { return ret; } if (rangeIsSet_ && (range_[0] < 0 || range_[1] < -1 || (range_[1] > -1 && range_[1] < range_[0]))) { return ARG_ERROR_INVALID_RANGE; } #if !defined(_WIN32) if (!filePathW_.empty()) { return ARG_ERROR_PATH_NOT_SUPPORT_WSTRING_TYPE; } #endif if (filePath_.empty() && filePathW_.empty()) { return ARG_ERROR_DOWNLOAD_FILE_PATH_EMPTY; } //path and checkpoint must be same type. if ((!filePath_.empty() && !checkpointDirW_.empty()) || (!filePathW_.empty() && !checkpointDir_.empty())) { return ARG_ERROR_PATH_NOT_SAME_TYPE; } //check tmpfilePath is available auto stream = GetFstreamByPath(tempFilePath_, tempFilePathW_, std::ios::out | std::ios::app); if (!stream->is_open()) { return ARG_ERROR_OPEN_DOWNLOAD_TEMP_FILE; } stream->close(); return 0; } ================================================ FILE: sdk/src/resumable/MultiCopyObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../utils/FileSystemUtils.h" #include "../utils/Utils.h" #include "../model/ModelError.h" using namespace AlibabaCloud::OSS; static const std::string strEmpty = ""; MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey) : MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, "", DefaultPartSize, DefaultResumableThreadNum) {} MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::string &checkpointDir) : MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::string &checkpointDir, const ObjectMetaData& meta): MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, DefaultPartSize, DefaultResumableThreadNum, meta) {} MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::string &checkpointDir, uint64_t partSize, uint32_t threadNum, const ObjectMetaData& meta): MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, partSize, threadNum) { metaData_ = meta; } MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::string &checkpointDir, uint64_t partSize, uint32_t threadNum) : OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), srcBucket_(srcBucket), srcKey_(srcKey) { setCopySource(srcBucket, srcKey); } //wstring MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::wstring &checkpointDir) : MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::wstring &checkpointDir, const ObjectMetaData& meta) : MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, DefaultPartSize, DefaultResumableThreadNum, meta) {} MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::wstring &checkpointDir, uint64_t partSize, uint32_t threadNum, const ObjectMetaData& meta) : MultiCopyObjectRequest(bucket, key, srcBucket, srcKey, checkpointDir, partSize, threadNum) { metaData_ = meta; } MultiCopyObjectRequest::MultiCopyObjectRequest(const std::string &bucket, const std::string &key, const std::string &srcBucket, const std::string &srcKey, const std::wstring &checkpointDir, uint64_t partSize, uint32_t threadNum) : OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), srcBucket_(srcBucket), srcKey_(srcKey) { setCopySource(srcBucket, srcKey); } void MultiCopyObjectRequest::setCopySource(const std::string& srcBucket, const std::string& srcObject) { std::stringstream ssDesc; ssDesc << "/" << srcBucket << "/" << srcObject; std::string value = ssDesc.str(); metaData_.addHeader("x-oss-copy-source", value); } void MultiCopyObjectRequest::setSourceIfMatchEtag(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-match", value); } const std::string& MultiCopyObjectRequest::SourceIfMatchEtag() const { if (metaData_.HttpMetaData().find("x-oss-copy-source-if-match") != metaData_.HttpMetaData().end()) { return metaData_.HttpMetaData().at("x-oss-copy-source-if-match"); } return strEmpty; } void MultiCopyObjectRequest::setSourceIfNotMatchEtag(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-none-match", value); } const std::string& MultiCopyObjectRequest::SourceIfNotMatchEtag() const { if (metaData_.HttpMetaData().find("x-oss-copy-source-if-none-match") != metaData_.HttpMetaData().end()) { return metaData_.HttpMetaData().at("x-oss-copy-source-if-none-match"); } return strEmpty; } void MultiCopyObjectRequest::setSourceIfUnModifiedSince(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-unmodified-since", value); } const std::string& MultiCopyObjectRequest::SourceIfUnModifiedSince() const { if (metaData_.HttpMetaData().find("x-oss-copy-source-if-unmodified-since") != metaData_.HttpMetaData().end()) { return metaData_.HttpMetaData().at("x-oss-copy-source-if-unmodified-since"); } return strEmpty; } void MultiCopyObjectRequest::setSourceIfModifiedSince(const std::string& value) { metaData_.addHeader("x-oss-copy-source-if-modified-since", value); } const std::string& MultiCopyObjectRequest::SourceIfModifiedSince() const { if (metaData_.HttpMetaData().find("x-oss-copy-source-if-modified-since") != metaData_.HttpMetaData().end()) { return metaData_.HttpMetaData().at("x-oss-copy-source-if-modified-since"); } return strEmpty; } void MultiCopyObjectRequest::setMetadataDirective(const CopyActionList& action) { metaData_.addHeader("x-oss-metadata-directive", ToCopyActionName(action)); } void MultiCopyObjectRequest::setAcl(const CannedAccessControlList& acl) { metaData_.addHeader("x-oss-object-acl", ToAclName(acl)); } int MultiCopyObjectRequest::validate() const { auto ret = OssResumableBaseRequest::validate(); if (ret != 0) { return ret; } return 0; } ================================================ FILE: sdk/src/resumable/ResumableBaseWorker.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #ifdef _WIN32 #include #endif #include #include "ResumableBaseWorker.h" #include "../utils/FileSystemUtils.h" #include "../utils/Utils.h" using namespace AlibabaCloud::OSS; ResumableBaseWorker::ResumableBaseWorker(uint64_t objectSize, uint64_t partSize) : hasRecord_(false), objectSize_(objectSize), consumedSize_(0), partSize_(partSize) { } int ResumableBaseWorker::validate(OssError& err) { genRecordPath(); if (hasRecordPath()) { if (0 != loadRecord()) { removeRecordFile(); } } if (hasRecord_) { if (0 != validateRecord()) { removeRecordFile(); if (0 != prepare(err)) { return -1; } } } else { if (0 != prepare(err)) { return -1; } } return 0; } void ResumableBaseWorker::determinePartSize() { uint64_t partSize = partSize_; uint64_t objectSize = objectSize_; uint64_t partCount = (objectSize - 1) / partSize + 1; while (partCount > PartNumberUpperLimit) { partSize = partSize * 2; partCount = (objectSize - 1) / partSize + 1; } partSize_ = partSize; } bool ResumableBaseWorker::hasRecordPath() { return !(recordPath_.empty() && recordPathW_.empty()); } void ResumableBaseWorker::removeRecordFile() { if (!recordPath_.empty()) { RemoveFile(recordPath_); } #ifdef _WIN32 if (!recordPathW_.empty()) { RemoveFile(recordPathW_); } #endif } #ifdef _WIN32 std::string ResumableBaseWorker::toString(const std::wstring& str) { std::wstring_convert> conv; return conv.to_bytes(str); } std::wstring ResumableBaseWorker::toWString(const std::string& str) { std::wstring_convert> conv; return conv.from_bytes(str); } #else std::string ResumableBaseWorker::toString(const std::wstring& str) { UNUSED_PARAM(str); return ""; } std::wstring ResumableBaseWorker::toWString(const std::string& str) { UNUSED_PARAM(str); return L""; } #endif ================================================ FILE: sdk/src/resumable/ResumableBaseWorker.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include "../OssClientImpl.h" namespace AlibabaCloud { namespace OSS { class ResumableBaseWorker { public: ResumableBaseWorker(uint64_t objectSize, uint64_t partSize); protected: virtual int validate(OssError& err); virtual void determinePartSize(); virtual void genRecordPath() = 0; virtual int loadRecord() = 0; virtual int prepare(OssError& err) = 0; virtual int validateRecord() = 0; virtual bool hasRecordPath(); virtual void removeRecordFile(); std::string toString(const std::wstring& str); std::wstring toWString(const std::string& str); bool hasRecord_; std::string recordPath_; std::wstring recordPathW_; std::mutex lock_; uint64_t objectSize_; uint64_t consumedSize_; uint64_t partSize_; }; } } ================================================ FILE: sdk/src/resumable/ResumableCopier.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include "../utils/Utils.h" #include "../utils/LogUtils.h" #include "../utils/FileSystemUtils.h" #include "../external/json/json.h" //#include "OssClientImpl.h" #include "../model/ModelError.h" #include "ResumableCopier.h" using namespace AlibabaCloud::OSS; CopyObjectOutcome ResumableCopier::Copy() { OssError err; if (0 != validate(err)) { return CopyObjectOutcome(err); } PartList partsToUploadCopy; PartList partsCopied; if (getPartsToUploadCopy(err, partsCopied, partsToUploadCopy) != 0) { return CopyObjectOutcome(err); } std::vector outcomes; std::vector threadPool; for (uint32_t i = 0; i < request_.ThreadNum(); i++) { threadPool.emplace_back(std::thread([&]() { Part part; while (true) { { std::lock_guard lck(lock_); if (partsToUploadCopy.empty()) break; part = partsToUploadCopy.front(); partsToUploadCopy.erase(partsToUploadCopy.begin()); } if (!client_->isEnableRequest()) break; uint64_t offset = partSize_ * (part.PartNumber() - 1); uint64_t length = part.Size(); auto uploadPartCopyReq = UploadPartCopyRequest(request_.Bucket(), request_.Key(), request_.SrcBucket(), request_.SrcKey(), uploadID_, part.PartNumber(), request_.SourceIfMatchEtag(), request_.SourceIfNotMatchEtag(), request_.SourceIfModifiedSince(), request_.SourceIfUnModifiedSince()); uploadPartCopyReq.setCopySourceRange(offset, offset + length - 1); if (request_.RequestPayer() == RequestPayer::Requester) { uploadPartCopyReq.setRequestPayer(request_.RequestPayer()); } if (request_.TrafficLimit() != 0) { uploadPartCopyReq.setTrafficLimit(request_.TrafficLimit()); } if (!request_.VersionId().empty()) { uploadPartCopyReq.setVersionId(request_.VersionId()); } auto outcome = client_->UploadPartCopy(uploadPartCopyReq); #ifdef ENABLE_OSS_TEST if (!!(request_.Flags() & 0x40000000) && (part.PartNumber() == 2 || part.PartNumber() == 4)) { const char* TAG = "ResumableCopyObjectClient"; OSS_LOG(LogLevel::LogDebug, TAG, "NO.%d part data copy failed!", part.PartNumber()); outcome = UploadPartCopyOutcome(); } #endif // ENABLE_OSS_TEST //lock { std::lock_guard lck(lock_); if (outcome.isSuccess()) { part.eTag_ = outcome.result().ETag(); partsCopied.push_back(part); } outcomes.push_back(outcome); if (outcome.isSuccess()) { auto process = request_.TransferProgress(); if (process.Handler) { consumedSize_ += length; process.Handler((size_t)length, consumedSize_, objectSize_, process.UserData); } } } } })); } for (auto& worker : threadPool) { if (worker.joinable()) { worker.join(); } } for (const auto& outcome : outcomes) { if (!outcome.isSuccess()) { return CopyObjectOutcome(outcome.error()); } } if (!client_->isEnableRequest()) { return CopyObjectOutcome(OssError("ClientError:100002", "Disable all requests by upper.")); } // sort partsCopied std::sort(partsCopied.begin(), partsCopied.end(), [](const Part& a, const Part& b) { return a.PartNumber() < b.PartNumber(); }); CompleteMultipartUploadRequest completeMultipartUploadReq(request_.Bucket(), request_.Key(), partsCopied, uploadID_); if (request_.MetaData().HttpMetaData().find("x-oss-object-acl") != request_.MetaData().HttpMetaData().end()) { std::string aclName = request_.MetaData().HttpMetaData().at("x-oss-object-acl"); completeMultipartUploadReq.setAcl(ToAclType(aclName.c_str())); } if (!request_.EncodingType().empty()) { completeMultipartUploadReq.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { completeMultipartUploadReq.setRequestPayer(request_.RequestPayer()); } auto compOutcome = client_->CompleteMultipartUpload(completeMultipartUploadReq); if (!compOutcome.isSuccess()) { return CopyObjectOutcome(compOutcome.error()); } removeRecordFile(); CopyObjectResult result; HeadObjectRequest hRequest(request_.Bucket(), request_.Key()); if (request_.RequestPayer() == RequestPayer::Requester) { hRequest.setRequestPayer(request_.RequestPayer()); } if (!compOutcome.result().VersionId().empty()) { hRequest.setVersionId(compOutcome.result().VersionId()); } auto hOutcome = client_->HeadObject(HeadObjectRequest(hRequest)); if (hOutcome.isSuccess()) { result.setLastModified(hOutcome.result().LastModified()); } result.setEtag(compOutcome.result().ETag()); result.setRequestId(compOutcome.result().RequestId()); result.setVersionId(compOutcome.result().VersionId()); return CopyObjectOutcome(result); } int ResumableCopier::prepare(OssError& err) { determinePartSize(); ObjectMetaData metaData(request_.MetaData()); if (metaData.HttpMetaData().find("x-oss-metadata-directive") == metaData.HttpMetaData().end() || (metaData.HttpMetaData().find("x-oss-metadata-directive") != metaData.HttpMetaData().end() && metaData.HttpMetaData().at("x-oss-metadata-directive") == "COPY")) { HeadObjectRequest hRequest(request_.SrcBucket(), request_.SrcKey()); if (request_.RequestPayer() == RequestPayer::Requester) { hRequest.setRequestPayer(request_.RequestPayer()); } if (!request_.VersionId().empty()) { hRequest.setVersionId(request_.VersionId()); } auto headObjectOutcome = client_->HeadObject(hRequest); if (!headObjectOutcome.isSuccess()) { err = headObjectOutcome.error(); return -1; } auto& meta = metaData.UserMetaData(); meta = headObjectOutcome.result().UserMetaData(); } auto initMultipartUploadReq = InitiateMultipartUploadRequest(request_.Bucket(), request_.Key(), metaData); if (!request_.EncodingType().empty()) { initMultipartUploadReq.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { initMultipartUploadReq.setRequestPayer(request_.RequestPayer()); } auto outcome = client_->InitiateMultipartUpload(initMultipartUploadReq); if (!outcome.isSuccess()) { err = outcome.error(); return -1; } //init record_ uploadID_ = outcome.result().UploadId(); if (hasRecordPath()) { initRecord(uploadID_); Json::Value root; root["opType"] = record_.opType; root["uploadID"] = record_.uploadID; root["srcBucket"] = record_.srcBucket; root["srcKey"] = record_.srcKey; root["bucket"] = record_.bucket; root["key"] = record_.key; root["mtime"] = record_.mtime; root["size"] = record_.size; root["partSize"] = record_.partSize; std::stringstream ss; ss << root; std::string md5Sum = ComputeContentETag(ss); root["md5Sum"] = md5Sum; auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::out); if (recordStream->is_open()) { *recordStream << root; recordStream->close(); } } return 0; } bool ResumableCopier::doesNotExistUploadId() { // The upload ID may be invalid, or the upload may have been aborted or completed. auto listRequest = ListPartsRequest(request_.Bucket(), request_.Key(), record_.uploadID); if (!request_.EncodingType().empty()) { listRequest.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { listRequest.setRequestPayer(request_.RequestPayer()); } listRequest.setMaxParts(1); auto listOutcome = this->client_->ListParts(listRequest); if (!listOutcome.isSuccess() && listOutcome.error().Code() == "NoSuchUpload") { return true; } return false; } int ResumableCopier::validateRecord() { auto record = record_; if (record.size != objectSize_ || record.mtime != request_.ObjectMtime()) { return ARG_ERROR_COPY_SRC_OBJECT_MODIFIED; } Json::Value root; root["opType"] = record.opType; root["uploadID"] = record.uploadID; root["srcBucket"] = record.srcBucket; root["srcKey"] = record.srcKey; root["bucket"] = record.bucket; root["key"] = record.key; root["mtime"] = record.mtime; root["size"] = record.size; root["partSize"] = record.partSize; std::stringstream recordStream; recordStream << root; std::string md5Sum = ComputeContentETag(recordStream); if (md5Sum != record.md5Sum) { return ARG_ERROR_COPY_RECORD_INVALID; } if (doesNotExistUploadId()) { return ARG_ERROR_COPY_RECORD_INVALID; } return 0; } int ResumableCopier::loadRecord() { if (hasRecordPath()) { auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::in); if (recordStream->is_open()) { Json::Value root; Json::CharReaderBuilder rbuilder; std::string errMsg; if (!Json::parseFromStream(rbuilder, *recordStream, &root, &errMsg)) { return ARG_ERROR_PARSE_COPY_RECORD_FILE; } record_.opType = root["opType"].asString(); record_.uploadID = root["uploadID"].asString(); record_.srcBucket = root["srcBucket"].asString(); record_.srcKey = root["srcKey"].asString(); record_.bucket = root["bucket"].asString(); record_.key = root["key"].asString(); record_.size = root["size"].asUInt64(); record_.mtime = root["mtime"].asString(); record_.partSize = root["partSize"].asUInt64(); record_.md5Sum = root["md5Sum"].asString(); partSize_ = record_.partSize; uploadID_ = record_.uploadID; hasRecord_ = true; recordStream->close(); } } return 0; } void ResumableCopier::genRecordPath() { recordPath_ = ""; recordPathW_ = L""; if (!request_.hasCheckpointDir()) { return; } std::stringstream ss; ss << "oss://" << request_.SrcBucket() << "/" << request_.SrcKey(); if (!request_.VersionId().empty()) { ss << "?versionId=" << request_.VersionId(); } auto srcPath = ss.str(); ss.str(""); ss << "oss://" << request_.Bucket() << "/" << request_.Key(); auto destPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); if (!request_.CheckpointDirW().empty()) { recordPathW_ = request_.CheckpointDirW() + WPATH_DELIMITER + toWString(safeFileName); } else { recordPath_ = request_.CheckpointDir() + PATH_DELIMITER + safeFileName; } } int ResumableCopier::getPartsToUploadCopy(OssError &err, PartList &partsCopied, PartList &partsToUploadCopy) { std::set partNumbersUploaded; if (hasRecord_) { uint32_t marker = 0; auto listPartsRequest = ListPartsRequest(request_.Bucket(), request_.Key(), uploadID_); if (!request_.EncodingType().empty()) { listPartsRequest.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { listPartsRequest.setRequestPayer(request_.RequestPayer()); } while (true) { listPartsRequest.setPartNumberMarker(marker); auto outcome = client_->ListParts(listPartsRequest); if (!outcome.isSuccess()) { err = outcome.error(); return -1; } auto parts = outcome.result().PartList(); for (auto iter = parts.begin(); iter != parts.end(); iter++) { partNumbersUploaded.insert(iter->PartNumber()); partsCopied.emplace_back(*iter); consumedSize_ += iter->Size(); } if (outcome.result().IsTruncated()) { marker = outcome.result().NextPartNumberMarker(); } else { break; } } } int32_t partCount = (int32_t)((objectSize_ - 1) / partSize_ + 1); for (int32_t i = 0; i < partCount; i++) { Part part; part.partNumber_ = i + 1; if (i == partCount - 1) { part.size_ = objectSize_ - partSize_ * (partCount - 1); } else { part.size_ = partSize_; } auto iterNum = partNumbersUploaded.find(part.PartNumber()); if (iterNum == partNumbersUploaded.end()) { partsToUploadCopy.push_back(part); } } return 0; } void ResumableCopier::initRecord(const std::string &uploadID) { record_.opType = "ResumableCopy"; record_.uploadID = uploadID; record_.srcBucket = request_.SrcBucket(); record_.srcKey = request_.SrcKey(); record_.bucket = request_.Bucket(); record_.key = request_.Key(); record_.mtime = request_.ObjectMtime(); record_.size = objectSize_; record_.partSize = partSize_; } ================================================ FILE: sdk/src/resumable/ResumableCopier.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "ResumableBaseWorker.h" namespace AlibabaCloud { namespace OSS { struct MultiCopyRecord { std::string opType; std::string uploadID; std::string srcBucket; std::string srcKey; std::string bucket; std::string key; std::string mtime; uint64_t size; uint64_t partSize; std::string md5Sum; }; class ResumableCopier : public ResumableBaseWorker { public: ResumableCopier(const MultiCopyObjectRequest &request, const OssClientImpl *client, uint64_t objectSize) :ResumableBaseWorker(objectSize, request.PartSize()), request_(request), client_(client) { } CopyObjectOutcome Copy(); protected: void genRecordPath(); int loadRecord(); int validateRecord(); int prepare(OssError& err); void initRecord(const std::string &uploadID); int getPartsToUploadCopy(OssError &err, PartList &partsCopied, PartList &partsToUpload); bool doesNotExistUploadId(); const MultiCopyObjectRequest request_; MultiCopyRecord record_; const OssClientImpl *client_; std::string uploadID_; }; } } ================================================ FILE: sdk/src/resumable/ResumableDownloader.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" #include "../utils/Crc64.h" #include "../utils/LogUtils.h" #include "../utils/FileSystemUtils.h" #include "../external/json/json.h" //#include "OssClientImpl.h" #include "ResumableDownloader.h" #include "../model/ModelError.h" using namespace AlibabaCloud::OSS; struct DownloaderTransferState { int64_t transfered; void *userData; }; GetObjectOutcome ResumableDownloader::Download() { OssError err; if (0 != validate(err)) { return GetObjectOutcome(err); } PartRecordList partsToDownload; if (getPartsToDownload(err, partsToDownload) != 0) { return GetObjectOutcome(err); } //task queue PartRecordList downloadedParts; if (hasRecord_) { downloadedParts = record_.parts; } std::vector outcomes; std::vector threadPool; for (uint32_t i = 0; i < request_.ThreadNum(); i++) { threadPool.emplace_back(std::thread([&]() { PartRecord part; while (true) { { std::lock_guard lck(lock_); if (partsToDownload.empty()) break; part = partsToDownload.front(); partsToDownload.erase(partsToDownload.begin()); } if (!client_->isEnableRequest()) break; uint64_t pos = partSize_ * (part.partNumber - 1); uint64_t start = part.offset; uint64_t end = start + part.size - 1; auto getObjectReq = GetObjectRequest(request_.Bucket(), request_.Key(), request_.ModifiedSinceConstraint(), request_.UnmodifiedSinceConstraint(), request_.MatchingETagsConstraint(), request_.NonmatchingETagsConstraint(), request_.ResponseHeaderParameters()); getObjectReq.setResponseStreamFactory([this, pos]() { auto tmpFstream = GetFstreamByPath(request_.TempFilePath(), request_.TempFilePathW(), std::ios_base::in | std::ios_base::out | std::ios_base::binary); tmpFstream->seekp(pos, tmpFstream->beg); return tmpFstream; }); getObjectReq.setRange(start, end); getObjectReq.setFlags(getObjectReq.Flags() | REQUEST_FLAG_CHECK_CRC64 | REQUEST_FLAG_SAVE_CLIENT_CRC64); DownloaderTransferState transferState; auto process = request_.TransferProgress(); if (process.Handler) { transferState.transfered = 0; transferState.userData = (void *)this; TransferProgress uploadPartProcess = { DownloadPartProcessCallback, (void *)&transferState }; getObjectReq.setTransferProgress(uploadPartProcess); } if (request_.RequestPayer() == RequestPayer::Requester) { getObjectReq.setRequestPayer(request_.RequestPayer()); } if (request_.TrafficLimit() != 0) { getObjectReq.setTrafficLimit(request_.TrafficLimit()); } if (!request_.VersionId().empty()) { getObjectReq.setVersionId(request_.VersionId()); } auto outcome = GetObjectWrap(getObjectReq); #ifdef ENABLE_OSS_TEST if (!!(request_.Flags() & 0x40000000) && part.partNumber == 2) { const char* TAG = "ResumableDownloadObjectClient"; OSS_LOG(LogLevel::LogDebug, TAG, "NO.2 part data download failed."); outcome = GetObjectOutcome(); } #endif // ENABLE_OSS_TEST // lock { std::lock_guard lck(lock_); if (outcome.isSuccess()) { part.crc64 = std::strtoull(outcome.result().Metadata().HttpMetaData().at("x-oss-hash-crc64ecma-by-client").c_str(), nullptr, 10); downloadedParts.push_back(part); } outcomes.push_back(outcome); //update record if (hasRecordPath() && outcome.isSuccess()) { auto &record = record_; record.parts = downloadedParts; Json::Value root; root["opType"] = record.opType; root["bucket"] = record.bucket; root["key"] = record.key; root["filePath"] = record.filePath; root["mtime"] = record.mtime; root["size"] = record.size; root["partSize"] = record.partSize; int index = 0; for (PartRecord& partR : record.parts) { root["parts"][index]["partNumber"] = partR.partNumber; root["parts"][index]["size"] = partR.size; root["parts"][index]["crc64"] = partR.crc64; index++; } std::stringstream ss; ss << root; std::string md5Sum = ComputeContentETag(ss); root["md5Sum"] = md5Sum; if (request_.RangeIsSet()) { root["rangeStart"] = record.rangeStart; root["rangeEnd"] = record.rangeEnd; } auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::out); if (recordStream->is_open()) { *recordStream << root; recordStream->close(); } } } } })); } for (auto& worker : threadPool) { if (worker.joinable()) { worker.join(); } } std::shared_ptr content = nullptr; for (auto& outcome : outcomes) { if (!outcome.isSuccess()) { return GetObjectOutcome(outcome.error()); } outcome.result().setContent(content); } if (!client_->isEnableRequest()) { return GetObjectOutcome(OssError("ClientError:100002", "Disable all requests by upper.")); } // sort std::sort(downloadedParts.begin(), downloadedParts.end(), [&](const PartRecord& a, const PartRecord& b) { return a.partNumber < b.partNumber; }); ObjectMetaData meta; if (outcomes.empty()) { HeadObjectRequest hRequest(request_.Bucket(), request_.Key()); if (request_.RequestPayer() == RequestPayer::Requester) { hRequest.setRequestPayer(request_.RequestPayer()); } if (!request_.VersionId().empty()) { hRequest.setVersionId(request_.VersionId()); } auto hOutcome = client_->HeadObject(hRequest); if (!hOutcome.isSuccess()) { return GetObjectOutcome(hOutcome.error()); } meta = hOutcome.result(); } else { meta = outcomes[0].result().Metadata(); } meta.setContentLength(contentLength_); //check crc and update metadata if (!request_.RangeIsSet()) { if (client_->configuration().enableCrc64) { uint64_t localCRC64 = downloadedParts[0].crc64; for (size_t i = 1; i < downloadedParts.size(); i++) { localCRC64 = CRC64::CombineCRC(localCRC64, downloadedParts[i].crc64, downloadedParts[i].size); } if (localCRC64 != meta.CRC64()) { return GetObjectOutcome(OssError("CrcCheckError", "ResumableDownload object CRC checksum fail.")); } } meta.HttpMetaData().erase(Http::CONTENT_RANGE); } else { std::stringstream ss; ss << "bytes " << std::to_string(request_.RangeStart()) << "-"; if (request_.RangeEnd() != -1) { ss << std::to_string(request_.RangeEnd()) << "/" << std::to_string(objectSize_); } else { ss << std::to_string(objectSize_ - 1) << "/" << std::to_string(objectSize_); } meta.HttpMetaData()["Content-Range"] = ss.str(); } if (meta.HttpMetaData().find("x-oss-hash-crc64ecma-by-client") != meta.HttpMetaData().end()) { meta.HttpMetaData().erase("x-oss-hash-crc64ecma-by-client"); } if (!renameTempFile()) { std::stringstream ss; ss << "rename temp file failed"; return GetObjectOutcome(OssError("RenameError", ss.str())); } removeRecordFile(); GetObjectResult result(request_.Bucket(), request_.Key(), meta); return GetObjectOutcome(result); } int ResumableDownloader::prepare(OssError& err) { UNUSED_PARAM(err); determinePartSize(); if (hasRecordPath()) { initRecord(); Json::Value root; root["opType"] = record_.opType; root["bucket"] = record_.bucket; root["key"] = record_.key; root["filePath"] = record_.filePath; root["mtime"] = record_.mtime; root["size"] = record_.size; root["partSize"] = record_.partSize; root["parts"].resize(0); std::stringstream ss; ss << root; std::string md5Sum = ComputeContentETag(ss); root["md5Sum"] = md5Sum; if (request_.RangeIsSet()) { root["rangeStart"] = record_.rangeStart; root["rangeEnd"] = record_.rangeEnd; } auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::out); if (recordStream->is_open()) { *recordStream << root; recordStream->close(); } } return 0; } int ResumableDownloader::validateRecord() { auto record = record_; if (record.size != objectSize_ || record.mtime != request_.ObjectMtime()) { return ARG_ERROR_DOWNLOAD_OBJECT_MODIFIED; } if (request_.RangeIsSet()) { if (record.rangeStart != request_.RangeStart() || record.rangeEnd != request_.RangeEnd()) { return ARG_ERROR_RANGE_HAS_BEEN_RESET; } } Json::Value root; root["opType"] = record.opType; root["bucket"] = record.bucket; root["key"] = record.key; root["filePath"] = record.filePath; root["mtime"] = record.mtime; root["size"] = record.size; root["partSize"] = record.partSize; root["parts"].resize(0); int index = 0; for (PartRecord& part : record.parts) { root["parts"][index]["partNumber"] = part.partNumber; root["parts"][index]["size"] = part.size; root["parts"][index]["crc64"] = part.crc64; index++; } if (!(record.rangeStart == 0 && record.rangeEnd == -1)) { root["rangeStart"] = record.rangeStart; root["rangeEnd"] = record.rangeEnd; } std::stringstream recordStream; recordStream << root; std::string md5Sum = ComputeContentETag(recordStream); if (md5Sum != record.md5Sum) { return -1; } return 0; } int ResumableDownloader::loadRecord() { auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::in); if (recordStream->is_open()) { Json::Value root; Json::CharReaderBuilder rbuilder; std::string errMsg; if (!Json::parseFromStream(rbuilder, *recordStream, &root, &errMsg)) { return ARG_ERROR_PARSE_DOWNLOAD_RECORD_FILE; } record_.opType = root["opType"].asString(); record_.bucket = root["bucket"].asString(); record_.key = root["key"].asString(); record_.filePath = root["filePath"].asString(); record_.mtime = root["mtime"].asString(); record_.size = root["size"].asUInt64(); record_.partSize = root["partSize"].asUInt64(); PartRecord part; for (uint32_t i = 0; i < root["parts"].size(); i++) { Json::Value partValue = root["parts"][i]; part.partNumber = partValue["partNumber"].asInt(); part.size = partValue["size"].asInt64(); part.crc64 = partValue["crc64"].asUInt64(); record_.parts.push_back(part); } record_.md5Sum = root["md5Sum"].asString(); if (root["rangeStart"] != Json::nullValue && root["rangeEnd"] != Json::nullValue) { record_.rangeStart = root["rangeStart"].asInt64(); record_.rangeEnd = root["rangeEnd"].asInt64(); } else if(root["rangeStart"] == Json::nullValue && root["rangeEnd"] == Json::nullValue){ record_.rangeStart = 0; record_.rangeEnd = -1; }else { return ARG_ERROR_INVALID_RANGE_IN_DWONLOAD_RECORD; } partSize_ = record_.partSize; hasRecord_ = true; recordStream->close(); } return 0; } void ResumableDownloader::genRecordPath() { recordPath_ = ""; recordPathW_ = L""; if (!request_.hasCheckpointDir()) return; std::stringstream ss; ss << "oss://" << request_.Bucket() << "/" << request_.Key(); if (!request_.VersionId().empty()) { ss << "?versionId=" << request_.VersionId(); } auto srcPath = ss.str(); auto destPath = !request_.FilePathW().empty() ? toString(request_.FilePathW()) : request_.FilePath(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); if (!request_.CheckpointDirW().empty()) { recordPathW_ = request_.CheckpointDirW() + WPATH_DELIMITER + toWString(safeFileName);; } else { recordPath_ = request_.CheckpointDir() + PATH_DELIMITER + safeFileName; } } int ResumableDownloader::getPartsToDownload(OssError &err, PartRecordList &partsToDownload) { UNUSED_PARAM(err); std::set partNumbersDownloaded; if (hasRecord_) { for (PartRecord &part : record_.parts) { partNumbersDownloaded.insert(part.partNumber); consumedSize_ += part.size; } } int64_t start = 0; int64_t end = objectSize_ - 1; if (request_.RangeIsSet()) { start = request_.RangeStart(); end = request_.RangeEnd(); if (end == -1) { end = objectSize_ - 1; } contentLength_ = end - start + 1; } int32_t index = 1; for (int64_t offset = start; offset < end + 1; offset += partSize_, index++) { PartRecord part; part.partNumber = index; part.offset = offset; if (offset + (int64_t)partSize_ > end) { part.size = end - offset + 1; } else { part.size = partSize_; } auto iterNum = partNumbersDownloaded.find(part.partNumber); if (iterNum == partNumbersDownloaded.end()) { partsToDownload.push_back(part); } } return 0; } void ResumableDownloader::initRecord() { auto filePath = request_.FilePath(); if (!request_.FilePathW().empty()) { filePath = toString(request_.FilePathW()); } record_.opType = "ResumableDownload"; record_.bucket = request_.Bucket(); record_.key = request_.Key(); record_.filePath = filePath; record_.mtime = request_.ObjectMtime(); record_.size = objectSize_; record_.partSize = partSize_; //in this place we shuold consider the condition that range is not set if (request_.RangeIsSet()) { record_.rangeStart = request_.RangeStart(); record_.rangeEnd = request_.RangeEnd(); } else { record_.rangeStart = 0; record_.rangeEnd = -1; } } void ResumableDownloader::DownloadPartProcessCallback(size_t increment, int64_t transfered, int64_t total, void *userData) { UNUSED_PARAM(total); auto transferState = (DownloaderTransferState *)userData; auto downloader = (ResumableDownloader*)transferState->userData; auto inc = transfered - transferState->transfered; transferState->transfered = std::max(transfered, transferState->transfered); inc = std::max(inc, static_cast(0)); increment = static_cast(inc); std::lock_guard lck(downloader->lock_); downloader->consumedSize_ += increment; auto process = downloader->request_.TransferProgress(); if (process.Handler) { process.Handler(increment, downloader->consumedSize_, downloader->contentLength_, process.UserData); } } bool ResumableDownloader::renameTempFile() { #ifdef _WIN32 if (!request_.TempFilePathW().empty()) { return RenameFile(request_.TempFilePathW(), request_.FilePathW()); } else #endif { return RenameFile(request_.TempFilePath(), request_.FilePath()); } } GetObjectOutcome ResumableDownloader::GetObjectWrap(const GetObjectRequest &request) const { return client_->GetObject(request); } ================================================ FILE: sdk/src/resumable/ResumableDownloader.h ================================================ #pragma once /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "ResumableBaseWorker.h" namespace AlibabaCloud { namespace OSS { struct PartRecord { int32_t partNumber; int64_t offset; int64_t size; uint64_t crc64; }; typedef std::vector PartRecordList; struct DownloadRecord { std::string opType; std::string bucket; std::string key; std::string filePath; std::string mtime; uint64_t size; uint64_t partSize; PartRecordList parts; std::string md5Sum; int64_t rangeStart; int64_t rangeEnd; //crc64 }; class ResumableDownloader : public ResumableBaseWorker { public: ResumableDownloader(const DownloadObjectRequest& request, const OssClientImpl *client, uint64_t objectSize) : ResumableBaseWorker(objectSize, request.PartSize()), request_(request),client_(client), contentLength_(objectSize) {} GetObjectOutcome Download(); protected: void genRecordPath(); int loadRecord(); int validateRecord(); int prepare(OssError& err); void initRecord(); int getPartsToDownload(OssError &err, PartRecordList &partsToDownload); bool renameTempFile(); static void DownloadPartProcessCallback(size_t increment, int64_t transfered, int64_t total, void *userData); virtual GetObjectOutcome GetObjectWrap(const GetObjectRequest &request) const; const DownloadObjectRequest request_; DownloadRecord record_; const OssClientImpl *client_; uint64_t contentLength_; }; } } ================================================ FILE: sdk/src/resumable/ResumableUploader.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include #include #include #include "../external/json/json.h" #include "../utils/FileSystemUtils.h" #include "../utils/Utils.h" #include "../utils/LogUtils.h" #include "../utils/Crc64.h" #include "../OssClientImpl.h" #include "../model/ModelError.h" #include "ResumableUploader.h" using namespace AlibabaCloud::OSS; struct UploaderTransferState { int64_t transfered; void *userData; }; ResumableUploader::ResumableUploader(const UploadObjectRequest& request, const OssClientImpl *client) : ResumableBaseWorker(request.ObjectSize(), request.PartSize()), request_(request), client_(client) { if (!request.FilePath().empty()) { time_t lastMtime; std::streamsize fileSize; if (GetPathInfo(request.FilePath(), lastMtime, fileSize)) { objectSize_ = static_cast(fileSize); } } #ifdef _WIN32 else if (!request.FilePathW().empty()) { time_t lastMtime; std::streamsize fileSize; if (GetPathInfo(request.FilePathW(), lastMtime, fileSize)) { objectSize_ = static_cast(fileSize); } } #endif } PutObjectOutcome ResumableUploader::Upload() { OssError err; if (0 != validate(err)) { return PutObjectOutcome(err); } PartList partsToUpload; PartList uploadedParts; if (getPartsToUpload(err, uploadedParts, partsToUpload) != 0){ return PutObjectOutcome(err); } std::vector outcomes; std::vector threadPool; for (uint32_t i = 0; i < request_.ThreadNum(); i++) { threadPool.emplace_back(std::thread([&]() { Part part; while (true) { { std::lock_guard lck(lock_); if (partsToUpload.empty()) break; part = partsToUpload.front(); partsToUpload.erase(partsToUpload.begin()); } if (!client_->isEnableRequest()) break; uint64_t offset = partSize_ * (part.PartNumber() - 1); uint64_t length = part.Size(); auto content = GetFstreamByPath(request_.FilePath(), request_.FilePathW(), std::ios::in | std::ios::binary); content->seekg(offset, content->beg); UploadPartRequest uploadPartRequest(request_.Bucket(), request_.Key(), part.PartNumber(), uploadID_, content); uploadPartRequest.setContentLength(length); UploaderTransferState transferState; auto process = request_.TransferProgress(); if (process.Handler) { transferState.transfered = 0; transferState.userData = (void *)this; TransferProgress uploadPartProcess = { UploadPartProcessCallback, (void *)&transferState }; uploadPartRequest.setTransferProgress(uploadPartProcess); } if (request_.RequestPayer() == RequestPayer::Requester) { uploadPartRequest.setRequestPayer(request_.RequestPayer()); } if (request_.TrafficLimit() != 0) { uploadPartRequest.setTrafficLimit(request_.TrafficLimit()); } auto outcome = UploadPartWrap(uploadPartRequest); #ifdef ENABLE_OSS_TEST if (!!(request_.Flags() & 0x40000000) && part.PartNumber() == 2) { const char* TAG = "ResumableUploadObjectClient"; OSS_LOG(LogLevel::LogDebug, TAG, "NO.2 part data upload failed."); outcome = PutObjectOutcome(); } #endif // ENABLE_OSS_TEST if (outcome.isSuccess()) { part.eTag_ = outcome.result().ETag(); part.cRC64_ = outcome.result().CRC64(); } //lock { std::lock_guard lck(lock_); uploadedParts.push_back(part); outcomes.push_back(outcome); } } })); } for (auto& worker:threadPool) { if(worker.joinable()){ worker.join(); } } if (!client_->isEnableRequest()) { return PutObjectOutcome(OssError("ClientError:100002", "Disable all requests by upper.")); } for (const auto& outcome : outcomes) { if (!outcome.isSuccess()) { return PutObjectOutcome(outcome.error()); } } // sort uploadedParts std::sort(uploadedParts.begin(), uploadedParts.end(), [&](const Part& a, const Part& b) { return a.PartNumber() < b.PartNumber(); }); CompleteMultipartUploadRequest completeMultipartUploadReq(request_.Bucket(), request_.Key(), uploadedParts, uploadID_); if (request_.MetaData().hasHeader("x-oss-object-acl")) { completeMultipartUploadReq.MetaData().HttpMetaData()["x-oss-object-acl"] = request_.MetaData().HttpMetaData().at("x-oss-object-acl"); } if (!request_.EncodingType().empty()) { completeMultipartUploadReq.setEncodingType(request_.EncodingType()); } if (request_.MetaData().hasHeader("x-oss-callback")) { completeMultipartUploadReq.MetaData().HttpMetaData()["x-oss-callback"] = request_.MetaData().HttpMetaData().at("x-oss-callback"); if (request_.MetaData().hasHeader("x-oss-callback-var")) { completeMultipartUploadReq.MetaData().HttpMetaData()["x-oss-callback-var"] = request_.MetaData().HttpMetaData().at("x-oss-callback-var"); } if (request_.MetaData().hasHeader("x-oss-pub-key-url")) { completeMultipartUploadReq.MetaData().HttpMetaData()["x-oss-pub-key-url"] = request_.MetaData().HttpMetaData().at("x-oss-pub-key-url"); } } if (request_.RequestPayer() == RequestPayer::Requester) { completeMultipartUploadReq.setRequestPayer(request_.RequestPayer()); } auto outcome = CompleteMultipartUploadWrap(completeMultipartUploadReq); if (!outcome.isSuccess()) { return PutObjectOutcome(outcome.error()); } // crc uint64_t localCRC64 = uploadedParts[0].CRC64(); for (size_t i = 1; i < uploadedParts.size(); i++) { localCRC64 = CRC64::CombineCRC(localCRC64, uploadedParts[i].CRC64(), uploadedParts[i].Size()); } uint64_t ossCRC64 = outcome.result().CRC64(); if (ossCRC64 != 0 && localCRC64 != ossCRC64) { return PutObjectOutcome(OssError("CrcCheckError", "ResumableUpload Object CRC Checksum fail.")); } removeRecordFile(); HeaderCollection headers; headers[Http::ETAG] = outcome.result().ETag(); headers["x-oss-hash-crc64ecma"] = std::to_string(outcome.result().CRC64()); headers["x-oss-request-id"] = outcome.result().RequestId(); if (!outcome.result().VersionId().empty()) { headers["x-oss-version-id"] = outcome.result().VersionId(); } return PutObjectOutcome(PutObjectResult(headers, outcome.result().Content())); } int ResumableUploader::prepare(OssError& err) { determinePartSize(); auto initMultipartUploadReq = InitiateMultipartUploadRequest(request_.Bucket(), request_.Key(), request_.MetaData()); if (!request_.EncodingType().empty()) { initMultipartUploadReq.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { initMultipartUploadReq.setRequestPayer(request_.RequestPayer()); } auto outcome = InitiateMultipartUploadWrap(initMultipartUploadReq); if(!outcome.isSuccess()){ err = outcome.error(); return -1; } //init record_ uploadID_ = outcome.result().UploadId(); if (hasRecordPath()) { Json::Value root; initRecordInfo(); dumpRecordInfo(root); std::stringstream ss; ss << root; std::string md5Sum = ComputeContentETag(ss); root["md5Sum"] = md5Sum; auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::out); if (recordStream->is_open()) { *recordStream << root; recordStream->close(); } } return 0; } bool ResumableUploader::doesNotExistUploadId() { // The upload ID may be invalid, or the upload may have been aborted or completed. auto listRequest = ListPartsRequest(request_.Bucket(), request_.Key(), record_.uploadID); if (!request_.EncodingType().empty()) { listRequest.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { listRequest.setRequestPayer(request_.RequestPayer()); } listRequest.setMaxParts(1); auto listOutcome = this->client_->ListParts(listRequest); if (!listOutcome.isSuccess() && listOutcome.error().Code() == "NoSuchUpload") { return true; } return false; } int ResumableUploader::validateRecord() { if (record_.size != objectSize_ || record_.mtime != request_.ObjectMtime()){ return ARG_ERROR_UPLOAD_FILE_MODIFIED; } Json::Value root; dumpRecordInfo(root); std::stringstream recordStream; recordStream << root; std::string md5Sum = ComputeContentETag(recordStream); if (md5Sum != record_.md5Sum){ return ARG_ERROR_UPLOAD_RECORD_INVALID; } if (doesNotExistUploadId()) { return ARG_ERROR_UPLOAD_RECORD_INVALID; } return 0; } int ResumableUploader::loadRecord() { auto recordStream = GetFstreamByPath(recordPath_, recordPathW_, std::ios::in); if (recordStream->is_open()){ Json::Value root; Json::CharReaderBuilder rbuilder; std::string errMsg; if (!Json::parseFromStream(rbuilder, *recordStream, &root, &errMsg)) { return ARG_ERROR_PARSE_UPLOAD_RECORD_FILE; } buildRecordInfo(root); partSize_ = record_.partSize; uploadID_ = record_.uploadID; hasRecord_ = true; recordStream->close(); } return 0; } void ResumableUploader::genRecordPath() { recordPath_ = ""; recordPathW_ = L""; if (!request_.hasCheckpointDir()) return; auto srcPath = !request_.FilePathW().empty()? toString(request_.FilePathW()): request_.FilePath(); std::stringstream ss; ss << "oss://" << request_.Bucket() << "/" << request_.Key(); auto destPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); if (!request_.CheckpointDirW().empty()) { recordPathW_ = request_.CheckpointDirW() + WPATH_DELIMITER + toWString(safeFileName);; } else { recordPath_ = request_.CheckpointDir() + PATH_DELIMITER + safeFileName; } } int ResumableUploader::getPartsToUpload(OssError &err, PartList &partsUploaded, PartList &partsToUpload) { std::set partNumbersUploaded; if(hasRecord_){ uint32_t marker = 0; auto listPartsRequest = ListPartsRequest(request_.Bucket(), request_.Key(), uploadID_); if (!request_.EncodingType().empty()) { listPartsRequest.setEncodingType(request_.EncodingType()); } if (request_.RequestPayer() == RequestPayer::Requester) { listPartsRequest.setRequestPayer(request_.RequestPayer()); } while(true){ listPartsRequest.setPartNumberMarker(marker); auto outcome = ListPartsWrap(listPartsRequest); if(!outcome.isSuccess()){ err = outcome.error(); return -1; } auto parts = outcome.result().PartList(); for(auto iter = parts.begin(); iter != parts.end(); iter++){ if (iter->Size() != static_cast(partSize_)) { continue; } partNumbersUploaded.insert(iter->PartNumber()); partsUploaded.emplace_back(*iter); consumedSize_ += iter->Size(); } if(outcome.result().IsTruncated()){ marker = outcome.result().NextPartNumberMarker(); }else{ break; } } } int32_t partCount = (int32_t)((objectSize_ - 1)/ partSize_ + 1); for(int32_t i = 0; i < partCount; i++){ Part part; part.partNumber_ = i+1; if (i == partCount -1 ){ part.size_ = objectSize_ - partSize_ * (partCount - 1); }else{ part.size_ = partSize_; } auto iterNum = partNumbersUploaded.find(part.PartNumber()); if (iterNum == partNumbersUploaded.end()){ partsToUpload.push_back(part); } } return 0; } void ResumableUploader::initRecordInfo() { record_.opType = "ResumableUpload"; record_.uploadID = uploadID_; record_.filePath = request_.FilePath(); record_.bucket = request_.Bucket(); record_.key = request_.Key(); record_.mtime = request_.ObjectMtime(); record_.size = objectSize_; record_.partSize = partSize_; } void ResumableUploader::buildRecordInfo(const AlibabaCloud::OSS::Json::Value& root) { record_.opType = root["opType"].asString(); record_.uploadID = root["uploadID"].asString(); record_.filePath = root["filePath"].asString(); record_.bucket = root["bucket"].asString(); record_.key = root["key"].asString(); record_.size = root["size"].asUInt64(); record_.mtime = root["mtime"].asString(); record_.partSize = root["partSize"].asUInt64(); record_.md5Sum = root["md5Sum"].asString(); } void ResumableUploader::dumpRecordInfo(AlibabaCloud::OSS::Json::Value& root) { root["opType"] = record_.opType; root["uploadID"] = record_.uploadID; root["filePath"] = record_.filePath; root["bucket"] = record_.bucket; root["key"] = record_.key; root["mtime"] = record_.mtime; root["size"] = record_.size; root["partSize"] = record_.partSize; } void ResumableUploader::UploadPartProcessCallback(size_t increment, int64_t transfered, int64_t total, void *userData) { UNUSED_PARAM(total); auto transferState = (UploaderTransferState *)userData; auto uploader = (ResumableUploader*)transferState->userData; auto inc = transfered - transferState->transfered; transferState->transfered = std::max(transfered, transferState->transfered); inc = std::max(inc, static_cast(0)); increment = static_cast(inc); std::lock_guard lck(uploader->lock_); uploader->consumedSize_ += increment; auto process = uploader->request_.TransferProgress(); if (process.Handler) { process.Handler(increment, uploader->consumedSize_, uploader->objectSize_, process.UserData); } } InitiateMultipartUploadOutcome ResumableUploader::InitiateMultipartUploadWrap(const InitiateMultipartUploadRequest &request) const { return client_->InitiateMultipartUpload(request); } PutObjectOutcome ResumableUploader::UploadPartWrap(const UploadPartRequest &request) const { return client_->UploadPart(request); } ListPartsOutcome ResumableUploader::ListPartsWrap(const ListPartsRequest &request) const { return client_->ListParts(request); } CompleteMultipartUploadOutcome ResumableUploader::CompleteMultipartUploadWrap(const CompleteMultipartUploadRequest &request) const { return client_->CompleteMultipartUpload(request); } ================================================ FILE: sdk/src/resumable/ResumableUploader.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "ResumableBaseWorker.h" #include "../external/json/json.h" namespace AlibabaCloud { namespace OSS { struct UploadRecord{ std::string opType; std::string uploadID; std::string filePath; std::string bucket; std::string key; std::string mtime; uint64_t size; uint64_t partSize; std::string md5Sum; }; class ResumableUploader : public ResumableBaseWorker { public: ResumableUploader(const UploadObjectRequest& request, const OssClientImpl *client); PutObjectOutcome Upload(); protected: virtual InitiateMultipartUploadOutcome InitiateMultipartUploadWrap(const InitiateMultipartUploadRequest &request) const; virtual PutObjectOutcome UploadPartWrap(const UploadPartRequest &request) const; virtual ListPartsOutcome ListPartsWrap(const ListPartsRequest &request) const; virtual CompleteMultipartUploadOutcome CompleteMultipartUploadWrap(const CompleteMultipartUploadRequest &request) const; virtual void initRecordInfo(); virtual void buildRecordInfo(const AlibabaCloud::OSS::Json::Value& value); virtual void dumpRecordInfo(AlibabaCloud::OSS::Json::Value& value); virtual int validateRecord(); private: int getPartsToUpload(OssError &err, PartList &partsUploaded, PartList &partsToUpload); virtual void genRecordPath(); virtual int loadRecord(); virtual int prepare(OssError& err); bool doesNotExistUploadId(); const UploadObjectRequest& request_; UploadRecord record_; const OssClientImpl *client_; std::string uploadID_; static void UploadPartProcessCallback(size_t increment, int64_t transfered, int64_t total, void *userData); }; } } ================================================ FILE: sdk/src/resumable/UploadObjectRequest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../utils/Utils.h" #include "../utils/FileSystemUtils.h" #include "../model/ModelError.h" using namespace AlibabaCloud::OSS; UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir, const uint64_t partSize, const uint32_t threadNum): OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), filePath_(filePath) { time_t lastMtime; std::streamsize fileSize; isFileExist_ = true; if (!GetPathInfo(filePath_, lastMtime, fileSize)) { //if fail, ignore the lastmodified time. lastMtime = 0; fileSize = 0; isFileExist_ = false; } mtime_ = ToGmtTime(lastMtime); objectSize_ = static_cast(fileSize); } UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir, const uint64_t partSize, const uint32_t threadNum, const ObjectMetaData& meta): UploadObjectRequest(bucket, key, filePath, checkpointDir, partSize, threadNum) { metaData_ = meta; } UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir, const ObjectMetaData& meta): UploadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum, meta) {} UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath, const std::string &checkpointDir) : UploadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::string &filePath): UploadObjectRequest(bucket, key, filePath, "", DefaultPartSize, DefaultResumableThreadNum) {} //wstring UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir, const uint64_t partSize, const uint32_t threadNum) : OssResumableBaseRequest(bucket, key, checkpointDir, partSize, threadNum), filePathW_(filePath) { #ifdef _WIN32 time_t lastMtime; std::streamsize fileSize; isFileExist_ = true; if (!GetPathInfo(filePathW_, lastMtime, fileSize)) { //if fail, ignore the lastmodified time. lastMtime = 0; fileSize = 0; isFileExist_ = false; } mtime_ = ToGmtTime(lastMtime); objectSize_ = static_cast(fileSize); #else objectSize_ = 0; time_t lastMtime = 0; mtime_ = ToGmtTime(lastMtime); isFileExist_ = false; #endif } UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir, const uint64_t partSize, const uint32_t threadNum, const ObjectMetaData& meta) : UploadObjectRequest(bucket, key, filePath, checkpointDir, partSize, threadNum) { metaData_ = meta; } UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir, const ObjectMetaData& meta) : UploadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum, meta) {} UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath, const std::wstring &checkpointDir) : UploadObjectRequest(bucket, key, filePath, checkpointDir, DefaultPartSize, DefaultResumableThreadNum) {} UploadObjectRequest::UploadObjectRequest(const std::string &bucket, const std::string &key, const std::wstring &filePath) : UploadObjectRequest(bucket, key, filePath, L"", DefaultPartSize, DefaultResumableThreadNum) {} void UploadObjectRequest::setAcl(CannedAccessControlList& acl) { metaData_.addHeader("x-oss-object-acl", ToAclName(acl)); } void UploadObjectRequest::setCallback(const std::string& callback, const std::string& callbackVar) { metaData_.removeHeader("x-oss-callback"); metaData_.removeHeader("x-oss-callback-var"); if (!callback.empty()) { metaData_.addHeader("x-oss-callback", callback); } if (!callbackVar.empty()) { metaData_.addHeader("x-oss-callback-var", callbackVar); } } void UploadObjectRequest::setTagging(const std::string& value) { metaData_.addHeader("x-oss-tagging", value); } int UploadObjectRequest::validate() const { auto ret = OssResumableBaseRequest::validate(); if (ret != 0) { return ret; } #if !defined(_WIN32) if (!filePathW_.empty()) { return ARG_ERROR_PATH_NOT_SUPPORT_WSTRING_TYPE; } #endif //path and checkpoint must be same type. if ((!filePath_.empty() && !checkpointDirW_.empty()) || (!filePathW_.empty() && !checkpointDir_.empty())) { return ARG_ERROR_PATH_NOT_SAME_TYPE; } if (!isFileExist_) { return ARG_ERROR_OPEN_UPLOAD_FILE; } return 0; } ================================================ FILE: sdk/src/signer/HmacSha1Signer.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "HmacSha1Signer.h" #if 0//def _WIN32 #include #include #else #include #ifdef OPENSSL_IS_BORINGSSL #include #endif #endif using namespace AlibabaCloud::OSS; HmacSha1Signer::HmacSha1Signer() { } HmacSha1Signer::~HmacSha1Signer() { } std::string HmacSha1Signer::generate(const std::string & src, const std::string & secret) { if (src.empty()) return std::string(); #if 0//def _WIN32 typedef struct _my_blob { BLOBHEADER hdr; DWORD dwKeySize; BYTE rgbKeyData[]; }my_blob; DWORD kbLen = sizeof(my_blob) + secret.size(); my_blob * kb = (my_blob *)LocalAlloc(LPTR, kbLen); kb->hdr.bType = PLAINTEXTKEYBLOB; kb->hdr.bVersion = CUR_BLOB_VERSION; kb->hdr.reserved = 0; kb->hdr.aiKeyAlg = CALG_RC2; kb->dwKeySize = secret.size(); memcpy(&kb->rgbKeyData, secret.c_str(), secret.size()); HCRYPTPROV hProv = 0; HCRYPTKEY hKey = 0; HCRYPTHASH hHmacHash = 0; BYTE pbHash[32]; DWORD dwDataLen = 32; HMAC_INFO HmacInfo; ZeroMemory(&HmacInfo, sizeof(HmacInfo)); HmacInfo.HashAlgid = CALG_SHA1; CryptAcquireContext(&hProv, NULL, MS_ENHANCED_PROV, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_NEWKEYSET); CryptImportKey(hProv, (BYTE*)kb, kbLen, 0, CRYPT_IPSEC_HMAC_KEY, &hKey); CryptCreateHash(hProv, CALG_HMAC, hKey, 0, &hHmacHash); CryptSetHashParam(hHmacHash, HP_HMAC_INFO, (BYTE*)&HmacInfo, 0); CryptHashData(hHmacHash, (BYTE*)(src.c_str()), src.size(), 0); CryptGetHashParam(hHmacHash, HP_HASHVAL, pbHash, &dwDataLen, 0); LocalFree(kb); CryptDestroyHash(hHmacHash); CryptDestroyKey(hKey); CryptReleaseContext(hProv, 0); DWORD dlen = 0; CryptBinaryToString(pbHash, dwDataLen, CRYPT_STRING_BASE64 | CRYPT_STRING_NOCRLF, NULL, &dlen); char* dest = new char[dlen]; CryptBinaryToString(pbHash, dwDataLen, CRYPT_STRING_BASE64 | CRYPT_STRING_NOCRLF, dest, &dlen); std::string ret = std::string(dest, dlen); delete[] dest; return ret; #else unsigned char md[32]; unsigned int mdLen = 32; if (HMAC(EVP_sha1(), secret.c_str(), static_cast(secret.size()), reinterpret_cast(src.c_str()), src.size(), md, &mdLen) == nullptr) return std::string(); char encodedData[100]; EVP_EncodeBlock(reinterpret_cast(encodedData), md, mdLen); return encodedData; #endif } ================================================ FILE: sdk/src/signer/HmacSha1Signer.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "Signer.h" namespace AlibabaCloud { namespace OSS { class HmacSha1Signer { public: HmacSha1Signer(); ~HmacSha1Signer(); static std::string generate(const std::string &src, const std::string &secret); }; } } ================================================ FILE: sdk/src/signer/Signer.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "Signer.h" using namespace AlibabaCloud::OSS; Signer::Signer(Type type, const std::string & name, const std::string & version) : type_(type), name_(name), version_(version) { } Signer::~Signer() { } std::string Signer::name() const { return name_; } Signer::Type Signer::type() const { return type_; } std::string Signer::version() const { return version_; } std::shared_ptr Signer::createSigner(SignatureVersionType version) { if (version == SignatureVersionType::V4) { return std::make_shared(); } return std::make_shared(); } ================================================ FILE: sdk/src/signer/Signer.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class SignerParam { public: SignerParam(std::string&& region, std::string&& product, std::string&& bucket, std::string&& key, Credentials&& credentials, std::time_t requestTime): region_(region), product_(product), bucket_(bucket), key_(key), credentials_(credentials), requestTime_(requestTime) {} const std::string& Region() const { return region_; } const std::string& Product() const { return product_; } const std::string& Bucket() const { return bucket_; } const std::string& Key() const { return key_; } const Credentials& Cred() const { return credentials_; } std::time_t RequestTime() const { return requestTime_; } const HeaderSet& AdditionalHeaders() const { return additionalHeaders_; } void setAdditionalHeaders(const HeaderSet& headers) { additionalHeaders_ = headers; } int64_t Expires() const { return expires_; } void setExpires(int64_t expires) { expires_ = expires; } private: SignerParam() = delete; private: std::string region_; std::string product_; std::string bucket_; std::string key_; Credentials credentials_; std::time_t requestTime_; HeaderSet additionalHeaders_; std::time_t expires_; }; class Signer { public: enum Type { HmacSha1, HmacSha256, }; virtual ~Signer(); virtual void sign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const = 0; virtual void presign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const = 0; virtual std::string generate(const std::string &src, const std::string &secret)const = 0; virtual std::string name()const; virtual Type type() const; virtual std::string version()const; public: static std::shared_ptr createSigner(SignatureVersionType version); protected: Signer(Type type, const std::string &name, const std::string &version = "1.0"); private: Type type_; std::string name_; std::string version_; }; class SignerV1 : public Signer { public: SignerV1(); ~SignerV1(); virtual void sign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const override; virtual void presign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const override; virtual std::string generate(const std::string &src, const std::string &secret)const override; }; class SignerV4 : public Signer { public: SignerV4(); ~SignerV4(); virtual void sign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const override; virtual void presign(const std::shared_ptr &httpRequest, ParameterCollection ¶meter, SignerParam &signerParam)const override; virtual std::string generate(const std::string &src, const std::string &secret)const override; }; } } ================================================ FILE: sdk/src/signer/SignerV1.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "Signer.h" #include "HmacSha1Signer.h" #include "../utils/SignUtils.h" #include "../utils/Utils.h" #include "../utils/LogUtils.h" using namespace AlibabaCloud::OSS; namespace { const char *TAG = "SignerV1"; } SignerV1::SignerV1() : Signer(HmacSha1, "HMAC-SHA1", "1.0") { } SignerV1::~SignerV1() { } static std::string buildResource(const std::string &bucket, const std::string &key) { std::string resource; resource.append("/"); if (!bucket.empty()) { resource.append(bucket); resource.append("/"); } if (!key.empty()) { resource.append(key); } return resource; } std::string SignerV1::generate(const std::string & src, const std::string & secret) const { return HmacSha1Signer::generate(src, secret); } void SignerV1::sign(const std::shared_ptr &httpRequest, ParameterCollection ¶meters, SignerParam &signerParam)const { if (!signerParam.Cred().SessionToken().empty()) { httpRequest->addHeader("x-oss-security-token", signerParam.Cred().SessionToken()); } if (httpRequest->hasHeader("x-oss-date")) { httpRequest->addHeader(Http::DATE, httpRequest->Header("x-oss-date")); } else { auto requestTime = signerParam.RequestTime(); httpRequest->addHeader(Http::DATE, ToGmtTime(requestTime)); } auto method = Http::MethodToString(httpRequest->method()); auto resource = buildResource(signerParam.Bucket(), signerParam.Key()); auto date = httpRequest->Header(Http::DATE); SignUtils signUtils(""); signUtils.build(method, resource, date, httpRequest->Headers(), parameters); auto signature = generate(signUtils.CanonicalString(), signerParam.Cred().AccessKeySecret()); std::stringstream authValue; authValue << "OSS " << signerParam.Cred().AccessKeyId() << ":" << signature; httpRequest->addHeader(Http::AUTHORIZATION, authValue.str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) CanonicalString:%s", httpRequest.get(), signUtils.CanonicalString().c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) Authorization:%s", httpRequest.get(), authValue.str().c_str()); } void SignerV1::presign(const std::shared_ptr &httpRequest, ParameterCollection ¶meters, SignerParam &signerParam)const { if (!signerParam.Cred().SessionToken().empty()) { parameters["security-token"] = signerParam.Cred().SessionToken(); } auto method = Http::MethodToString(httpRequest->method()); auto resource = buildResource(signerParam.Bucket(), signerParam.Key()); auto date = std::to_string(signerParam.Expires()); SignUtils signUtils(""); signUtils.build(method, resource, date, httpRequest->Headers(), parameters); auto signature = generate(signUtils.CanonicalString(), signerParam.Cred().AccessKeySecret()); OSS_LOG(LogLevel::LogDebug, TAG, "CanonicalString:%s", signUtils.CanonicalString().c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "signature:%s", signature.c_str()); parameters["Expires"] = date; parameters["OSSAccessKeyId"] = signerParam.Cred().AccessKeyId(); parameters["Signature"] = signature; } ================================================ FILE: sdk/src/signer/SignerV4.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "Signer.h" #include "../utils/SignUtils.h" #include "../utils/Utils.h" #include "../utils/LogUtils.h" #include #ifdef OPENSSL_IS_BORINGSSL #include #endif using namespace AlibabaCloud::OSS; namespace { const char *TAG = "SignerV4"; } class Sha256Helper { public: Sha256Helper() { ctx_ = EVP_MD_CTX_create(); #if !defined(OPENSSL_IS_BORINGSSL) EVP_MD_CTX_set_flags(ctx_, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); #endif EVP_DigestInit_ex(ctx_, EVP_sha256(), nullptr); } ~Sha256Helper() { EVP_MD_CTX_destroy(ctx_); ctx_ = nullptr; } ByteBuffer Calculate(const ByteBuffer &data) { return Calculate((const char *)data.data(), data.size()); } ByteBuffer Calculate(const char *data, size_t cnt) { ByteBuffer hash(EVP_MD_size(EVP_sha256())); EVP_DigestInit_ex(ctx_, EVP_sha256(), nullptr); EVP_DigestUpdate(ctx_, (const void *)data, cnt); EVP_DigestFinal(ctx_, hash.data(), nullptr); return hash; } ByteBuffer CalculateHMAC(const std::string& src, const ByteBuffer& secret) { ByteBuffer md(EVP_MAX_MD_SIZE); unsigned int mdLen = EVP_MAX_MD_SIZE; if (HMAC(EVP_sha256(), secret.data(), static_cast(secret.size()), reinterpret_cast(src.data()), static_cast(src.size()), md.data(), &mdLen) == nullptr) { return ByteBuffer(); } md.resize(mdLen); return md; } private: EVP_MD_CTX *ctx_; }; SignerV4::SignerV4() : Signer(HmacSha256, "HMAC-SHA256", "4.0") { } SignerV4::~SignerV4() { } std::string SignerV4::generate(const std::string & src, const std::string & secret) const { UNUSED_PARAM(src); UNUSED_PARAM(secret); return ""; } static bool isDefaultSignedHeader(const std::string& lowerKey) { if (lowerKey == "content-type" || lowerKey == "content-md5" || lowerKey.compare(0, 6, "x-oss-") == 0) { return true; } return false; } static HeaderSet getCommonAdditionalHeaders(const HeaderCollection& headers, const HeaderSet &additionalHeaders) { HeaderSet result; for (auto const &key : additionalHeaders) { std::string lowerKey = ToLower(key.c_str()); if (isDefaultSignedHeader(lowerKey)) { //default signed header, skip continue; } else if (headers.find(lowerKey) != headers.end()) { result.emplace(lowerKey); } } return result; } static std::string toHeaderSetString(const HeaderSet &headers) { std::stringstream ss; bool isFirstParam = true; for (auto const &key : headers) { std::string lowerKey = ToLower(key.c_str()); if (isFirstParam) { ss << lowerKey; } else { ss << ";" << lowerKey; } isFirstParam = false; } return ss.str(); } static std::string buildCanonicalReuqest(const std::shared_ptr &httpRequest, ParameterCollection ¶meters, SignerParam &signerParam, const HeaderSet &additionalHeaders) { /*Version 4*/ // HTTP Verb + "\n" + // Canonical URI + "\n" + // Canonical Query String + "\n" + // Canonical Headers + "\n" + // Additional Headers + "\n" + // Hashed PayLoad std::stringstream ss; // "GET" | "PUT" | "POST" | ... + "\n" ss << Http::MethodToString(httpRequest->method()) << "\n"; // UriEncode() + "\n" std::string resource; resource.append("/"); if (!signerParam.Bucket().empty()) { resource.append(signerParam.Bucket()); resource.append("/"); } if (!signerParam.Key().empty()) { resource.append(signerParam.Key()); } ss << UrlEncodePath(resource, true) << "\n"; // Canonical Query String + "\n" // UriEncode() + "=" + UriEncode() + "&" + UriEncode() + "\n" ParameterCollection signedParameters; for (auto const ¶m : parameters) { signedParameters[UrlEncode(param.first)] = UrlEncode(param.second); } char separator = '&'; bool isFirstParam = true; for (auto const ¶m : signedParameters) { if (!isFirstParam) { ss << separator; } else { isFirstParam = false; } ss << param.first; if (!param.second.empty()) { ss << "=" << param.second; } } ss << "\n"; // Lowercase() + ":" + Trim() + "\n" + Lowercase() + ":" + Trim() + "\n" + "\n" for (const auto &header : httpRequest->Headers()) { std::string lowerKey = ToLower(header.first.c_str()); std::string value = Trim(header.second.c_str()); if (value.empty()) { continue; } if (lowerKey == "content-type" || lowerKey == "content-md5" || lowerKey.compare(0, 6, "x-oss-") == 0) { ss << lowerKey << ":" << value << "\n"; } else if (additionalHeaders.find(lowerKey) != additionalHeaders.end()) { ss << lowerKey << ":" << value << "\n"; } } ss << "\n"; // Lowercase() + ";" + Lowercase() + "\n" + ss << toHeaderSetString(additionalHeaders); ss << "\n"; // Hashed PayLoad std::string hash = "UNSIGNED-PAYLOAD"; if (httpRequest->hasHeader("x-oss-content-sha256")) { hash = httpRequest->Header("x-oss-content-sha256"); } ss << hash; return ss.str(); } static std::string LowerHexToString(const unsigned char *data, size_t size) { static char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; std::stringstream ss; for (size_t i = 0; i < size; i++) ss << hex[(data[i] >> 4)] << hex[(data[i] & 0x0F)]; return ss.str(); } std::string buildStringToSign(const std::string &datetime, const std::string &scope, const std::string &canonical) { // "OSS4-HMAC-SHA256" + "\n" + // TimeStamp + "\n" + // Scope + "\n" + // Hex(SHA256Hash(Canonical Reuqest)) Sha256Helper sha265; auto hash = sha265.Calculate(canonical.data(), canonical.size()); auto hashedCalRequest = LowerHexToString(hash.data(), hash.size()); std::stringstream stringToSign; stringToSign << "OSS4-HMAC-SHA256" << "\n" << datetime << "\n" << scope << "\n" << hashedCalRequest; return stringToSign.str(); } std::string buildSignature(const std::string &keySecrect, const std::string &date, const std::string ®ion, const std::string &product, const std::string &stringToSign) { // SigningKey Sha256Helper sha265; std::string key = "aliyun_v4" + keySecrect; auto signingSecret = ByteBuffer{key.begin(), key.end()}; auto signingDate = sha265.CalculateHMAC(date, signingSecret); auto signingRegion = sha265.CalculateHMAC(region, signingDate); auto signingProduct = sha265.CalculateHMAC(product, signingRegion); auto signingKey = sha265.CalculateHMAC("aliyun_v4_request", signingProduct); // Signature auto signature = sha265.CalculateHMAC(stringToSign, signingKey); //std::cout << "signingSecret:" << LowerHexToString(signingSecret.data(), signingSecret.size()) << std::endl; //std::cout << "signingDate:" << LowerHexToString(signingDate.data(), signingDate.size()) << std::endl; //std::cout << "signingRegion:" << LowerHexToString(signingRegion.data(), signingRegion.size()) << std::endl; //std::cout << "signingProduct:" << LowerHexToString(signingProduct.data(), signingProduct.size()) << std::endl; //std::cout << "signingKey:" << LowerHexToString(signingKey.data(), signingKey.size()) << std::endl; //std::cout << "signature:" << LowerHexToString(signature.data(), signature.size()) << std::endl; return LowerHexToString(signature.data(), signature.size()); } void SignerV4::sign(const std::shared_ptr &httpRequest, ParameterCollection ¶meters, SignerParam &signerParam)const { if (!signerParam.Cred().SessionToken().empty()) { httpRequest->addHeader("x-oss-security-token", signerParam.Cred().SessionToken()); } auto requestTime = signerParam.RequestTime(); auto datetime = FormatUnixTime(requestTime, "%Y%m%dT%H%M%SZ"); auto date = FormatUnixTime(requestTime, "%Y%m%d"); httpRequest->addHeader(Http::DATE, ToGmtTime(requestTime)); httpRequest->addHeader("x-oss-date", datetime); if (!httpRequest->hasHeader("x-oss-content-sha256")) { httpRequest->addHeader("x-oss-content-sha256", "UNSIGNED-PAYLOAD"); } auto additionalHeaders = getCommonAdditionalHeaders(httpRequest->Headers(), signerParam.AdditionalHeaders()); auto canonicalReuqest = buildCanonicalReuqest(httpRequest, parameters, signerParam, additionalHeaders); auto scope = date + "/" + signerParam.Region() + "/" + signerParam.Product() + "/aliyun_v4_request"; auto stringToSign = buildStringToSign(datetime, scope, canonicalReuqest); auto signature = buildSignature(signerParam.Cred().AccessKeySecret(), date, signerParam.Region(), signerParam.Product(), stringToSign); std::stringstream authValue; authValue << "OSS4-HMAC-SHA256" << " Credential=" << signerParam.Cred().AccessKeyId() << "/" << scope; if (!additionalHeaders.empty()) { authValue << ",AdditionalHeaders=" << toHeaderSetString(additionalHeaders); } authValue << ",Signature=" << signature; //std::cout << "canonicalReuqest:" << canonicalReuqest << std::endl; //std::cout << "scope:" << scope << std::endl; //std::cout << "stringToSign:" << stringToSign << std::endl; //std::cout << "signature:" << signature << std::endl; //std::cout << "AUTHORIZATION:" << authValue.str() << std::endl; httpRequest->addHeader(Http::AUTHORIZATION, authValue.str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) CanonicalReuqest:%s", httpRequest.get(), canonicalReuqest.c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) StringToSign:%s", httpRequest.get(), stringToSign.c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) Authorization:%s", httpRequest.get(), authValue.str().c_str()); } void SignerV4::presign(const std::shared_ptr &httpRequest, ParameterCollection ¶meters, SignerParam &signerParam)const { if (!signerParam.Cred().SessionToken().empty()) { parameters["x-oss-security-token"] = signerParam.Cred().SessionToken(); } auto datetime = FormatUnixTime(signerParam.RequestTime(), "%Y%m%dT%H%M%SZ"); auto date = FormatUnixTime(signerParam.RequestTime(), "%Y%m%d"); // x-oss-signature-version parameters["x-oss-signature-version"] = "OSS4-HMAC-SHA256"; // x-oss-credential auto credential = signerParam.Cred().AccessKeyId() + "/" + date + "/" + signerParam.Region() + "/" + signerParam.Product() + "/aliyun_v4_request"; parameters["x-oss-credential"] = credential; // x-oss-date parameters["x-oss-date"] = datetime; // x-oss-expires auto expires_duration = signerParam.Expires() - signerParam.RequestTime(); parameters["x-oss-expires"] = std::to_string(expires_duration); // x-oss-additional-headers auto additionalHeaders = getCommonAdditionalHeaders(httpRequest->Headers(), signerParam.AdditionalHeaders()); if (!additionalHeaders.empty()) { parameters["x-oss-additional-headers"] = toHeaderSetString(additionalHeaders); } auto canonicalReuqest = buildCanonicalReuqest(httpRequest, parameters, signerParam, additionalHeaders); auto scope = date + "/" + signerParam.Region() + "/" + signerParam.Product() + "/aliyun_v4_request"; auto stringToSign = buildStringToSign(datetime, scope, canonicalReuqest); auto signature = buildSignature(signerParam.Cred().AccessKeySecret(), date, signerParam.Region(), signerParam.Product(), stringToSign); // "x-oss-signature" parameters["x-oss-signature"] = signature; OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) CanonicalReuqest:%s", httpRequest.get(), canonicalReuqest.c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) StringToSign:%s", httpRequest.get(), stringToSign.c_str()); OSS_LOG(LogLevel::LogDebug, TAG, "request(%p) Signature:%s", httpRequest.get(), signature.c_str()); } ================================================ FILE: sdk/src/utils/Crc32.cc ================================================ /* Crc64.cc -- compute CRC-64 * Copyright (C) 2013 Mark Adler * Version 1.4 16 Dec 2013 Mark Adler */ /* This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Mark Adler madler@alumni.caltech.edu */ /* Compute CRC-64 in the manner of xz, using the ECMA-182 polynomial, bit-reversed, with one's complement pre and post processing. Provide a means to combine separately computed CRC-64's. */ /* Version history: 1.0 13 Dec 2013 First version 1.1 13 Dec 2013 Fix comments in test code 1.2 14 Dec 2013 Determine endianess at run time 1.3 15 Dec 2013 Add eight-byte processing for big endian as well Make use of the pthread library optional 1.4 16 Dec 2013 Make once variable volatile for limited thread protection */ #include "Crc32.h" namespace AlibabaCloud { namespace OSS { /*CRC32*/ static const uint32_t crc32Table[256] = { 0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,0xE963A535, 0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,0x09B64C2B,0x7EB17CBD, 0xE7B82D07,0x90BF1D91,0x1DB71064,0x6AB020F2,0xF3B97148,0x84BE41DE,0x1ADAD47D, 0x6DDDE4EB,0xF4D4B551,0x83D385C7,0x136C9856,0x646BA8C0,0xFD62F97A,0x8A65C9EC, 0x14015C4F,0x63066CD9,0xFA0F3D63,0x8D080DF5,0x3B6E20C8,0x4C69105E,0xD56041E4, 0xA2677172,0x3C03E4D1,0x4B04D447,0xD20D85FD,0xA50AB56B,0x35B5A8FA,0x42B2986C, 0xDBBBC9D6,0xACBCF940,0x32D86CE3,0x45DF5C75,0xDCD60DCF,0xABD13D59,0x26D930AC, 0x51DE003A,0xC8D75180,0xBFD06116,0x21B4F4B5,0x56B3C423,0xCFBA9599,0xB8BDA50F, 0x2802B89E,0x5F058808,0xC60CD9B2,0xB10BE924,0x2F6F7C87,0x58684C11,0xC1611DAB, 0xB6662D3D,0x76DC4190,0x01DB7106,0x98D220BC,0xEFD5102A,0x71B18589,0x06B6B51F, 0x9FBFE4A5,0xE8B8D433,0x7807C9A2,0x0F00F934,0x9609A88E,0xE10E9818,0x7F6A0DBB, 0x086D3D2D,0x91646C97,0xE6635C01,0x6B6B51F4,0x1C6C6162,0x856530D8,0xF262004E, 0x6C0695ED,0x1B01A57B,0x8208F4C1,0xF50FC457,0x65B0D9C6,0x12B7E950,0x8BBEB8EA, 0xFCB9887C,0x62DD1DDF,0x15DA2D49,0x8CD37CF3,0xFBD44C65,0x4DB26158,0x3AB551CE, 0xA3BC0074,0xD4BB30E2,0x4ADFA541,0x3DD895D7,0xA4D1C46D,0xD3D6F4FB,0x4369E96A, 0x346ED9FC,0xAD678846,0xDA60B8D0,0x44042D73,0x33031DE5,0xAA0A4C5F,0xDD0D7CC9, 0x5005713C,0x270241AA,0xBE0B1010,0xC90C2086,0x5768B525,0x206F85B3,0xB966D409, 0xCE61E49F,0x5EDEF90E,0x29D9C998,0xB0D09822,0xC7D7A8B4,0x59B33D17,0x2EB40D81, 0xB7BD5C3B,0xC0BA6CAD,0xEDB88320,0x9ABFB3B6,0x03B6E20C,0x74B1D29A,0xEAD54739, 0x9DD277AF,0x04DB2615,0x73DC1683,0xE3630B12,0x94643B84,0x0D6D6A3E,0x7A6A5AA8, 0xE40ECF0B,0x9309FF9D,0x0A00AE27,0x7D079EB1,0xF00F9344,0x8708A3D2,0x1E01F268, 0x6906C2FE,0xF762575D,0x806567CB,0x196C3671,0x6E6B06E7,0xFED41B76,0x89D32BE0, 0x10DA7A5A,0x67DD4ACC,0xF9B9DF6F,0x8EBEEFF9,0x17B7BE43,0x60B08ED5,0xD6D6A3E8, 0xA1D1937E,0x38D8C2C4,0x4FDFF252,0xD1BB67F1,0xA6BC5767,0x3FB506DD,0x48B2364B, 0xD80D2BDA,0xAF0A1B4C,0x36034AF6,0x41047A60,0xDF60EFC3,0xA867DF55,0x316E8EEF, 0x4669BE79,0xCB61B38C,0xBC66831A,0x256FD2A0,0x5268E236,0xCC0C7795,0xBB0B4703, 0x220216B9,0x5505262F,0xC5BA3BBE,0xB2BD0B28,0x2BB45A92,0x5CB36A04,0xC2D7FFA7, 0xB5D0CF31,0x2CD99E8B,0x5BDEAE1D,0x9B64C2B0,0xEC63F226,0x756AA39C,0x026D930A, 0x9C0906A9,0xEB0E363F,0x72076785,0x05005713,0x95BF4A82,0xE2B87A14,0x7BB12BAE, 0x0CB61B38,0x92D28E9B,0xE5D5BE0D,0x7CDCEFB7,0x0BDBDF21,0x86D3D2D4,0xF1D4E242, 0x68DDB3F8,0x1FDA836E,0x81BE16CD,0xF6B9265B,0x6FB077E1,0x18B74777,0x88085AE6, 0xFF0F6A70,0x66063BCA,0x11010B5C,0x8F659EFF,0xF862AE69,0x616BFFD3,0x166CCF45, 0xA00AE278,0xD70DD2EE,0x4E048354,0x3903B3C2,0xA7672661,0xD06016F7,0x4969474D, 0x3E6E77DB,0xAED16A4A,0xD9D65ADC,0x40DF0B66,0x37D83BF0,0xA9BCAE53,0xDEBB9EC5, 0x47B2CF7F,0x30B5FFE9,0xBDBDF21C,0xCABAC28A,0x53B39330,0x24B4A3A6,0xBAD03605, 0xCDD70693,0x54DE5729,0x23D967BF,0xB3667A2E,0xC4614AB8,0x5D681B02,0x2A6F2B94, 0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D }; uint32_t CRC32::CalcCRC(uint32_t crc, const void *buf, size_t bufLen) { uint32_t crc32; unsigned char *byteBuf; size_t i; /** accumulate crc32 for buffer **/ crc32 = crc ^ 0xFFFFFFFF; byteBuf = (unsigned char*)buf; for (i = 0; i < bufLen; i++) { crc32 = (crc32 >> 8) ^ crc32Table[(crc32 ^ byteBuf[i]) & 0xFF]; } return crc32 ^ 0xFFFFFFFF; } } } ================================================ FILE: sdk/src/utils/Crc32.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class CRC32 { public: static uint32_t CalcCRC(uint32_t crc, const void *buf, size_t bufLen); }; } } ================================================ FILE: sdk/src/utils/Crc64.cc ================================================ /* Crc64.cc -- compute CRC-64 * Copyright (C) 2013 Mark Adler * Version 1.4 16 Dec 2013 Mark Adler */ /* This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Mark Adler madler@alumni.caltech.edu */ /* Compute CRC-64 in the manner of xz, using the ECMA-182 polynomial, bit-reversed, with one's complement pre and post processing. Provide a means to combine separately computed CRC-64's. */ /* Version history: 1.0 13 Dec 2013 First version 1.1 13 Dec 2013 Fix comments in test code 1.2 14 Dec 2013 Determine endianess at run time 1.3 15 Dec 2013 Add eight-byte processing for big endian as well Make use of the pthread library optional 1.4 16 Dec 2013 Make once variable volatile for limited thread protection */ #include "Crc64.h" namespace AlibabaCloud { namespace OSS { /* 64-bit CRC polynomial with these coefficients, but reversed: 64, 62, 57, 55, 54, 53, 52, 47, 46, 45, 40, 39, 38, 37, 35, 33, 32, 31, 29, 27, 24, 23, 22, 21, 19, 17, 13, 12, 10, 9, 7, 4, 1, 0 */ #define POLY UINT64_C(0xc96c5795d7870f42) /* Tables for CRC calculation -- filled in by initialization functions that are called once. These could be replaced by constant tables generated in the same way. There are two tables, one for each endianess. Since these are static, i.e. local, one should be compiled out of existence if the compiler can evaluate the endianess check in crc64() at compile time. */ static uint64_t crc64_table[8][256]; /* Fill in the CRC-64 constants table. */ static void crc64_init(uint64_t table[][256]) { unsigned n, k; uint64_t crc; /* generate CRC-64's for all single byte sequences */ for (n = 0; n < 256; n++) { crc = n; for (k = 0; k < 8; k++) crc = crc & 1 ? POLY ^ (crc >> 1) : crc >> 1; table[0][n] = crc; } /* generate CRC-64's for those followed by 1 to 7 zeros */ for (n = 0; n < 256; n++) { crc = table[0][n]; for (k = 1; k < 8; k++) { crc = table[0][crc & 0xff] ^ (crc >> 8); table[k][n] = crc; } } } /* This function is called once to initialize the CRC-64 table for use on a little-endian architecture. */ static void crc64_little_init(void) { crc64_init(crc64_table); } /* Reverse the bytes in a 64-bit word. */ static uint64_t rev8(uint64_t a) { uint64_t m; m = UINT64_C(0xff00ff00ff00ff); a = ((a >> 8) & m) | (a & m) << 8; m = UINT64_C(0xffff0000ffff); a = ((a >> 16) & m) | (a & m) << 16; return a >> 32 | a << 32; } /* This function is called once to initialize the CRC-64 table for use on a big-endian architecture. */ static void crc64_big_init(void) { unsigned k, n; crc64_init(crc64_table); for (k = 0; k < 8; k++) for (n = 0; n < 256; n++) crc64_table[k][n] = rev8(crc64_table[k][n]); } /* Calculate a CRC-64 eight bytes at a time on a little-endian architecture. */ static uint64_t crc64_little(uint64_t crc, void *buf, size_t len) { unsigned char *next = (unsigned char *)buf; crc = ~crc; while (len && ((uintptr_t)next & 7) != 0) { crc = crc64_table[0][(crc ^ *next++) & 0xff] ^ (crc >> 8); len--; } while (len >= 8) { crc ^= *(uint64_t *)next; crc = crc64_table[7][crc & 0xff] ^ crc64_table[6][(crc >> 8) & 0xff] ^ crc64_table[5][(crc >> 16) & 0xff] ^ crc64_table[4][(crc >> 24) & 0xff] ^ crc64_table[3][(crc >> 32) & 0xff] ^ crc64_table[2][(crc >> 40) & 0xff] ^ crc64_table[1][(crc >> 48) & 0xff] ^ crc64_table[0][crc >> 56]; next += 8; len -= 8; } while (len) { crc = crc64_table[0][(crc ^ *next++) & 0xff] ^ (crc >> 8); len--; } return ~crc; } /* Calculate a CRC-64 eight bytes at a time on a big-endian architecture. */ static uint64_t crc64_big(uint64_t crc, void *buf, size_t len) { unsigned char *next = (unsigned char *)buf; crc = ~rev8(crc); while (len && ((uintptr_t)next & 7) != 0) { crc = crc64_table[0][(crc >> 56) ^ *next++] ^ (crc << 8); len--; } while (len >= 8) { crc ^= *(uint64_t *)next; crc = crc64_table[0][crc & 0xff] ^ crc64_table[1][(crc >> 8) & 0xff] ^ crc64_table[2][(crc >> 16) & 0xff] ^ crc64_table[3][(crc >> 24) & 0xff] ^ crc64_table[4][(crc >> 32) & 0xff] ^ crc64_table[5][(crc >> 40) & 0xff] ^ crc64_table[6][(crc >> 48) & 0xff] ^ crc64_table[7][crc >> 56]; next += 8; len -= 8; } while (len) { crc = crc64_table[0][(crc >> 56) ^ *next++] ^ (crc << 8); len--; } return ~rev8(crc); } /* Return the CRC-64 of buf[0..len-1] with initial crc, processing eight bytes at a time. This selects one of two routines depending on the endianess of the architecture. A good optimizing compiler will determine the endianess at compile time if it can, and get rid of the unused code and table. If the endianess can be changed at run time, then this code will handle that as well, initializing and using two tables, if called upon to do so. */ #define GF2_DIM 64 /* dimension of GF(2) vectors (length of CRC) */ static uint64_t gf2_matrix_times(uint64_t *mat, uint64_t vec) { uint64_t sum; sum = 0; while (vec) { if (vec & 1) sum ^= *mat; vec >>= 1; mat++; } return sum; } static void gf2_matrix_square(uint64_t *square, uint64_t *mat) { unsigned n; for (n = 0; n < GF2_DIM; n++) square[n] = gf2_matrix_times(mat, mat[n]); } /* Return the CRC-64 of two sequential blocks, where crc1 is the CRC-64 of the first block, crc2 is the CRC-64 of the second block, and len2 is the length of the second block. */ static uint64_t crc64_combine(uint64_t crc1, uint64_t crc2, uintmax_t len2) { unsigned n; uint64_t row; uint64_t even[GF2_DIM]; /* even-power-of-two zeros operator */ uint64_t odd[GF2_DIM]; /* odd-power-of-two zeros operator */ /* degenerate case */ if (len2 == 0) return crc1; /* put operator for one zero bit in odd */ odd[0] = POLY; /* CRC-64 polynomial */ row = 1; for (n = 1; n < GF2_DIM; n++) { odd[n] = row; row <<= 1; } /* put operator for two zero bits in even */ gf2_matrix_square(even, odd); /* put operator for four zero bits in odd */ gf2_matrix_square(odd, even); /* apply len2 zeros to crc1 (first square will put the operator for one zero byte, eight zero bits, in even) */ do { /* apply zeros operator for this bit of len2 */ gf2_matrix_square(even, odd); if (len2 & 1) crc1 = gf2_matrix_times(even, crc1); len2 >>= 1; /* if no more bits set, then done */ if (len2 == 0) break; /* another iteration of the loop with odd and even swapped */ gf2_matrix_square(odd, even); if (len2 & 1) crc1 = gf2_matrix_times(odd, crc1); len2 >>= 1; /* if no more bits set, then done */ } while (len2 != 0); /* return combined crc */ crc1 ^= crc2; return crc1; } class CRC64_GUARD { public: CRC64_GUARD() { uint64_t n = 1; if (*(char *)&n) { crc64_little_init(); } else { crc64_big_init(); } } ~CRC64_GUARD() = default; }; static CRC64_GUARD crc64Guard; uint64_t CRC64::CalcCRC(uint64_t crc, void *buf, size_t len) { uint64_t n = 1; return *(char *)&n ? crc64_little(crc, buf, len) : crc64_big(crc, buf, len); } uint64_t CRC64::CalcCRC(uint64_t crc, void *buf, size_t len, bool little) { return little ? crc64_little(crc, buf, len) : crc64_big(crc, buf, len); } uint64_t CRC64::CombineCRC(uint64_t crc1, uint64_t crc2, uintmax_t len2) { return crc64_combine(crc1, crc2, len2); } } } ================================================ FILE: sdk/src/utils/Crc64.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include namespace AlibabaCloud { namespace OSS { class CRC64 { public: static uint64_t CalcCRC(uint64_t crc, void *buf, size_t len); static uint64_t CombineCRC(uint64_t crc1, uint64_t crc2, uintmax_t len2); static uint64_t CalcCRC(uint64_t crc, void *buf, size_t len, bool little); }; } } ================================================ FILE: sdk/src/utils/Executor.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; Executor::Executor() { } Executor::~Executor() { } ================================================ FILE: sdk/src/utils/FileSystemUtils.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include "FileSystemUtils.h" #include #ifdef _WIN32 #include #include #include #define oss_access(a) ::_access((a), 0) #define oss_mkdir(a) ::_mkdir(a) #define oss_rmdir(a) ::_rmdir(a) #define oss_stat ::_stat64 #define oss_waccess(a) ::_waccess((a), 0) #define oss_wmkdir(a) ::_wmkdir(a) #define oss_wrmdir(a) ::_wrmdir(a) #define oss_wstat ::_wstat64 #define oss_wremove ::_wremove #define oss_wrename ::_wrename #else #include #include #include #define oss_access(a) ::access(a, 0) #define oss_mkdir(a) ::mkdir((a), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) #define oss_rmdir(a) ::rmdir(a) #define oss_stat stat #endif using namespace AlibabaCloud::OSS; bool AlibabaCloud::OSS::CreateDirectory(const std::string &folder) { std::string folder_builder; std::string sub; sub.reserve(folder.size()); for (auto it = folder.begin(); it != folder.end(); ++it) { const char c = *it; sub.push_back(c); if (c == PATH_DELIMITER || it == folder.end() - 1) { folder_builder.append(sub); if (oss_access(folder_builder.c_str()) != 0) { if (oss_mkdir(folder_builder.c_str()) != 0) { return false; } } sub.clear(); } } return true; } bool AlibabaCloud::OSS::IsDirectoryExist(std::string folder) { if (folder[folder.length() - 1] != PATH_DELIMITER && folder[folder.length() - 1] != '/') { folder += PATH_DELIMITER; } return !oss_access(folder.c_str()); } bool AlibabaCloud::OSS::RemoveDirectory(const std::string &folder) { return !oss_rmdir(folder.c_str()); } bool AlibabaCloud::OSS::RemoveFile(const std::string &filepath) { int ret = ::remove(filepath.c_str()); return !ret; } bool AlibabaCloud::OSS::RenameFile(const std::string &from, const std::string &to) { return !::rename(from.c_str(), to.c_str()); } bool AlibabaCloud::OSS::GetPathLastModifyTime(const std::string& path, time_t& t) { std::streamsize size; return GetPathInfo(path, t, size); } bool AlibabaCloud::OSS::GetPathInfo(const std::string& path, time_t& t, std::streamsize& size) { struct oss_stat buf; auto filename = path.c_str(); #if defined(_WIN32) && _MSC_VER < 1900 std::string tmp; if (!path.empty() && (path.rbegin()[0] == PATH_DELIMITER)) { tmp = path.substr(0, path.size() - 1); filename = tmp.c_str(); } #endif if (oss_stat(filename, &buf) != 0) return false; t = buf.st_mtime; size = static_cast(buf.st_size); return true; } bool AlibabaCloud::OSS::IsFileExist(const std::string& file) { std::streamsize size; time_t t; return GetPathInfo(file, t, size); } //wchar path #ifdef _WIN32 bool AlibabaCloud::OSS::CreateDirectory(const std::wstring &folder) { std::wstring folder_builder; std::wstring sub; sub.reserve(folder.size()); for (auto it = folder.begin(); it != folder.end(); ++it) { auto c = *it; sub.push_back(c); if (c == WPATH_DELIMITER || it == folder.end() - 1) { folder_builder.append(sub); if (oss_waccess(folder_builder.c_str()) != 0) { if (oss_wmkdir(folder_builder.c_str()) != 0) { return false; } } sub.clear(); } } return true; } bool AlibabaCloud::OSS::IsDirectoryExist(std::wstring folder) { if (folder[folder.length() - 1] != WPATH_DELIMITER && folder[folder.length() - 1] != '/') { folder += WPATH_DELIMITER; } return !oss_waccess(folder.c_str()); } bool AlibabaCloud::OSS::RemoveDirectory(const std::wstring& folder) { return !oss_wrmdir(folder.c_str()); } bool AlibabaCloud::OSS::RemoveFile(const std::wstring& filepath) { int ret = oss_wremove(filepath.c_str()); return !ret; } bool AlibabaCloud::OSS::RenameFile(const std::wstring& from, const std::wstring& to) { return !oss_wrename(from.c_str(), to.c_str()); } bool AlibabaCloud::OSS::GetPathLastModifyTime(const std::wstring& path, time_t& t) { std::streamsize size; return GetPathInfo(path, t, size); } bool AlibabaCloud::OSS::GetPathInfo(const std::wstring& path, time_t& t, std::streamsize& size) { struct oss_stat buf; auto filename = path.c_str(); #if defined(_WIN32) && _MSC_VER < 1900 std::wstring tmp; if (!path.empty() && (path.rbegin()[0] == WPATH_DELIMITER)) { tmp = path.substr(0, path.size() - 1); filename = tmp.c_str(); } #endif if (oss_wstat(filename, &buf) != 0) return false; t = buf.st_mtime; size = static_cast(buf.st_size); return true; } bool AlibabaCloud::OSS::IsFileExist(const std::wstring& file) { std::streamsize size; time_t t; return GetPathInfo(file, t, size); } #endif std::shared_ptr AlibabaCloud::OSS::GetFstreamByPath( const std::string& path, const std::wstring& pathw, std::ios_base::openmode mode) { #ifdef _WIN32 if (!pathw.empty()) { return std::make_shared(pathw, mode); } #else ((void)(pathw)); #endif return std::make_shared(path, mode); } ================================================ FILE: sdk/src/utils/FileSystemUtils.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include namespace AlibabaCloud { namespace OSS { bool CreateDirectory(const std::string &folder); bool RemoveDirectory(const std::string &folder); bool RemoveFile(const std::string &filepath); bool RenameFile(const std::string &from, const std::string &to); bool GetPathLastModifyTime(const std::string &path, time_t &t); bool IsDirectoryExist(std::string folder); bool GetPathInfo(const std::string &path, time_t &t, std::streamsize& size); bool IsFileExist(const std::string& file); //wchar path #ifdef _WIN32 bool CreateDirectory(const std::wstring& folder); bool RemoveDirectory(const std::wstring& folder); bool RemoveFile(const std::wstring& filepath); bool RenameFile(const std::wstring& from, const std::wstring& to); bool GetPathLastModifyTime(const std::wstring& path, time_t& t); bool IsDirectoryExist(std::wstring folder); bool GetPathInfo(const std::wstring &path, time_t &t, std::streamsize& size); bool IsFileExist(const std::wstring& file); #endif std::shared_ptr GetFstreamByPath( const std::string& path, const std::wstring& pathw, std::ios_base::openmode mode); } } ================================================ FILE: sdk/src/utils/LogUtils.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "Utils.h" #include "LogUtils.h" #include #include #include #include #include #include #include #include #include using namespace AlibabaCloud::OSS; static LogLevel gOssLogLevel = LogLevel::LogOff; static LogCallback gLogCallback = nullptr; const static char *EnvLogLevels[] = { "off", "fatal", "error", "warn", "info", "debug", "trace", "all" }; static std::string LogPrefix(LogLevel logLevel, const char* tag) { static const char *LogStr[] = {"[OFF]", "[FATAL]", "[ERROR]", "[WARN]", "[INFO]" , "[DEBUG]", "[TRACE]", "[ALL]"}; int index = logLevel - LogLevel::LogOff; std::stringstream ss; auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); auto ms = tp.time_since_epoch().count() % 1000; auto t = std::chrono::system_clock::to_time_t(tp); struct tm tm; #ifdef WIN32 ::localtime_s(&tm, &t); #else ::localtime_r(&t, &tm); #endif #if defined(__GNUG__) && __GNUC__ < 5 char tmbuff[64]; strftime(tmbuff, 64, "%Y-%m-%d %H:%M:%S.", &tm); ss << "[" << tmbuff << std::setw(3) << std::setfill('0') << ms << "]"; #else ss << "[" << std::put_time(&tm, "%Y-%m-%d %H:%M:%S.") << std::setw(3) << std::setfill('0') << ms << "]"; #endif ss << LogStr[index]; ss << "[" << tag << "]"; ss << "[" << std::this_thread::get_id() << "]"; return ss.str(); } void AlibabaCloud::OSS::FormattedLog(LogLevel logLevel, const char* tag, const char* fmt, ...) { std::stringstream ss; ss << LogPrefix(logLevel, tag); char buffer[2050]; int i = 0; va_list args; va_start(args, fmt); #ifdef WIN32 i = vsnprintf_s(buffer, sizeof(buffer) - 1, _TRUNCATE, fmt, args); #else i = vsnprintf(buffer, sizeof(buffer) - 1, fmt, args); #endif va_end(args); while (i > 0 && buffer[i - 1] == '\n') { i--; buffer[i] = '\0'; } ss << buffer << std::endl; if (gLogCallback) { gLogCallback(logLevel, ss.str()); } } static void DefaultLogCallbackFunc(LogLevel level, const std::string &stream) { UNUSED_PARAM(level); std::cerr << stream; } LogLevel AlibabaCloud::OSS::GetLogLevelInner() { return gOssLogLevel; } LogCallback AlibabaCloud::OSS::GetLogCallbackInner() { return gLogCallback; } void AlibabaCloud::OSS::SetLogLevelInner(LogLevel level) { gOssLogLevel = level; } void AlibabaCloud::OSS::SetLogCallbackInner(LogCallback callback) { gLogCallback = callback; } void AlibabaCloud::OSS::InitLogInner() { gOssLogLevel = LogLevel::LogOff; gLogCallback = nullptr; auto value = std::getenv("OSS_SDK_LOG_LEVEL"); if (value) { auto level = ToLower(Trim(value).c_str()); const auto size = sizeof(EnvLogLevels)/sizeof(EnvLogLevels[0]); for (auto i = 0U; i < size; i++) { if (level.compare(EnvLogLevels[i]) == 0) { gOssLogLevel = static_cast(static_cast(LogLevel::LogOff) + i); gLogCallback = DefaultLogCallbackFunc; break; } } } } void AlibabaCloud::OSS::DeinitLogInner() { gOssLogLevel = LogLevel::LogOff; gLogCallback = nullptr; } ================================================ FILE: sdk/src/utils/LogUtils.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { void InitLogInner(); void DeinitLogInner(); LogLevel GetLogLevelInner(); LogCallback GetLogCallbackInner(); void SetLogLevelInner(LogLevel level); void SetLogCallbackInner(LogCallback callback); void FormattedLog(LogLevel logLevel, const char* tag, const char* formatStr, ...); #ifdef DISABLE_OSS_LOGGING #define OSS_LOG(level, tag, ...) #else #define OSS_LOG(level, tag, ...) \ { \ if ( AlibabaCloud::OSS::GetLogCallbackInner() && AlibabaCloud::OSS::GetLogLevelInner() >= level ) \ { \ FormattedLog(level, tag, __VA_ARGS__); \ } \ } #endif // DISABLE_OSS_LOGGING } } ================================================ FILE: sdk/src/utils/Runnable.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include using namespace AlibabaCloud::OSS; Runnable::Runnable(const std::function f) : f_(f) { } void Runnable::run() const { f_(); } ================================================ FILE: sdk/src/utils/SignUtils.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "SignUtils.h" #include "Utils.h" #include #include #include #include #include #include using namespace AlibabaCloud::OSS; const static std::set ParamtersToSign = { "acl", "location", "bucketInfo", "stat", "referer", "cors", "website", "restore", "logging", "symlink", "qos", "uploadId", "uploads", "partNumber", "response-content-type", "response-content-language", "response-expires", "response-cache-control", "response-content-disposition", "response-content-encoding", "append", "position", "lifecycle", "delete", "live", "status", "comp", "vod", "startTime", "endTime", "x-oss-process", "security-token", "objectMeta", "callback", "callback-var", "tagging", "policy", "requestPayment", "x-oss-traffic-limit", "encryption", "qosInfo", "versioning", "versionId", "versions", "x-oss-request-payer", "sequential", "inventory", "inventoryId", "continuation-token", "worm", "wormId", "wormExtend", "regionList" }; SignUtils::SignUtils(const std::string &version): signVersion_(version), canonicalString_() { } SignUtils::~SignUtils() { } const std::string &SignUtils::CanonicalString() const { return canonicalString_; } void SignUtils::build(const std::string &method, const std::string &resource, const std::string &date, const HeaderCollection &headers, const ParameterCollection ¶meters) { std::stringstream ss; /*Version 1*/ // VERB + "\n" + // Content-MD5 + "\n" + // Content-Type + "\n" // Date + "\n" + // CanonicalizedOSSHeaders + // CanonicalizedResource) + //common headers ss << method << "\n"; if (headers.find(Http::CONTENT_MD5) != headers.end()) { ss << headers.at(Http::CONTENT_MD5); } ss << "\n"; if (headers.find(Http::CONTENT_TYPE) != headers.end()) { ss << headers.at(Http::CONTENT_TYPE); } ss << "\n"; //Date or EXPIRES ss << date << "\n"; //CanonicalizedOSSHeaders, start with x-oss- for (const auto &header : headers) { std::string lower = Trim(ToLower(header.first.c_str()).c_str()); if (lower.compare(0, 6, "x-oss-", 6) == 0) { std::string value = Trim(header.second.c_str()); ss << lower << ":" << value << "\n"; } } //CanonicalizedResource, the sub resouce in ss << resource; char separator = '?'; for (auto const& param : parameters) { if (ParamtersToSign.find(param.first) == ParamtersToSign.end()) { continue; } ss << separator; ss << param.first; if (!param.second.empty()) { ss << "=" << param.second; } separator = '&'; } canonicalString_ = ss.str(); } void SignUtils::build(const std::string &expires, const std::string &resource, const ParameterCollection ¶meters) { std::stringstream ss; ss << expires << '\n'; for(auto const& param : parameters) { ss << param.first << ":" << param.second << '\n'; } ss << resource; canonicalString_ = ss.str(); } ================================================ FILE: sdk/src/utils/SignUtils.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include namespace AlibabaCloud { namespace OSS { class SignUtils { public: SignUtils(const std::string &version); ~SignUtils(); void build(const std::string &method, const std::string &resource, const std::string &date, const HeaderCollection &headers, const ParameterCollection ¶meters); void build(const std::string &expires, const std::string &resource, const ParameterCollection ¶meters); const std::string &CanonicalString() const; private: std::string signVersion_; std::string canonicalString_; }; } } ================================================ FILE: sdk/src/utils/StreamBuf.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { template class basic_streambuf_proxy : public std::basic_streambuf <_Elem, _Traits> { public: virtual ~basic_streambuf_proxy() { std::ios_base::iostate state = _Stream->rdstate(); _Stream->rdbuf(_Sbuf); _Stream->setstate(state); } using int_type = typename _Traits::int_type; using pos_type = typename _Traits::pos_type; using off_type = typename _Traits::off_type; protected: basic_streambuf_proxy(std::basic_iostream<_Elem, _Traits>& stream) : _Stream(&stream) , _Sbuf(_Stream->rdbuf(this)) { } int_type overflow(int_type _Meta = _Traits::eof()) { // put a character to stream return _Sbuf->sputc(_Meta); } int_type pbackfail(int_type _Meta = _Traits::eof()) { // put a character back to stream return _Sbuf->sputbackc(_Meta); } std::streamsize showmanyc() { // return count of input characters return _Sbuf->in_avail();; } int_type underflow() { // get a character from stream, but don't point past it return _Sbuf->sgetc(); } int_type uflow() { // get a character from stream, point past it return _Sbuf->sbumpc(); } std::streamsize xsgetn(_Elem * _Ptr, std::streamsize _Count) { // get _Count characters from stream return _Sbuf->sgetn(_Ptr, _Count); } std::streamsize xsputn(const _Elem *_Ptr, std::streamsize _Count) { // put _Count characters to stream return _Sbuf->sputn(_Ptr, _Count); } pos_type seekoff(off_type _Off, std::ios_base::seekdir _Way, std::ios_base::openmode _Mode = std::ios_base::in | std::ios_base::out) { // change position by offset, according to way and mode return _Sbuf->pubseekoff(_Off, _Way, _Mode); } pos_type seekpos(pos_type _Pos, std::ios_base::openmode _Mode = std::ios_base::in | std::ios_base::out) { // change to specified position, according to mode return _Sbuf->pubseekpos(_Pos, _Mode); } std::basic_streambuf<_Elem, _Traits>* setbuf(_Elem *_Buffer, std::streamsize _Count) { // offer buffer to external agent return _Sbuf->pubsetbuf(_Buffer, _Count); } int sync() { // synchronize with external agent return _Sbuf->pubsync(); } void imbue(const std::locale& _Newlocale) { // set locale to argument _Sbuf->pubimbue(_Newlocale); } private: std::basic_iostream<_Elem, _Traits>* _Stream; std::basic_streambuf<_Elem, _Traits>* _Sbuf; }; using StreamBufProxy = basic_streambuf_proxy>; } } ================================================ FILE: sdk/src/utils/ThreadExecutor.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "ThreadExecutor.h" #include #include "../utils/LogUtils.h" using namespace AlibabaCloud::OSS; static const char *TAG = "ThreadExecutor"; ThreadExecutor::ThreadExecutor(): state_(State::Free) { } ThreadExecutor::~ThreadExecutor() { auto expected = State::Free; while (!state_.compare_exchange_strong(expected, State::Shutdown)) { assert(expected == State::Locked); expected = State::Free; } auto it = threads_.begin(); while (!threads_.empty()) { it->second.join(); it = threads_.erase(it); } } void ThreadExecutor::execute(Runnable* task) { auto main = [task, this] { OSS_LOG(LogLevel::LogDebug, TAG, "task(%p) enter execute main thread", task); task->run(); delete task; detach(std::this_thread::get_id()); OSS_LOG(LogLevel::LogDebug, TAG, "task(%p) leave execute main thread", task); }; State expected; do { expected = State::Free; if (state_.compare_exchange_strong(expected, State::Locked)) { std::thread t(main); const auto id = t.get_id(); threads_.emplace(id, std::move(t)); state_ = State::Free; return; } } while (expected != State::Shutdown); return; } void ThreadExecutor::detach(std::thread::id id) { State expected; do { expected = State::Free; if (state_.compare_exchange_strong(expected, State::Locked)) { auto it = threads_.find(id); assert(it != threads_.end()); it->second.detach(); threads_.erase(it); state_ = State::Free; return; } } while (expected != State::Shutdown); } ================================================ FILE: sdk/src/utils/ThreadExecutor.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include namespace AlibabaCloud { namespace OSS { class ThreadExecutor: public Executor { public: ThreadExecutor(); virtual ~ThreadExecutor(); void execute(Runnable* task); private: enum class State { Free, Locked, Shutdown }; void detach(std::thread::id id); std::atomic state_; std::unordered_map threads_; }; } } ================================================ FILE: sdk/src/utils/Utils.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "Utils.h" #include #include #include #ifdef OPENSSL_IS_BORINGSSL #include #endif #include #include #include #include #include #include #include #include #include #include #include #include "../external/json/json.h" using namespace AlibabaCloud::OSS; #if defined(__GNUG__) && __GNUC__ < 5 #else static const std::regex ipPattern("((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])"); static const std::regex bucketNamePattern("^[a-z0-9][a-z0-9\\-]{1,61}[a-z0-9]$"); static const std::regex loggingPrefixPattern("^[a-zA-Z][a-zA-Z0-9\\-]{0,31}$"); #endif std::string AlibabaCloud::OSS::GenerateUuid() { return ""; } std::string urlEncode(const std::string & src, bool ignoreSlash) { std::stringstream dest; static const char *hex = "0123456789ABCDEF"; unsigned char c; for (size_t i = 0; i < src.size(); i++) { c = src[i]; if (isalnum(c) || (c == '-') || (c == '_') || (c == '.') || (c == '~')) { dest << c; } else if (c == ' ') { dest << "%20"; } else if (ignoreSlash && c == '/') { dest << c; } else { dest << '%' << hex[c >> 4] << hex[c & 15]; } } return dest.str(); } std::string AlibabaCloud::OSS::UrlEncodePath(const std::string & src, bool ignoreSlash) { return urlEncode(src, ignoreSlash); } std::string AlibabaCloud::OSS::UrlEncode(const std::string & src) { return urlEncode(src, false); } std::string AlibabaCloud::OSS::UrlDecode(const std::string & src) { std::stringstream unescaped; unescaped.fill('0'); unescaped << std::hex; size_t safeLength = src.size(); const char *safe = src.c_str(); for (auto i = safe, n = safe + safeLength; i != n; ++i) { char c = *i; if(c == '%') { char hex[3]; hex[0] = *(i + 1); hex[1] = *(i + 2); hex[2] = 0; i += 2; auto hexAsInteger = strtol(hex, nullptr, 16); unescaped << (char)hexAsInteger; } else { unescaped << *i; } } return unescaped.str(); } std::string AlibabaCloud::OSS::Base64Encode(const std::string &src) { return AlibabaCloud::OSS::Base64Encode(src.c_str(), static_cast(src.size())); } std::string AlibabaCloud::OSS::Base64Encode(const ByteBuffer& buffer) { return AlibabaCloud::OSS::Base64Encode(reinterpret_cast(buffer.data()), static_cast(buffer.size())); } std::string AlibabaCloud::OSS::Base64Encode(const char *src, int len) { if (!src || len == 0) { return ""; } static const char *ENC = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; auto in = reinterpret_cast(src); auto inLen = len; std::stringstream ss; while (inLen) { // first 6 bits of char 1 ss << ENC[*in >> 2]; if (!--inLen) { // last 2 bits of char 1, 4 bits of 0 ss << ENC[(*in & 0x3) << 4]; ss << '='; ss << '='; break; } // last 2 bits of char 1, first 4 bits of char 2 ss << ENC[((*in & 0x3) << 4) | (*(in + 1) >> 4)]; in++; if (!--inLen) { // last 4 bits of char 2, 2 bits of 0 ss << ENC[(*in & 0xF) << 2]; ss << '='; break; } // last 4 bits of char 2, first 2 bits of char 3 ss << ENC[((*in & 0xF) << 2) | (*(in + 1) >> 6)]; in++; // last 6 bits of char 3 ss << ENC[*in & 0x3F]; in++, inLen--; } return ss.str(); } std::string AlibabaCloud::OSS::Base64EncodeUrlSafe(const std::string &src) { return AlibabaCloud::OSS::Base64EncodeUrlSafe(src.c_str(), static_cast(src.size())); } std::string AlibabaCloud::OSS::Base64EncodeUrlSafe(const char *src, int len) { std::string out = AlibabaCloud::OSS::Base64Encode(src, len); while (out.size() > 0 && *out.rbegin() == '=') out.pop_back(); std::transform(out.begin(), out.end(), out.begin(), [](unsigned char c) { if (c == '+') return '-'; if (c == '/') return '_'; return (char)c; }); return out; } std::string AlibabaCloud::OSS::XmlEscape(const std::string& value) { struct Entity { const char* pattern; char value; }; static const Entity entities[] = { { """, '\"' }, { "&", '&' }, { "'", '\'' }, { "<", '<' }, { ">", '>' }, { " ", '\r' } }; if (value.empty()) { return value; } std::stringstream ss; for (size_t i = 0; i < value.size(); i++) { bool flag = false; for (size_t j = 0; j < (sizeof(entities)/sizeof(entities[0])); j++) { if (value[i] == entities[j].value) { flag = true; ss << entities[j].pattern; break; } } if (!flag) { ss << value[i]; } } return ss.str(); } ByteBuffer AlibabaCloud::OSS::Base64Decode(const char *data, int len) { int in_len = len; int i = 0; int in_ = 0; unsigned char part4[4]; const int max_len = (len * 3 / 4); ByteBuffer ret(max_len); int idx = 0; while (in_len-- && (data[in_] != '=')) { unsigned char ch = data[in_++]; if ('A' <= ch && ch <= 'Z') ch = ch - 'A'; // A - Z else if ('a' <= ch && ch <= 'z') ch = ch - 'a' + 26; // a - z else if ('0' <= ch && ch <= '9') ch = ch - '0' + 52; // 0 - 9 else if ('+' == ch) ch = 62; // + else if ('/' == ch) ch = 63; // / else if ('=' == ch) ch = 64; // = else ch = 0xff; // something wrong part4[i++] = ch; if (i == 4) { ret[idx++] = (part4[0] << 2) + ((part4[1] & 0x30) >> 4); ret[idx++] = ((part4[1] & 0xf) << 4) + ((part4[2] & 0x3c) >> 2); ret[idx++] = ((part4[2] & 0x3) << 6) + part4[3]; i = 0; } } if (i) { for (int j = i; j < 4; j++) part4[j] = 0xFF; ret[idx++] = (part4[0] << 2) + ((part4[1] & 0x30) >> 4); if (part4[2] != 0xFF) { ret[idx++] = ((part4[1] & 0xf) << 4) + ((part4[2] & 0x3c) >> 2); if (part4[3] != 0xFF) { ret[idx++] = ((part4[2] & 0x3) << 6) + part4[3]; } } } ret.resize(idx); return ret; } ByteBuffer AlibabaCloud::OSS::Base64Decode(const std::string &src) { return Base64Decode(src.c_str(), static_cast(src.size())); } std::string AlibabaCloud::OSS::ComputeContentMD5(const std::string& data) { return ComputeContentMD5(data.c_str(), data.size()); } std::string AlibabaCloud::OSS::ComputeContentMD5(const char * data, size_t size) { if (!data) { return ""; } auto ctx = EVP_MD_CTX_create(); unsigned char md_value[EVP_MAX_MD_SIZE]; unsigned int md_len = 0; EVP_MD_CTX_init(ctx); #ifndef OPENSSL_IS_BORINGSSL EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); #endif EVP_DigestInit_ex(ctx, EVP_md5(), nullptr); EVP_DigestUpdate(ctx, static_cast(data), size); EVP_DigestFinal_ex(ctx, md_value, &md_len); EVP_MD_CTX_destroy(ctx); char encodedData[100]; EVP_EncodeBlock(reinterpret_cast(encodedData), md_value, md_len); return encodedData; } std::string AlibabaCloud::OSS::ComputeContentMD5(std::istream& stream) { auto ctx = EVP_MD_CTX_create(); unsigned char md_value[EVP_MAX_MD_SIZE]; unsigned int md_len = 0; EVP_MD_CTX_init(ctx); #ifndef OPENSSL_IS_BORINGSSL EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); #endif EVP_DigestInit_ex(ctx, EVP_md5(), nullptr); auto currentPos = stream.tellg(); if (currentPos == static_cast(-1)) { currentPos = 0; stream.clear(); } stream.seekg(0, stream.beg); char streamBuffer[2048]; while (stream.good()) { stream.read(streamBuffer, 2048); auto bytesRead = stream.gcount(); if (bytesRead > 0) { EVP_DigestUpdate(ctx, streamBuffer, static_cast(bytesRead)); } } EVP_DigestFinal_ex(ctx, md_value, &md_len); EVP_MD_CTX_destroy(ctx); stream.clear(); stream.seekg(currentPos, stream.beg); //Based64 char encodedData[100]; EVP_EncodeBlock(reinterpret_cast(encodedData), md_value, md_len); return encodedData; } static std::string HexToString(const unsigned char *data, size_t size) { static char hex[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; std::stringstream ss; for (size_t i = 0; i < size; i++) ss << hex[(data[i] >> 4)] << hex[(data[i] & 0x0F)]; return ss.str(); } std::string AlibabaCloud::OSS::ComputeContentETag(const std::string& data) { return ComputeContentETag(data.c_str(), data.size()); } std::string AlibabaCloud::OSS::ComputeContentETag(const char * data, size_t size) { if (!data) { return ""; } auto ctx = EVP_MD_CTX_create(); unsigned char md_value[EVP_MAX_MD_SIZE]; unsigned int md_len = 0; EVP_MD_CTX_init(ctx); #ifndef OPENSSL_IS_BORINGSSL EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); #endif EVP_DigestInit_ex(ctx, EVP_md5(), nullptr); EVP_DigestUpdate(ctx, static_cast(data), size); EVP_DigestFinal_ex(ctx, md_value, &md_len); EVP_MD_CTX_destroy(ctx); return HexToString(md_value, md_len); } std::string AlibabaCloud::OSS::ComputeContentETag(std::istream& stream) { auto ctx = EVP_MD_CTX_create(); unsigned char md_value[EVP_MAX_MD_SIZE]; unsigned int md_len = 0; EVP_MD_CTX_init(ctx); #ifndef OPENSSL_IS_BORINGSSL EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); #endif EVP_DigestInit_ex(ctx, EVP_md5(), nullptr); auto currentPos = stream.tellg(); if (currentPos == static_cast(-1)) { currentPos = 0; stream.clear(); } stream.seekg(0, stream.beg); char streamBuffer[2048]; while (stream.good()) { stream.read(streamBuffer, 2048); auto bytesRead = stream.gcount(); if (bytesRead > 0) { EVP_DigestUpdate(ctx, streamBuffer, static_cast(bytesRead)); } } EVP_DigestFinal_ex(ctx, md_value, &md_len); EVP_MD_CTX_destroy(ctx); stream.clear(); stream.seekg(currentPos, stream.beg); return HexToString(md_value, md_len); } void AlibabaCloud::OSS::StringReplace(std::string & src, const std::string & s1, const std::string & s2) { std::string::size_type pos =0; while ((pos = src.find(s1, pos)) != std::string::npos) { src.replace(pos, s1.length(), s2); pos += s2.length(); } } std::string AlibabaCloud::OSS::LeftTrim(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](unsigned char ch) { return !::isspace(ch); })); return copy; } std::string AlibabaCloud::OSS::RightTrim(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](unsigned char ch) { return !::isspace(ch); }).base(), copy.end()); return copy; } std::string AlibabaCloud::OSS::Trim(const char* source) { return LeftTrim(RightTrim(source).c_str()); } std::string AlibabaCloud::OSS::LeftTrimQuotes(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](int ch) { return !(ch == '"'); })); return copy; } std::string AlibabaCloud::OSS::RightTrimQuotes(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](int ch) { return !(ch == '"'); }).base(), copy.end()); return copy; } std::string AlibabaCloud::OSS::TrimQuotes(const char* source) { return LeftTrimQuotes(RightTrimQuotes(source).c_str()); } std::string AlibabaCloud::OSS::ToLower(const char* source) { std::string copy; if (source) { size_t srcLength = strlen(source); copy.resize(srcLength); std::transform(source, source + srcLength, copy.begin(), [](unsigned char c) { return (char)::tolower(c); }); } return copy; } std::string AlibabaCloud::OSS::ToUpper(const char* source) { std::string copy; if (source) { size_t srcLength = strlen(source); copy.resize(srcLength); std::transform(source, source + srcLength, copy.begin(), [](unsigned char c) { return (char)::toupper(c); }); } return copy; } bool AlibabaCloud::OSS::IsIp(const std::string &host) { #if defined(__GNUG__) && __GNUC__ < 5 int n[4]; char c[4]; const char *p = host.c_str(); if (sscanf(p, "%d%c%d%c%d%c%d%c", &n[0], &c[0], &n[1], &c[1], &n[2], &c[2], &n[3], &c[3]) == 7) { int i; for (i = 0; i < 3; ++i) if (c[i] != '.') return false; for (i = 0; i < 4; ++i) if (n[i] > 255 || n[i] < 0) return false; return true; } return false; #else return std::regex_match(host, ipPattern); #endif } std::string AlibabaCloud::OSS::ToGmtTime(std::time_t &t) { std::stringstream date; std::tm tm; #ifdef _WIN32 ::gmtime_s(&tm, &t); #else ::gmtime_r(&t, &tm); #endif #if defined(__GNUG__) && __GNUC__ < 5 static const char wday_name[][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; static const char mon_name[][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; char tmbuff[26]; snprintf(tmbuff, sizeof(tmbuff), "%.3s, %.2d %.3s %d %.2d:%.2d:%.2d", wday_name[tm.tm_wday], tm.tm_mday, mon_name[tm.tm_mon], 1900 + tm.tm_year, tm.tm_hour, tm.tm_min, tm.tm_sec); date << tmbuff << " GMT"; #else date.imbue(std::locale::classic()); date << std::put_time(&tm, "%a, %d %b %Y %H:%M:%S GMT"); #endif return date.str(); } std::string AlibabaCloud::OSS::ToUtcTime(std::time_t &t) { std::stringstream date; std::tm tm; #ifdef _WIN32 ::gmtime_s(&tm, &t); #else ::gmtime_r(&t, &tm); #endif #if defined(__GNUG__) && __GNUC__ < 5 char tmbuff[26]; strftime(tmbuff, 26, "%Y-%m-%dT%H:%M:%S.000Z", &tm); date << tmbuff; #else date.imbue(std::locale::classic()); date << std::put_time(&tm, "%Y-%m-%dT%X.000Z"); #endif return date.str(); } std::time_t AlibabaCloud::OSS::UtcToUnixTime(const std::string &t) { const char* date = t.c_str(); std::tm tm; std::time_t tt = -1; int ms; auto result = sscanf(date, "%4d-%2d-%2dT%2d:%2d:%2d.%dZ", &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec, &ms); if (result == 7) { tm.tm_year = tm.tm_year - 1900; tm.tm_mon = tm.tm_mon - 1; #ifdef _WIN32 tt = _mkgmtime64(&tm); #else tt = timegm(&tm); #endif // _WIN32 } return tt < 0 ? -1 : tt; } std::time_t AlibabaCloud::OSS::ToUnixTime(const std::string &str, const std::string &fmt) { std::tm tm; std::time_t tt = -1; memset(&tm, 0, sizeof(tm)); #if defined(__GNUG__) && __GNUC__ < 5 strptime(str.c_str(), fmt.c_str(), &tm); #else std::istringstream input(str); input.imbue(std::locale(setlocale(LC_ALL, nullptr))); input >> std::get_time(&tm, fmt.c_str()); if (input.fail()) { return -1; } #endif #ifdef _WIN32 tt = _mkgmtime64(&tm); #else tt = timegm(&tm); #endif // _WIN32 return tt < 0 ? -1 : tt; } std::string AlibabaCloud::OSS::FormatUnixTime(const std::time_t &t, const std::string &fmt) { std::stringstream date; std::tm tm; #ifdef _WIN32 ::gmtime_s(&tm, &t); #else ::gmtime_r(&t, &tm); #endif #if defined(__GNUG__) && __GNUC__ < 5 char tmbuff[64]; strftime(tmbuff, 64, fmt.c_str(), &tm); date << tmbuff; #else date.imbue(std::locale::classic()); date << std::put_time(&tm, fmt.c_str()); #endif return date.str(); } bool AlibabaCloud::OSS::IsValidBucketName(const std::string &bucketName) { #if defined(__GNUG__) && __GNUC__ < 5 if (bucketName.size() < 3 || bucketName.size() > 63) return false; for (auto it = bucketName.begin(); it != bucketName.end(); it++) { if (!((*it >= 'a' && *it <= 'z') || (*it >= '0' && *it <= '9') || *it == '-')) return false; } if (*bucketName.begin() == '-' || *bucketName.rbegin() == '-') return false; return true; #else if (bucketName.empty()) return false; return std::regex_match(bucketName, bucketNamePattern); #endif } bool AlibabaCloud::OSS::IsValidObjectKey(const std::string & key) { if (key.empty() || !key.compare(0, 1, "\\", 1)) return false; return key.size() <= ObjectNameLengthLimit; } bool AlibabaCloud::OSS::IsValidObjectKey(const std::string& key, bool strict) { if (key.empty() || !key.compare(0, 1, "\\", 1)) return false; if (strict && !key.compare(0, 1, "?", 1)) return false; return key.size() <= ObjectNameLengthLimit; } bool AlibabaCloud::OSS::IsValidLoggingPrefix(const std::string &prefix) { if (prefix.empty()) return true; #if defined(__GNUG__) && __GNUC__ < 5 if (prefix.size() > 32) return false; auto ch = static_cast(*prefix.begin()); if (isalpha(ch) == 0) return false; for (auto it = prefix.begin(); it != prefix.end(); it++) { ch = static_cast(*it); if (!(::isalpha(ch) || ::isdigit(ch) || *it == '-')) return false; } return true; #else return std::regex_match(prefix, loggingPrefixPattern); #endif } bool AlibabaCloud::OSS::IsValidChannelName(const std::string &channelName) { if(channelName.empty() || std::string::npos != channelName.find('/') || channelName.size() > MaxLiveChannelNameLength) return false; return true; } bool AlibabaCloud::OSS::IsValidPlayListName(const std::string &playlistName) { if(playlistName.empty()) { return false; }else{ if(!IsValidObjectKey(playlistName)) { return false; } if(playlistName.size() < MinLiveChannelPlayListLength || playlistName.size() > MaxLiveChannelPlayListLength) { return false; } std::size_t lastPos = playlistName.find_last_of('.'); std::size_t slashPos = playlistName.find('/'); if(lastPos == std::string::npos || slashPos != std::string::npos || 0 == lastPos || '.' == playlistName[lastPos-1]) { return false; }else{ std::string suffix = playlistName.substr(lastPos); if(suffix.size() < 5) { return false; } if(ToLower(suffix.c_str()) != ".m3u8") { return false; } return true; } } } bool AlibabaCloud::OSS::IsValidTagKey(const std::string &key) { if (key.empty() || key.size() > TagKeyLengthLimit) return false; return true; } bool AlibabaCloud::OSS::IsValidTagValue(const std::string &value) { return value.size() <= TagValueLengthLimit; } bool AlibabaCloud::OSS::IsValidEndpoint(const std::string &value) { auto host = Url(value).host(); if (host.empty()) return false; for (const auto c : host) { if (!((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z') || (c == '_') || (c == '-') || (c == '.'))) { return false; } } return true; } const std::string& AlibabaCloud::OSS::LookupMimeType(const std::string &name) { const static std::map mimeType = { {"html", "text/html"}, {"htm", "text/html"}, {"shtml", "text/html"}, {"css", "text/css"}, {"xml", "text/xml"}, {"gif", "image/gif"}, {"jpeg", "image/jpeg"}, {"jpg", "image/jpeg"}, {"js", "application/x-javascript"}, {"atom", "application/atom+xml"}, {"rss", "application/rss+xml"}, {"mml", "text/mathml"}, {"txt", "text/plain"}, {"jad", "text/vnd.sun.j2me.app-descriptor"}, {"wml", "text/vnd.wap.wml"}, {"htc", "text/x-component"}, {"png", "image/png"}, {"tif", "image/tiff"}, {"tiff", "image/tiff"}, {"wbmp", "image/vnd.wap.wbmp"}, {"ico", "image/x-icon"}, {"jng", "image/x-jng"}, {"bmp", "image/x-ms-bmp"}, {"svg", "image/svg+xml"}, {"svgz", "image/svg+xml"}, {"webp", "image/webp"}, {"jar", "application/java-archive"}, {"war", "application/java-archive"}, {"ear", "application/java-archive"}, {"hqx", "application/mac-binhex40"}, {"doc ", "application/msword"}, {"pdf", "application/pdf"}, {"ps", "application/postscript"}, {"eps", "application/postscript"}, {"ai", "application/postscript"}, {"rtf", "application/rtf"}, {"xls", "application/vnd.ms-excel"}, {"ppt", "application/vnd.ms-powerpoint"}, {"wmlc", "application/vnd.wap.wmlc"}, {"kml", "application/vnd.google-earth.kml+xml"}, {"kmz", "application/vnd.google-earth.kmz"}, {"7z", "application/x-7z-compressed"}, {"cco", "application/x-cocoa"}, {"jardiff", "application/x-java-archive-diff"}, {"jnlp", "application/x-java-jnlp-file"}, {"run", "application/x-makeself"}, {"pl", "application/x-perl"}, {"pm", "application/x-perl"}, {"prc", "application/x-pilot"}, {"pdb", "application/x-pilot"}, {"rar", "application/x-rar-compressed"}, {"rpm", "application/x-redhat-package-manager"}, {"sea", "application/x-sea"}, {"swf", "application/x-shockwave-flash"}, {"sit", "application/x-stuffit"}, {"tcl", "application/x-tcl"}, {"tk", "application/x-tcl"}, {"der", "application/x-x509-ca-cert"}, {"pem", "application/x-x509-ca-cert"}, {"crt", "application/x-x509-ca-cert"}, {"xpi", "application/x-xpinstall"}, {"xhtml", "application/xhtml+xml"}, {"zip", "application/zip"}, {"wgz", "application/x-nokia-widget"}, {"bin", "application/octet-stream"}, {"exe", "application/octet-stream"}, {"dll", "application/octet-stream"}, {"deb", "application/octet-stream"}, {"dmg", "application/octet-stream"}, {"eot", "application/octet-stream"}, {"iso", "application/octet-stream"}, {"img", "application/octet-stream"}, {"msi", "application/octet-stream"}, {"msp", "application/octet-stream"}, {"msm", "application/octet-stream"}, {"mid", "audio/midi"}, {"midi", "audio/midi"}, {"kar", "audio/midi"}, {"mp3", "audio/mpeg"}, {"ogg", "audio/ogg"}, {"m4a", "audio/x-m4a"}, {"ra", "audio/x-realaudio"}, {"3gpp", "video/3gpp"}, {"3gp", "video/3gpp"}, {"mp4", "video/mp4"}, {"mpeg", "video/mpeg"}, {"mpg", "video/mpeg"}, {"mov", "video/quicktime"}, {"webm", "video/webm"}, {"flv", "video/x-flv"}, {"m4v", "video/x-m4v"}, {"mng", "video/x-mng"}, {"asx", "video/x-ms-asf"}, {"asf", "video/x-ms-asf"}, {"wmv", "video/x-ms-wmv"}, {"avi", "video/x-msvideo"}, {"ts", "video/MP2T"}, {"m3u8", "application/x-mpegURL"}, {"apk", "application/vnd.android.package-archive"} }; const static std::string defaultType("application/octet-stream"); std::string::size_type last_pos = name.find_last_of('.'); std::string::size_type first_pos = name.find_first_of('.'); std::string prefix, ext, ext2; if (last_pos == std::string::npos) { return defaultType; } // extract the last extension if (last_pos != std::string::npos) { ext = name.substr(1 + last_pos, std::string::npos); } if (last_pos != std::string::npos) { if (first_pos != std::string::npos && first_pos < last_pos) { prefix = name.substr(0, last_pos); // Now get the second to last file extension std::string::size_type next_pos = prefix.find_last_of('.'); if (next_pos != std::string::npos) { ext2 = prefix.substr(1 + next_pos, std::string::npos); } } } ext = ToLower(ext.c_str()); auto iter = mimeType.find(ext); if (iter != mimeType.end()) { return (*iter).second; } if (first_pos == last_pos) { return defaultType; } ext2 = ToLower(ext2.c_str()); iter = mimeType.find(ext2); if (iter != mimeType.end()) { return (*iter).second; } return defaultType; } std::string AlibabaCloud::OSS::CombineHostString( const std::string &endpoint, const std::string &bucket, bool isCname, bool isPathStyle) { Url url(endpoint); if (url.scheme().empty()) { url.setScheme(Http::SchemeToString(Http::HTTP)); } if (!bucket.empty() && !isCname && !IsIp(url.host()) && !isPathStyle) { std::string host(bucket); host.append(".").append(url.host()); url.setHost(host); } std::ostringstream out; out << url.scheme() << "://" << url.authority(); return out.str(); } std::string AlibabaCloud::OSS::CombinePathString( const std::string &endpoint, const std::string &bucket, const std::string &key, bool isPathStyle, bool ignoreSlash) { Url url(endpoint); std::string path; path = "/"; if (IsIp(url.host()) || isPathStyle) { path.append(bucket).append("/"); } path.append(UrlEncodePath(key, ignoreSlash)); return path; } std::string AlibabaCloud::OSS::CombineRTMPString( const std::string &endpoint, const std::string &bucket, bool isCname, bool isPathStyle) { Url url(endpoint); if (!bucket.empty() && !isCname && !IsIp(url.host()) && !isPathStyle) { std::string host(bucket); host.append(".").append(url.host()); url.setHost(host); } std::ostringstream out; out << "rtmp://" << url.authority(); return out.str(); } std::string AlibabaCloud::OSS::CombineQueryString(const ParameterCollection ¶meters) { std::stringstream ss; if (!parameters.empty()) { for (const auto &p : parameters) { if (p.second.empty()) ss << "&" << UrlEncode(p.first); else ss << "&" << UrlEncode(p.first) << "=" << UrlEncode(p.second); } } return ss.str().substr(1); } std::streampos AlibabaCloud::OSS::GetIOStreamLength(std::iostream &stream) { auto currentPos = stream.tellg(); if (currentPos == static_cast(-1)) { currentPos = 0; stream.clear(); } stream.seekg(0, stream.end); auto streamSize = stream.tellg(); stream.seekg(currentPos, stream.beg); return streamSize; } const char *AlibabaCloud::OSS::ToStorageClassName(StorageClass storageClass) { static const char *StorageClassName[] = { "Standard", "IA", "Archive", "ColdArchive" }; return StorageClassName[storageClass - StorageClass::Standard]; } StorageClass AlibabaCloud::OSS::ToStorageClassType(const char *name) { std::string storageName = ToLower(name); if(!storageName.compare("ia")) return StorageClass::IA; else if (!storageName.compare("archive")) return StorageClass::Archive; else if (!storageName.compare("coldarchive")) return StorageClass::ColdArchive; else return StorageClass::Standard; } const char *AlibabaCloud::OSS::ToAclName(CannedAccessControlList acl) { static const char *AclName[] = { "private", "public-read", "public-read-write", "default"}; return AclName[acl - CannedAccessControlList::Private]; } CannedAccessControlList AlibabaCloud::OSS::ToAclType(const char *name) { std::string aclName = ToLower(name); if (!aclName.compare("private")) return CannedAccessControlList::Private; else if (!aclName.compare("public-read")) return CannedAccessControlList::PublicRead; else if (!aclName.compare("public-read-write")) return CannedAccessControlList::PublicReadWrite; else return CannedAccessControlList::Default; } const char *AlibabaCloud::OSS::ToCopyActionName(CopyActionList action) { static const char *ActionName[] = { "COPY", "REPLACE"}; return ActionName[action - CopyActionList::Copy]; } const char *AlibabaCloud::OSS::ToRuleStatusName(RuleStatus status) { static const char *StatusName[] = { "Enabled", "Disabled" }; return StatusName[status - RuleStatus::Enabled]; } RuleStatus AlibabaCloud::OSS::ToRuleStatusType(const char *name) { std::string statusName = ToLower(name); if (!statusName.compare("enabled")) return RuleStatus::Enabled; else return RuleStatus::Disabled; } const char *AlibabaCloud::OSS::ToLiveChannelStatusName(LiveChannelStatus status) { if(status > LiveChannelStatus::LiveStatus) return ""; static const char *StatusName[] = { "enabled", "disabled", "idle", "live" }; return StatusName[status - LiveChannelStatus::EnabledStatus]; } LiveChannelStatus AlibabaCloud::OSS::ToLiveChannelStatusType(const char *name) { std::string statusName = ToLower(name); if (!statusName.compare("enabled")) return LiveChannelStatus::EnabledStatus; else if (!statusName.compare("disabled")) return LiveChannelStatus::DisabledStatus; else if (!statusName.compare("idle")) return LiveChannelStatus::IdleStatus; else if (!statusName.compare("live")) return LiveChannelStatus::LiveStatus; else return LiveChannelStatus::UnknownStatus; } const char* AlibabaCloud::OSS::ToRequestPayerName(RequestPayer payer) { static const char* PayerName[] = { "NotSet", "BucketOwner", "Requester"}; return PayerName[static_cast(payer) - static_cast(RequestPayer::NotSet)]; } RequestPayer AlibabaCloud::OSS::ToRequestPayer(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("bucketowner")) return RequestPayer::BucketOwner; else if (!statusName.compare("requester")) return RequestPayer::Requester; else return RequestPayer::NotSet; } const char* AlibabaCloud::OSS::ToSSEAlgorithmName(SSEAlgorithm sse) { static const char* StatusName[] = { "NotSet", "KMS", "AES256" }; return StatusName[static_cast(sse) - static_cast(SSEAlgorithm::NotSet)]; } SSEAlgorithm AlibabaCloud::OSS::ToSSEAlgorithm(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("kms")) return SSEAlgorithm::KMS; else if (!statusName.compare("aes256")) return SSEAlgorithm::AES256; else return SSEAlgorithm::NotSet; } DataRedundancyType AlibabaCloud::OSS::ToDataRedundancyType(const char* name) { std::string storageName = ToLower(name); if (!storageName.compare("lrs")) return DataRedundancyType::LRS; else if (!storageName.compare("zrs")) return DataRedundancyType::ZRS; else return DataRedundancyType::NotSet; } const char* AlibabaCloud::OSS::ToDataRedundancyTypeName(DataRedundancyType type) { static const char* typeName[] = { "NotSet", "LRS", "ZRS" }; return typeName[static_cast(type) - static_cast(DataRedundancyType::NotSet)]; } const char * AlibabaCloud::OSS::ToVersioningStatusName(VersioningStatus status) { static const char *StatusName[] = { "NotSet", "Enabled", "Suspended" }; return StatusName[static_cast(status) - static_cast(VersioningStatus::NotSet)]; } VersioningStatus AlibabaCloud::OSS::ToVersioningStatusType(const char *name) { std::string statusName = ToLower(name); if (!statusName.compare("enabled")) return VersioningStatus::Enabled; else if (!statusName.compare("suspended")) return VersioningStatus::Suspended; else return VersioningStatus::NotSet; } const char* AlibabaCloud::OSS::ToInventoryFormatName(InventoryFormat status) { static const char* StatusName[] = { "NotSet", "CSV"}; return StatusName[static_cast(status) - static_cast(InventoryFormat::NotSet)]; } InventoryFormat AlibabaCloud::OSS::ToInventoryFormatType(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("csv")) return InventoryFormat::CSV; else return InventoryFormat::NotSet; } const char* AlibabaCloud::OSS::ToInventoryFrequencyName(InventoryFrequency status) { static const char* StatusName[] = { "NotSet", "Daily", "Weekly" }; return StatusName[static_cast(status) - static_cast(InventoryFrequency::NotSet)]; } InventoryFrequency AlibabaCloud::OSS::ToInventoryFrequencyType(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("daily")) return InventoryFrequency::Daily; else if (!statusName.compare("weekly")) return InventoryFrequency::Weekly; else return InventoryFrequency::NotSet; } const char* AlibabaCloud::OSS::ToInventoryOptionalFieldName(InventoryOptionalField status) { static const char* StatusName[] = { "NotSet", "Size", "LastModifiedDate", "ETag", "StorageClass", "IsMultipartUploaded", "EncryptionStatus" }; return StatusName[static_cast(status) - static_cast(InventoryOptionalField::NotSet)]; } InventoryOptionalField AlibabaCloud::OSS::ToInventoryOptionalFieldType(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("size")) return InventoryOptionalField::Size; else if (!statusName.compare("lastmodifieddate")) return InventoryOptionalField::LastModifiedDate; else if (!statusName.compare("etag")) return InventoryOptionalField::ETag; else if (!statusName.compare("storageclass")) return InventoryOptionalField::StorageClass; else if (!statusName.compare("ismultipartuploaded")) return InventoryOptionalField::IsMultipartUploaded; else if (!statusName.compare("encryptionstatus")) return InventoryOptionalField::EncryptionStatus; else return InventoryOptionalField::NotSet; } const char* AlibabaCloud::OSS::ToInventoryIncludedObjectVersionsName(InventoryIncludedObjectVersions status) { static const char* StatusName[] = { "NotSet", "All", "Current" }; return StatusName[static_cast(status) - static_cast(InventoryIncludedObjectVersions::NotSet)]; } InventoryIncludedObjectVersions AlibabaCloud::OSS::ToInventoryIncludedObjectVersionsType(const char* name) { std::string statusName = ToLower(name); if (!statusName.compare("all")) return InventoryIncludedObjectVersions::All; else if (!statusName.compare("current")) return InventoryIncludedObjectVersions::Current; else return InventoryIncludedObjectVersions::NotSet; } std::string AlibabaCloud::OSS::ToInventoryBucketFullName(const std::string& name) { std::string fullName = "acs:oss:::"; return fullName.append(name); } std::string AlibabaCloud::OSS::ToInventoryBucketShortName(const char* name) { std::string name_ = ToLower(name); std::string shortName; if (!name_.compare(0, 10, "acs:oss:::")) { shortName.append(name + 10); } return shortName; } const char * AlibabaCloud::OSS::ToTierTypeName(TierType status) { static const char *StatusName[] = { "Expedited", "Standard", "Bulk" }; return StatusName[static_cast(status) - static_cast(TierType::Expedited)]; } TierType AlibabaCloud::OSS::ToTierType(const char *name) { std::string statusName = ToLower(name); if (!statusName.compare("expedited")) return TierType::Expedited; else if (!statusName.compare("bulk")) return TierType::Bulk; else return TierType::Standard; } #if !defined(OSS_DISABLE_RESUAMABLE) || !defined(OSS_DISABLE_ENCRYPTION) std::map AlibabaCloud::OSS::JsonStringToMap(const std::string& jsonStr) { std::map valueMap; Json::Value root; Json::CharReaderBuilder rbuilder; std::stringstream input(jsonStr); std::string errMsg; if (Json::parseFromStream(rbuilder, input, &root, &errMsg)) { for (auto it = root.begin(); it != root.end(); ++it) { valueMap[it.key().asString()] = (*it).asString(); } } return valueMap; } std::string AlibabaCloud::OSS::MapToJsonString(const std::map& map) { if (map.empty()) { return ""; } Json::Value root; for (const auto& it : map) { root[it.first] = it.second; } Json::StreamWriterBuilder builder; builder["indentation"] = ""; return Json::writeString(builder, root); } #endif ================================================ FILE: sdk/src/utils/Utils.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace AlibabaCloud { namespace OSS { #define UNUSED_PARAM(x) ((void)(x)) std::string ComputeContentMD5(const std::string& data); std::string ComputeContentMD5(const char *data, size_t size); std::string ComputeContentMD5(std::istream & stream); std::string ComputeContentETag(const std::string& data); std::string ComputeContentETag(const char *data, size_t size); std::string ComputeContentETag(std::istream & stream); std::string GenerateUuid(); std::string UrlEncode(const std::string &src); std::string UrlDecode(const std::string &src); std::string UrlEncodePath(const std::string & src, bool ignoreSlash); std::string Base64Encode(const std::string &src); std::string Base64Encode(const ByteBuffer& buffer); std::string Base64Encode(const char *src, int len); std::string Base64EncodeUrlSafe(const std::string &src); std::string Base64EncodeUrlSafe(const char *src, int len); std::string XmlEscape(const std::string& value); ByteBuffer Base64Decode(const char *src, int len); ByteBuffer Base64Decode(const std::string &src); void StringReplace(std::string &src, const std::string &s1, const std::string &s2); std::string LeftTrim(const char* source); std::string RightTrim(const char* source); std::string Trim(const char* source); std::string LeftTrimQuotes(const char* source); std::string RightTrimQuotes(const char* source); std::string TrimQuotes(const char* source); std::string ToLower(const char* source); std::string ToUpper(const char* source); std::string ToGmtTime(std::time_t &t); std::string ToUtcTime(std::time_t &t); std::time_t UtcToUnixTime(const std::string &t); std::time_t ToUnixTime(const std::string &str, const std::string &fmt); std::string FormatUnixTime(const std::time_t &t, const std::string &fmt); bool IsIp(const std::string &host); bool IsValidBucketName(const std::string &bucketName); bool IsValidObjectKey(const std::string &key); bool IsValidObjectKey(const std::string& key, bool strict); bool IsValidLoggingPrefix(const std::string &prefix); bool IsValidChannelName(const std::string &channelName); bool IsValidPlayListName(const std::string &playListName); bool IsValidTagKey(const std::string &key); bool IsValidTagValue(const std::string &value); bool IsValidEndpoint(const std::string &value); const std::string &LookupMimeType(const std::string& name); std::string CombineHostString(const std::string &endpoint, const std::string &bucket, bool isCname, bool isPathStyle); std::string CombinePathString(const std::string &endpoint, const std::string &bucket, const std::string &key, bool isPathStyle, bool ignoreSlash = true); std::string CombineQueryString(const ParameterCollection ¶meters); std::string CombineRTMPString(const std::string &endpoint, const std::string &bucket, bool isCname, bool isPathStyle); std::streampos GetIOStreamLength(std::iostream &stream); const char *ToStorageClassName(StorageClass storageClass); StorageClass ToStorageClassType(const char *name); const char *ToAclName(CannedAccessControlList acl); CannedAccessControlList ToAclType(const char *name); const char * ToCopyActionName(CopyActionList action); const char * ToRuleStatusName(RuleStatus status); RuleStatus ToRuleStatusType(const char *name); const char * ToLiveChannelStatusName(LiveChannelStatus status); LiveChannelStatus ToLiveChannelStatusType(const char *name); const char* ToRequestPayerName(RequestPayer payer); RequestPayer ToRequestPayer(const char* name); const char* ToSSEAlgorithmName(SSEAlgorithm sse); SSEAlgorithm ToSSEAlgorithm(const char* name); DataRedundancyType ToDataRedundancyType(const char* name); const char* ToDataRedundancyTypeName(DataRedundancyType type); const char * ToVersioningStatusName(VersioningStatus status); VersioningStatus ToVersioningStatusType(const char *name); const char* ToInventoryFormatName(InventoryFormat status); InventoryFormat ToInventoryFormatType(const char* name); const char* ToInventoryFrequencyName(InventoryFrequency status); InventoryFrequency ToInventoryFrequencyType(const char* name); const char* ToInventoryOptionalFieldName(InventoryOptionalField status); InventoryOptionalField ToInventoryOptionalFieldType(const char* name); const char* ToInventoryIncludedObjectVersionsName(InventoryIncludedObjectVersions status); InventoryIncludedObjectVersions ToInventoryIncludedObjectVersionsType(const char* name); std::string ToInventoryBucketFullName(const std::string& name); std::string ToInventoryBucketShortName(const char* name); const char * ToTierTypeName(TierType status); TierType ToTierType(const char *name); #if !defined(OSS_DISABLE_RESUAMABLE) || !defined(OSS_DISABLE_ENCRYPTION) std::map JsonStringToMap(const std::string& jsonStr); std::string MapToJsonString(const std::map& map); #endif } } ================================================ FILE: test/CMakeLists.txt ================================================ # # Copyright 2009-2017 Alibaba Cloud All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # project(cpp-sdk-test VERSION ${version}) file(GLOB test_gtest_src "external/gtest/*") file(GLOB test_main_src "src/*") file(GLOB test_accesskey_src "src/AccessKey/*") file(GLOB test_service_src "src/Service/*") file(GLOB test_bucket_src "src/Bucket/*") file(GLOB test_object_src "src/Object/*") file(GLOB test_presignedurl_src "src/PresignedUrl/*") file(GLOB test_multipartupload_src "src/MultipartUpload/*") file(GLOB test_resumable_src "src/Resumable/*") file(GLOB test_other_src "src/Other/*") file(GLOB test_livechannel_src "src/LiveChannel/*") file(GLOB test_encryption_src "src/Encryption/*") add_executable(${PROJECT_NAME} ${test_main_src} ${test_gtest_src} ${test_accesskey_src} ${test_service_src} ${test_bucket_src} ${test_object_src} ${test_presignedurl_src} ${test_multipartupload_src} ${test_resumable_src} ${test_other_src} ${test_livechannel_src} ${test_encryption_src}) target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_SOURCE_DIR}/sdk/include PRIVATE ${CMAKE_SOURCE_DIR}/sdk/ PRIVATE ${CMAKE_SOURCE_DIR}/test/external) if (${TARGET_OS} STREQUAL "WINDOWS") target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_SOURCE_DIR}/third_party/include) endif() target_link_libraries(${PROJECT_NAME} cpp-sdk${STATIC_LIB_SUFFIX}) target_link_libraries(${PROJECT_NAME} ${CRYPTO_LIBS}) target_link_libraries(${PROJECT_NAME} ${CLIENT_LIBS}) if (${TARGET_OS} STREQUAL "LINUX") target_link_libraries(${PROJECT_NAME} pthread) endif() target_compile_options(${PROJECT_NAME} PRIVATE "${SDK_COMPILER_FLAGS}") if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") target_compile_options(${PROJECT_NAME} PRIVATE "-Wno-invalid-source-encoding") endif() ================================================ FILE: test/data/ca-certificates.crt ================================================ -----BEGIN CERTIFICATE----- MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UE AwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00x CzAJBgNVBAYTAkVTMB4XDTA4MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEW MBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZF RElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC AgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHkWLn7 09gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7 XBZXehuDYAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5P Grjm6gSSrj0RuVFCPYewMYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAK t0SdE3QrwqXrIhWYENiLxQSfHY9g5QYbm8+5eaA9oiM/Qj9r+hwDezCNzmzAv+Yb X79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbkHQl/Sog4P75n/TSW9R28 MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTTxKJxqvQU fecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI 2Sf23EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyH K9caUPgn6C9D4zq92Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEae ZAwUswdbxcJzbPEHXEUkFDWug/FqTYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAP BgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz4SsrSbbXc6GqlPUB53NlTKxQ MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU9QHnc2VMrFAw RAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWIm fQwng4/F9tqgaHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3 gvoFNTPhNahXwOf9jU8/kzJPeGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKe I6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1PwkzQSulgUV1qzOMPPKC8W64iLgpq0i 5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1ThCojz2GuHURwCRi ipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oIKiMn MCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZ o5NjEFIqnxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6 zqylfDJKZ0DcMDQj3dcEI2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacN GHk0vFQYXlPKNFHtRQrmjseCNj6nOGOpMCwXEGCSn1WHElkQwg9naRHMTh5+Spqt r0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3otkYNbn5XOmeUwssfnHdK Z05phkOTOPu220+DkdRgfks+KzgHVZhepA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGZjCCBE6gAwIBAgIPB35Sk3vgFeNX8GmMy+wMMA0GCSqGSIb3DQEBBQUAMHsx CzAJBgNVBAYTAkNPMUcwRQYDVQQKDD5Tb2NpZWRhZCBDYW1lcmFsIGRlIENlcnRp ZmljYWNpw7NuIERpZ2l0YWwgLSBDZXJ0aWPDoW1hcmEgUy5BLjEjMCEGA1UEAwwa QUMgUmHDrXogQ2VydGljw6FtYXJhIFMuQS4wHhcNMDYxMTI3MjA0NjI5WhcNMzAw NDAyMjE0MjAyWjB7MQswCQYDVQQGEwJDTzFHMEUGA1UECgw+U29jaWVkYWQgQ2Ft ZXJhbCBkZSBDZXJ0aWZpY2FjacOzbiBEaWdpdGFsIC0gQ2VydGljw6FtYXJhIFMu QS4xIzAhBgNVBAMMGkFDIFJhw616IENlcnRpY8OhbWFyYSBTLkEuMIICIjANBgkq hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq2uJo1PMSCMI+8PPUZYILrgIem08kBeG qentLhM0R7LQcNzJPNCNyu5LF6vQhbCnIwTLqKL85XXbQMpiiY9QngE9JlsYhBzL fDe3fezTf3MZsGqy2IiKLUV0qPezuMDU2s0iiXRNWhU5cxh0T7XrmafBHoi0wpOQ Y5fzp6cSsgkiBzPZkc0OnB8OIMfuuzONj8LSWKdf/WU34ojC2I+GdV75LaeHM/J4 Ny+LvB2GNzmxlPLYvEqcgxhaBvzz1NS6jBUJJfD5to0EfhcSM2tXSExP2yYe68yQ 54v5aHxwD6Mq0Do43zeX4lvegGHTgNiRg0JaTASJaBE8rF9ogEHMYELODVoqDA+b MMCm8Ibbq0nXl21Ii/kDwFJnmxL3wvIumGVC2daa49AZMQyth9VXAnow6IYm+48j ilSH5L887uvDdUhfHjlvgWJsxS3EF1QZtzeNnDeRyPYL1epjb4OsOMLzP96a++Ej YfDIJss2yKHzMI+ko6Kh3VOz3vCaMh+DkXkwwakfU5tTohVTP92dsxA7SH2JD/zt A/X7JWR1DhcZDY8AFmd5ekD8LVkH2ZD6mq093ICK5lw1omdMEWux+IBkAC1vImHF rEsm5VoQgpukg3s0956JkSCXjrdCx2bD0Omk1vUgjcTDlaxECp1bczwmPS9KvqfJ pxAe+59QafMCAwEAAaOB5jCB4zAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE AwIBBjAdBgNVHQ4EFgQU0QnQ6dfOeXRU+Tows/RtLAMDG2gwgaAGA1UdIASBmDCB lTCBkgYEVR0gADCBiTArBggrBgEFBQcCARYfaHR0cDovL3d3dy5jZXJ0aWNhbWFy YS5jb20vZHBjLzBaBggrBgEFBQcCAjBOGkxMaW1pdGFjaW9uZXMgZGUgZ2FyYW50 7WFzIGRlIGVzdGUgY2VydGlmaWNhZG8gc2UgcHVlZGVuIGVuY29udHJhciBlbiBs YSBEUEMuMA0GCSqGSIb3DQEBBQUAA4ICAQBclLW4RZFNjmEfAygPU3zmpFmps4p6 xbD/CHwso3EcIRNnoZUSQDWDg4902zNc8El2CoFS3UnUmjIz75uny3XlesuXEpBc unvFm9+7OSPI/5jOCk0iAUgHforA1SBClETvv3eiiWdIG0ADBaGJ7M9i4z0ldma/ Jre7Ir5v/zlXdLp6yQGVwZVR6Kss+LGGIOk/yzVb0hfpKv6DExdA7ohiZVvVO2Dp ezy4ydV/NgIlqmjCMRW3MGXrfx1IebHPOeJCgBbT9ZMj/EyXyVo3bHwi2ErN0o42 gzmRkBDI8ck1fj+404HGIGQatlDCIaR43NAvO2STdPCWkPHv+wlaNECW8DYSwaN0 jJN+Qd53i+yG2dIPPy3RzECiiWZIHiCznCNZc6lEc7wkeZBWN7PGKX6jD/EpOe9+ XCgycDWs2rjIdWb8m0w5R44bb5tNAlQiM+9hup4phO9OSzNHdpdqy35f/RWmnkJD W2ZaiogN9xa5P1FlK2Zqi9E4UqLWRhH6/JocdJ6PlwsCT2TG9WjTSy3/pDceiz+/ RL5hRqGEPQgnTIEgd4kI6mdAXmwIUV80WoyWaM3X94nCHNMyAK9Sy9NgWyo6R35r MDOhYil/SrnhLecUIw4OGEfhefwVVdCx/CVxY3UzHCMrr1zZ7Ud3YA47Dx7SwNxk BYn8eNZcLCZDqQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX 4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ 51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU MBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFs IFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290 MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowbzELMAkGA1UEBhMCU0Ux FDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRUcnVzdCBFeHRlcm5h bCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0EgUm9v dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvt H7xsD821+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9 uMq/NzgtHj6RQa1wVsfwTz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzX mk6vBbOmcZSccbNQYArHE504B4YCqOmoaSYYkKtMsE8jqzpPhNjfzp/haW+710LX a0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy2xSoRcRdKn23tNbE7qzN E0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv77+ldU9U0 WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYD VR0PBAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0 Jvf6xCZU7wO94CTLVBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRU cnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsx IjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3SCAQEwDQYJKoZIhvcN AQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZlj7DYd7usQWxH YINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC Nr4TDea9Y355e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEX c4g/VhsxOBi0cQ+azcgOno4uG+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5a mnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEU MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMw MTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYD VQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUA A4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ul CDtbKRY654eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6n tGO0/7Gcrjyvd7ZWxbWroulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyl dI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1Zmne3yzxbrww2ywkEtvrNTVokMsAsJch PXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJuiGMx1I4S+6+JNM3GOGvDC +Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8wHQYDVR0O BBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8E BTADAQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBl MQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFk ZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENB IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxtZBsfzQ3duQH6lmM0MkhHma6X 7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0PhiVYrqW9yTkkz 43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJl pz/+0WatC7xrmYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOA WiFeIc9TVPC6b4nbqKqVz4vjccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEU MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 b3JrMSAwHgYDVQQDExdBZGRUcnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAx MDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtB ZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIDAeBgNV BAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOC AQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV 6tsfSlbunyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nX GCwwfQ56HmIexkvA/X1id9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnP dzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSGAa2Il+tmzV7R/9x98oTaunet3IAIx6eH 1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAwHM+A+WD+eeSI8t0A65RF 62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0GA1UdDgQW BBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUw AwEB/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDEL MAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRU cnVzdCBUVFAgTmV0d29yazEgMB4GA1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJv b3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4JNojVhaTdt02KLmuG7jD8WS6 IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL+YPoRNWyQSW/ iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh 4SINhwBk/ox9Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQm XiLsks3/QppEIW1cxeMiHV9HEufOX1362KqxMy3ZdvJOOjMMK7MtkAY= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEU MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 b3JrMSMwIQYDVQQDExpBZGRUcnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1 MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcxCzAJBgNVBAYTAlNFMRQwEgYDVQQK EwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIzAh BgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG9w0B AQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwq xBb/4Oxx64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G 87B4pfYOQnrjfxvM0PC3KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i 2O+tCBGaKZnhqkRFmhJePp1tUvznoD1oL/BLcHwTOK28FSXx1s6rosAx1i+f4P8U WfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GRwVY18BTcZTYJbqukB8c1 0cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HUMIHRMB0G A1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0T AQH/BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6Fr pGkwZzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQL ExRBZGRUcnVzdCBUVFAgTmV0d29yazEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlm aWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBABmrder4i2VhlRO6aQTv hsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxGGuoYQ992zPlm hpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3 P6CxB9bpT9zeRXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9Y iQBCYz95OdBEsIJuQRno3eDBiFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5no xqE= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp 6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ +jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S 5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B 8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc 0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e KeC2uAloGRwYQw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D 0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDpDCCAoygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEc MBoGA1UEChMTQW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBP bmxpbmUgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAxMB4XDTAyMDUyODA2 MDAwMFoXDTM3MTExOTIwNDMwMFowYzELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0Ft ZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2EgT25saW5lIFJvb3Qg Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBAKgv6KRpBgNHw+kqmP8ZonCaxlCyfqXfaE0bfA+2l2h9LaaLl+lk hsmj76CGv2BlnEtUiMJIxUo5vxTjWVXlGbR0yLQFOVwWpeKVBeASrlmLojNoWBym 1BW32J/X3HGrfpq/m44zDyL9Hy7nBzbvYjnF3cu6JRQj3gzGPTzOggjmZj7aUTsW OqMFf6Dch9Wc/HKpoH145LcxVR5lu9RhsCFg7RAycsWSJR74kEoYeEfffjA3PlAb 2xzTa5qGUwew76wGePiEmf4hjUyAtgyC9mZweRrTT6PP8c9GsEsPPt2IYriMqQko O3rHl+Ee5fSfwMCuJKDIodkP1nsmgmkyPacCAwEAAaNjMGEwDwYDVR0TAQH/BAUw AwEB/zAdBgNVHQ4EFgQUAK3Zo/Z59m50qX8zPYEX10zPM94wHwYDVR0jBBgwFoAU AK3Zo/Z59m50qX8zPYEX10zPM94wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB BQUAA4IBAQB8itEfGDeC4Liwo+1WlchiYZwFos3CYiZhzRAW18y0ZTTQEYqtqKkF Zu90821fnZmv9ov761KyBZiibyrFVL0lvV+uyIbqRizBs73B6UlwGBaXCBOMIOAb LjpHyx7kADCVW/RFo8AasAFOq73AI25jP4BKxQft3OJvx8Fi8eNy1gTIdGcL+oir oQHIb/AUr9KZzVGTfu0uOMe9zkZQPXLjeSWdm4grECDdpbgyn43gKd8hdIaC2y+C MMbHNYaz+ZZfRtsMRf3zUMNvxsNIrUam4SdHCh0Om7bCd39j8uB9Gr784N/Xx6ds sPmuujz9dLQR6FgNgLzTqIA6me11zEZ7 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFpDCCA4ygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEc MBoGA1UEChMTQW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBP bmxpbmUgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAyMB4XDTAyMDUyODA2 MDAwMFoXDTM3MDkyOTE0MDgwMFowYzELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0Ft ZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2EgT25saW5lIFJvb3Qg Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIP ADCCAgoCggIBAMxBRR3pPU0Q9oyxQcngXssNt79Hc9PwVU3dxgz6sWYFas14tNwC 206B89enfHG8dWOgXeMHDEjsJcQDIPT/DjsS/5uN4cbVG7RtIuOx238hZK+GvFci KtZHgVdEglZTvYYUAQv8f3SkWq7xuhG1m1hagLQ3eAkzfDJHA1zEpYNI9FdWboE2 JxhP7JsowtS013wMPgwr38oE18aO6lhOqKSlGBxsRZijQdEt0sdtjRnxrXm3gT+9 BoInLRBYBbV4Bbkv2wxrkJB+FFk4u5QkE+XRnRTf04JNRvCAOVIyD+OEsnpD8l7e Xz8d3eOyG6ChKiMDbi4BFYdcpnV1x5dhvt6G3NRI270qv0pV2uh9UPu0gBe4lL8B PeraunzgWGcXuVjgiIZGZ2ydEEdYMtA1fHkqkKJaEBEjNa0vzORKW6fIJ/KD3l67 Xnfn6KVuY8INXWHQjNJsWiEOyiijzirplcdIz5ZvHZIlyMbGwcEMBawmxNJ10uEq Z8A9W6Wa6897GqidFEXlD6CaZd4vKL3Ob5Rmg0gp2OpljK+T2WSfVVcmv2/LNzGZ o2C7HK2JNDJiuEMhBnIMoVxtRsX6Kc8w3onccVvdtjc+31D1uAclJuW8tf48ArO3 +L5DwYcRlJ4jbBeKuIonDFRH8KmzwICMoCfrHRnjB453cMor9H124HhnAgMBAAGj YzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFE1FwWg4u3OpaaEg5+31IqEj FNeeMB8GA1UdIwQYMBaAFE1FwWg4u3OpaaEg5+31IqEjFNeeMA4GA1UdDwEB/wQE AwIBhjANBgkqhkiG9w0BAQUFAAOCAgEAZ2sGuV9FOypLM7PmG2tZTiLMubekJcmn xPBUlgtk87FYT15R/LKXeydlwuXK5w0MJXti4/qftIe3RUavg6WXSIylvfEWK5t2 LHo1YGwRgJfMqZJS5ivmae2p+DYtLHe/YUjRYwu5W1LtGLBDQiKmsXeu3mnFzccc obGlHBD7GL4acN3Bkku+KVqdPzW+5X1R+FXgJXUjhx5c3LqdsKyzadsXg8n33gy8 CNyRnqjQ1xU3c6U1uPx+xURABsPr+CKAXEfOAuMRn0T//ZoyzH1kUQ7rVyZ2OuMe IjzCpjbdGe+n/BLzJsBZMYVMnNjP36TMzCmT/5RtdlwTCJfy7aULTd3oyWgOZtMA DjMSW7yV5TKQqLPGbIOtd+6Lfn6xqavT4fG2wLHqiMDn05DpKJKUe2h7lyoKZy2F AjgQ5ANh1NolNscIWC2hp1GvMApJ9aZphwctREZ2jirlmjvXGKL8nDgQzMY70rUX Om/9riW99XJZZLF0KjhfGEzfz3EEWjbUvy+ZnOjZurGV5gJLIaFb1cFPj65pbVPb AZO1XB4Y3WRayhgoPmMEEf0cjQAPuDffZ4qdZqkCapH/E8ovXYO8h5Ns3CRRFgQl Zvqz2cK6Kb6aSDiCmfS/O0oxGfm/jiEzFMpPVF/7zvuPcX/9XhmgD0uRuMRUvAaw RY8mkaKO/qk= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEc MBoGA1UEChMTSmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRp b25DQTAeFw0wNzEyMTIxNTAwMDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYT AkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zlcm5tZW50MRYwFAYDVQQLEw1BcHBs aWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp23gdE6H j6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4fl+K f5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55 IrmTwcrNwVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cw FO5cjFW6WY2H/CPek9AEjP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDiht QWEjdnjDuGWk81quzMKq2edY3rZ+nYVunyoKb58DKTCXKB28t89UKU5RMfkntigm /qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRUWssmP3HMlEYNllPqa0jQ k/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNVBAYTAkpQ MRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOC seODvOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD ggEBADlqRHZ3ODrso2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJ hyzjVOGjprIIC8CFqMjSnHH2HZ9g/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+ eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYDio+nEhEMy/0/ecGc/WLuo89U DNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmWdupwX3kSa+Sj B1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL rosot4LKGAfmt1t06SAZf7IbiVQ= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDzzCCAregAwIBAgIDAWweMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJB VDFIMEYGA1UECgw/QS1UcnVzdCBHZXMuIGYuIFNpY2hlcmhlaXRzc3lzdGVtZSBp bSBlbGVrdHIuIERhdGVudmVya2VociBHbWJIMRkwFwYDVQQLDBBBLVRydXN0LW5R dWFsLTAzMRkwFwYDVQQDDBBBLVRydXN0LW5RdWFsLTAzMB4XDTA1MDgxNzIyMDAw MFoXDTE1MDgxNzIyMDAwMFowgY0xCzAJBgNVBAYTAkFUMUgwRgYDVQQKDD9BLVRy dXN0IEdlcy4gZi4gU2ljaGVyaGVpdHNzeXN0ZW1lIGltIGVsZWt0ci4gRGF0ZW52 ZXJrZWhyIEdtYkgxGTAXBgNVBAsMEEEtVHJ1c3QtblF1YWwtMDMxGTAXBgNVBAMM EEEtVHJ1c3QtblF1YWwtMDMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB AQCtPWFuA/OQO8BBC4SAzewqo51ru27CQoT3URThoKgtUaNR8t4j8DRE/5TrzAUj lUC5B3ilJfYKvUWG6Nm9wASOhURh73+nyfrBJcyFLGM/BWBzSQXgYHiVEEvc+RFZ znF/QJuKqiTfC0Li21a8StKlDJu3Qz7dg9MmEALP6iPESU7l0+m0iKsMrmKS1GWH 2WrX9IWf5DMiJaXlyDO6w8dB3F/GaswADm0yqLaHNgBid5seHzTLkDx4iHQF63n1 k3Flyp3HaxgtPVxO59X4PzF9j4fsCiIvI+n+u33J4PTs63zEsMMtYrWacdaxaujs 2e3Vcuy+VwHOBVWf3tFgiBCzAgMBAAGjNjA0MA8GA1UdEwEB/wQFMAMBAf8wEQYD VR0OBAoECERqlWdVeRFPMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC AQEAVdRU0VlIXLOThaq/Yy/kgM40ozRiPvbY7meIMQQDbwvUB/tOdQ/TLtPAF8fG KOwGDREkDg6lXb+MshOWcdzUzg4NCmgybLlBMRmrsQd7TZjTXLDR8KdCoLXEjq/+ 8T/0709GAHbrAvv5ndJAlseIOrifEXnzgGWovR/TeIGgUUw3tKZdJXDRZslo+S4R FGjxVJgIrCaSD96JntT6s3kr0qN51OyLrIdTaEJMUVF0HhsnLuP1Hyl0Te2v9+GS mYHovjrHF1D2t8b8m7CKa9aIA5GPBnc6hQLdmNVDeD/GMBWsm2vLV7eJUYs66MmE DNuxUCAKGkq6ahq97BvIxYSazQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF 6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF 661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS 3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF 3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEd MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3Mg Q2xhc3MgMiBDQSAxMB4XDTA2MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzEL MAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYD VQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7McXA0 ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLX l18xoS830r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVB HfCuuCkslFJgNJQ72uA40Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B 5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/RuFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3 WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNCMEAwDwYDVR0TAQH/BAUw AwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0PAQH/BAQD AgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLP gcIV1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+ DKhQ7SLHrQVMdvvt7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKu BctN518fV4bVIJwo+28TOPX2EZL2fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHs h7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5wwDX3OaJdZtB7WZ+oRxKaJyOk LY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr 6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN 9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h 9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo +fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h 3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDUzCCAjugAwIBAgIBAjANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEd MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3Mg Q2xhc3MgMyBDQSAxMB4XDTA1MDUwOTE0MTMwM1oXDTE1MDUwOTE0MTMwM1owSzEL MAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYD VQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBAKSO13TZKWTeXx+HgJHqTjnmGcZEC4DVC69TB4sSveZn8AKxifZg isRbsELRwCGoy+Gb72RRtqfPFfV0gGgEkKBYouZ0plNTVUhjP5JW3SROjvi6K//z NIqeKNc0n6wv1g/xpC+9UrJJhW05NfBEMJNGJPO251P7vGGvqaMU+8IXF4Rs4HyI +MkcVyzwPX6UvCWThOiaAJpFBUJXgPROztmuOfbIUxAMZTpHe2DC1vqRycZxbL2R hzyRhkmr8w+gbCZ2Xhysm3HljbybIR6c1jh+JIAVMYKWsUnTYjdbiAwKYjT+p0h+ mbEwi5A3lRyoH6UsjfRVyNvdWQrCrXig9IsCAwEAAaNCMEAwDwYDVR0TAQH/BAUw AwEB/zAdBgNVHQ4EFgQUOBTmyPCppAP0Tj4io1vy1uCtQHQwDgYDVR0PAQH/BAQD AgEGMA0GCSqGSIb3DQEBBQUAA4IBAQABZ6OMySU9E2NdFm/soT4JXJEVKirZgCFP Bdy7pYmrEzMqnji3jG8CcmPHc3ceCQa6Oyh7pEfJYWsICCD8igWKH7y6xsL+z27s EzNxZy5p+qksP2bAEllNC1QCkoS72xLvg3BweMhT+t/Gxv/ciC8HwEmdMldg0/L2 mSlf56oBzKwzqBwKu5HEA6BvtjT5htOzdlSY9EqBs1OdTUDs5XcTRa9bqh/YL0yC e/4qxFi7T/ye/QNlGioOw6UgFpRreaaiErS7GqQjel/wroQk5PMr+4okoyeYZdow dXb8GZHo2+ubPzK/QJcHJrrM85SFSnonk8+QQtS4Wxam58tAA915 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX 0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c /3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D 34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv 033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq 4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQGEwJTSzET MBEGA1UEBxMKQnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UE AxMIQ0EgRGlzaWcwHhcNMDYwMzIyMDEzOTM0WhcNMTYwMzIyMDEzOTM0WjBKMQsw CQYDVQQGEwJTSzETMBEGA1UEBxMKQnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcg YS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw ggEKAoIBAQCS9jHBfYj9mQGp2HvycXXxMcbzdWb6UShGhJd4NLxs/LxFWYgmGErE Nx+hSkS943EE9UQX4j/8SFhvXJ56CbpRNyIjZkMhsDxkovhqFQ4/61HhVKndBpnX mjxUizkDPw/Fzsbrg3ICqB9x8y34dQjbYkzo+s7552oftms1grrijxaSfQUMbEYD XcDtab86wYqg6I7ZuUUohwjstMoVvoLdtUSLLa2GDGhibYVW8qwUYzrG0ZmsNHhW S8+2rT+MitcE5eN4TPWGqvWP+j1scaMtymfraHtuM6kMgiioTGohQBUgDCZbg8Kp FhXAJIJdKxatymP2dACw30PEEGBWZ2NFAgMBAAGjgf8wgfwwDwYDVR0TAQH/BAUw AwEB/zAdBgNVHQ4EFgQUjbJJaJ1yCCW5wCf1UJNWSEZx+Y8wDgYDVR0PAQH/BAQD AgEGMDYGA1UdEQQvMC2BE2Nhb3BlcmF0b3JAZGlzaWcuc2uGFmh0dHA6Ly93d3cu ZGlzaWcuc2svY2EwZgYDVR0fBF8wXTAtoCugKYYnaHR0cDovL3d3dy5kaXNpZy5z ay9jYS9jcmwvY2FfZGlzaWcuY3JsMCygKqAohiZodHRwOi8vY2EuZGlzaWcuc2sv Y2EvY3JsL2NhX2Rpc2lnLmNybDAaBgNVHSAEEzARMA8GDSuBHpGT5goAAAABAQEw DQYJKoZIhvcNAQEFBQADggEBAF00dGFMrzvY/59tWDYcPQuBDRIrRhCA/ec8J9B6 yKm2fnQwM6M6int0wHl5QpNt/7EpFIKrIYwvF/k/Ji/1WcbvgAa3mkkp7M5+cTxq EEHA9tOasnxakZzArFvITV734VP/Q3f8nktnbNfzg9Gg4H8l37iYC5oyOGwwoPP/ CBUz91BKez6jPiCp3C9WgArtQVCwyfTssuMmRAAOb54GvCKWU3BlxFAKRmukLyeB EicTXxChds6KezfqwzlhA5WYOudsiCUI/HloDYd9Yvi0X/vF2Ey9WLw/Q1vUHgFN PGO+I++MzVpQuGhU+QqZMxEA4Z7CRneC9VkGjCFMhwnN5ag= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNV BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQy MDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjEw ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy3QRk D2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/o OI7bm+V8u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3A fQ+lekLZWnDZv6fXARz2m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJe IgpFy4QxTaz+29FHuvlglzmxZcfe+5nkCiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8n oc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTaYVKvJrT1cU/J19IG32PK /yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6vpmumwKj rckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD 3AjLLhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE 7cderVC6xkGbrPAXZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkC yC2fg69naQanMVXVz0tv/wQFx1isXxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLd qvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud DwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ04IwDQYJKoZI hvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaA SfX8MPWbTx9BLxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXo HqJPYNcHKfyyo6SdbhWSVhlMCrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpB emOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5GfbVSUZP/3oNn6z4eGBrxEWi1CXYBmC AMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85YmLLW1AL14FABZyb 7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKSds+x DzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvk F7mGnjixlAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqF a3qdnom2piiZk4hA9z7NUaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsT Q6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJa7+h89n07eLw4+1knj0vllJPgFOL -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka +elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEn MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMg b2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAxNjEzNDNaFw0zNzA5MzAxNjEzNDRa MH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJRiBB ODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3JnMSIw IAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0B AQEFAAOCAQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtb unXF/KGIJPov7coISjlUxFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0d BmpAPrMMhe5cG3nCYsS4No41XQEMIwRHNaqbYE6gZj3LJgqcQKH0XZi/caulAGgq 7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jWDA+wWFjbw2Y3npuRVDM3 0pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFVd9oKDMyX roDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIG A1UdEwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5j aGFtYmVyc2lnbi5vcmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p 26EpW1eLTXYGduHRooowDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIA BzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hhbWJlcnNpZ24ub3JnMCcGA1Ud EgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYDVR0gBFEwTzBN BgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEB AAxBl8IahsAifJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZd p0AJPaxJRUXcLo0waLIJuvvDL8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi 1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wNUPf6s+xCX6ndbcj0dc97wXImsQEc XCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/nADydb47kMgkdTXg0 eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1erfu tGWaIZDgqtCYvDi1czyL+Nw= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEn MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENo YW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYxNDE4WhcNMzcwOTMwMTYxNDE4WjB9 MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgy NzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4G A1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUA A4IBDQAwggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0 Mi+ITaFgCPS3CU6gSS9J1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/s QJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8Oby4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpV eAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl6DJWk0aJqCWKZQbua795 B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c8lCrEqWh z0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0T AQH/BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1i ZXJzaWduLm9yZy9jaGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4w TcbOX60Qq+UDpfqpFDAOBgNVHQ8BAf8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAH MCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBjaGFtYmVyc2lnbi5vcmcwKgYD VR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9yZzBbBgNVHSAE VDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0B AQUFAAOCAQEAPDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUM bKGKfKX0j//U2K0X1S0E0T9YgOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXi ryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJPJ7oKXqJ1/6v/2j1pReQvayZzKWG VwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4IBHNfTIzSJRUTN3c ecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREest2d/ AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q 130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG 9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjET MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAk BgNVBAMMHUNlcnRpbm9taXMgLSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4 Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNl cnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYwJAYDVQQDDB1DZXJ0 aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQADggIP ADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jY F1AMnmHawE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N 8y4oH3DfVS9O7cdxbwlyLu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWe rP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K /OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92NjMD2AR5vpTESOH2VwnHu 7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9qc1pkIuVC 28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6 lSTClrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1E nn1So2+WLhl+HPNbxxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB 0iSVL1N6aaLwD4ZFjliCK0wi1F6g530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql09 5gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna4NH4+ej9Uji29YnfAgMBAAGj WzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBQN jLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9s ov3/4gbIOZ/xWqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZM OH8oMDX/nyNTt7buFHAAQCvaR6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q 619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40nJ+U8/aGH88bc62UeYdocMMzpXDn 2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1BCxMjidPJC+iKunqj o3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjvJL1v nxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG 5ERQL1TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWq pdEdnV1j6CTmNhTih60bWfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZb dsLLO7XSAPCjDuGtbkD326C00EauFddEwk01+dIL8hf2rGbVJLJP0RyZwG71fet0 BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/vgt2Fl43N+bYdJeimUV5 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAw PTELMAkGA1UEBhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFz cyAyIFByaW1hcnkgQ0EwHhcNOTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9 MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2VydHBsdXMxGzAZBgNVBAMTEkNsYXNz IDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANxQ ltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR5aiR VhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyL kcAbmXuZVg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCd EgETjdyAYveVqUSISnFOYFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yas H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0 HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRMECDAGAQH/AgEKMAsGA1Ud DwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJYIZIAYb4 QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMu Y29tL0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/ AN9WM2K191EBkOvDP9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8 yfFC82x/xXp8HVGIutIKPidd3i1RTtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMR FcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+7UCmnYR0ObncHoUW2ikbhiMA ybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW//1IMwrh3KWB kJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 l7+ijrRU -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do 0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ 44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN 9u6wWk5JRFRYX0KD -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBM MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD QTAeFw0wMjA2MTExMDQ2MzlaFw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBM MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6xwS7TT3zNJc4YPk/E jG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdLkKWo ePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GI ULdtlkIJ89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapu Ob7kky/ZR6By6/qmW6/KUz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUg AKpoC6EahQGcxEZjgoi2IrHu/qpGWX7PNSzVttpd90gzFFS269lvzs2I1qsb2pY7 HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEA uI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+GXYkHAQa TOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTg xSvgGrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1q CjqTE5s7FCMTY5w/0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5x O/fIR/RpbxXyEV6DHpx8Uq79AtoSqFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs 6GAqm4VKQPNriiTsBhYscw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI 03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR 5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s +12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 +HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF 5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ d0jQ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMC Q04xMjAwBgNVBAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24g Q2VudGVyMUcwRQYDVQQDDD5DaGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0 aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMgUm9vdDAeFw0xMDA4MzEwNzExMjVa Fw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAGA1UECgwpQ2hpbmEg SW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMMPkNo aW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRp ZmljYXRlcyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z 7r07eKpkQ0H1UN+U8i6yjUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA// DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV98YPjUesWgbdYavi7NifFy2cyjw1l1Vx zUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2HklY0bBoQCxfVWhyXWIQ8 hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23KzhmBsUs 4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54u gQEC7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oY NJKiyoOCWTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4E FgQUfHJLOcfA22KlT5uqGDSSosqDglkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3 j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd50XPFtQO3WKwMVC/GVhMPMdoG 52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM7+czV0I664zB echNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrI zo9uoV1/A3U05K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATy wy39FCqQmbkHzJ8= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJD TjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2 MDcwOTE0WhcNMjcwNDE2MDcwOTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMF Q05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwggEiMA0GCSqGSIb3DQEBAQUAA4IB DwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzDo+/hn7E7SIX1mlwh IhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tizVHa6 dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZO V/kbZKKTVrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrC GHn2emU1z5DrvTOTn1OrczvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gN v7Sg2Ca+I19zN38m5pIEo3/PIKe38zrKy5nLAgMBAAGjczBxMBEGCWCGSAGG+EIB AQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscCwQ7vptU7ETAPBgNVHRMB Af8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991SlgrHAsEO 76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnK OOK5Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvH ugDnuL8BV8F3RTIMO/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7Hgvi yJA/qIYM/PmLXoXLT1tLYhFHxUV8BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fL buXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2G8kS1sHNzYDzAgE8yGnLRUhj 2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5mmxE= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe 3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI 2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp +2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW /zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB ZQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEb MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRp ZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVow fjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G A1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAiBgNV BAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEB BQADggEPADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPM cm3ye5drswfxdySRXyWP9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3S HpR7LZQdqnXXs5jLrLxkU0C8j6ysNstcrbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996 CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rCoznl2yY4rYsK7hljxxwk 3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3Vp6ea5EQz 6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNV HQ4EFgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1Ud EwEB/wQFMAMBAf8wgYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2Rv Y2EuY29tL1NlY3VyZUNlcnRpZmljYXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRw Oi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmww DQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm4J4oqF7Tt/Q0 5qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtI gKvcnDe4IRRLDXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJ aD61JlfutuC23bkpgHl9j6PwpCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDl izeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1HRR3B7Hzs/Sk= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEb MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0 aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEwMDAwMDBaFw0yODEyMzEyMzU5NTla MH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAO BgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUwIwYD VQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0B AQEFAAOCAQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWW fnJSoBVC21ndZHoa0Lh73TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMt TGo87IvDktJTdyR0nAducPy9C1t2ul/y/9c3S0pgePfw+spwtOpZqqPOSC+pw7IL fhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6juljatEPmsbS9Is6FARW 1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsSivnkBbA7 kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0G A1UdDgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYD VR0TAQH/BAUwAwEB/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21v ZG9jYS5jb20vVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRo dHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMu Y3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8NtwuleGFTQQuS9/ HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxIS jBc/lDb+XbDABHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+ xqFx7D+gIIxmOom0jtTYsU0lR+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/Atyjcn dBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O9y5Xt5hwXsjEeLBi -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDkzCCAnugAwIBAgIQFBOWgxRVjOp7Y+X8NId3RDANBgkqhkiG9w0BAQUFADA0 MRMwEQYDVQQDEwpDb21TaWduIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQG EwJJTDAeFw0wNDAzMjQxMTMyMThaFw0yOTAzMTkxNTAyMThaMDQxEzARBgNVBAMT CkNvbVNpZ24gQ0ExEDAOBgNVBAoTB0NvbVNpZ24xCzAJBgNVBAYTAklMMIIBIjAN BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8ORUaSvTx49qROR+WCf4C9DklBKK 8Rs4OC8fMZwG1Cyn3gsqrhqg455qv588x26i+YtkbDqthVVRVKU4VbirgwTyP2Q2 98CNQ0NqZtH3FyrV7zb6MBBC11PN+fozc0yz6YQgitZBJzXkOPqUm7h65HkfM/sb 2CEJKHxNGGleZIp6GZPKfuzzcuc3B1hZKKxC+cX/zT/npfo4sdAMx9lSGlPWgcxC ejVb7Us6eva1jsz/D3zkYDaHL63woSV9/9JLEYhwVKZBqGdTUkJe5DSe5L6j7Kpi Xd3DTKaCQeQzC6zJMw9kglcq/QytNuEMrkvF7zuZ2SOzW120V+x0cAwqTwIDAQAB o4GgMIGdMAwGA1UdEwQFMAMBAf8wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2Zl ZGlyLmNvbXNpZ24uY28uaWwvY3JsL0NvbVNpZ25DQS5jcmwwDgYDVR0PAQH/BAQD AgGGMB8GA1UdIwQYMBaAFEsBmz5WGmU2dst7l6qSBe4y5ygxMB0GA1UdDgQWBBRL AZs+VhplNnbLe5eqkgXuMucoMTANBgkqhkiG9w0BAQUFAAOCAQEA0Nmlfv4pYEWd foPPbrxHbvUanlR2QnG0PFg/LUAlQvaBnPGJEMgOqnhPOAlXsDzACPw1jvFIUY0M cXS6hMTXcpuEfDhOZAYnKuGntewImbQKDdSFc8gS4TXt8QUxHXOZDOuWyt3T5oWq 8Ir7dcHyCTxlZWTzTNity4hp8+SDtwy9F1qWF8pb/627HOkthIDYIb6FUtnUdLlp hbpN7Sgy6/lhSuTENh4Z3G+EER+V9YMoGKgzkkMn3V0TBEVPh9VGzT2ouvDzuFYk Res3x+F2T3I5GN9+dHLHcy056mDmrRGiVod7w2ia/viMcKjfZTL0pECMocJEAw6U AGegcQCCSA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAw PDEbMBkGA1UEAxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWdu MQswCQYDVQQGEwJJTDAeFw0wNDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwx GzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBDQTEQMA4GA1UEChMHQ29tU2lnbjEL MAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGtWhf HZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs49oh gHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sW v+bznkqH7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ue Mv5WJDmyVIRD9YTC2LxBkMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr 9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d19guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt 6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUwAwEB/zBEBgNVHR8EPTA7 MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29tU2lnblNl Y3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58 ADsAj8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkq hkiG9w0BAQUFAAOCAQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7p iL1DRYHjZiM/EoZNGeQFsOY3wo3aBijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtC dsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtpFhpFfTMDZflScZAmlaxMDPWL kz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP51qJThRv4zdL hfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW WL1WMRJOEcgh4LMRkWXbtKaIOM5V -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290 IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl 6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+ xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU Cm26OWMohpLzGITY+9HPBVZkVw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe +o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG 9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt 43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg 06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm +9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep +OkuE6N36B9K -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDKTCCApKgAwIBAgIENnAVljANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJV UzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQL EwhEU1RDQSBFMTAeFw05ODEyMTAxODEwMjNaFw0xODEyMTAxODQwMjNaMEYxCzAJ BgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4x ETAPBgNVBAsTCERTVENBIEUxMIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQCg bIGpzzQeJN3+hijM3oMv+V7UQtLodGBmE5gGHKlREmlvMVW5SXIACH7TpWJENySZ j9mDSI+ZbZUTu0M7LklOiDfBu1h//uG9+LthzfNHwJmm8fOR6Hh8AMthyUQncWlV Sn5JTe2io74CTADKAqjuAQIxZA9SLRN0dja1erQtcQIBA6OCASQwggEgMBEGCWCG SAGG+EIBAQQEAwIABzBoBgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMx JDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0dXJlIFRydXN0IENvLjERMA8GA1UECxMI RFNUQ0EgRTExDTALBgNVBAMTBENSTDEwKwYDVR0QBCQwIoAPMTk5ODEyMTAxODEw MjNagQ8yMDE4MTIxMDE4MTAyM1owCwYDVR0PBAQDAgEGMB8GA1UdIwQYMBaAFGp5 fpFpRhgTCgJ3pVlbYJglDqL4MB0GA1UdDgQWBBRqeX6RaUYYEwoCd6VZW2CYJQ6i +DAMBgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqG SIb3DQEBBQUAA4GBACIS2Hod3IEGtgllsofIH160L+nEHvI8wbsEkBFKg05+k7lN QseSJqBcNJo4cvj9axY+IO6CizEqkzaFI4iKPANo08kJD038bKTaKHKTDomAsH3+ gG9lbRgzl4vCa4nuYD3Im+9/KzJic5PLPON74nZ4RbyhkwS7hp86W0N6w4pl -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDKTCCApKgAwIBAgIENm7TzjANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJV UzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQL EwhEU1RDQSBFMjAeFw05ODEyMDkxOTE3MjZaFw0xODEyMDkxOTQ3MjZaMEYxCzAJ BgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4x ETAPBgNVBAsTCERTVENBIEUyMIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC/ k48Xku8zExjrEH9OFr//Bo8qhbxe+SSmJIi2A7fBw18DW9Fvrn5C6mYjuGODVvso LeE4i7TuqAHhzhy2iCoiRoX7n6dwqUcUP87eZfCocfdPJmyMvMa1795JJ/9IKn3o TQPMx7JSxhcxEzu1TdvIxPbDDyQq2gyd55FbgM2UnQIBA6OCASQwggEgMBEGCWCG SAGG+EIBAQQEAwIABzBoBgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMx JDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0dXJlIFRydXN0IENvLjERMA8GA1UECxMI RFNUQ0EgRTIxDTALBgNVBAMTBENSTDEwKwYDVR0QBCQwIoAPMTk5ODEyMDkxOTE3 MjZagQ8yMDE4MTIwOTE5MTcyNlowCwYDVR0PBAQDAgEGMB8GA1UdIwQYMBaAFB6C TShlgDzJQW6sNS5ay97u+DlbMB0GA1UdDgQWBBQegk0oZYA8yUFurDUuWsve7vg5 WzAMBgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqG SIb3DQEBBQUAA4GBAEeNg61i8tuwnkUiBbmi1gMOOHLnnvx75pO2mqWilMg0HZHR xdf0CiUPPXiBng+xZ8SQTGPdXqfiup/1902lMXucKS1M/mQ+7LZT/uqb7YLbdHVL B3luHtgZg3Pe9T7Qtd7nS2h9Qy4qIOF+oHhEngj1mPnHfxsb1gYgAlihw6ID -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBb MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3Qx ETAPBgNVBAsTCERTVCBBQ0VTMRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0w MzExMjAyMTE5NThaFw0xNzExMjAyMTE5NThaMFsxCzAJBgNVBAYTAlVTMSAwHgYD VQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UECxMIRFNUIEFDRVMx FzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPu ktKe1jzIDZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7 gLFViYsx+tC3dr5BPTCapCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZH fAjIgrrep4c9oW24MFbCswKBXy314powGCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4a ahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPyMjwmR/onJALJfh1biEIT ajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1UdEwEB/wQF MAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rk c3QuY29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjto dHRwOi8vd3d3LnRydXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMt aW5kZXguaHRtbDAdBgNVHQ4EFgQUCXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZI hvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V25FYrnJmQ6AgwbN99Pe7lv7Uk QIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6tFr8hlxCBPeP/ h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpR rscL9yuwNwXsvFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf2 9w4LTJxoeHtxMcfrHuBnQfO3oKfN5XozNmr6mis= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw 7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp /hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y Johw1+qRzT65ysCQblrGXnRl11z+o+I= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp 3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNV BAMML0VCRyBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx c8SxMTcwNQYDVQQKDC5FQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXpt ZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAeFw0wNjA4MTcwMDIxMDlaFw0xNjA4 MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25payBTZXJ0aWZpa2Eg SGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2ltIFRl a25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIi MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h 4fuXd7hxlugTlkaDT7byX3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAk tiHq6yOU/im/+4mRDGSaBUorzAzu8T2bgmmkTPiab+ci2hC6X5L8GCcKqKpE+i4s tPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfreYteIAbTdgtsApWjluTL dlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZTqNGFav4 c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8Um TDGyY5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z +kI2sSXFCjEmN1ZnuqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0O Lna9XvNRiYuoP1Vzv9s6xiQFlpJIqkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMW OeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vmExH8nYQKE3vwO9D8owrXieqW fo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0Nokb+Clsi7n2 l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB /wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgw FoAU587GT/wWZ5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+ 8ygjdsZs93/mQJ7ANtyVDR2tFcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI 6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgmzJNSroIBk5DKd8pNSe/iWtkqvTDO TLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64kXPBfrAowzIpAoHME wfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqTbCmY Iai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJn xk1Gj7sURT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4Q DgZxGhBM/nV+/x5XOULK1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9q Kd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11t hie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQY9iJSrSq3RZj9W6+YKH4 7ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9AahH3eU7 QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB 8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R 85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm 4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y /X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1 MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1 czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYG CSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIwMTAxMDMwMTAxMDMwWhgPMjAzMDEy MTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNl ZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRyZSBS b290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEB AQUAA4IBDwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUy euuOF0+W2Ap7kaJjbMeMTC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvO bntl8jixwKIy72KyaOBhU8E2lf/slLo2rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIw WFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw93X2PaRka9ZP585ArQ/d MtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtNP2MbRMNE 1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYD VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/ zQas8fElyalL1BSZMEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYB BQUHAwMGCCsGAQUFBwMEBggrBgEFBQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEF BQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+RjxY6hUFaTlrg4wCQiZrxTFGGV v9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqMlIpPnTX/dqQG E5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIW iAYLtqZLICjU3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/v GVCJYMzpJJUPwssd8m92kMfMdcGWxZ0= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDtjCCAp6gAwIBAgIQRJmNPMADJ72cdpW56tustTANBgkqhkiG9w0BAQUFADB1 MQswCQYDVQQGEwJUUjEoMCYGA1UEChMfRWxla3Ryb25payBCaWxnaSBHdXZlbmxp Z2kgQS5TLjE8MDoGA1UEAxMzZS1HdXZlbiBLb2sgRWxla3Ryb25payBTZXJ0aWZp a2EgSGl6bWV0IFNhZ2xheWljaXNpMB4XDTA3MDEwNDExMzI0OFoXDTE3MDEwNDEx MzI0OFowdTELMAkGA1UEBhMCVFIxKDAmBgNVBAoTH0VsZWt0cm9uaWsgQmlsZ2kg R3V2ZW5saWdpIEEuUy4xPDA6BgNVBAMTM2UtR3V2ZW4gS29rIEVsZWt0cm9uaWsg U2VydGlmaWthIEhpem1ldCBTYWdsYXlpY2lzaTCCASIwDQYJKoZIhvcNAQEBBQAD ggEPADCCAQoCggEBAMMSIJ6wXgBljU5Gu4Bc6SwGl9XzcslwuedLZYDBS75+PNdU MZTe1RK6UxYC6lhj71vY8+0qGqpxSKPcEC1fX+tcS5yWCEIlKBHMilpiAVDV6wlT L/jDj/6z/P2douNffb7tC+Bg62nsM+3YjfsSSYMAyYuXjDtzKjKzEve5TfL0TW3H 5tYmNwjy2f1rXKPlSFxYvEK+A1qBuhw1DADT9SN+cTAIJjjcJRFHLfO6IxClv7wC 90Nex/6wN1CZew+TzuZDLMN+DfIcQ2Zgy2ExR4ejT669VmxMvLz4Bcpk9Ok0oSy1 c+HCPujIyTQlCFzz7abHlJ+tiEMl1+E5YP6sOVkCAwEAAaNCMEAwDgYDVR0PAQH/ BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFJ/uRLOU1fqRTy7ZVZoE VtstxNulMA0GCSqGSIb3DQEBBQUAA4IBAQB/X7lTW2M9dTLn+sR0GstG30ZpHFLP qk/CaOv/gKlR6D1id4k9CnU58W5dF4dvaAXBlGzZXd/aslnLpRCKysw5zZ/rTt5S /wzw9JKp8mxTq5vSR6AfdPebmvEvFZ96ZDAYBzwqD2fK/A+JYZ1lpTzlvBNbCNvj /+27BrtqBrF6T2XGgv0enIu1De5Iu7i9qgi0+6N8y5/NkHZchpZ4Vwpm+Vganf2X KWDeEaaQHBkc7gGWIjQ0LpH5t8Qn0Xvmv/uARFoW5evg1Ao4vOSR49XrXMGs3xtq fJ7lddK2l4fbzIcrQzqECK+rPNv3PGYxhrCdU3nt+CPeQuMtgvEP5fqX -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH 4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er fF6adulZkMV8gzURZVE= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIE2DCCBEGgAwIBAgIEN0rSQzANBgkqhkiG9w0BAQUFADCBwzELMAkGA1UEBhMC VVMxFDASBgNVBAoTC0VudHJ1c3QubmV0MTswOQYDVQQLEzJ3d3cuZW50cnVzdC5u ZXQvQ1BTIGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMc KGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDE6MDgGA1UEAxMxRW50cnVzdC5u ZXQgU2VjdXJlIFNlcnZlciBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw05OTA1 MjUxNjA5NDBaFw0xOTA1MjUxNjM5NDBaMIHDMQswCQYDVQQGEwJVUzEUMBIGA1UE ChMLRW50cnVzdC5uZXQxOzA5BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5j b3JwLiBieSByZWYuIChsaW1pdHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBF bnRydXN0Lm5ldCBMaW1pdGVkMTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUg U2VydmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGdMA0GCSqGSIb3DQEBAQUA A4GLADCBhwKBgQDNKIM0VBuJ8w+vN5Ex/68xYMmo6LIQaO2f55M28Qpku0f1BBc/ I0dNxScZgSYMVHINiC3ZH5oSn7yzcdOAGT9HZnuMNSjSuQrfJNqc1lB5gXpa0zf3 wkrYKZImZNHkmGw6AIr1NJtl+O3jEP/9uElY3KDegjlrgbEWGWG5VLbmQwIBA6OC AdcwggHTMBEGCWCGSAGG+EIBAQQEAwIABzCCARkGA1UdHwSCARAwggEMMIHeoIHb oIHYpIHVMIHSMQswCQYDVQQGEwJVUzEUMBIGA1UEChMLRW50cnVzdC5uZXQxOzA5 BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5jb3JwLiBieSByZWYuIChsaW1p dHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBFbnRydXN0Lm5ldCBMaW1pdGVk MTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUgU2VydmVyIENlcnRpZmljYXRp b24gQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMCmgJ6AlhiNodHRwOi8vd3d3LmVu dHJ1c3QubmV0L0NSTC9uZXQxLmNybDArBgNVHRAEJDAigA8xOTk5MDUyNTE2MDk0 MFqBDzIwMTkwNTI1MTYwOTQwWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAU8Bdi E1U9s/8KAGv7UISX8+1i0BowHQYDVR0OBBYEFPAXYhNVPbP/CgBr+1CEl/PtYtAa MAwGA1UdEwQFMAMBAf8wGQYJKoZIhvZ9B0EABAwwChsEVjQuMAMCBJAwDQYJKoZI hvcNAQEFBQADgYEAkNwwAvpkdMKnCqV8IY00F6j7Rw7/JXyNEwr75Ji174z4xRAN 95K+8cPV1ZVqBLssziY2ZcgxxufuP+NXdYR6Ee9GTxj005i7qIcyunL2POI9n9cd 2cNgQ4xYDiKWL2KjLB+6rQXvqzJ4h6BUcxm1XAX5Uj5tLUUL9wqT6u0G+bI= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi 94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP 9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m 0vdXcDazv/wor3ElhVsT/h5/WrQ8 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS /jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D hNQ+IIX3Sj0rnP0qCglN6oH4EZw= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJV UzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2Vy dGlmaWNhdGUgQXV0aG9yaXR5MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1 MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoTB0VxdWlmYXgxLTArBgNVBAsTJEVx dWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCBnzANBgkqhkiG9w0B AQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPRfM6f BeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+A cJkVV5MW8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kC AwEAAaOCAQkwggEFMHAGA1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQ MA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlm aWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoGA1UdEAQTMBGBDzIwMTgw ODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvSspXXR9gj IBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQF MAMBAf8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUA A4GBAFjOKer89961zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y 7qj/WsjTVbJmcVfewCHrPSqnI0kBBIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh 1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee9570+sB3c4 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICgjCCAeugAwIBAgIBBDANBgkqhkiG9w0BAQQFADBTMQswCQYDVQQGEwJVUzEc MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBT ZWN1cmUgZUJ1c2luZXNzIENBLTEwHhcNOTkwNjIxMDQwMDAwWhcNMjAwNjIxMDQw MDAwWjBTMQswCQYDVQQGEwJVUzEcMBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5j LjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNzIENBLTEwgZ8wDQYJ KoZIhvcNAQEBBQADgY0AMIGJAoGBAM4vGbwXt3fek6lfWg0XTzQaDJj0ItlZ1MRo RvC0NcWFAyDGr0WlIVFFQesWWDYyb+JQYmT5/VGcqiTZ9J2DKocKIdMSODRsjQBu WqDZQu4aIZX5UkxVWsUPOE9G+m34LjXWHXzr4vCwdYDIqROsvojvOm6rXyo4YgKw Env+j6YDAgMBAAGjZjBkMBEGCWCGSAGG+EIBAQQEAwIABzAPBgNVHRMBAf8EBTAD AQH/MB8GA1UdIwQYMBaAFEp4MlIR21kWNl7fwRQ2QGpHfEyhMB0GA1UdDgQWBBRK eDJSEdtZFjZe38EUNkBqR3xMoTANBgkqhkiG9w0BAQQFAAOBgQB1W6ibAxHm6VZM zfmpTMANmvPMZWnmJXbMWbfWVMMdzZmsGd20hdXgPfxiIKeES1hl8eL5lSE/9dR+ WB5Hh1Q+WKG1tfgq73HnvMP2sUlG4tega+VWeponmHxGYhTnyfxuAxJ5gDgdSIKN /Bf+KpYrtWKmpj29f5JZzVoqgrI3eQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICkDCCAfmgAwIBAgIBATANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEc MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBT ZWN1cmUgR2xvYmFsIGVCdXNpbmVzcyBDQS0xMB4XDTk5MDYyMTA0MDAwMFoXDTIw MDYyMTA0MDAwMFowWjELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0VxdWlmYXggU2Vj dXJlIEluYy4xLTArBgNVBAMTJEVxdWlmYXggU2VjdXJlIEdsb2JhbCBlQnVzaW5l c3MgQ0EtMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuucXkAJlsTRVPEnC UdXfp9E3j9HngXNBUmCbnaEXJnitx7HoJpQytd4zjTov2/KaelpzmKNc6fuKcxtc 58O/gGzNqfTWK8D3+ZmqY6KxRwIP1ORROhI8bIpaVIRw28HFkM9yRcuoWcDNM50/ o5brhTMhHD4ePmBudpxnhcXIw2ECAwEAAaNmMGQwEQYJYIZIAYb4QgEBBAQDAgAH MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUvqigdHJQa0S3ySPY+6j/s1dr aGwwHQYDVR0OBBYEFL6ooHRyUGtEt8kj2Puo/7NXa2hsMA0GCSqGSIb3DQEBBAUA A4GBADDiAVGqx+pf2rnQZQ8w1j7aDRRJbpGTJxQx78T3LUX47Me/okENI7SS+RkA Z70Br83gcfxaz2TE4JaY0KNA4gGK7ycH8WUBikQtBmV1UsCGECAhX2xrD2yuCRyv 8qIYNMR1pHMc8Y3c7635s3a0kr/clRAevsvIO1qEYBlWlKlV -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEVzCCAz+gAwIBAgIBATANBgkqhkiG9w0BAQUFADCBnTELMAkGA1UEBhMCRVMx IjAgBgNVBAcTGUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMTOUF1 dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 MjYzNDA2ODEmMCQGCSqGSIb3DQEJARYXY2FAZmlybWFwcm9mZXNpb25hbC5jb20w HhcNMDExMDI0MjIwMDAwWhcNMTMxMDI0MjIwMDAwWjCBnTELMAkGA1UEBhMCRVMx IjAgBgNVBAcTGUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMTOUF1 dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 MjYzNDA2ODEmMCQGCSqGSIb3DQEJARYXY2FAZmlybWFwcm9mZXNpb25hbC5jb20w ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDnIwNvbyOlXnjOlSztlB5u Cp4Bx+ow0Syd3Tfom5h5VtP8c9/Qit5Vj1H5WuretXDE7aTt/6MNbg9kUDGvASdY rv5sp0ovFy3Tc9UTHI9ZpTQsHVQERc1ouKDAA6XPhUJHlShbz++AbOCQl4oBPB3z hxAwJkh91/zpnZFx/0GaqUC1N5wpIE8fUuOgfRNtVLcK3ulqTgesrBlf3H5idPay BQC6haD9HThuy1q7hryUZzM1gywfI834yJFxzJeL764P3CkDG8A563DtwW4O2GcL iam8NeTvtjS0pbbELaW+0MOUJEjb35bTALVmGotmBQ/dPz/LP6pemkr4tErvlTcb AgMBAAGjgZ8wgZwwKgYDVR0RBCMwIYYfaHR0cDovL3d3dy5maXJtYXByb2Zlc2lv bmFsLmNvbTASBgNVHRMBAf8ECDAGAQH/AgEBMCsGA1UdEAQkMCKADzIwMDExMDI0 MjIwMDAwWoEPMjAxMzEwMjQyMjAwMDBaMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4E FgQUMwugZtHq2s7eYpMEKFK1FH84aLcwDQYJKoZIhvcNAQEFBQADggEBAEdz/o0n VPD11HecJ3lXV7cVVuzH2Fi3AQL0M+2TUIiefEaxvT8Ub/GzR0iLjJcG1+p+o1wq u00vR+L4OQbJnC4xGgN49Lw4xiKLMzHwFgQEffl25EvXwOaD7FnMP97/T2u3Z36m hoEyIwOdyPdfwUpgpZKpsaSgYMN4h7Mi8yrrW6ntBas3D7Hi05V2Y1Z0jFhyGzfl ZKG+TQyTmAyX9odtsz/ny4Cm7YjHX1BiAuiZdBbQ5rQ58SfLyEDW44YQqSMSkuBp QWOnryULwMWSyx6Yo1q6xTMPoJcB3X/ge9YGVM+h4k0460tQtcsm9MracEpqoeJ5 quGnM/b9Sh/22WA= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEW MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFs IENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQG EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3Qg R2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvPE1A PRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/NTL8 Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hL TytCOb1kLUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL 5mkWRxHCJ1kDs6ZgwiFAVvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7 S4wMcoKK+xfNAGw6EzywhIdLFnopsk/bHdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe 2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE FHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNHK266ZUap EBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6td EPx7srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv /NgdRN3ggX+d6YvhZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywN A0ZF66D0f0hExghAzN4bcLUprbqLOzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0 abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkCx1YAzUm5s2x7UwQa4qjJqhIF I8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqFH4z1Ir+rzoPz 4iIprn2DQKi6bA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU 1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV 5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBY MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMo R2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEx MjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQK Ew1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRp ZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC AQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9 AWbK7hWNb6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjA ZIVcFU2Ix7e64HXprQU9nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE0 7e9GceBrAqg1cmuXm2bgyxx5X9gaBGgeRwLmnWDiNpcB3841kt++Z8dtd1k7j53W kBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGttm/81w7a4DSwDRp35+MI mO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJ KoZIhvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ1 6CePbJC/kRYkRj5KTs4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl 4b7UVXGYNTq+k+qurUKykG/g/CFNNWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6K oKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHaFloxt/m0cYASSJlyc1pZU8Fj UjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG1riR/aYNKxoU AT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz rD6ogRLQy7rQkgu2npaqBA+K -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0 BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz +uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn 5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G spki4cErx5z481+oghLrGREt -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEW MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVy c2FsIENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYD VQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1 c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC AQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0DE81 WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUG FF+3Qs17j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdq XbboW0W63MOhBW9Wjo8QJqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxL se4YuU6W3Nx2/zu+z18DwPw76L5GG//aQMJS9/7jOvdqdzXQ2o3rXhhqMcceujwb KNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2WP0+GfPtDCapkzj4T8Fd IgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP20gaXT73 y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRt hAAnZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgoc QIgfksILAAX/8sgCSqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4 Lt1ZrtmhN79UNdxzMk+MBB4zsslG8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNV HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAfBgNV HSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8EBAMCAYYwDQYJ KoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQ L1EuxBRa3ugZ4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgr Fg5fNuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSo ag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpqA1Ihn0CoZ1Dy81of398j9tx4TuaY T1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpgY+RdM4kX2TGq2tbz GDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiPpm8m 1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJV OCiNUW7dFGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH 6aLcr34YEoP9VhdBLtUpgn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwX QMAJKOSLakhT2+zNVVXxxvjpoixMptEmX36vWkzaH6byHCx+rgIW0lbQL1dTR+iS -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEW MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVy c2FsIENBMB4XDTA0MDMwNDA1MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UE BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xHjAcBgNVBAMTFUdlb1RydXN0 IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKYV VaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9tJPi8 cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTT QjOgNB0eRXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFh F7em6fgemdtzbvQKoiFs7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2v c7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d8Lsrlh/eezJS/R27tQahsiFepdaVaH/w mZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7VqnJNk22CDtucvc+081xd VHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3CgaRr0BHdCX teGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZ f9hBZ3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfRe Bi9Fi1jUIxaS5BZuKGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+ nhutxx9z3SxPGWX9f5NAEC7S8O08ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB /wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0XG0D08DYj3rWMB8GA1UdIwQY MBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG 9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fX IwjhmF7DWgh2qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzyn ANXH/KttgCJwpQzgXQQpAvvLoJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0z uzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsKxr2EoyNB3tZ3b4XUhRxQ4K5RirqN Pnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxFKyDuSN/n3QmOGKja QI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2DFKW koRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9 ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt DF4JbAiXfKM9fJP/P6EUp8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/Sfuvm bJxPgWp6ZKy7PtXny3YuxadIwVyQD8vIP/rmMuGNG2+k5o7Y+SlIis5z/iw= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r 6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z 09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp 1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE 38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG 3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO 291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK 6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH WD9f -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h /t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf ReYNnyicsbkqWletNw+vHX/bvZ8= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH /PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu 9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo 2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI 4uJEvlz36hz1 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICWjCCAcMCAgGlMA0GCSqGSIb3DQEBBAUAMHUxCzAJBgNVBAYTAlVTMRgwFgYD VQQKEw9HVEUgQ29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNv bHV0aW9ucywgSW5jLjEjMCEGA1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJv b3QwHhcNOTgwODEzMDAyOTAwWhcNMTgwODEzMjM1OTAwWjB1MQswCQYDVQQGEwJV UzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQLEx5HVEUgQ3liZXJU cnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0IEds b2JhbCBSb290MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCVD6C28FCc6HrH iM3dFw4usJTQGz0O9pTAipTHBsiQl8i4ZBp6fmw8U+E3KHNgf7KXUwefU/ltWJTS r41tiGeA5u2ylc9yMcqlHHK6XALnZELn+aks1joNrI1CqiQBOeacPwGFVw1Yh0X4 04Wqk2kmhXBIgD8SFcd5tB8FLztimQIDAQABMA0GCSqGSIb3DQEBBAUAA4GBAG3r GwnpXtlR22ciYaQqPEh346B8pt5zohQDhT37qw4wxYMWM4ETCJ57NE7fQMh017l9 3PR2VX2bY1QY6fDq81yx2YtCHrnAlU66+tXifPVoYb+O7AWXX1uw16OFNMQkpw0P lZPvy5TYnh+dXIVtx6quTx8itc2VrbqnzPmrC3p/ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD 75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp 5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p 6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI l7WdmplNsDz4SgCbZN2fOUvRJ9e4 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi AmvZWg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYT AkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQ TS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG 9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMB4XDTAyMTIxMzE0MjkyM1oXDTIw MTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAM BgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEO MAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2 LmZyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaI s9z4iPf930Pfeo2aSVz2TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2 xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCWSo7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4 u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYyHF2fYPepraX/z9E0+X1b F8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNdfrGoRpAx Vs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGd PDPQtQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNV HSAEDjAMMAoGCCqBegF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAx NjAfBgNVHSMEGDAWgBSjBS8YYFDCiQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUF AAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RKq89toB9RlPhJy3Q2FLwV3duJ L92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3QMZsyK10XZZOY YLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2a NjSaTFR+FwNIlQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R 0982gaEbeC9xs/FZTEYYKKuF0mBWWg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcN AQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZp dHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMw MVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQsw CQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEQ MA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB AIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOB SvZiF3tfTQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkz ABpTpyHhOEvWgxutr2TC+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvH LCu3GFH+4Hv2qEivbDtPL+/40UceJlfwUR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMP PbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDaTpxt4brNj3pssAki14sL 2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQFMAMBAf8w ggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwIC MIHDHoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDk AGwAagBhAHMAdABhAHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0 AHMAZQBlAHIAaQBtAGkAcwBrAGUAcwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABz AGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABrAGkAbgBuAGkAdABhAG0AaQBz AGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nwcy8wKwYDVR0f BCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcY P2/v6X2+MA4GA1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOi CfP+JmeaUOTDBS8rNXiRTHyoERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+g kcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyLabVAyJRld/JXIWY7zoVAtjNjGr95 HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678IIbsSt4beDI3poHS na9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkhMp6q qIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0Z TbvGRNs2yyqcjg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 +rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c 2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAw cjELMAkGA1UEBhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNy b3NlYyBMdGQuMRQwEgYDVQQLEwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9z ZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0MDYxMjI4NDRaFw0xNzA0MDYxMjI4 NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVzdDEWMBQGA1UEChMN TWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMTGU1p Y3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw ggEKAoIBAQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2u uO/TEdyB5s87lozWbxXGd36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+ LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/NoqdNAoI/gqyFxuEPkEeZlApxcpMqyabA vjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjcQR/Ji3HWVBTji1R4P770 Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJPqW+jqpx 62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcB AQRbMFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3Aw LQYIKwYBBQUHMAKGIWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAP BgNVHRMBAf8EBTADAQH/MIIBcwYDVR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIB AQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3LmUtc3ppZ25vLmh1L1NaU1ov MIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0AdAB2AOEAbgB5 ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABT AHoAbwBsAGcA4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABh ACAAcwB6AGUAcgBpAG4AdAAgAGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABo AHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMAegBpAGcAbgBvAC4AaAB1AC8AUwBa AFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6Ly93d3cuZS1zemln bm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NOPU1p Y3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxP PU1pY3Jvc2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZv Y2F0aW9uTGlzdDtiaW5hcnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuB EGluZm9AZS1zemlnbm8uaHWkdzB1MSMwIQYDVQQDDBpNaWNyb3NlYyBlLVN6aWdu w7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhTWjEWMBQGA1UEChMNTWlj cm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhVMIGsBgNV HSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJI VTERMA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDAS BgNVBAsTC2UtU3ppZ25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBS b290IENBghEAzLjnv04pGv2i3GalHCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS 8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMTnGZjWS7KXHAM/IO8VbH0jgds ZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FEaGAHQzAxQmHl 7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a 86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfR hUZLphK3dehKyVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/ MPMMNz7UwiiAc7EBt51alhQBS6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C +C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFSzCCBLSgAwIBAgIBaTANBgkqhkiG9w0BAQQFADCBmTELMAkGA1UEBhMCSFUx ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMTIwMAYDVQQD EylOZXRMb2NrIFV6bGV0aSAoQ2xhc3MgQikgVGFudXNpdHZhbnlraWFkbzAeFw05 OTAyMjUxNDEwMjJaFw0xOTAyMjAxNDEwMjJaMIGZMQswCQYDVQQGEwJIVTERMA8G A1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRvbnNh Z2kgS2Z0LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxMjAwBgNVBAMTKU5l dExvY2sgVXpsZXRpIChDbGFzcyBCKSBUYW51c2l0dmFueWtpYWRvMIGfMA0GCSqG SIb3DQEBAQUAA4GNADCBiQKBgQCx6gTsIKAjwo84YM/HRrPVG/77uZmeBNwcf4xK gZjupNTKihe5In+DCnVMm8Bp2GQ5o+2So/1bXHQawEfKOml2mrriRBf8TKPV/riX iK+IA4kfpPIEPsgHC+b5sy96YhQJRhTKZPWLgLViqNhr1nGTLbO/CVRY7QbrqHvc Q7GhaQIDAQABo4ICnzCCApswEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNVHQ8BAf8E BAMCAAYwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaCAk1G SUdZRUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFu b3MgU3pvbGdhbHRhdGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBh bGFwamFuIGtlc3p1bHQuIEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExv Y2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2VnLWJpenRvc2l0YXNhIHZlZGkuIEEgZGln aXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYXogZWxvaXJ0 IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFzIGxlaXJh c2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGph biBhIGh0dHBzOi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJo ZXRvIGF6IGVsbGVub3J6ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBP UlRBTlQhIFRoZSBpc3N1YW5jZSBhbmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmlj YXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sgQ1BTIGF2YWlsYWJsZSBhdCBo dHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFpbCBhdCBjcHNA bmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4GBAATbrowXr/gOkDFOzT4JwG06 sPgzTEdM43WIEJessDgVkcYplswhwG08pXTP2IKlOcNl40JwuyKQ433bNXbhoLXa n3BukxowOR0w2y7jfLKRstE3Kfq51hdcR0/jHTjrn9V7lagonhVK0dHQKwCXoOKS NitjrFgBazMpUIaD8QFI -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFTzCCBLigAwIBAgIBaDANBgkqhkiG9w0BAQQFADCBmzELMAkGA1UEBhMCSFUx ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMTQwMgYDVQQD EytOZXRMb2NrIEV4cHJlc3N6IChDbGFzcyBDKSBUYW51c2l0dmFueWtpYWRvMB4X DTk5MDIyNTE0MDgxMVoXDTE5MDIyMDE0MDgxMVowgZsxCzAJBgNVBAYTAkhVMREw DwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9u c2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE0MDIGA1UEAxMr TmV0TG9jayBFeHByZXNzeiAoQ2xhc3MgQykgVGFudXNpdHZhbnlraWFkbzCBnzAN BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA6+ywbGGKIyWvYCDj2Z/8kwvbXY2wobNA OoLO/XXgeDIDhlqGlZHtU/qdQPzm6N3ZW3oDvV3zOwzDUXmbrVWg6dADEK8KuhRC 2VImESLH0iDMgqSaqf64gXadarfSNnU+sYYJ9m5tfk63euyucYT2BDMIJTLrdKwW RMbkQJMdf60CAwEAAaOCAp8wggKbMBIGA1UdEwEB/wQIMAYBAf8CAQQwDgYDVR0P AQH/BAQDAgAGMBEGCWCGSAGG+EIBAQQEAwIABzCCAmAGCWCGSAGG+EIBDQSCAlEW ggJNRklHWUVMRU0hIEV6ZW4gdGFudXNpdHZhbnkgYSBOZXRMb2NrIEtmdC4gQWx0 YWxhbm9zIFN6b2xnYWx0YXRhc2kgRmVsdGV0ZWxlaWJlbiBsZWlydCBlbGphcmFz b2sgYWxhcGphbiBrZXN6dWx0LiBBIGhpdGVsZXNpdGVzIGZvbHlhbWF0YXQgYSBO ZXRMb2NrIEtmdC4gdGVybWVrZmVsZWxvc3NlZy1iaXp0b3NpdGFzYSB2ZWRpLiBB IGRpZ2l0YWxpcyBhbGFpcmFzIGVsZm9nYWRhc2FuYWsgZmVsdGV0ZWxlIGF6IGVs b2lydCBlbGxlbm9yemVzaSBlbGphcmFzIG1lZ3RldGVsZS4gQXogZWxqYXJhcyBs ZWlyYXNhIG1lZ3RhbGFsaGF0byBhIE5ldExvY2sgS2Z0LiBJbnRlcm5ldCBob25s YXBqYW4gYSBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIGNpbWVuIHZhZ3kg a2VyaGV0byBheiBlbGxlbm9yemVzQG5ldGxvY2submV0IGUtbWFpbCBjaW1lbi4g SU1QT1JUQU5UISBUaGUgaXNzdWFuY2UgYW5kIHRoZSB1c2Ugb2YgdGhpcyBjZXJ0 aWZpY2F0ZSBpcyBzdWJqZWN0IHRvIHRoZSBOZXRMb2NrIENQUyBhdmFpbGFibGUg YXQgaHR0cHM6Ly93d3cubmV0bG9jay5uZXQvZG9jcyBvciBieSBlLW1haWwgYXQg Y3BzQG5ldGxvY2submV0LjANBgkqhkiG9w0BAQQFAAOBgQAQrX/XDDKACtiG8XmY ta3UzbM2xJZIwVzNmtkFLp++UOv0JhQQLdRmF/iewSf98e3ke0ugbLWrmldwpu2g pO0u9f38vf5NNwgMvOOWgyL1SRt/Syu0VMGAfJlOHdCM7tCs5ZL6dVb+ZKATj7i4 Fp1hBWeAyNDYpQcCNJgEjTME1A== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGfTCCBWWgAwIBAgICAQMwDQYJKoZIhvcNAQEEBQAwga8xCzAJBgNVBAYTAkhV MRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMe TmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0 dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBLb3pqZWd5em9pIChDbGFzcyBB KSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNDIzMTQ0N1oXDTE5MDIxOTIzMTQ0 N1owga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQHEwhC dWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQu MRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBL b3pqZWd5em9pIChDbGFzcyBBKSBUYW51c2l0dmFueWtpYWRvMIIBIjANBgkqhkiG 9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvHSMD7tM9DceqQWC2ObhbHDqeLVu0ThEDaiD zl3S1tWBxdRL51uUcCbbO51qTGL3cfNk1mE7PetzozfZz+qMkjvN9wfcZnSX9EUi 3fRc4L9t875lM+QVOr/bmJBVOMTtplVjC7B4BPTjbsE/jvxReB+SnoPC/tmwqcm8 WgD/qaiYdPv2LD4VOQ22BFWoDpggQrOxJa1+mm9dU7GrDPzr4PN6s6iz/0b2Y6LY Oph7tqyF/7AlT3Rj5xMHpQqPBffAZG9+pyeAlt7ULoZgx2srXnN7F+eRP2QM2Esi NCubMvJIH5+hCoR64sKtlz2O1cH5VqNQ6ca0+pii7pXmKgOM3wIDAQABo4ICnzCC ApswDgYDVR0PAQH/BAQDAgAGMBIGA1UdEwEB/wQIMAYBAf8CAQQwEQYJYIZIAYb4 QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaCAk1GSUdZRUxFTSEgRXplbiB0 YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pvbGdhbHRhdGFz aSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQu IEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtm ZWxlbG9zc2VnLWJpenRvc2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMg ZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVs amFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFzIGxlaXJhc2EgbWVndGFsYWxoYXRv IGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBhIGh0dHBzOi8vd3d3 Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVub3J6 ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1 YW5jZSBhbmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3Qg dG8gdGhlIE5ldExvY2sgQ1BTIGF2YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRs b2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFpbCBhdCBjcHNAbmV0bG9jay5uZXQuMA0G CSqGSIb3DQEBBAUAA4IBAQBIJEb3ulZv+sgoA0BO5TE5ayZrU3/b39/zcT0mwBQO xmd7I6gMc90Bu8bKbjc5VdXHjFYgDigKDtIqpLBJUsY4B/6+CgmM0ZjPytoUMaFP 0jn8DxEsQ8Pdq5PHVT5HfBgaANzze9jyf1JsIPQLX2lS9O74silg6+NJMSEN1rUQ QeJBCWziGppWS3cC9qCbmieH6FUpccKQn0V4GuEVZD3QDtigdp+uxdAu6tYPVuxk f1qbFFgBJ34TUMdrKuZoPL9coAob4Q566eKAw+np9v1sEZ7Q5SgnK1QyQhSCdeZK 8CtmdWOMovsEPoMOmzbwGOQmIMOM8CgHrTwXZoi1/baI -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIG0TCCBbmgAwIBAgIBezANBgkqhkiG9w0BAQUFADCByTELMAkGA1UEBhMCSFUx ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMUIwQAYDVQQD EzlOZXRMb2NrIE1pbm9zaXRldHQgS296amVneXpvaSAoQ2xhc3MgUUEpIFRhbnVz aXR2YW55a2lhZG8xHjAcBgkqhkiG9w0BCQEWD2luZm9AbmV0bG9jay5odTAeFw0w MzAzMzAwMTQ3MTFaFw0yMjEyMTUwMTQ3MTFaMIHJMQswCQYDVQQGEwJIVTERMA8G A1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRvbnNh Z2kgS2Z0LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxQjBABgNVBAMTOU5l dExvY2sgTWlub3NpdGV0dCBLb3pqZWd5em9pIChDbGFzcyBRQSkgVGFudXNpdHZh bnlraWFkbzEeMBwGCSqGSIb3DQEJARYPaW5mb0BuZXRsb2NrLmh1MIIBIjANBgkq hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx1Ilstg91IRVCacbvWy5FPSKAtt2/Goq eKvld/Bu4IwjZ9ulZJm53QE+b+8tmjwi8F3JV6BVQX/yQ15YglMxZc4e8ia6AFQe r7C8HORSjKAyr7c3sVNnaHRnUPYtLmTeriZ539+Zhqurf4XsoPuAzPS4DB6TRWO5 3Lhbm+1bOdRfYrCnjnxmOCyqsQhjF2d9zL2z8cM/z1A57dEZgxXbhxInlrfa6uWd vLrqOU+L73Sa58XQ0uqGURzk/mQIKAR5BevKxXEOC++r6uwSEaEYBTJp0QwsGj0l mT+1fMptsK6ZmfoIYOcZwvK9UdPM0wKswREMgM6r3JSda6M5UzrWhQIDAMV9o4IC wDCCArwwEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNVHQ8BAf8EBAMCAQYwggJ1Bglg hkgBhvhCAQ0EggJmFoICYkZJR1lFTEVNISBFemVuIHRhbnVzaXR2YW55IGEgTmV0 TG9jayBLZnQuIE1pbm9zaXRldHQgU3pvbGdhbHRhdGFzaSBTemFiYWx5emF0YWJh biBsZWlydCBlbGphcmFzb2sgYWxhcGphbiBrZXN6dWx0LiBBIG1pbm9zaXRldHQg ZWxla3Ryb25pa3VzIGFsYWlyYXMgam9naGF0YXMgZXJ2ZW55ZXN1bGVzZW5laywg dmFsYW1pbnQgZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYSBNaW5vc2l0ZXR0IFN6 b2xnYWx0YXRhc2kgU3phYmFseXphdGJhbiwgYXogQWx0YWxhbm9zIFN6ZXJ6b2Rl c2kgRmVsdGV0ZWxla2JlbiBlbG9pcnQgZWxsZW5vcnplc2kgZWxqYXJhcyBtZWd0 ZXRlbGUuIEEgZG9rdW1lbnR1bW9rIG1lZ3RhbGFsaGF0b2sgYSBodHRwczovL3d3 dy5uZXRsb2NrLmh1L2RvY3MvIGNpbWVuIHZhZ3kga2VyaGV0b2sgYXogaW5mb0Bu ZXRsb2NrLm5ldCBlLW1haWwgY2ltZW4uIFdBUk5JTkchIFRoZSBpc3N1YW5jZSBh bmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGFyZSBzdWJqZWN0IHRvIHRo ZSBOZXRMb2NrIFF1YWxpZmllZCBDUFMgYXZhaWxhYmxlIGF0IGh0dHBzOi8vd3d3 Lm5ldGxvY2suaHUvZG9jcy8gb3IgYnkgZS1tYWlsIGF0IGluZm9AbmV0bG9jay5u ZXQwHQYDVR0OBBYEFAlqYhaSsFq7VQ7LdTI6MuWyIckoMA0GCSqGSIb3DQEBBQUA A4IBAQCRalCc23iBmz+LQuM7/KbD7kPgz/PigDVJRXYC4uMvBcXxKufAQTPGtpvQ MznNwNuhrWw3AkxYQTvyl5LGSKjN5Yo5iWH5Upfpvfb5lHTocQ68d4bDBsxafEp+ NFAwLvt/MpqNPfMgW/hqyobzMUwsWYACff44yTB1HLdV47yfuqhthCgFdbOLDcCR VCHnpgu0mfVRQdzNo0ci2ccBgcTcR08m6h/t280NmPSjnLRzMkqWmf68f8glWPhY 83ZmiVSkpj7EUFy6iRiCdUgh0k8T6GB+B3bbELVR5qq5aKrN9p2QdRLqOBrKROi3 macqaJVmlaut74nLYKkGEsaUR+ko -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH /nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg 4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ /L7fCg0= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1 dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9s YW5vMQswCQYDVQQGEwJWRTEQMA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlz dHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0 aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBlcmludGVuZGVuY2lh IGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUwIwYJ KoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEw MFoXDTIwMTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHBy b2NlcnQubmV0LnZlMQ8wDQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGEx KjAoBgNVBAsTIVByb3ZlZWRvciBkZSBDZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQG A1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9u aWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIwDQYJKoZI hvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo9 7BVCwfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74 BCXfgI8Qhd19L3uA3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38G ieU89RLAu9MLmV+QfI4tL3czkkohRqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9 JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmOEO8GqQKJ/+MMbpfg353bIdD0 PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG20qCZyFSTXai2 0b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH 0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/ 6mnbVSKVUyqUtd+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1m v6JpIzi4mWCZDlZTOpx+FIywBm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7 K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvpr2uKGcfLFFb14dq12fy/czja+eev bqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/AgEBMDcGA1UdEgQw MC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAzNi0w MB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFD gBStuyIdxuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0 b3JpZGFkIGRlIENlcnRpZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xh bm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQHEwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0 cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5hY2lvbmFsIGRlIENlcnRp ZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5kZW5jaWEg ZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkq hkiG9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQD AgEGME0GA1UdEQRGMESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0w MDAwMDKgGwYFYIZeAgKgEgwQUklGLUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEag RKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9sY3IvQ0VSVElGSUNBRE8t UkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNyYWl6LnN1c2Nl cnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsG AQUFBwIBFh5odHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcN AQELBQADggIBACtZ6yKZu4SqT96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS 1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmNg7+mvTV+LFwxNG9s2/NkAZiqlCxB 3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4quxtxj7mkoP3Yldmv Wb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1n8Gh HVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHm pHmJWhSnFFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXz sOfIt+FTvZLm8wyWuevo5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bE qCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq3TNWOByyrYDT13K9mmyZY+gAu0F2Bbdb mRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5poLWccret9W6aAjtmcz9 opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3YeMLEYC/H YvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp +ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og /zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y 4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza 8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB 4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd 8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A 4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd +LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B 4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK 4SVhM7JZG+Ju1zdXtg2pEto= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG 9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK SnQ2+Q== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJF UzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJ R1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcN MDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3WjBoMQswCQYDVQQGEwJFUzEfMB0G A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScw JQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+ WmmmO3I2F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKj SgbwJ/BXufjpTjJ3Cj9BZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGl u6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQD0EbtFpKd71ng+CT516nDOeB0/RSrFOy A8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXteJajCq+TA81yc477OMUxk Hl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMBAAGjggM7 MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBr aS5ndmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIIC IwYKKwYBBAG/VQIBADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8A cgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIA YQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIAYQBsAGkAdABhAHQAIABWAGEA bABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQByAGEAYwBpAPMA bgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMA aQBvAG4AYQBtAGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQA ZQAgAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEA YwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBuAHQAcgBhACAAZQBuACAAbABhACAA ZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAAOgAvAC8AdwB3AHcA LgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0dHA6 Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+y eAT8MIGVBgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQsw CQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0G A1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVu Y2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRhTvW1yEICKrNcda3Fbcrn lD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdzCkj+IHLt b8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg 9J63NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XF ducTZnV+ZfsBn5OHiJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmC IoaZM3Fa6hlXPZHNqcCjbgcTpsnt+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG 9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAwMjIzM1oXDTE5MDYy NjAwMjIzM1owgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs YXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDjmFGWHOjVsQaBalfD cnWTq8+epvzzFlLWLU2fNUSoLgRNB0mKOCn1dzfnt6td3zZxFJmP3MKS8edgkpfs 2Ejcv8ECIMYkpChMMFp2bbFc893enhBxoYjHW5tBbcqwuI4V7q0zK89HBFx1cQqY JJgpp0lZpd34t0NiYfPT4tBVPwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFa7AliE Zwgs3x/be0kz9dNnnfS0ChCzycUs4pJqcXgn8nCDQtM+z6lU9PHYkhaM0QTLS6vJ n0WuPIqpsHEzXcjFV9+vqDWzf4mH6eglkrh/hXqu1rweN1gqZ8mRzyqBPu3GOd/A PhmcGcwTTYJBtYze4D1gCCAPRX5ron+jjBXu -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6 MRkwFwYDVQQKExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJp dHkgMjA0OCBWMzAeFw0wMTAyMjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAX BgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAbBgNVBAsTFFJTQSBTZWN1cml0eSAy MDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt49VcdKA3Xtp eafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7Jylg /9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGl wSMiuLgbWhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnh AMFRD0xS+ARaqn1y07iHKrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2 PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpu AWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB BjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4EFgQUB8NR MKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYc HnmYv/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/ Zb5gEydxiKRz44Rj0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+ f00/FGj1EVDVwfSQpQgdMWD/YIwjVAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVO rSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395nzIlQnQFgCi/vcEkllgVsRch 6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kApKnXwiJPZ9d3 7CAFYd4= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa /FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni 8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN QSdJQO7e5iNEOdyhIta6A/I= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO 0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj 7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS 8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB /zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ 3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR 3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDEl MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMh U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIz MloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09N IFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNlY3VyaXR5IENvbW11 bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSE RMqm4miO/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gO zXppFodEtZDkBp2uoQSXWHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5 bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4zZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDF MxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4bepJz11sS6/vmsJWXMY1 VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK9U2vP9eC OKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G CSqGSIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HW tWS3irO4G8za+6xmiEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZ q51ihPZRwSzJIxXYKLerJRO1RuGGAv8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDb EJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnWmHyojf6GPgcWkuF75x3sM3Z+ Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEWT1MKZPlO9L9O VL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy 1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDIDCCAgigAwIBAgIBJDANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MxIENBMB4XDTAx MDQwNjEwNDkxM1oXDTIxMDQwNjEwNDkxM1owOTELMAkGA1UEBhMCRkkxDzANBgNV BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMSBDQTCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBALWJHytPZwp5/8Ue+H887dF+2rDNbS82rDTG 29lkFwhjMDMiikzujrsPDUJVyZ0upe/3p4zDq7mXy47vPxVnqIJyY1MPQYx9EJUk oVqlBvqSV536pQHydekfvFYmUk54GWVYVQNYwBSujHxVX3BbdyMGNpfzJLWaRpXk 3w0LBUXl0fIdgrvGE+D+qnr9aTCU89JFhfzyMlsy3uhsXR/LpCJ0sICOXZT3BgBL qdReLjVQCfOAl/QMF6452F/NM8EcyonCIvdFEu1eEpOdY6uCLrnrQkFEy0oaAIIN nvmLVz5MxxftLItyM19yejhW1ebZrgUaHXVFsculJRwSVzb9IjcCAwEAAaMzMDEw DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQIR+IMi/ZTiFIwCwYDVR0PBAQDAgEG MA0GCSqGSIb3DQEBBQUAA4IBAQCLGrLJXWG04bkruVPRsoWdd44W7hE928Jj2VuX ZfsSZ9gqXLar5V7DtxYvyOirHYr9qxp81V9jz9yw3Xe5qObSIjiHBxTZ/75Wtf0H DjxVyhbMp6Z3N/vbXB9OWQaHowND9Rart4S9Tu+fMTfwRvFAttEMpWT4Y14h21VO TzF2nBBhjrZTOqMRvq9tfB69ri3iDGnHhVNoomG6xT60eVR4ngrHAr5i0RGCS2Uv kVrCqIexVmiUefkl98HVrhq4uz2PqYo4Ffdz0Fpg0YCw8NzVUM1O7pJIae2yIx4w zMiUyLb1O4Z/P6Yun/Y+LLWSlj7fLJOK/4GMDw9ZIRlXvVWa -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt 5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s 3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu 8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ 3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDujCCAqKgAwIBAgIEAJiWijANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQGEwJO TDEeMBwGA1UEChMVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSYwJAYDVQQDEx1TdGFh dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQTAeFw0wMjEyMTcwOTIzNDlaFw0xNTEy MTYwOTE1MzhaMFUxCzAJBgNVBAYTAk5MMR4wHAYDVQQKExVTdGFhdCBkZXIgTmVk ZXJsYW5kZW4xJjAkBgNVBAMTHVN0YWF0IGRlciBOZWRlcmxhbmRlbiBSb290IENB MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmNK1URF6gaYUmHFtvszn ExvWJw56s2oYHLZhWtVhCb/ekBPHZ+7d89rFDBKeNVU+LCeIQGv33N0iYfXCxw71 9tV2U02PjLwYdjeFnejKScfST5gTCaI+Ioicf9byEGW07l8Y1Rfj+MX94p2i71MO hXeiD+EwR+4A5zN9RGcaC1Hoi6CeUJhoNFIfLm0B8mBF8jHrqTFoKbt6QZ7GGX+U tFE5A3+y3qcym7RHjm+0Sq7lr7HcsBthvJly3uSJt3omXdozSVtSnA71iq3DuD3o BmrC1SoLbHuEvVYFy4ZlkuxEK7COudxwC0barbxjiDn622r+I/q85Ej0ZytqERAh SQIDAQABo4GRMIGOMAwGA1UdEwQFMAMBAf8wTwYDVR0gBEgwRjBEBgRVHSAAMDww OgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cucGtpb3ZlcmhlaWQubmwvcG9saWNpZXMv cm9vdC1wb2xpY3kwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSofeu8Y6R0E3QA 7Jbg0zTBLL9s+DANBgkqhkiG9w0BAQUFAAOCAQEABYSHVXQ2YcG70dTGFagTtJ+k /rvuFbQvBgwp8qiSpGEN/KtcCFtREytNwiphyPgJWPwtArI5fZlmgb9uXJVFIGzm eafR2Bwp/MIgJ1HI8XxdNGdphREwxgDS1/PTfLbwMVcoEoJz6TMvplW0C5GUR5z6 u3pCMuiufi3IvKwUv9kP2Vv8wfl6leF9fpb8cbDCTMjfRTTJzg3ynGQI0DvDKcWy 7ZAEwbEpkcUwb8GpcjPM/l0WFywRaed+/sWDCN+83CI6LiBpIzlWYGeQiy52OfsR iJf2fL1LuCAWZwWN4jvBcj+UlTfHXbme2JOhF4//DGYVwSR8MnwDHTuhWEUykw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oX DTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv b3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ5291 qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8Sp uOUfiUtnvWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPU Z5uW6M7XxgpT0GtJlvOjCwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvE pMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiile7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp 5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCROME4HYYEhLoaJXhena/M UGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpICT0ugpTN GmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy 5V6548r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv 6q012iDTiIJh8BIitrzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEK eN5KzlW/HdXZt1bv8Hb/C3m1r737qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6 B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMBAAGjgZcwgZQwDwYDVR0TAQH/ BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcCARYxaHR0cDov L3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqG SIb3DQEBCwUAA4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLyS CZa59sCrI2AGeYwRTlHSeYAz+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen 5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwjf/ST7ZwaUb7dRUG/kSS0H4zpX897 IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaNkqbG9AclVMwWVxJK gnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfkCpYL +63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxL vJxxcypFURmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkm bEgeqmiSBeGCc1qb3AdbCG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvk N1trSt8sV4pAWja63XVECDdCcAz+3F4hoKOKwJCcaNpQ5kUQR3i2TtJlycM33+FC Y7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoVIPVVYpbtbZNQvOSqeK3Z ywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm66+KAQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf 8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN +lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA 1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg 8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk 6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn 0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN sSi6 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEW MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM3WhcNMzYwOTE3MTk0NjM2WjB9 MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3Rh cnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA A4ICDwAwggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZk pMyONvg45iPwbm2xPN1yo4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rf OQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/C Ji/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/deMotHweXMAEtcnn6RtYT Kqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt2PZE4XNi HzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMM Av+Z6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w +2OqqGwaVLRcJXrJosmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+ Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3 Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVcUjyJthkqcwEKDwOzEmDyei+B 26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT37uMdBNSSwID AQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFul F2mHMMo0aEPQQa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCC ATgwLgYIKwYBBQUHAgEWImh0dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5w ZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cuc3RhcnRzc2wuY29tL2ludGVybWVk aWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENvbW1lcmNpYWwgKFN0 YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0aGUg c2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0 aWZpY2F0aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93 d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgG CWCGSAGG+EIBDQQrFilTdGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1 dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5fPGFf59Jb2vKXfuM/gTF wWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWmN3PH/UvS Ta0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst 0OcNOrg+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNc pRJvkrKTlMeIFw6Ttn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKl CcWw0bdT82AUuoVpaiF8H3VhFyAXe2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVF P0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA2MFrLH9ZXF2RsXAiV+uKa0hK 1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBsHvUwyKMQ5bLm KhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ 8dCAWZvLMdibD4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnm fyWl8kgAwKQB2j8= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEW MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM2WhcNMzYwOTE3MTk0NjM2WjB9 MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3Rh cnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA A4ICDwAwggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZk pMyONvg45iPwbm2xPN1yo4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rf OQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/C Ji/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/deMotHweXMAEtcnn6RtYT Kqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt2PZE4XNi HzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMM Av+Z6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w +2OqqGwaVLRcJXrJosmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+ Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3 Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVcUjyJthkqcwEKDwOzEmDyei+B 26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT37uMdBNSSwID AQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9j ZXJ0LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3Js LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFM BgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUHAgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0 Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRwOi8vY2VydC5zdGFy dGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYgU3Rh cnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlh YmlsaXR5LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2Yg dGhlIFN0YXJ0Q29tIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFp bGFibGUgYXQgaHR0cDovL2NlcnQuc3RhcnRjb20ub3JnL3BvbGljeS5wZGYwEQYJ YIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBGcmVlIFNT TCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOCAgEAFmyZ 9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8 jhvh3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUW FjgKXlf2Ysd6AgXmvB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJz ewT4F+irsfMuXGRuczE6Eri8sxHkfY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1 ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3fsNrarnDy0RLrHiQi+fHLB5L EUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZEoalHmdkrQYu L6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuC O3NJo2pXh5Tl1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6V um0ABj6y6koQOdjQK/W/7HW/lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkySh NOsF/5oirpt9P/FlUQqmMGqz9IgcgA38corog14= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEW MBQGA1UEChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlm aWNhdGlvbiBBdXRob3JpdHkgRzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1 OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEsMCoG A1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRzIwggIiMA0G CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8Oo1XJ JZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsD vfOpL9HG4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnoo D/Uefyf3lLE3PbfHkffiAez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/ Q0kGi4xDuFby2X8hQxfqp0iVAXV16iulQ5XqFYSdCI0mblWbq9zSOdIxHWDirMxW RST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbsO+wmETRIjfaAKxojAuuK HDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8HvKTlXcxN nw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM 0D4LnMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/i UUjXuG+v+E5+M5iSFGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9 Ha90OrInwMEePnWjFqmveiJdnxMaz6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHg TuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE AwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJKoZIhvcNAQEL BQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K 2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfX UfEpY9Z1zRbkJ4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl 6/2o1PXWT6RbdejF0mCy2wl+JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK 9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG/+gyRr61M3Z3qAFdlsHB1b6uJcDJ HgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTcnIhT76IxW1hPkWLI wpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/XldblhY XzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5l IxKVCCIcl85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoo hdVddLHRDiBYmxOlsGOm7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulr so8uBtjRkcfGEvRM/TAXw8HaOFvjqermobp573PYtlNXLfbQ4ddI -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEezCCA2OgAwIBAgIQNxkY5lNUfBq1uMtZWts1tzANBgkqhkiG9w0BAQUFADCB rjELMAkGA1UEBhMCREUxIDAeBgNVBAgTF0JhZGVuLVd1ZXJ0dGVtYmVyZyAoQlcp MRIwEAYDVQQHEwlTdHV0dGdhcnQxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fz c2VuIFZlcmxhZyBHbWJIMT4wPAYDVQQDEzVTLVRSVVNUIEF1dGhlbnRpY2F0aW9u IGFuZCBFbmNyeXB0aW9uIFJvb3QgQ0EgMjAwNTpQTjAeFw0wNTA2MjIwMDAwMDBa Fw0zMDA2MjEyMzU5NTlaMIGuMQswCQYDVQQGEwJERTEgMB4GA1UECBMXQmFkZW4t V3VlcnR0ZW1iZXJnIChCVykxEjAQBgNVBAcTCVN0dXR0Z2FydDEpMCcGA1UEChMg RGV1dHNjaGVyIFNwYXJrYXNzZW4gVmVybGFnIEdtYkgxPjA8BgNVBAMTNVMtVFJV U1QgQXV0aGVudGljYXRpb24gYW5kIEVuY3J5cHRpb24gUm9vdCBDQSAyMDA1OlBO MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2bVKwdMz6tNGs9HiTNL1 toPQb9UY6ZOvJ44TzbUlNlA0EmQpoVXhOmCTnijJ4/Ob4QSwI7+Vio5bG0F/WsPo TUzVJBY+h0jUJ67m91MduwwA7z5hca2/OnpYH5Q9XIHV1W/fuJvS9eXLg3KSwlOy ggLrra1fFi2SU3bxibYs9cEv4KdKb6AwajLrmnQDaHgTncovmwsdvs91DSaXm8f1 XgqfeN+zvOyauu9VjxuapgdjKRdZYgkqeQd3peDRF2npW932kKvimAoA0SVtnteF hy+S8dF2g08LOlk3KC8zpxdQ1iALCvQm+Z845y2kuJuJja2tyWp9iRe79n+Ag3rm 7QIDAQABo4GSMIGPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgEG MCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFTVFJvbmxpbmUxLTIwNDgtNTAdBgNV HQ4EFgQUD8oeXHngovMpttKFswtKtWXsa1IwHwYDVR0jBBgwFoAUD8oeXHngovMp ttKFswtKtWXsa1IwDQYJKoZIhvcNAQEFBQADggEBAK8B8O0ZPCjoTVy7pWMciDMD pwCHpB8gq9Yc4wYfl35UvbfRssnV2oDsF9eK9XvCAPbpEW+EoFolMeKJ+aQAPzFo LtU96G7m1R08P7K9n3frndOMusDXtk3sU5wPBG7qNWdX4wple5A64U8+wwCSersF iXOMy6ZNwPv2AtawB6MDwidAnwzkhYItr5pCHdDHjfhA7p0GVxzZotiAFP7hYy0y h9WUUpY6RsZxlj33mA6ykaqP2vROJAA5VeitF7nTNCtKqUDMFypVZUF0Qn71wK/I k63yGFs9iQzbRzkk+OBM8h+wPQrKBU6JIRrjKpms/H+h8Q8bHz2eBIPdltkdOpQ= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBk MQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0 YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3Qg Q0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4MTgyMjA2MjBaMGQxCzAJBgNVBAYT AmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIICIjAN BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9 m2BtRsiMMW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdih FvkcxC7mlSpnzNApbjyFNDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/ TilftKaNXXsLmREDA/7n29uj/x2lzZAeAR81sH8A25Bvxn570e56eqeqDFdvpG3F EzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkCb6dJtDZd0KTeByy2dbco kdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn7uHbHaBu HYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNF vJbNcA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo 19AOeCMgkckkKmUpWyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjC L3UcPX7ape8eYIVpQtPM+GP+HkM5haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJW bjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNYMUJDLXT5xp6mig/p/r+D5kNX JLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0hBBYw FDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzc K6FptWfUjNP9MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzf ky9NfEBWMXrrpA9gzXrzvsMnjgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7Ik Vh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQMbFamIp1TpBcahQq4FJHgmDmHtqB sfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4HVtA4oJVwIHaM190e 3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtlvrsR ls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ip mXeascClOS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HH b6D0jqTsNFFbjCYDcKF31QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksf rK/7DZBaZmBwXarNeNQk7shBoJMBkpxqnvy5JMWzFYJ+vq6VK+uxwNrjAWALXmms hFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCyx/yP2FS1k2Kdzs9Z+z0Y zirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMWNY6E0F/6 MBr1mmz0DlP5OlvRHA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBk MQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0 YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3Qg Q0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2MjUwNzM4MTRaMGQxCzAJBgNVBAYT AmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIICIjAN BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvEr jw0DzpPMLgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r 0rk0X2s682Q2zsKwzxNoysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f 2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJwDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVP ACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpHWrumnf2U5NGKpV+GY3aF y6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1aSgJA/MTA tukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL 6yxSNLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0 uPoTXGiTOmekl9AbmbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrAL acywlKinh/LTSlDcX3KwFnUey7QYYpqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velh k6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3qPyZ7iVNTA6z00yPhOgpD/0Q VAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0hBBYw FDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqh b97iEoHF8TwuMA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4R fbgZPnm3qKhyN2abGu2sEzsOv2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv /2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ82YqZh6NM4OKb3xuqFp1mrjX2lhI REeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLzo9v/tdhZsnPdTSpx srpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcsa0vv aGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciAT woCqISxxOQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99n Bjx8Oto0QuFmtEYE3saWmA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5W t6NlUe07qxS/TFED6F+KBZvuim6c779o+sjaC+NCydAXFJy3SuCvkychVSa1ZC+N 8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TCrvJcwhbtkj6EPnNgiLx2 9CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX5OfNeOI5 wSsSnqaeG8XmDtkx2Q== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAw ZzELMAkGA1UEBhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdp dGFsIENlcnRpZmljYXRlIFNlcnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290 IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcNMzEwNjI1MDg0NTA4WjBnMQswCQYD VQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2Vy dGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYgQ0Eg MjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7Bx UglgRCgzo3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD 1ycfMQ4jFrclyxy0uYAyXhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPH oCE2G3pXKSinLr9xJZDzRINpUKTk4RtiGZQJo/PDvO/0vezbE53PnUgJUmfANykR HvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8LiqG12W0OfvrSdsyaGOx9/ 5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaHZa0zKcQv idm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHL OdAGalNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaC NYGu+HuB5ur+rPQam3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f 46Fq9mDU5zXNysRojddxyNMkM3OxbPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCB UWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDixzgHcgplwLa7JSnaFp6LNYth 7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/BAQDAgGGMB0G A1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWB bj2ITY1x0kbBbkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6x XCX5145v9Ydkn+0UjrgEjihLj6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98T PLr+flaYC/NUn81ETm484T4VvwYmneTwkLbUwp4wLh/vx3rEUMfqe9pQy3omywC0 Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7XwgiG/W9mR4U9s70 WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH59yL Gn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm 7JFe3VE/23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4S nr8PyQUQ3nqjsTzyP6WqJ3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VN vBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyAHmBR3NdUIR7KYndP+tiPsys6DXhyyWhB WkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/giuMod89a2GQ+fYWVq6nTI fI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuWl8PVP3wb I+2ksx0WckNLIOFZfsLorSa/ovc= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c 6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn 8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a 77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFwTCCA6mgAwIBAgIITrIAZwwDXU8wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEjMCEGA1UEAxMaU3dpc3NTaWdu IFBsYXRpbnVtIENBIC0gRzIwHhcNMDYxMDI1MDgzNjAwWhcNMzYxMDI1MDgzNjAw WjBJMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMSMwIQYDVQQD ExpTd2lzc1NpZ24gUGxhdGludW0gQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQAD ggIPADCCAgoCggIBAMrfogLi2vj8Bxax3mCq3pZcZB/HL37PZ/pEQtZ2Y5Wu669y IIpFR4ZieIbWIDkm9K6j/SPnpZy1IiEZtzeTIsBQnIJ71NUERFzLtMKfkr4k2Htn IuJpX+UFeNSH2XFwMyVTtIc7KZAoNppVRDBopIOXfw0enHb/FZ1glwCNioUD7IC+ 6ixuEFGSzH7VozPY1kneWCqv9hbrS3uQMpe5up1Y8fhXSQQeol0GcN1x2/ndi5ob jM89o03Oy3z2u5yg+gnOI2Ky6Q0f4nIoj5+saCB9bzuohTEJfwvH6GXp43gOCWcw izSC+13gzJ2BbWLuCB4ELE6b7P6pT1/9aXjvCR+htL/68++QHkwFix7qepF6w9fl +zC8bBsQWJj3Gl/QKTIDE0ZNYWqFTFJ0LwYfexHihJfGmfNtf9dng34TaNhxKFrY zt3oEBSa/m0jh26OWnA81Y0JAKeqvLAxN23IhBQeW71FYyBrS3SMvds6DsHPWhaP pZjydomyExI7C3d3rLvlPClKknLKYRorXkzig3R3+jVIeoVNjZpTxN94ypeRSCtF KwH3HBqi7Ri6Cr2D+m+8jVeTO9TUps4e8aCxzqv9KyiaTxvXw3LbpMS/XUz13XuW ae5ogObnmLo2t/5u7Su9IPhlGdpVCX4l3P5hYnL5fhgC72O00Puv5TtjjGePAgMB AAGjgawwgakwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O BBYEFFCvzAeHFUdvOMW0ZdHelarp35zMMB8GA1UdIwQYMBaAFFCvzAeHFUdvOMW0 ZdHelarp35zMMEYGA1UdIAQ/MD0wOwYJYIV0AVkBAQEBMC4wLAYIKwYBBQUHAgEW IGh0dHA6Ly9yZXBvc2l0b3J5LnN3aXNzc2lnbi5jb20vMA0GCSqGSIb3DQEBBQUA A4ICAQAIhab1Fgz8RBrBY+D5VUYI/HAcQiiWjrfFwUF1TglxeeVtlspLpYhg0DB0 uMoI3LQwnkAHFmtllXcBrqS3NQuB2nEVqXQXOHtYyvkv+8Bldo1bAbl93oI9ZLi+ FHSjClTTLJUYFzX1UWs/j6KWYTl4a0vlpqD4U99REJNi54Av4tHgvI42Rncz7Lj7 jposiU0xEQ8mngS7twSNC/K5/FqdOxa3L8iYq/6KUFkuozv8KV2LwUvJ4ooTHbG/ u0IdUt1O2BReEMYxB+9xJ/cbOQncguqLs5WGXv312l0xpuAxtpTmREl0xRbl9x8D YSjFyMsSoEJL+WuICI20MhjzdZ/EfwBPBZWcoxcCw7NTm6ogOSkrZvqdr16zktK1 puEa+S1BaYEUtLS17Yk9zvupnTVCRLEcFHOBzyoBNZox1S2PbYTfgE1X4z/FhHXa icYwu+uPyyIIoK6q8QNsOktNCaUOcsZWayFCTiMlFGiudgp8DAdwZPmaL/YFOSbG DI8Zf0NebvRbFS/bYV3mZy8/CJT5YLSYMdp08YSTcU1f+2BY0fvEwW2JorsgH51x kcsymxM9Pn2SUjWskpSi0xjCfMfqr3YFFt1nJ8J+HAciIfNAChs0B0QTwoRqjt8Z Wr9/6x3iGjjRXK9HkmuAtTClyY3YqzGBH9/CZjfTk6mFhnll0g== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH 6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ 2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/ MQswCQYDVQQGEwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmlj YXRpb24gQXV0aG9yaXR5MB4XDTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1ow PzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dvdmVybm1lbnQgUm9vdCBDZXJ0aWZp Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB AJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qNw8XR IePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1q gQdW8or5BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKy yhwOeYHWtXBiCAEuTk8O1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAts F/tnyMKtsc2AtJfcdgEWFelq16TheEfOhtX7MfP6Mb40qij7cEwdScevLJ1tZqa2 jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wovJ5pGfaENda1UhhXcSTvx ls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7Q3hub/FC VGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHK YS1tB6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoH EgKXTiCQ8P8NHuJBO9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThN Xo+EHWbNxWCWtFJaBYmOlXqYwZE8lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1Ud DgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNVHRMEBTADAQH/MDkGBGcqBwAE MTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg209yewDL7MTqK UWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyf qzvS/3WXy6TjZwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaK ZEk9GhiHkASfQlK3T8v+R0F2Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFE JPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlUD7gsL0u8qV1bYH+Mh6XgUmMqvtg7 hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6QzDxARvBMB1uUO07+1 EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+HbkZ6Mm nD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WX udpVBrkk7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44Vbnz ssQwmSNOXfJIoRIM3BKQCZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDe LMDDav7v3Aun+kbfYNucpllQdSNpc5Oy+fwC00fmcc4QAu4njIT/rEUNE1yDMuAl pYYsfPQS -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEqjCCA5KgAwIBAgIOLmoAAQACH9dSISwRXDswDQYJKoZIhvcNAQEFBQAwdjEL MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDIgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 Q2VudGVyIENsYXNzIDIgQ0EgSUkwHhcNMDYwMTEyMTQzODQzWhcNMjUxMjMxMjI1 OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQTElMCMGA1UEAxMc VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD ggEPADCCAQoCggEBAKuAh5uO8MN8h9foJIIRszzdQ2Lu+MNF2ujhoF/RKrLqk2jf tMjWQ+nEdVl//OEd+DFwIxuInie5e/060smp6RQvkL4DUsFJzfb95AhmC1eKokKg uNV/aVyQMrKXDcpK3EY+AlWJU+MaWss2xgdW94zPEfRMuzBwBJWl9jmM/XOBCH2J XjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQXa7pIXSSTYtZgo+U4+lK 8edJsBTj9WLL1XK9H7nSn6DNqPoByNkN39r8R52zyFTfSUrxIan+GE7uSNQZu+99 5OKdy1u2bv/jzVrndIIFuoAlOMvkaZ6vQaoahPUCAwEAAaOCATQwggEwMA8GA1Ud EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTjq1RMgKHbVkO3 kUrL84J6E1wIqzCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18yX2NhX0lJLmNybIaBn2xkYXA6 Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz JTIwMiUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEAjNfffu4bgBCzg/XbEeprS6iS GNn3Bzn1LL4GdXpoUxUc6krtXvwjshOg0wn/9vYua0Fxec3ibf2uWWuFHbhOIprt ZjluS5TmVfwLG4t3wVMTZonZKNaL80VKY7f9ewthXbhtvsPcW3nS7Yblok2+XnR8 au0WOB9/WIFaGusyiC2y8zl3gK9etmF1KdsjTYjKUCjLhdLTEKJZbtOTVAB6okaV hgWcqRmY5TFyDADiZ9lA4CQze28suVyrZZ0srHbqNZn1l7kPJOzHdiEoZa5X6AeI dUpWoNIFOqTmjZKILPPy4cHGYdtBxceb9w4aUUXCYWvcZCcXjFq32nQozZfkvQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEqjCCA5KgAwIBAgIOSkcAAQAC5aBd1j8AUb8wDQYJKoZIhvcNAQEFBQAwdjEL MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDMgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 Q2VudGVyIENsYXNzIDMgQ0EgSUkwHhcNMDYwMTEyMTQ0MTU3WhcNMjUxMjMxMjI1 OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQTElMCMGA1UEAxMc VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD ggEPADCCAQoCggEBALTgu1G7OVyLBMVMeRwjhjEQY0NVJz/GRcekPewJDRoeIMJW Ht4bNwcwIi9v8Qbxq63WyKthoy9DxLCyLfzDlml7forkzMA5EpBCYMnMNWju2l+Q Vl/NHE1bWEnrDgFPZPosPIlY2C8u4rBo6SI7dYnWRBpl8huXJh0obazovVkdKyT2 1oQDZogkAHhg8fir/gKya/si+zXmFtGt9i4S5Po1auUZuV3bOx4a+9P/FRQI2Alq ukWdFHlgfa9Aigdzs5OW03Q0jTo3Kd5c7PXuLjHCINy+8U9/I1LZW+Jk2ZyqBwi1 Rb3R0DHBq1SfqdLDYmAD8bs5SpJKPQq5ncWg/jcCAwEAAaOCATQwggEwMA8GA1Ud EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTUovyfs8PYA9NX XAek0CSnwPIA1DCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18zX2NhX0lJLmNybIaBn2xkYXA6 Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz JTIwMyUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEANmDkcPcGIEPZIxpC8vijsrlN irTzwppVMXzEO2eatN9NDoqTSheLG43KieHPOh6sHfGcMrSOWXaiQYUlN6AT0PV8 TtXqluJucsG7Kv5sbviRmEb8yRtXW+rIGjs/sFGYPAfaLFkB2otE6OF0/ado3VS6 g0bsyEa1+K+XwDsJHI/OcpY9M1ZwvJbL2NV9IJqDnxrcOfHFcqMRA/07QlIp2+gB 95tejNaNhk4Z+rwcvsUhpYeeeC422wlxo3I0+GzjBgnyXlal092Y+tTmBvTwtiBj S+opvaqCZh77gaqnN60TGOaSw4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2F9Hc5A== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID3TCCAsWgAwIBAgIOHaIAAQAC7LdggHiNtgYwDQYJKoZIhvcNAQEFBQAweTEL MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNV BAsTG1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQTEmMCQGA1UEAxMdVEMgVHJ1 c3RDZW50ZXIgVW5pdmVyc2FsIENBIEkwHhcNMDYwMzIyMTU1NDI4WhcNMjUxMjMx MjI1OTU5WjB5MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIg R21iSDEkMCIGA1UECxMbVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBMSYwJAYD VQQDEx1UQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0EgSTCCASIwDQYJKoZIhvcN AQEBBQADggEPADCCAQoCggEBAKR3I5ZEr5D0MacQ9CaHnPM42Q9e3s9B6DGtxnSR JJZ4Hgmgm5qVSkr1YnwCqMqs+1oEdjneX/H5s7/zA1hV0qq34wQi0fiU2iIIAI3T fCZdzHd55yx4Oagmcw6iXSVphU9VDprvxrlE4Vc93x9UIuVvZaozhDrzznq+VZeu jRIPFDPiUHDDSYcTvFHe15gSWu86gzOSBnWLknwSaHtwag+1m7Z3W0hZneTvWq3z wZ7U10VOylY0Ibw+F1tvdwxIAUMpsN0/lm7mlaoMwCC2/T42J5zjXM9OgdwZu5GQ fezmlwQek8wiSdeXhrYTCjxDI3d+8NzmzSQfO4ObNDqDNOMCAwEAAaNjMGEwHwYD VR0jBBgwFoAUkqR1LKSevoFE63n8isWVpesQdXMwDwYDVR0TAQH/BAUwAwEB/zAO BgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJKkdSyknr6BROt5/IrFlaXrEHVzMA0G CSqGSIb3DQEBBQUAA4IBAQAo0uCG1eb4e/CX3CJrO5UUVg8RMKWaTzqwOuAGy2X1 7caXJ/4l8lfmXpWMPmRgFVp/Lw0BxbFg/UU1z/CyvwbZ71q+s2IhtNerNXxTPqYn 8aEt2hojnczd7Dwtnic0XQ/CNnm8yUpiLe1r2X1BQ3y2qsrtYbE3ghUJGooWMNjs ydZHcnhLEEYUjl8Or+zHL6sQ17bxbuyGssLoDZJz3KL0Dzq/YSMQiZxIQG5wALPT ujdEWBF6AmqI8Dc08BnprNRlc/ZpjGSUOnmFKbAWKwyCPwacx/0QK54PLLae4xW/ 2TYcuiUaUj0a7CIMHOCkoj3w6DnPgcB77V0fb8XQC9eY -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIEOsylTDANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJE SzEVMBMGA1UEChMMVERDIEludGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQg Um9vdCBDQTAeFw0wMTA0MDUxNjMzMTdaFw0yMTA0MDUxNzAzMTdaMEMxCzAJBgNV BAYTAkRLMRUwEwYDVQQKEwxUREMgSW50ZXJuZXQxHTAbBgNVBAsTFFREQyBJbnRl cm5ldCBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxLhA vJHVYx/XmaCLDEAedLdInUaMArLgJF/wGROnN4NrXceO+YQwzho7+vvOi20jxsNu Zp+Jpd/gQlBn+h9sHvTQBda/ytZO5GhgbEaqHF1j4QeGDmUApy6mcca8uYGoOn0a 0vnRrEvLznWv3Hv6gXPU/Lq9QYjUdLP5Xjg6PEOo0pVOd20TDJ2PeAG3WiAfAzc1 4izbSysseLlJ28TQx5yc5IogCSEWVmb/Bexb4/DPqyQkXsN/cHoSxNK1EKC2IeGN eGlVRGn1ypYcNIUXJXfi9i8nmHj9eQY6otZaQ8H/7AQ77hPv01ha/5Lr7K7a8jcD R0G2l8ktCkEiu7vmpwIDAQABo4IBJTCCASEwEQYJYIZIAYb4QgEBBAQDAgAHMGUG A1UdHwReMFwwWqBYoFakVDBSMQswCQYDVQQGEwJESzEVMBMGA1UEChMMVERDIElu dGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQgUm9vdCBDQTENMAsGA1UEAxME Q1JMMTArBgNVHRAEJDAigA8yMDAxMDQwNTE2MzMxN1qBDzIwMjEwNDA1MTcwMzE3 WjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUbGQBx/2FbazI2p5QCIUItTxWqFAw HQYDVR0OBBYEFGxkAcf9hW2syNqeUAiFCLU8VqhQMAwGA1UdEwQFMAMBAf8wHQYJ KoZIhvZ9B0EABBAwDhsIVjUuMDo0LjADAgSQMA0GCSqGSIb3DQEBBQUAA4IBAQBO Q8zR3R0QGwZ/t6T609lN+yOfI1Rb5osvBCiLtSdtiaHsmGnc540mgwV5dOy0uaOX wTUA/RXaOYE6lTGQ3pfphqiZdwzlWqCE/xIWrG64jcN7ksKsLtB9KOy282A4aW8+ 2ARVPp7MVdK6/rtHBNcK2RYKNCn1WBPVT8+PVkuzHu7TmHnaCB4Mb7j4Fifvwm89 9qNLPg7kbWzbO0ESm70NRyN/PErQr8Cv9u8btRXE64PECV90i9kR+8JWsTz4cMo0 jUNAE4z9mQNUecYu6oah9jrUCbz0vGbMPVjQV0kK7iXiQe4T+Zs4NNEA9X7nlB38 aQNiuJkFBT1reBK9sG9l -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFGTCCBAGgAwIBAgIEPki9xDANBgkqhkiG9w0BAQUFADAxMQswCQYDVQQGEwJE SzEMMAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQTAeFw0wMzAyMTEw ODM5MzBaFw0zNzAyMTEwOTA5MzBaMDExCzAJBgNVBAYTAkRLMQwwCgYDVQQKEwNU REMxFDASBgNVBAMTC1REQyBPQ0VTIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A MIIBCgKCAQEArGL2YSCyz8DGhdfjeebM7fI5kqSXLmSjhFuHnEz9pPPEXyG9VhDr 2y5h7JNp46PMvZnDBfwGuMo2HP6QjklMxFaaL1a8z3sM8W9Hpg1DTeLpHTk0zY0s 2RKY+ePhwUp8hjjEqcRhiNJerxomTdXkoCJHhNlktxmW/OwZ5LKXJk5KTMuPJItU GBxIYXvViGjaXbXqzRowwYCDdlCqT9HU3Tjw7xb04QxQBr/q+3pJoSgrHPb8FTKj dGqPqcNiKXEx5TukYBdedObaE+3pHx8b0bJoc8YQNHVGEBDjkAB2QMuLt0MJIf+r TpPGWOmlgtt3xDqZsXKVSQTwtyv6e1mO3QIDAQABo4ICNzCCAjMwDwYDVR0TAQH/ BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwgewGA1UdIASB5DCB4TCB3gYIKoFQgSkB AQEwgdEwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuY2VydGlmaWthdC5kay9yZXBv c2l0b3J5MIGdBggrBgEFBQcCAjCBkDAKFgNUREMwAwIBARqBgUNlcnRpZmlrYXRl ciBmcmEgZGVubmUgQ0EgdWRzdGVkZXMgdW5kZXIgT0lEIDEuMi4yMDguMTY5LjEu MS4xLiBDZXJ0aWZpY2F0ZXMgZnJvbSB0aGlzIENBIGFyZSBpc3N1ZWQgdW5kZXIg T0lEIDEuMi4yMDguMTY5LjEuMS4xLjARBglghkgBhvhCAQEEBAMCAAcwgYEGA1Ud HwR6MHgwSKBGoESkQjBAMQswCQYDVQQGEwJESzEMMAoGA1UEChMDVERDMRQwEgYD VQQDEwtUREMgT0NFUyBDQTENMAsGA1UEAxMEQ1JMMTAsoCqgKIYmaHR0cDovL2Ny bC5vY2VzLmNlcnRpZmlrYXQuZGsvb2Nlcy5jcmwwKwYDVR0QBCQwIoAPMjAwMzAy MTEwODM5MzBagQ8yMDM3MDIxMTA5MDkzMFowHwYDVR0jBBgwFoAUYLWF7FZkfhIZ J2cdUBVLc647+RIwHQYDVR0OBBYEFGC1hexWZH4SGSdnHVAVS3OuO/kSMB0GCSqG SIb2fQdBAAQQMA4bCFY2LjA6NC4wAwIEkDANBgkqhkiG9w0BAQUFAAOCAQEACrom JkbTc6gJ82sLMJn9iuFXehHTuJTXCRBuo7E4A9G28kNBKWKnctj7fAXmMXAnVBhO inxO5dHKjHiIzxvTkIvmI/gLDjNDfZziChmPyQE+dF10yYscA+UYyAFMP8uXBV2Y caaYb7Z8vTd/vuGTJW1v8AqtFxjhA7wHKcitJuj4YfD9IQl+mo6paH1IYnK9AOoB mbgGglGBTvH1tJFUuSN6AJqfXY3gPGS5GhKSKseCRHI53OI8xthV9RVOyAUO28bQ YqbsFbS1AoLbrIyigfCbmTH1ICCoiGEKB5+U/NDXG8wuF/MEJ3Zn61SD/aSQfgY9 BKNDLdr8C2LqL19iUw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDJzCCApCgAwIBAgIBATANBgkqhkiG9w0BAQQFADCBzjELMAkGA1UEBhMCWkEx FTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYD VQQKExRUaGF3dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlv biBTZXJ2aWNlcyBEaXZpc2lvbjEhMB8GA1UEAxMYVGhhd3RlIFByZW1pdW0gU2Vy dmVyIENBMSgwJgYJKoZIhvcNAQkBFhlwcmVtaXVtLXNlcnZlckB0aGF3dGUuY29t MB4XDTk2MDgwMTAwMDAwMFoXDTIwMTIzMTIzNTk1OVowgc4xCzAJBgNVBAYTAlpB MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEdMBsG A1UEChMUVGhhd3RlIENvbnN1bHRpbmcgY2MxKDAmBgNVBAsTH0NlcnRpZmljYXRp b24gU2VydmljZXMgRGl2aXNpb24xITAfBgNVBAMTGFRoYXd0ZSBQcmVtaXVtIFNl cnZlciBDQTEoMCYGCSqGSIb3DQEJARYZcHJlbWl1bS1zZXJ2ZXJAdGhhd3RlLmNv bTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0jY2aovXwlue2oFBYo847kkE VdbQ7xwblRZH7xhINTpS9CtqBo87L+pW46+GjZ4X9560ZXUCTe/LCaIhUdib0GfQ ug2SBhRz1JPLlyoAnFxODLz6FVL88kRu2hFKbgifLy3j+ao6hnO2RlNYyIkFvYMR uHM/qgeN9EJN50CdHDcCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG 9w0BAQQFAAOBgQAmSCwWwlj66BZ0DKqqX1Q/8tfJeGBeXm43YyJ3Nn6yF8Q0ufUI hfzJATj/Tb7yFkJD57taRvvBxhEf8UqwKEbJw8RCfbz6q1lu1bdRiBHjpIUZa4JM pAwSremkrj/xw0llmozFyD4lt5SZu5IycQfwhl7tUCemDaYj+bvLpgcUQg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCB qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3MDAwMDAwWhcNMzYw NzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5j LjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYG A1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl IG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsoPD7gFnUnMekz52hWXMJEEUMDSxuaPFs W0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ1CRfBsDMRJSUjQJib+ta 3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGcq/gcfomk 6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6 Sk/KaAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94J NqR32HuHUETVPm4pafs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBA MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XP r87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUFAAOCAQEAeRHAS7ORtvzw6WfU DW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeEuzLlQRHAd9mz YJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2 /qxAeeWsEG89jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/ LHbTY5xZ3Y+m4Q6gLkH3LpVHz7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7 jVaMaA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDEL MAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMp IDIwMDcgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAi BgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMjAeFw0wNzExMDUwMDAw MDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh d3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBGb3Ig YXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9v dCBDQSAtIEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/ BebfowJPDQfGAFG6DAJSLSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6 papu+7qzcMBniKI11KOasf2twu8x+qi58/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8E BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUmtgAMADna3+FGO6Lts6K DPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUNG4k8VIZ3 KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41ox XZ3Krr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCB rjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw MDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNV BAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0wODA0MDIwMDAwMDBa Fw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3Rl LCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9u MTgwNgYDVQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXpl ZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEcz MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsr8nLPvb2FvdeHsbnndm gcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2AtP0LMqmsywCPLLEHd5N/8 YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC+BsUa0Lf b1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS9 9irY7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2S zhkGcuYMXDhpxwTWvGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUk OQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV HQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJKoZIhvcNAQELBQADggEBABpA 2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweKA3rD6z8KLFIW oCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7c KUGRIjxpp7sC8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fM m7v/OeZWYdMKp8RcTGB7BXcmer/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZu MdRAGmI0Nj81Aa6sY6A= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDEzCCAnygAwIBAgIBATANBgkqhkiG9w0BAQQFADCBxDELMAkGA1UEBhMCWkEx FTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYD VQQKExRUaGF3dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlv biBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcGA1UEAxMQVGhhd3RlIFNlcnZlciBDQTEm MCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5jb20wHhcNOTYwODAx MDAwMDAwWhcNMjAxMjMxMjM1OTU5WjCBxDELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3 dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNl cyBEaXZpc2lvbjEZMBcGA1UEAxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3 DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQAD gY0AMIGJAoGBANOkUG7I/1Zr5s9dtuoMaHVHoqrC2oQl/Kj0R1HahbUgdJSGHg91 yekIYfUGbTBuFRkC6VLAYttNmZ7iagxEOM3+vuNkCXDF/rFrKbYvScg71CcEJRCX L+eQbcAoQpnXTEPew/UhbVSfXcNY4cDk2VuwuNy0e982OsK1ZiIS1ocNAgMBAAGj EzARMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAB/pMaVz7lcxG 7oWDTSEwjsrZqG9JGubaUeNgcGyEYRGhGshIPllDfU+VPaGLtwtimHp1it2ITk6e QNuozDJ0uW8NxuOzRAvZim+aKZuZGCg70eNAKJpaPNW15yAbi8qkq43pUdniTCxZ qdq5snUb9kLy78fyGPmJvKP/iiMucEc= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBF MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQL ExNUcnVzdGlzIEZQUyBSb290IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTEx MzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1RydXN0aXMgTGltaXRlZDEc MBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQAD ggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQRUN+ AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihH iTHcDnlkH5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjj vSkCqPoc4Vu5g6hBSLwacY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA 0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zto3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlB OrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEAAaNTMFEwDwYDVR0TAQH/ BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAdBgNVHQ4E FgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01 GX2cGE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmW zaD+vkAMXBJV+JOCyinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP4 1BIy+Q7DsdwyhEQsb8tGD+pmQQ9P8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZE f1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHVl/9D7S3B2l0pKoU/rGXuhg8F jZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYliB6XzCGcKQEN ZetX2fNXlrtIzYE= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN 8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ 1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT 91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p TpPDpFQUWw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRS MRgwFgYDVQQHDA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJp bGltc2VsIHZlIFRla25vbG9qaWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSw VEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ryb25payB2ZSBLcmlwdG9sb2ppIEFy YcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNVBAsMGkthbXUgU2Vy dGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUgS8O2 ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAe Fw0wNzA4MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIx GDAWBgNVBAcMD0dlYnplIC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmls aW1zZWwgdmUgVGVrbm9sb2ppayBBcmHFn3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBU QUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZlIEtyaXB0b2xvamkgQXJh xZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2FtdSBTZXJ0 aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7Zr IFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIB IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4h gb46ezzb8R1Sf1n68yJMlaCQvEhOEav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yK O7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1xnnRFDDtG1hba+818qEhTsXO fJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR6Oqeyjh1jmKw lZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQID AQABo0IwQDAdBgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/ BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmP NOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4N5EY3ATIZJkrGG2AA1nJrvhY0D7t wyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLTy9LQQfMmNkqblWwM 7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYhLBOh gLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5n oN+J1q2MdqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUs yZyQ2uypQjyttgI= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID+zCCAuOgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBtzE/MD0GA1UEAww2VMOc UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx c8SxMQswCQYDVQQGDAJUUjEPMA0GA1UEBwwGQU5LQVJBMVYwVAYDVQQKDE0oYykg MjAwNSBUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8 dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjAeFw0wNTA1MTMxMDI3MTdaFw0xNTAz MjIxMDI3MTdaMIG3MT8wPQYDVQQDDDZUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2Vy dGlmaWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLExCzAJBgNVBAYMAlRSMQ8wDQYD VQQHDAZBTktBUkExVjBUBgNVBAoMTShjKSAyMDA1IFTDnFJLVFJVU1QgQmlsZ2kg xLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSfaSBIaXptZXRsZXJpIEEu xZ4uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAylIF1mMD2Bxf3dJ7 XfIMYGFbazt0K3gNfUW9InTojAPBxhEqPZW8qZSwu5GXyGl8hMW0kWxsE2qkVa2k heiVfrMArwDCBRj1cJ02i67L5BuBf5OI+2pVu32Fks66WJ/bMsW9Xe8iSi9BB35J YbOG7E6mQW6EvAPs9TscyB/C7qju6hJKjRTP8wrgUDn5CDX4EVmt5yLqS8oUBt5C urKZ8y1UiBAG6uEaPj1nH/vO+3yC6BFdSsG5FOpU2WabfIl9BJpiyelSPJ6c79L1 JuTm5Rh8i27fbMx4W09ysstcP4wFjdFMjK2Sx+F4f2VsSQZQLJ4ywtdKxnWKWU51 b0dewQIDAQABoxAwDjAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAV 9VX/N5aAWSGk/KEVTCD21F/aAyT8z5Aa9CEKmu46sWrv7/hg0Uw2ZkUd82YCdAR7 kjCo3gp2D++Vbr3JN+YaDayJSFvMgzbC9UZcWYJWtNX+I7TYVBxEq8Sn5RTOPEFh fEPmzcSBCYsk+1Ql1haolgxnB2+zUEfjHCQo3SqYpGH+2+oSN7wBGjSFvW5P55Fy B0SFHljKVETd96y5y4khctuPwGkplyqjrhgjlxxBKot8KsF8kOipKMDTkcatKIdA aLX/7KfS0zgYnNN9aV3wxqUeJBujR/xpB2jn5Jq07Q+hh4cCzofSSE7hvP/L8XKS RGQDJereW26fyfJOrN3H -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOc UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx c8SxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xS S1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kg SGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4XDTA3MTIyNTE4Mzcx OVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxla3Ry b25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMC VFIxDzANBgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDE sGxldGnFn2ltIHZlIEJpbGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7F ni4gKGMpIEFyYWzEsWsgMjAwNzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9NYvDdE3ePYakqtdTyuTFY KTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQvKUmi8wUG +7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveG HtyaKhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6P IzdezKKqdfcYbwnTrqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M 733WB2+Y8a+xwXrXgTW4qhe04MsCAwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHk Yb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G CSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/sPx+EnWVUXKgW AkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5 mxRZNTZPz/OOXl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsa XRik7r4EW5nVcV9VZWRi1aKbBFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZ qxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAKpoRq0Tl9 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEPDCCAySgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvjE/MD0GA1UEAww2VMOc UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx c8SxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xS S1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kg SGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwHhcNMDUxMTA3MTAwNzU3 WhcNMTUwOTE2MTAwNzU3WjCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBFbGVrdHJv bmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJU UjEPMA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSw bGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWe LiAoYykgS2FzxLFtIDIwMDUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB AQCpNn7DkUNMwxmYCMjHWHtPFoylzkkBH3MOrHUTpvqeLCDe2JAOCtFp0if7qnef J1Il4std2NiDUBd9irWCPwSOtNXwSadktx4uXyCcUHVPr+G1QRT0mJKIx+XlZEdh R3n9wFHxwZnn3M5q+6+1ATDcRhzviuyV79z/rxAc653YsKpqhRgNF8k+v/Gb0AmJ Qv2gQrSdiVFVKc8bcLyEVK3BEx+Y9C52YItdP5qtygy/p1Zbj3e41Z55SZI/4PGX JHpsmxcPbe9TmJEr5A++WXkHeLuXlfSfadRYhwqp48y2WBmfJiGxxFmNskF1wK1p zpwACPI2/z7woQ8arBT9pmAPAgMBAAGjQzBBMB0GA1UdDgQWBBTZN7NOBf3Zz58S Fq62iS/rJTqIHDAPBgNVHQ8BAf8EBQMDBwYAMA8GA1UdEwEB/wQFMAMBAf8wDQYJ KoZIhvcNAQEFBQADggEBAHJglrfJ3NgpXiOFX7KzLXb7iNcX/nttRbj2hWyfIvwq ECLsqrkw9qtY1jkQMZkpAL2JZkH7dN6RwRgLn7Vhy506vvWolKMiVW4XSf/SKfE4 Jl3vpao6+XF75tpYHdN0wgH6PmlYX63LaL4ULptswLbcoCb6dxriJNoaN+BnrdFz gw2lGh1uEpJ+hGIAF728JRhX8tepb1mIvDS3LoV4nZbcFMMsilKbloxSZj2GFotH uFEJjOp9zYhys2AzsfAKRO8P9Qk3iCQOLGsgOqL6EfJANZxEaGM7rDNvY7wsu/LS y3Z9fYjYHcgFHW68lKlmjHdxx/qR+i9Rnuk5UrbnBEI= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx 3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEXjCCA0agAwIBAgIQRL4Mi1AAIbQR0ypoBqmtaTANBgkqhkiG9w0BAQUFADCB kzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xGzAZBgNVBAMTElVUTiAtIERBVEFDb3Jw IFNHQzAeFw05OTA2MjQxODU3MjFaFw0xOTA2MjQxOTA2MzBaMIGTMQswCQYDVQQG EwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYD VQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cu dXNlcnRydXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dDMIIBIjAN BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3+5YEKIrblXEjr8uRgnn4AgPLit6 E5Qbvfa2gI5lBZMAHryv4g+OGQ0SR+ysraP6LnD43m77VkIVni5c7yPeIbkFdicZ D0/Ww5y0vpQZY/KmEQrrU0icvvIpOxboGqBMpsn0GFlowHDyUwDAXlCCpVZvNvlK 4ESGoE1O1kduSUrLZ9emxAW5jh70/P/N5zbgnAVssjMiFdC04MwXwLLA9P4yPykq lXvY8qdOD1R8oQ2AswkDwf9c3V6aPryuvEeKaq5xyh+xKrhfQgUL7EYw0XILyulW bfXv33i+Ybqypa4ETLyorGkVl73v67SMvzX41MPRKA5cOp9wGDMgd8SirwIDAQAB o4GrMIGoMAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRT MtGzz3/64PGgXYVOktKeRR20TzA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3Js LnVzZXJ0cnVzdC5jb20vVVROLURBVEFDb3JwU0dDLmNybDAqBgNVHSUEIzAhBggr BgEFBQcDAQYKKwYBBAGCNwoDAwYJYIZIAYb4QgQBMA0GCSqGSIb3DQEBBQUAA4IB AQAnNZcAiosovcYzMB4p/OL31ZjUQLtgyr+rFywJNn9Q+kHcrpY6CiM+iVnJowft Gzet/Hy+UUla3joKVAgWRcKZsYfNjGjgaQPpxE6YsjuMFrMOoAyYUJuTqXAJyCyj j98C5OBxOvG0I3KgqgHf35g+FFCgMSa9KOlaMCZ1+XtgHI3zzVAmbQQnmt/VDUVH KWss5nbZqSl9Mt3JNjy9rjXxEZ4du5A/EkdOjtd+D2JzHVImOBwYSf0wdJrE5SIv 2MCN7ZF6TACPcn9d2t0bi0Vr591pl6jFVkwPDPafepE39peC4N1xaf92P2BNPM/3 mfnGV/TJVTl4uix5yaaIK/QI -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEojCCA4qgAwIBAgIQRL4Mi1AAJLQR0zYlJWfJiTANBgkqhkiG9w0BAQUFADCB rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVUTi1VU0VSRmlyc3Qt Q2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDAeFw05OTA3MDkxNzI4NTBa Fw0xOTA3MDkxNzM2NThaMIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAV BgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5l dHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UE AxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsjmFpPJ9q0E7YkY3rs3B YHW8OWX5ShpHornMSMxqmNVNNRm5pELlzkniii8efNIxB8dOtINknS4p1aJkxIW9 hVE1eaROaJB7HHqkkqgX8pgV8pPMyaQylbsMTzC9mKALi+VuG6JG+ni8om+rWV6l L8/K2m2qL+usobNqqrcuZzWLeeEeaYji5kbNoKXqvgvOdjp6Dpvq/NonWz1zHyLm SGHGTPNpsaguG7bUMSAsvIKKjqQOpdeJQ/wWWq8dcdcRWdq6hw2v+vPhwvCkxWeM 1tZUOt4KpLoDd7NlyP0e03RiqhjKaJMeoYV+9Udly/hNVyh00jT/MLbu9mIwFIws 6wIDAQABo4G5MIG2MAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud DgQWBBSJgmd9xJ0mcABLtFBIfN49rgRufTBYBgNVHR8EUTBPME2gS6BJhkdodHRw Oi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLVVTRVJGaXJzdC1DbGllbnRBdXRoZW50 aWNhdGlvbmFuZEVtYWlsLmNybDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUH AwQwDQYJKoZIhvcNAQEFBQADggEBALFtYV2mGn98q0rkMPxTbyUkxsrt4jFcKw7u 7mFVbwQ+zznexRtJlOTrIEy05p5QLnLZjfWqo7NK2lYcYJeA3IKirUq9iiv/Cwm0 xtcgBEXkzYABurorbs6q15L+5K/r9CYdFip/bDCVNy8zEqx/3cfREYxRmLLQo5HQ rfafnoOTHh1CuEava2bwm3/q4wMC5QJRwarVNZ1yQAOJujEdxRBoUp7fooXFXAim eOZTT7Hot9MUnpOmw2TjrH5xzbyf6QMbzPvprDHBr3wVdAKZw7JHpsIyYdfHb0gk USeh1YdV8nuPmD0Wnu51tvjQjvLzxq4oW6fw8zYX/MMF08oDSlQ= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCB lzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3Qt SGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgxOTIyWjCBlzELMAkG A1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEe MBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8v d3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdh cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn 0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlIwrthdBKWHTxqctU8EGc6Oe0rE81m65UJ M6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFdtqdt++BxF2uiiPsA3/4a MXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8i4fDidNd oI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqI DsjfPe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9Ksy oUhbAgMBAAGjgbkwgbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYD VR0OBBYEFKFyXyYbKJhDlV0HN9WFlp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0 dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNFUkZpcnN0LUhhcmR3YXJlLmNy bDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUFBwMGBggrBgEF BQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM //bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28Gpgoiskli CE7/yMgUsogWXecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gE CJChicsZUN/KHAG8HQQZexB2lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t 3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kniCrVWFCVH/A7HFe7fRQ5YiuayZSS KqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67nfhmqA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDEgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG 9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNTIyMjM0OFoXDTE5MDYy NTIyMjM0OFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs YXNzIDEgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDYWYJ6ibiWuqYvaG9Y LqdUHAZu9OqNSLwxlBfw8068srg1knaw0KWlAdcAAxIiGQj4/xEjm84H9b9pGib+ TunRf50sQB1ZaG6m+FiwnRqP0z/x3BkGgagO4DrdyFNFCQbmD3DD+kCmDuJWBQ8Y TfwggtFzVXSNdnKgHZ0dwN0/cQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFBoPUn0 LBwGlN+VYH+Wexf+T3GtZMjdd9LvWVXoP+iOBSoh8gfStadS/pyxtuJbdxdA6nLW I8sogTLDAHkY7FkXicnGah5xyf23dKUlRWnFSKsZ4UWKJWsZ7uW7EvV/96aNUcPw nXS3qT6gpf+2SQMT2iLM7XGCK5nPOrf1LXLI -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDIgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG 9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAwMTk1NFoXDTE5MDYy NjAwMTk1NFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs YXNzIDIgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDOOnHK5avIWZJV16vY dA757tn2VUdZZUcOBVXc65g2PFxTXdMwzzjsvUGJ7SVCCSRrCl6zfN1SLUzm1NZ9 WlmpZdRJEy0kTRxQb7XBhVQ7/nHk01xC+YDgkRoKWzk2Z/M/VXwbP7RfZHM047QS v4dk+NoS/zcnwbNDu+97bi5p9wIDAQABMA0GCSqGSIb3DQEBBQUAA4GBADt/UG9v UJSZSWI4OB9L+KXIPqeCgfYrx+jFzug6EILLGACOTb2oWH+heQC1u+mNr0HZDzTu IYEZoDJJKPTEjlbVUjP9UNV+mWwD5MlM/Mtsq2azSiGM5bUMMj4QssxsodyamEwC W/POuZ6lcg5Ktz885hZo+L7tdEy8W9ViH0Pd -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICPDCCAaUCED9pHoGc8JpK83P/uUii5N0wDQYJKoZIhvcNAQEFBQAwXzELMAkG A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz cyAxIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1YmxpYyBQcmlt YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN ADCBiQKBgQDlGb9to1ZhLZlIcfZn3rmN67eehoAKkQ76OCWvRoiC5XOooJskXQ0f zGVuDLDQVoQYh5oGmxChc9+0WDlrbsH2FdWoqD+qEgaNMax/sDTXjzRniAnNFBHi TkVWaR94AoDa3EeRKbs2yWNcxeDXLYd7obcysHswuiovMaruo2fa2wIDAQABMA0G CSqGSIb3DQEBBQUAA4GBAFgVKTk8d6PaXCUDfGD67gmZPCcQcMgMCeazh88K4hiW NWLMv5sneYlfycQJ9M61Hd8qveXbhpxoJeUwfLaJFf5n0a3hUKw8fGJLj7qE1xIV Gx/KXQ/BUpQqEZnae88MNhPVNdwQGVnqlMEAv3WP2fr9dgTbYruQagPZRjXZ+Hxb -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDAjCCAmsCEEzH6qqYPnHTkxD4PTqJkZIwDQYJKoZIhvcNAQEFBQAwgcExCzAJ BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xh c3MgMSBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcy MTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3Jp emVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMB4X DTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVTMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMSBQdWJsaWMg UHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEo YykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5 MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEB AQUAA4GNADCBiQKBgQCq0Lq+Fi24g9TK0g+8djHKlNgdk4xWArzZbxpvUjZudVYK VdPfQ4chEWWKfo+9Id5rMj8bhDSVBZ1BNeuS65bdqlk/AVNtmU/t5eIqWpDBucSm Fc/IReumXY6cPvBkJHalzasab7bYe1FhbqZ/h8jit+U03EGI6glAvnOSPWvndQID AQABMA0GCSqGSIb3DQEBBQUAA4GBAKlPww3HZ74sy9mozS11534Vnjty637rXC0J h9ZrbWB85a7FkCMMXErQr7Fd88e2CtvgFZMN3QO8x3aKtd1Pw5sTdbgBwObJW2ul uIncrKTdcu1OofdPvAbT6shkdHvClUGcZXNY8ZCaPGqxmMnEh7zPRW1F4m4iP/68 DzFc6PLZ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEGjCCAwICEQCLW3VWhFSFCwDPrzhIzrGkMA0GCSqGSIb3DQEBBQUAMIHKMQsw CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT aWduIENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu IENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2E1Lm0+afY8wR4 nN493GwTFtl63SRRZsDHJlkNrAYIwpTRMx/wgzUfbhvI3qpuFU5UJ+/EbRrsC+MO 8ESlV8dAWB6jRx9x7GD2bZTIGDnt/kIYVt/kTEkQeE4BdjVjEjbdZrwBBDajVWjV ojYJrKshJlQGrT/KFOCsyq0GHZXi+J3x4GD/wn91K0zM2v6HmSHquv4+VNfSWXjb PG7PoBMAGrgnoeS+Z5bKoMWznN3JdZ7rMJpfo83ZrngZPyPpXNspva1VyBtUjGP2 6KbqxzcSXKMpHgLZ2x87tNcPVkeBFQRKr4Mn0cVYiMHd9qqnoxjaaKptEVHhv2Vr n5Z20T0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAq2aN17O6x5q25lXQBfGfMY1a qtmqRiYPce2lrVNWYgFHKkTp/j90CxObufRNG7LRX7K20ohcs5/Ny9Sn2WCVhDr4 wTcdYcrnsMXlkdpUpqwxga6X3s0IrLjAl4B/bnKk52kTlWUfxJM8/XmPBNQ+T+r3 ns7NZ3xPZQL/kYVUc8f/NveGLezQXk//EZ9yBta4GvFMDSZl4kSAHsef493oCtrs pSCAaWihT37ha88HQfqDjrw43bAuEbFrskLMmrz5SCJ5ShkPshw+IHTZasO+8ih4 E1Z5T21Q6huwtVexN2ZYI/PcD98Kh8TvhgXVOBRgmaNL3gaWcSzy27YfpO8/7g== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDAzCCAmwCEQC5L2DMiJ+hekYJuFtwbIqvMA0GCSqGSIb3DQEBBQUAMIHBMQsw CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0Ns YXNzIDIgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH MjE6MDgGA1UECxMxKGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9y aXplZCB1c2Ugb25seTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazAe Fw05ODA1MTgwMDAwMDBaFw0yODA4MDEyMzU5NTlaMIHBMQswCQYDVQQGEwJVUzEX MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0NsYXNzIDIgUHVibGlj IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjE6MDgGA1UECxMx KGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s eTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazCBnzANBgkqhkiG9w0B AQEFAAOBjQAwgYkCgYEAp4gBIXQs5xoD8JjhlzwPIQjxnNuX6Zr8wgQGE75fUsjM HiwSViy4AWkszJkfrbCWrnkE8hM5wXuYuggs6MKEEyyqaekJ9MepAqRCwiNPStjw DqL7MWzJ5m+ZJwf15vRMeJ5t60aG+rmGyVTyssSv1EYcWskVMP8NbPUtDm3Of3cC AwEAATANBgkqhkiG9w0BAQUFAAOBgQByLvl/0fFx+8Se9sVeUYpAmLho+Jscg9ji nb3/7aHmZuovCfTK1+qlK5X2JGCGTUQug6XELaDTrnhpb3LabK4I8GOSN+a7xDAX rXfMSTWqz9iP0b63GJZHc2pUIjRkLbYWm1lbtFFZOrMLFPQS32eg9K0yZF6xRnIn jBJ7xUS0rg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEGTCCAwECEGFwy0mMX5hFKeewptlQW3owDQYJKoZIhvcNAQEFBQAwgcoxCzAJ BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVy aVNpZ24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24s IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNp Z24gQ2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 eSAtIEczMB4XDTk5MTAwMTAwMDAwMFoXDTM2MDcxNjIzNTk1OVowgcoxCzAJBgNV BAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNp Z24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24sIElu Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNpZ24g Q2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt IEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArwoNwtUs22e5LeWU J92lvuCwTY+zYVY81nzD9M0+hsuiiOLh2KRpxbXiv8GmR1BeRjmL1Za6tW8UvxDO JxOeBUebMXoT2B/Z0wI3i60sR/COgQanDTAM6/c8DyAd3HJG7qUCyFvDyVZpTMUY wZF7C9UTAJu878NIPkZgIIUq1ZC2zYugzDLdt/1AVbJQHFauzI13TccgTacxdu9o koqQHgiBVrKtaaNS0MscxCM9H5n+TOgWY47GCI72MfbS+uV23bUckqNJzc0BzWjN qWm6o+sdDZykIKbBoMXRRkwXbdKsZj+WjOCE1Db/IlnF+RFgqF8EffIa9iVCYQ/E Srg+iQIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQA0JhU8wI1NQ0kdvekhktdmnLfe xbjQ5F1fdiLAJvmEOjr5jLX77GDx6M4EsMjdpwOPMPOY36TmpDHf0xwLRtxyID+u 7gU8pDM/CzmscHhzS5kr3zDCVLCoO1Wh/hYozUK9dG6A2ydEp85EXdQbkJgNHkKU sQAsBNB0owIFImNjzYO1+8FtYmtpdf1dcEG59b98377BMnMiIYtYgXsVkXq642RI sH/7NiXaldDxJBQX3RiAa0YjOVT1jmIJBB2UkKab5iXiQkWquJCtvgiPqQtCGJTP cjnhsUPgKM+351psE2tJs//jGHyJizNdrDPXp/naOlXJWBD5qu9ats9LS98q -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICPDCCAaUCEDyRMcsf9tAbDpq40ES/Er4wDQYJKoZIhvcNAQEFBQAwXzELMAkG A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G CSqGSIb3DQEBBQUAA4GBABByUqkFFBkyCEHwxWsKzH4PIRnN5GfcX6kb5sroc50i 2JhucwNhkcV8sEVAbkSdjbCxlnRhLQ2pRdKkkirWmnWXbj9T/UWZYB2oK0z5XqcJ 2HUw19JlYD1n1khVdWk/kfVIC0dpImmClr7JyDiGSnoscxlIaU5rfGW/D/xwzoiQ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkG A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G CSqGSIb3DQEBAgUAA4GBALtMEivPLCYATxQT3ab7/AoRhIzzKBxnki98tsX63/Do lbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59AhWM1pF+NEHJwZRDmJXNyc AA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2OmufTqj/ZA1k -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDAjCCAmsCEH3Z/gfPqB63EHln+6eJNMYwDQYJKoZIhvcNAQEFBQAwgcExCzAJ BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xh c3MgMyBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcy MTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3Jp emVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMB4X DTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVTMRcw FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMg UHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEo YykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5 MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEB AQUAA4GNADCBiQKBgQDMXtERXVxp0KvTuWpMmR9ZmDCOFoUgRm1HP9SFIIThbbP4 pO0M8RcPO/mn+SXXwc+EY/J8Y8+iR/LGWzOOZEAEaMGAuWQcRXfH2G71lSk8UOg0 13gfqLptQ5GVj0VXXn7F+8qkBOvqlzdUMG+7AUcyM83cV5tkaWH4mx0ciU9cZwID AQABMA0GCSqGSIb3DQEBBQUAA4GBAFFNzb5cy5gZnBWyATl4Lk0PZ3BwmcYQWpSk U01UbSuvDV1Ai2TT1+7eVmGSX6bEHRBhNtMsJzzoKQm5EWR0zLVznxxIqbxhAe7i F6YM40AIOw7n60RzKprxaZLvcRTDOaxxp5EJb+RxBrO6WVcmeQD2+A2iMzAo1KpY oJ2daZH9 -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQsw CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT aWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu IENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMu6nFL8eB8aHm8b N3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1EUGO+i2t KmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGu kxUccLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBm CC+Vk7+qRy+oRpfwEuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJ Xwzw3sJ2zq/3avL6QaaiMxTJ5Xpj055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWu imi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAERSWwauSCPc/L8my/uRan2Te 2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5fj267Cz3qWhMe DGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC /Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565p F4ErWjfJXir0xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGt TxzhT5yvDwyd93gN2PQ1VoDat20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjEL MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2ln biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y aXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjELMAkG A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp U2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwg SW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2ln biBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8Utpkmw4tXNherJI9/gHm GUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGzrl0Bp3ve fLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUw AwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJ aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYj aHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMW kf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMDA2gAMGUCMGYhDBgmYFo4e1ZC 4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIxAJw9SDkjOVga FRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCB yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjEL MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2ln biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y aXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1 nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbex t0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIz SdhDY2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQG BO+QueQA5N06tRn/Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+ rCpSx4/VBEnkjWNHiDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/ NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8E BAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAH BgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKv MzEzMA0GCSqGSIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzE p6B4Eq1iDkVwZMXnl2YtmAl+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y 5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKEKQsTb47bDN0lAtukixlE0kF6BWlK WE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiCKm0oHw0LxOXnGiYZ 4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vEZV8N hnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEGjCCAwICEQDsoKeLbnVqAc/EfMwvlF7XMA0GCSqGSIb3DQEBBQUAMIHKMQsw CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT aWduIENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu IENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK3LpRFpxlmr8Y+1 GQ9Wzsy1HyDkniYlS+BzZYlZ3tCD5PUPtbut8XzoIfzk6AzufEUiGXaStBO3IFsJ +mGuqPKljYXCKtbeZjbSmwL0qJJgfJxptI8kHtCGUvYynEFYHiK9zUVilQhu0Gbd U6LM8BDcVHOLBKFGMzNcF0C5nk3T875Vg+ixiY5afJqWIpA7iCXy0lOIAgwLePLm NxdLMEYH5IBtptiWLugs+BGzOA1mppvqySNb247i8xOOGlktqgLw7KSHZtzBP/XY ufTsgsbSPZUd5cBPhMnZo0QoBmrXRazwa2rvTl/4EYIeOGM0ZlDUPpNz+jDDZq3/ ky2X7wMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAj/ola09b5KROJ1WrIhVZPMq1 CtRK26vdoV9TxaBXOcLORyu+OshWv8LZJxA6sQU8wHcxuzrTBXttmhwwjIDLk5Mq g6sFUYICABFna/OIYUdfA5PVWw3g8dShMjWFsjrbsIKr0csKvE+MW8VLADsfKoKm fjaF3H48ZwC15DtS4KjrXRX5xm3wrR0OhbepmnMUWluPQSjA1egtTaRezarZ7c7c 2NU8Qh0XwRJdRTjDOPP8hS6DRkiy1yBfkjaP53kPmF6Z6PDQpLv1U70qzlmwr25/ bLvSHgCwIe34QWKCudiyxLtGUPMxxY8BqHTr9Xgn2uf3ZkPznoM+IKrDNWCRzg== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF 9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN /BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz 4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 7M2CYfE45k+XmCpajQ== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBr MQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRl cm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv bW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2WhcNMjIwNjI0MDAxNjEyWjBrMQsw CQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5h dGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1l cmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h 2mCxlCfLF9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4E lpF7sDPwsRROEW+1QK8bRaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdV ZqW1LS7YgFmypw23RuwhY/81q6UCzyr0TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq 299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI/k4+oKsGGelT84ATB+0t vz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzsGHxBvfaL dXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD AgEGMB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUF AAOCAQEAX/FBfXxcCLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcR zCSs00Rsca4BIGsDoo8Ytyk6feUWYFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3 LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pzzkWKsKZJ/0x9nXGIxHYdkFsd 7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBuYQa7FkKMcPcw ++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt 398znM/jra6O1I7mT1GvFpLgXPYHDw== -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIID5TCCAs2gAwIBAgIEOeSXnjANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UEBhMC VVMxFDASBgNVBAoTC1dlbGxzIEZhcmdvMSwwKgYDVQQLEyNXZWxscyBGYXJnbyBD ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEvMC0GA1UEAxMmV2VsbHMgRmFyZ28gUm9v dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDAxMDExMTY0MTI4WhcNMjEwMTE0 MTY0MTI4WjCBgjELMAkGA1UEBhMCVVMxFDASBgNVBAoTC1dlbGxzIEZhcmdvMSww KgYDVQQLEyNXZWxscyBGYXJnbyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEvMC0G A1UEAxMmV2VsbHMgRmFyZ28gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEi MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVqDM7Jvk0/82bfuUER84A4n13 5zHCLielTWi5MbqNQ1mXx3Oqfz1cQJ4F5aHiidlMuD+b+Qy0yGIZLEWukR5zcUHE SxP9cMIlrCL1dQu3U+SlK93OvRw6esP3E48mVJwWa2uv+9iWsWCaSOAlIiR5NM4O JgALTqv9i86C1y8IcGjBqAr5dE8Hq6T54oN+J3N0Prj5OEL8pahbSCOz6+MlsoCu ltQKnMJ4msZoGK43YjdeUXWoWGPAUe5AeH6orxqg4bB4nVCMe+ez/I4jsNtlAHCE AQgAFG5Uhpq6zPk3EPbg3oQtnaSFN9OH4xXQwReQfhkhahKpdv0SAulPIV4XAgMB AAGjYTBfMA8GA1UdEwEB/wQFMAMBAf8wTAYDVR0gBEUwQzBBBgtghkgBhvt7hwcB CzAyMDAGCCsGAQUFBwIBFiRodHRwOi8vd3d3LndlbGxzZmFyZ28uY29tL2NlcnRw b2xpY3kwDQYJKoZIhvcNAQEFBQADggEBANIn3ZwKdyu7IvICtUpKkfnRLb7kuxpo 7w6kAOnu5+/u9vnldKTC2FJYxHT7zmu1Oyl5GFrvm+0fazbuSCUlFLZWohDo7qd/ 0D+j0MNdJu4HzMPBJCGHHt8qElNvQRbn7a6U+oxy+hNH8Dx+rn0ROhPs7fpvcmR7 nX1/Jv16+yWt6j4pf0zjAFcysLPp7VMX2YuyFA4w6OXVE8Zkr8QA1dhYJPz1j+zx x32l2w8n0cbyQIjmH/ZhqPRCyLk306m+LFZ4wnKbWV01QIroTmMatukgalHizqSQ 33ZwmVxwQ023tqcZZE6St8WRPH9IFmV7Fv3L/PvZ1dZPIWU7Sn9Ho/s= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMx IDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxs cyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9v dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcxMjEzMTcwNzU0WhcNMjIxMjE0 MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdl bGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQD DC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+r WxxTkqxtnt3CxC5FlAM1iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjU Dk/41itMpBb570OYj7OeUt9tkTmPOL13i0Nj67eT/DBMHAGTthP796EfvyXhdDcs HqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8bJVhHlfXBIEyg1J55oNj z7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiBK0HmOFaf SZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/Slwxl AgMBAAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqG KGh0dHA6Ly9jcmwucGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0P AQH/BAQDAgHGMB0GA1UdDgQWBBQmlRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0j BIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGBi6SBiDCBhTELMAkGA1UEBhMC VVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNX ZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEB ALkVsUSRzCPIK0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd /ZDJPHV3V3p9+N701NX3leZ0bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pB A4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSljqHyita04pO2t/caaH/+Xc/77szWn k4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+esE2fDbbFwRnzVlhE9 iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJtylv 2G0xffX8oRAHh84vWdw+WNs= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ O+7ETPTsJ3xCwnR8gooJybQDJbw= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIIIDjCCBfagAwIBAgIJAOiOtsn4KhQoMA0GCSqGSIb3DQEBBQUAMIG8MQswCQYD VQQGEwJVUzEQMA4GA1UECBMHSW5kaWFuYTEVMBMGA1UEBxMMSW5kaWFuYXBvbGlz MSgwJgYDVQQKEx9Tb2Z0d2FyZSBpbiB0aGUgUHVibGljIEludGVyZXN0MRMwEQYD VQQLEwpob3N0bWFzdGVyMR4wHAYDVQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkx JTAjBgkqhkiG9w0BCQEWFmhvc3RtYXN0ZXJAc3BpLWluYy5vcmcwHhcNMDgwNTEz MDgwNzU2WhcNMTgwNTExMDgwNzU2WjCBvDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT B0luZGlhbmExFTATBgNVBAcTDEluZGlhbmFwb2xpczEoMCYGA1UEChMfU29mdHdh cmUgaW4gdGhlIFB1YmxpYyBJbnRlcmVzdDETMBEGA1UECxMKaG9zdG1hc3RlcjEe MBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSUwIwYJKoZIhvcNAQkBFhZo b3N0bWFzdGVyQHNwaS1pbmMub3JnMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC CgKCAgEA3DbmR0LCxFF1KYdAw9iOIQbSGE7r7yC9kDyFEBOMKVuUY/b0LfEGQpG5 GcRCaQi/izZF6igFM0lIoCdDkzWKQdh4s/Dvs24t3dHLfer0dSbTPpA67tfnLAS1 fOH1fMVO73e9XKKTM5LOfYFIz2u1IiwIg/3T1c87Lf21SZBb9q1NE8re06adU1Fx Y0b4ShZcmO4tbZoWoXaQ4mBDmdaJ1mwuepiyCwMs43pPx93jzONKao15Uvr0wa8u jyoIyxspgpJyQ7zOiKmqp4pRQ1WFmjcDeJPI8L20QcgHQprLNZd6ioFl3h1UCAHx ZFy3FxpRvB7DWYd2GBaY7r/2Z4GLBjXFS21ZGcfSxki+bhQog0oQnBv1b7ypjvVp /rLBVcznFMn5WxRTUQfqzj3kTygfPGEJ1zPSbqdu1McTCW9rXRTunYkbpWry9vjQ co7qch8vNGopCsUK7BxAhRL3pqXTT63AhYxMfHMgzFMY8bJYTAH1v+pk1Vw5xc5s zFNaVrpBDyXfa1C2x4qgvQLCxTtVpbJkIoRRKFauMe5e+wsWTUYFkYBE7axt8Feo +uthSKDLG7Mfjs3FIXcDhB78rKNDCGOM7fkn77SwXWfWT+3Qiz5dW8mRvZYChD3F TbxCP3T9PF2sXEg2XocxLxhsxGjuoYvJWdAY4wCAs1QnLpnwFVMCAwEAAaOCAg8w ggILMB0GA1UdDgQWBBQ0cdE41xU2g0dr1zdkQjuOjVKdqzCB8QYDVR0jBIHpMIHm gBQ0cdE41xU2g0dr1zdkQjuOjVKdq6GBwqSBvzCBvDELMAkGA1UEBhMCVVMxEDAO BgNVBAgTB0luZGlhbmExFTATBgNVBAcTDEluZGlhbmFwb2xpczEoMCYGA1UEChMf U29mdHdhcmUgaW4gdGhlIFB1YmxpYyBJbnRlcmVzdDETMBEGA1UECxMKaG9zdG1h c3RlcjEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSUwIwYJKoZIhvcN AQkBFhZob3N0bWFzdGVyQHNwaS1pbmMub3JnggkA6I62yfgqFCgwDwYDVR0TAQH/ BAUwAwEB/zARBglghkgBhvhCAQEEBAMCAAcwCQYDVR0SBAIwADAuBglghkgBhvhC AQ0EIRYfU29mdHdhcmUgaW4gdGhlIFB1YmxpYyBJbnRlcmVzdDAwBglghkgBhvhC AQQEIxYhaHR0cHM6Ly9jYS5zcGktaW5jLm9yZy9jYS1jcmwucGVtMDIGCWCGSAGG +EIBAwQlFiNodHRwczovL2NhLnNwaS1pbmMub3JnL2NlcnQtY3JsLnBlbTAhBgNV HREEGjAYgRZob3N0bWFzdGVyQHNwaS1pbmMub3JnMA4GA1UdDwEB/wQEAwIBBjAN BgkqhkiG9w0BAQUFAAOCAgEAtM294LnqsgMrfjLp3nI/yUuCXp3ir1UJogxU6M8Y PCggHam7AwIvUjki+RfPrWeQswN/2BXja367m1YBrzXU2rnHZxeb1NUON7MgQS4M AcRb+WU+wmHo0vBqlXDDxm/VNaSsWXLhid+hoJ0kvSl56WEq2dMeyUakCHhBknIP qxR17QnwovBc78MKYiC3wihmrkwvLo9FYyaW8O4x5otVm6o6+YI5HYg84gd1GuEP sTC8cTLSOv76oYnzQyzWcsR5pxVIBcDYLXIC48s9Fmq6ybgREOJJhcyWR2AFJS7v dVkz9UcZFu/abF8HyKZQth3LZjQl/GaD68W2MEH4RkRiqMEMVObqTFoo5q7Gt/5/ O5aoLu7HaD7dAD0prypjq1/uSSotxdz70cbT0ZdWUoa2lOvUYFG3/B6bzAKb1B+P +UqPti4oOxfMxaYF49LTtcYDyeFIQpvLP+QX4P4NAZUJurgNceQJcHdC2E3hQqlg g9cXiUPS1N2nGLar1CQlh7XU4vwuImm9rWgs/3K1mKoGnOcqarihk3bOsPN/nOHg T7jYhkalMwIsJWE3KpLIrIF0aGOHM3a9BX9e1dUCbb2v/ypaqknsmHlHU5H2DjRa yaXG67Ljxay2oHA1u8hRadDytaIybrw/oDc5fHE2pgXfDBLkFqfF1stjo5VwP+YE o2A= -----END CERTIFICATE----- ================================================ FILE: test/data/sample_data.csv ================================================ Year,StateAbbr,StateDesc,CityName,GeographicLevel,DataSource,Category,UniqueID,Measure,Data_Value_Unit,DataValueTypeID,Data_Value_Type,Data_Value,Low_Confidence_Limit,High_Confidence_Limit,Data_Value_Footnote_Symbol,Data_Value_Footnote,PopulationCount,GeoLocation,CategoryID,MeasureId,CityFIPS,TractFIPS,Short_Question_Text 2015,US,United States,,US,BRFSS,Prevention,59,Current lack of health insurance among adults aged 18–64 Years,%,AgeAdjPrv,Age-adjusted prevalence,15.4,15.1,15.7,,,308745538,,PREVENT,ACCESS2,,,Health Insurance 2015,US,United States,,US,BRFSS,Prevention,59,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,14.8,14.5,15.0,,,308745538,,PREVENT,ACCESS2,,,Health Insurance 2015,US,United States,,US,BRFSS,Health Outcomes,59,Arthritis among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,22.5,22.3,22.7,,,308745538,,HLTHOUT,ARTHRITIS,,,Arthritis 2015,US,United States,,US,BRFSS,Health Outcomes,59,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,24.7,24.5,24.9,,,308745538,,HLTHOUT,ARTHRITIS,,,Arthritis 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Binge drinking among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,17.2,16.9,17.4,,,308745538,,UNHBEH,BINGE,,,Binge Drinking 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.3,16.1,16.5,,,308745538,,UNHBEH,BINGE,,,Binge Drinking 2015,US,United States,,US,BRFSS,Health Outcomes,59,High blood pressure among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,29.4,29.2,29.7,,,308745538,,HLTHOUT,BPHIGH,,,High Blood Pressure 2015,US,United States,,US,BRFSS,Health Outcomes,59,High blood pressure among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.9,31.6,32.2,,,308745538,,HLTHOUT,BPHIGH,,,High Blood Pressure 2015,US,United States,,US,BRFSS,Prevention,59,Taking medicine for high blood pressure control among adults aged >=18 Years with high blood pressure,%,AgeAdjPrv,Age-adjusted prevalence,57.7,57.1,58.4,,,308745538,,PREVENT,BPMED,,,Taking BP Medication 2015,US,United States,,US,BRFSS,Prevention,59,Taking medicine for high blood pressure control among adults aged >=18 Years with high blood pressure,%,CrdPrv,Crude prevalence,77.2,76.8,77.7,,,308745538,,PREVENT,BPMED,,,Taking BP Medication 2015,US,United States,,US,BRFSS,Health Outcomes,59,Cancer (excluding skin cancer) among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,6.0,5.9,6.1,,,308745538,,HLTHOUT,CANCER,,,Cancer (except skin) 2015,US,United States,,US,BRFSS,Health Outcomes,59,Cancer (excluding skin cancer) among adults aged >=18 Years,%,CrdPrv,Crude prevalence,6.6,6.5,6.8,,,308745538,,HLTHOUT,CANCER,,,Cancer (except skin) 2015,US,United States,,US,BRFSS,Health Outcomes,59,Current asthma among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,8.7,8.6,8.9,,,308745538,,HLTHOUT,CASTHMA,,,Current Asthma 2015,US,United States,,US,BRFSS,Health Outcomes,59,Current asthma among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.8,8.6,9.0,,,308745538,,HLTHOUT,CASTHMA,,,Current Asthma 2015,US,United States,,US,BRFSS,Health Outcomes,59,Coronary heart disease among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,5.6,5.5,5.8,,,308745538,,HLTHOUT,CHD,,,Coronary Heart Disease 2015,US,United States,,US,BRFSS,Health Outcomes,59,Coronary heart disease among adults aged >=18 Years,%,CrdPrv,Crude prevalence,6.3,6.2,6.5,,,308745538,,HLTHOUT,CHD,,,Coronary Heart Disease 2015,US,United States,,US,BRFSS,Prevention,59,Visits to doctor for routine checkup within the past Year among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,68.6,68.3,68.9,,,308745538,,PREVENT,CHECKUP,,,Annual Checkup 2015,US,United States,,US,BRFSS,Prevention,59,Visits to doctor for routine checkup within the past Year among adults aged >=18 Years,%,CrdPrv,Crude prevalence,70.0,69.7,70.3,,,308745538,,PREVENT,CHECKUP,,,Annual Checkup 2015,US,United States,,US,BRFSS,Prevention,59,Cholesterol screening among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,75.2,74.9,75.5,,,308745538,,PREVENT,CHOLSCREEN,,,Cholesterol Screening 2015,US,United States,,US,BRFSS,Prevention,59,Cholesterol screening among adults aged >=18 Years,%,CrdPrv,Crude prevalence,77.0,76.7,77.3,,,308745538,,PREVENT,CHOLSCREEN,,,Cholesterol Screening 2014,US,United States,,US,BRFSS,Prevention,59,"Fecal occult blood test, sigmoidoscopy, or colonoscopy among adults aged 50–75 Years",%,AgeAdjPrv,Age-adjusted prevalence,64.0,63.5,64.5,,,308745538,,PREVENT,COLON_SCREEN,,,Colorectal Cancer Screening 2014,US,United States,,US,BRFSS,Prevention,59,"Fecal occult blood test, sigmoidoscopy, or colonoscopy among adults aged 50–75 Years",%,CrdPrv,Crude prevalence,63.7,63.3,64.1,,,308745538,,PREVENT,COLON_SCREEN,,,Colorectal Cancer Screening 2015,US,United States,,US,BRFSS,Health Outcomes,59,Chronic obstructive pulmonary disease among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,5.7,5.6,5.9,,,308745538,,HLTHOUT,COPD,,,COPD 2015,US,United States,,US,BRFSS,Health Outcomes,59,Chronic obstructive pulmonary disease among adults aged >=18 Years,%,CrdPrv,Crude prevalence,6.3,6.2,6.4,,,308745538,,HLTHOUT,COPD,,,COPD 2015,US,United States,,US,BRFSS,Health Outcomes,59,Physical health not good for >=14 days among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,11.5,11.3,11.7,,,308745538,,HLTHOUT,PHLTH,,,Physical Health 2014,US,United States,,US,BRFSS,Prevention,59,"Older adult men aged >=65 Years who are up to date on a core set of clinical preventive services: Flu shot past Year, PPV shot ever, Colorectal cancer screening",%,AgeAdjPrv,Age-adjusted prevalence,32.9,32.1,33.6,,,308745538,,PREVENT,COREM,,,Core preventive services for older men 2014,US,United States,,US,BRFSS,Prevention,59,"Older adult men aged >=65 Years who are up to date on a core set of clinical preventive services: Flu shot past Year, PPV shot ever, Colorectal cancer screening",%,CrdPrv,Crude prevalence,32.3,31.5,33.0,,,308745538,,PREVENT,COREM,,,Core preventive services for older men 2014,US,United States,,US,BRFSS,Prevention,59,"Older adult women aged >=65 Years who are up to date on a core set of clinical preventive services: Flu shot past Year, PPV shot ever, Colorectal cancer screening, and Mammogram past 2 Years",%,AgeAdjPrv,Age-adjusted prevalence,30.7,30.2,31.4,,,308745538,,PREVENT,COREW,,,Core preventive services for older women 2014,US,United States,,US,BRFSS,Prevention,59,"Older adult women aged >=65 Years who are up to date on a core set of clinical preventive services: Flu shot past Year, PPV shot ever, Colorectal cancer screening, and Mammogram past 2 Years",%,CrdPrv,Crude prevalence,30.7,30.1,31.3,,,308745538,,PREVENT,COREW,,,Core preventive services for older women 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Current smoking among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,17.1,16.8,17.3,,,308745538,,UNHBEH,CSMOKING,,,Current Smoking 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Current smoking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.8,16.6,17.0,,,308745538,,UNHBEH,CSMOKING,,,Current Smoking 2014,US,United States,,US,BRFSS,Prevention,59,Visits to dentist or dental clinic among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,64.1,63.8,64.4,,,308745538,,PREVENT,DENTAL,,,Dental Visit 2014,US,United States,,US,BRFSS,Prevention,59,Visits to dentist or dental clinic among adults aged >=18 Years,%,CrdPrv,Crude prevalence,64.4,64.1,64.7,,,308745538,,PREVENT,DENTAL,,,Dental Visit 2015,US,United States,,US,BRFSS,Health Outcomes,59,Diagnosed diabetes among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,9.3,9.2,9.5,,,308745538,,HLTHOUT,DIABETES,,,Diabetes 2015,US,United States,,US,BRFSS,Health Outcomes,59,Diagnosed diabetes among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.4,10.3,10.6,,,308745538,,HLTHOUT,DIABETES,,,Diabetes 2015,US,United States,,US,BRFSS,Health Outcomes,59,High cholesterol among adults aged >=18 Years who have been screened in the past 5 Years,%,AgeAdjPrv,Age-adjusted prevalence,31.1,30.8,31.4,,,308745538,,HLTHOUT,HIGHCHOL,,,High Cholesterol 2015,US,United States,,US,BRFSS,Health Outcomes,59,High cholesterol among adults aged >=18 Years who have been screened in the past 5 Years,%,CrdPrv,Crude prevalence,37.1,36.8,37.4,,,308745538,,HLTHOUT,HIGHCHOL,,,High Cholesterol 2015,US,United States,,US,BRFSS,Health Outcomes,59,Chronic kidney disease among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,2.5,2.4,2.6,,,308745538,,HLTHOUT,KIDNEY,,,Chronic Kidney Disease 2015,US,United States,,US,BRFSS,Health Outcomes,59,Chronic kidney disease among adults aged >=18 Years,%,CrdPrv,Crude prevalence,2.7,2.6,2.8,,,308745538,,HLTHOUT,KIDNEY,,,Chronic Kidney Disease 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,No leisure-time physical activity among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,25.5,25.2,25.8,,,308745538,,UNHBEH,LPA,,,Physical Inactivity 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,No leisure-time physical activity among adults aged >=18 Years,%,CrdPrv,Crude prevalence,25.9,25.6,26.1,,,308745538,,UNHBEH,LPA,,,Physical Inactivity 2014,US,United States,,US,BRFSS,Prevention,59,Mammography use among women aged 50–74 Years,%,AgeAdjPrv,Age-adjusted prevalence,75.5,75.1,75.9,,,308745538,,PREVENT,MAMMOUSE,,,Mammography 2014,US,United States,,US,BRFSS,Prevention,59,Mammography use among women aged 50–74 Years,%,CrdPrv,Crude prevalence,75.8,75.4,76.2,,,308745538,,PREVENT,MAMMOUSE,,,Mammography 2015,US,United States,,US,BRFSS,Health Outcomes,59,Mental health not good for >=14 days among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,11.6,11.4,11.8,,,308745538,,HLTHOUT,MHLTH,,,Mental Health 2015,US,United States,,US,BRFSS,Health Outcomes,59,Mental health not good for >=14 days among adults aged >=18 Years,%,CrdPrv,Crude prevalence,11.4,11.3,11.6,,,308745538,,HLTHOUT,MHLTH,,,Mental Health 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Obesity among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,28.7,28.4,29.0,,,308745538,,UNHBEH,OBESITY,,,Obesity 2015,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Obesity among adults aged >=18 Years,%,CrdPrv,Crude prevalence,28.8,28.6,29.1,,,308745538,,UNHBEH,OBESITY,,,Obesity 2014,US,United States,,US,BRFSS,Prevention,59,Papanicolaou smear use among adult women aged 21–65 Years,%,AgeAdjPrv,Age-adjusted prevalence,81.1,80.6,81.6,,,308745538,,PREVENT,PAPTEST,,,Pap Smear Test 2014,US,United States,,US,BRFSS,Prevention,59,Papanicolaou smear use among adult women aged 21–65 Years,%,CrdPrv,Crude prevalence,81.8,81.3,82.2,,,308745538,,PREVENT,PAPTEST,,,Pap Smear Test 2015,US,United States,,US,BRFSS,Health Outcomes,59,Physical health not good for >=14 days among adults aged >=18 Years,%,CrdPrv,Crude prevalence,12.0,11.8,12.2,,,308745538,,HLTHOUT,PHLTH,,,Physical Health 2014,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Sleeping less than 7 hours among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,35.1,34.8,35.5,,,308745538,,UNHBEH,SLEEP,,,Sleep < 7 hours 2014,US,United States,,US,BRFSS,Unhealthy Behaviors,59,Sleeping less than 7 hours among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.8,34.5,35.1,,,308745538,,UNHBEH,SLEEP,,,Sleep < 7 hours 2015,US,United States,,US,BRFSS,Health Outcomes,59,Stroke among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,2.8,2.7,2.8,,,308745538,,HLTHOUT,STROKE,,,Stroke 2015,US,United States,,US,BRFSS,Health Outcomes,59,Stroke among adults aged >=18 Years,%,CrdPrv,Crude prevalence,3.0,3.0,3.1,,,308745538,,HLTHOUT,STROKE,,,Stroke 2014,US,United States,,US,BRFSS,Health Outcomes,59,All teeth lost among adults aged >=65 Years,%,AgeAdjPrv,Age-adjusted prevalence,15.4,15.0,15.8,,,308745538,,HLTHOUT,TEETHLOST,,,Teeth Loss 2014,US,United States,,US,BRFSS,Health Outcomes,59,All teeth lost among adults aged >=65 Years,%,CrdPrv,Crude prevalence,14.9,14.6,15.3,,,308745538,,HLTHOUT,TEETHLOST,,,Teeth Loss 2015,AL,Alabama,Birmingham,City,BRFSS,Prevention,0107000,Current lack of health insurance among adults aged 18–64 Years,%,AgeAdjPrv,Age-adjusted prevalence,19.8,19.5,20.2,,,212237,"(33.5275663773, -86.7988174678)",PREVENT,ACCESS2,0107000,,Health Insurance 2015,AL,Alabama,Birmingham,City,BRFSS,Prevention,0107000,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,19.6,19.2,20.0,,,212237,"(33.5275663773, -86.7988174678)",PREVENT,ACCESS2,0107000,,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000100,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,23.9,21.2,27.2,,,3042,"(33.5794328326, -86.7228323926)",PREVENT,ACCESS2,0107000,01073000100,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000300,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,28.8,25.4,32.4,,,2735,"(33.5428208686, -86.752433978)",PREVENT,ACCESS2,0107000,01073000300,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000400,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.1,22.6,29.9,,,3338,"(33.5632449633, -86.7640474064)",PREVENT,ACCESS2,0107000,01073000400,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,28.1,24.6,32.0,,,2864,"(33.5442404594, -86.7749130719)",PREVENT,ACCESS2,0107000,01073000500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000700,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,31.8,27.0,36.7,,,2577,"(33.5525406139, -86.8016893706)",PREVENT,ACCESS2,0107000,01073000700,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073000800,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,22.4,19.1,26.1,,,3859,"(33.549697789, -86.8330944744)",PREVENT,ACCESS2,0107000,01073000800,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001100,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,16.8,13.7,20.5,,,5354,"(33.5429143325, -86.8756782852)",PREVENT,ACCESS2,0107000,01073001100,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,24.6,22.2,27.2,,,2876,"(33.5278767706, -86.8604161686)",PREVENT,ACCESS2,0107000,01073001200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001400,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,22.0,18.4,25.7,,,2181,"(33.5261497258, -86.835146606)",PREVENT,ACCESS2,0107000,01073001400,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.3,23.1,29.4,,,3189,"(33.5298727342, -86.8197191685)",PREVENT,ACCESS2,0107000,01073001500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001600,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.8,22.9,30.8,,,3390,"(33.5372993423, -86.8036590482)",PREVENT,ACCESS2,0107000,01073001600,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073001902,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.9,24.1,29.8,,,1894,"(33.5532050997, -86.7429801603)",PREVENT,ACCESS2,0107000,01073001902,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002000,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,24.4,20.8,28.2,,,3885,"(33.5541574106, -86.7167229915)",PREVENT,ACCESS2,0107000,01073002000,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002100,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.5,18.1,25.0,,,3186,"(33.5650015942, -86.7101024766)",PREVENT,ACCESS2,0107000,01073002100,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.7,18.7,25.0,,,2630,"(33.5521301205, -86.7276759508)",PREVENT,ACCESS2,0107000,01073002200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002303,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,27.0,23.7,30.7,,,2936,"(33.5383153207, -86.7270445428)",PREVENT,ACCESS2,0107000,01073002303,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002305,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,9.9,8.2,12.1,,,2952,"(33.5333415976, -86.7479566084)",PREVENT,ACCESS2,0107000,01073002305,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002306,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,9.5,8.1,11.2,,,3257,"(33.5213873564, -86.7490031289)",PREVENT,ACCESS2,0107000,01073002306,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002400,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,25.1,22.4,27.8,,,3629,"(33.5260748309, -86.7830315488)",PREVENT,ACCESS2,0107000,01073002400,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002700,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,20.7,16.8,24.9,,,3992,"(33.5176008419, -86.8106887452)",PREVENT,ACCESS2,0107000,01073002700,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073002900,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,25.7,21.5,29.9,,,2064,"(33.5132498864, -86.83004749)",PREVENT,ACCESS2,0107000,01073002900,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003001,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.4,15.3,22.4,,,3779,"(33.5125158094, -86.8577164946)",PREVENT,ACCESS2,0107000,01073003001,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003002,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.3,21.7,31.3,,,2203,"(33.512258109, -86.8441439907)",PREVENT,ACCESS2,0107000,01073003002,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003100,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,23.2,20.2,26.7,,,3637,"(33.5059655756, -86.8745506086)",PREVENT,ACCESS2,0107000,01073003100,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,28.7,25.0,32.8,,,931,"(33.5094018502, -86.8859081961)",PREVENT,ACCESS2,0107000,01073003200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003300,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,22.2,19.1,25.7,,,947,"(33.5171261108, -86.8913819749)",PREVENT,ACCESS2,0107000,01073003300,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003400,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.8,23.0,30.9,,,2477,"(33.5052229234, -86.9014844656)",PREVENT,ACCESS2,0107000,01073003400,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,22.3,19.1,25.7,,,2780,"(33.5065714011, -86.9195910063)",PREVENT,ACCESS2,0107000,01073003500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003600,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,17.0,14.5,19.6,,,4683,"(33.48476397, -86.8981392947)",PREVENT,ACCESS2,0107000,01073003600,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003700,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.6,19.2,23.9,,,5063,"(33.4969018589, -86.8907729426)",PREVENT,ACCESS2,0107000,01073003700,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003802,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,19.0,16.7,21.6,,,5409,"(33.4785707794, -86.890000907)",PREVENT,ACCESS2,0107000,01073003802,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003803,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,20.9,17.7,24.2,,,4199,"(33.485945214, -86.869692186)",PREVENT,ACCESS2,0107000,01073003803,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073003900,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,29.9,26.9,33.0,,,1783,"(33.4989959327, -86.8647600038)",PREVENT,ACCESS2,0107000,01073003900,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004000,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,25.8,21.4,30.3,,,3772,"(33.4953246015, -86.8516232073)",PREVENT,ACCESS2,0107000,01073004000,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,23.4,20.8,26.1,,,2341,"(33.5007439361, -86.8270720379)",PREVENT,ACCESS2,0107000,01073004200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,22.7,19.3,27.4,,,5003,"(33.5041857556, -86.8033798346)",PREVENT,ACCESS2,0107000,01073004500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004701,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,10.6,8.6,13.4,,,3480,"(33.5075242148, -86.7836675838)",PREVENT,ACCESS2,0107000,01073004701,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004702,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,7.1,6.1,8.7,,,2944,"(33.5119902661, -86.7694550989)",PREVENT,ACCESS2,0107000,01073004702,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004800,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,8.7,7.3,10.3,,,1861,"(33.4989064008, -86.78269914)",PREVENT,ACCESS2,0107000,01073004800,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004901,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,11.0,9.1,13.2,,,1167,"(33.4971595645, -86.7917440668)",PREVENT,ACCESS2,0107000,01073004901,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073004902,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,15.2,12.5,18.5,,,3146,"(33.4935824043, -86.8009294603)",PREVENT,ACCESS2,0107000,01073004902,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005000,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,17.9,15.4,20.7,,,3482,"(33.4866689795, -86.8173262831)",PREVENT,ACCESS2,0107000,01073005000,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005101,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,30.5,26.5,34.4,,,1507,"(33.4945909008, -86.834763936)",PREVENT,ACCESS2,0107000,01073005101,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005103,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,17.5,14.4,20.7,,,2587,"(33.485714885, -86.8327817467)",PREVENT,ACCESS2,0107000,01073005103,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005104,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,24.9,21.3,28.9,,,2881,"(33.4749941816, -86.8335421747)",PREVENT,ACCESS2,0107000,01073005104,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,20.2,16.4,24.2,,,3740,"(33.4806708775, -86.8508671514)",PREVENT,ACCESS2,0107000,01073005200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005302,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,12.8,10.9,15.1,,,3463,"(33.5766456449, -86.6965590316)",PREVENT,ACCESS2,0107000,01073005302,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,26.5,22.9,30.7,,,1824,"(33.5670293898, -86.8005567213)",PREVENT,ACCESS2,0107000,01073005500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005600,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,12.3,10.0,15.0,,,4367,"(33.5200981234, -86.7272063198)",PREVENT,ACCESS2,0107000,01073005600,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005701,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.9,15.7,22.3,,,2372,"(33.4629543329, -86.8898406628)",PREVENT,ACCESS2,0107000,01073005701,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005702,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,19.8,16.4,23.3,,,3413,"(33.4698691385, -86.874290602)",PREVENT,ACCESS2,0107000,01073005702,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005800,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,19.3,16.4,22.3,,,4216,"(33.479062325, -86.8128063089)",PREVENT,ACCESS2,0107000,01073005800,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005903,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,15.9,13.9,18.0,,,4933,"(33.597162309, -86.6766736351)",PREVENT,ACCESS2,0107000,01073005903,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005905,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.4,18.2,24.7,,,5039,"(33.603988456, -86.7008123418)",PREVENT,ACCESS2,0107000,01073005905,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005907,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,12.5,10.3,14.9,,,1975,"(33.6142861501, -86.6691996417)",PREVENT,ACCESS2,0107000,01073005907,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005908,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,20.9,18.1,23.7,,,1621,"(33.6182924432, -86.6801483084)",PREVENT,ACCESS2,0107000,01073005908,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005909,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,14.4,11.8,17.5,,,2524,"(33.611811773, -86.7214221514)",PREVENT,ACCESS2,0107000,01073005909,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073005910,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,14.7,12.6,17.1,,,4612,"(33.6299017499, -86.7194311229)",PREVENT,ACCESS2,0107000,01073005910,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.8,18.2,25.9,,,114,"(33.4363786806, -86.9128923072)",PREVENT,ACCESS2,0107000,01073010500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010701,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.5,14.4,23.6,,,74,"(33.473886155, -86.8146487762)",PREVENT,ACCESS2,0107000,01073010701,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010706,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,13.5,11.0,16.3,,,1528,"(33.4443709442, -86.8405352645)",PREVENT,ACCESS2,0107000,01073010706,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010801,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,5.2,4.4,6.3,,,168,"(33.514097853, -86.7466971362)",PREVENT,ACCESS2,0107000,01073010801,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010802,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,5.0,3.9,6.5,,,172,"(33.4885493477, -86.780843024)",PREVENT,ACCESS2,0107000,01073010802,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010803,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,11.3,9.0,14.0,,,514,"(33.5229093892, -86.7102618642)",PREVENT,ACCESS2,0107000,01073010803,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073010805,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,7.3,5.5,9.9,,,86,"(33.4952792472, -86.6987184974)",PREVENT,ACCESS2,0107000,01073010805,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011104,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,13.6,11.4,16.1,,,1688,"(33.6159436433, -86.6557892507)",PREVENT,ACCESS2,0107000,01073011104,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011107,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,42,"(33.5804845249, -86.6301110961)",PREVENT,ACCESS2,0107000,01073011107,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011108,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,9,"(33.6050742596, -86.6316729386)",PREVENT,ACCESS2,0107000,01073011108,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011207,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,17.7,15.1,20.6,,,815,"(33.6718848706, -86.6772510465)",PREVENT,ACCESS2,0107000,01073011207,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011209,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,20.2,17.2,24.2,,,1062,"(33.6557189992, -86.7050698349)",PREVENT,ACCESS2,0107000,01073011209,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011210,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.5,17.0,26.7,,,1385,"(33.6641893755, -86.6956170686)",PREVENT,ACCESS2,0107000,01073011210,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011803,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.1,15.4,21.3,,,928,"(33.6252575173, -86.6998610409)",PREVENT,ACCESS2,0107000,01073011803,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011804,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.3,15.2,21.9,,,1157,"(33.6474916175, -86.7042974424)",PREVENT,ACCESS2,0107000,01073011804,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011901,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,6,"(33.6355414646, -86.736946691)",PREVENT,ACCESS2,0107000,01073011901,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073011904,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,14.4,12.1,16.8,,,1915,"(33.593140185, -86.7357930541)",PREVENT,ACCESS2,0107000,01073011904,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012001,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,14.5,12.5,16.7,,,304,"(33.5919486112, -86.864384068)",PREVENT,ACCESS2,0107000,01073012001,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012002,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,44,"(33.5859234197, -86.8357007188)",PREVENT,ACCESS2,0107000,01073012002,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012200,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,23,"(33.5967441904, -87.0879396857)",PREVENT,ACCESS2,0107000,01073012200,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012302,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,12.7,10.6,15.2,,,144,"(33.5542816352, -87.0544691416)",PREVENT,ACCESS2,0107000,01073012302,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012305,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,12.5,10.2,15.1,,,403,"(33.4695358064, -86.96831739)",PREVENT,ACCESS2,0107000,01073012305,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012401,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,11.4,8.9,14.2,,,1066,"(33.5571951048, -86.8777935049)",PREVENT,ACCESS2,0107000,01073012401,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012402,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,16.7,14.6,19.0,,,418,"(33.549984172, -86.8994543327)",PREVENT,ACCESS2,0107000,01073012402,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012500,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.0,17.6,24.4,,,410,"(33.529160486, -86.9346476445)",PREVENT,ACCESS2,0107000,01073012500,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012602,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,17.5,15.7,19.6,,,371,"(33.570164674, -86.666430582)",PREVENT,ACCESS2,0107000,01073012602,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012701,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,44,"(33.5484078071, -86.6323773455)",PREVENT,ACCESS2,0107000,01073012701,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012703,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,11.3,8.6,14.9,,,498,"(33.4681180943, -86.6671888213)",PREVENT,ACCESS2,0107000,01073012703,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012704,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,8.9,6.8,11.5,,,113,"(33.5034195908, -86.6180983403)",PREVENT,ACCESS2,0107000,01073012704,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012803,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,8.6,6.7,11.2,,,1261,"(33.4439425865, -86.7212936938)",PREVENT,ACCESS2,0107000,01073012803,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073012910,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,9,"(33.4345805042, -86.7263292059)",PREVENT,ACCESS2,0107000,01073012910,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073013002,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.3,17.1,25.6,,,1514,"(33.46604181, -86.8567287797)",PREVENT,ACCESS2,0107000,01073013002,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073013100,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,21.8,18.8,24.9,,,4424,"(33.44880214, -86.8878401579)",PREVENT,ACCESS2,0107000,01073013100,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073013300,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,23.5,19.5,27.5,,,1782,"(33.4396443569, -86.9248768665)",PREVENT,ACCESS2,0107000,01073013300,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073013901,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,18.0,14.8,21.7,,,952,"(33.4729384906, -86.9547337648)",PREVENT,ACCESS2,0107000,01073013901,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073014302,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,10.0,8.3,12.1,,,2778,"(33.4244658829, -86.8841474217)",PREVENT,ACCESS2,0107000,01073014302,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01073014413,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,7.6,5.9,9.8,,,397,"(33.4226593117, -86.8508620751)",PREVENT,ACCESS2,0107000,01073014413,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01117030213,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,9.3,7.7,11.4,,,644,"(33.4395975193, -86.6735959359)",PREVENT,ACCESS2,0107000,01117030213,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01117030217,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,16,"(33.4556995763, -86.6520208639)",PREVENT,ACCESS2,0107000,01117030217,Health Insurance 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Prevention,0107000-01117030303,Current lack of health insurance among adults aged 18–64 Years,%,CrdPrv,Crude prevalence,9.9,8.1,12.0,,,968,"(33.4258661239, -86.713819356)",PREVENT,ACCESS2,0107000,01117030303,Health Insurance 2015,AL,Alabama,Birmingham,City,BRFSS,Health Outcomes,0107000,Arthritis among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,31.0,30.8,31.1,,,212237,"(33.5275663773, -86.7988174678)",HLTHOUT,ARTHRITIS,0107000,,Arthritis 2015,AL,Alabama,Birmingham,City,BRFSS,Health Outcomes,0107000,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,30.9,30.8,31.1,,,212237,"(33.5275663773, -86.7988174678)",HLTHOUT,ARTHRITIS,0107000,,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000100,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.5,31.5,33.6,,,3042,"(33.5794328326, -86.7228323926)",HLTHOUT,ARTHRITIS,0107000,01073000100,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000300,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.3,30.0,32.4,,,2735,"(33.5428208686, -86.752433978)",HLTHOUT,ARTHRITIS,0107000,01073000300,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000400,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.6,33.2,35.9,,,3338,"(33.5632449633, -86.7640474064)",HLTHOUT,ARTHRITIS,0107000,01073000400,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.8,36.3,39.2,,,2864,"(33.5442404594, -86.7749130719)",HLTHOUT,ARTHRITIS,0107000,01073000500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000700,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,38.5,37.1,39.9,,,2577,"(33.5525406139, -86.8016893706)",HLTHOUT,ARTHRITIS,0107000,01073000700,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073000800,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,38.0,36.5,39.3,,,3859,"(33.549697789, -86.8330944744)",HLTHOUT,ARTHRITIS,0107000,01073000800,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001100,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.0,32.4,35.5,,,5354,"(33.5429143325, -86.8756782852)",HLTHOUT,ARTHRITIS,0107000,01073001100,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.5,35.4,37.6,,,2876,"(33.5278767706, -86.8604161686)",HLTHOUT,ARTHRITIS,0107000,01073001200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001400,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.1,35.6,38.6,,,2181,"(33.5261497258, -86.835146606)",HLTHOUT,ARTHRITIS,0107000,01073001400,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,35.2,34.0,36.4,,,3189,"(33.5298727342, -86.8197191685)",HLTHOUT,ARTHRITIS,0107000,01073001500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001600,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,39.9,38.4,41.3,,,3390,"(33.5372993423, -86.8036590482)",HLTHOUT,ARTHRITIS,0107000,01073001600,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073001902,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,35.1,34.0,36.1,,,1894,"(33.5532050997, -86.7429801603)",HLTHOUT,ARTHRITIS,0107000,01073001902,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002000,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.3,34.9,37.7,,,3885,"(33.5541574106, -86.7167229915)",HLTHOUT,ARTHRITIS,0107000,01073002000,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002100,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,33.1,31.8,34.3,,,3186,"(33.5650015942, -86.7101024766)",HLTHOUT,ARTHRITIS,0107000,01073002100,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.4,31.2,33.6,,,2630,"(33.5521301205, -86.7276759508)",HLTHOUT,ARTHRITIS,0107000,01073002200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002303,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,33.4,32.2,34.6,,,2936,"(33.5383153207, -86.7270445428)",HLTHOUT,ARTHRITIS,0107000,01073002303,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002305,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,22.3,21.3,23.3,,,2952,"(33.5333415976, -86.7479566084)",HLTHOUT,ARTHRITIS,0107000,01073002305,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002306,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,26.9,25.9,27.9,,,3257,"(33.5213873564, -86.7490031289)",HLTHOUT,ARTHRITIS,0107000,01073002306,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002400,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.0,30.0,31.9,,,3629,"(33.5260748309, -86.7830315488)",HLTHOUT,ARTHRITIS,0107000,01073002400,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002700,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,27.2,25.9,28.5,,,3992,"(33.5176008419, -86.8106887452)",HLTHOUT,ARTHRITIS,0107000,01073002700,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073002900,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,38.7,37.0,40.3,,,2064,"(33.5132498864, -86.83004749)",HLTHOUT,ARTHRITIS,0107000,01073002900,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003001,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,24.3,23.6,25.0,,,3779,"(33.5125158094, -86.8577164946)",HLTHOUT,ARTHRITIS,0107000,01073003001,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003002,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,40.9,39.1,42.7,,,2203,"(33.512258109, -86.8441439907)",HLTHOUT,ARTHRITIS,0107000,01073003002,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003100,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.1,32.7,35.4,,,3637,"(33.5059655756, -86.8745506086)",HLTHOUT,ARTHRITIS,0107000,01073003100,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,39.0,37.6,40.3,,,931,"(33.5094018502, -86.8859081961)",HLTHOUT,ARTHRITIS,0107000,01073003200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003300,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,38.6,37.3,39.9,,,947,"(33.5171261108, -86.8913819749)",HLTHOUT,ARTHRITIS,0107000,01073003300,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003400,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.3,34.9,37.7,,,2477,"(33.5052229234, -86.9014844656)",HLTHOUT,ARTHRITIS,0107000,01073003400,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.8,31.5,34.0,,,2780,"(33.5065714011, -86.9195910063)",HLTHOUT,ARTHRITIS,0107000,01073003500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003600,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,33.4,32.1,34.7,,,4683,"(33.48476397, -86.8981392947)",HLTHOUT,ARTHRITIS,0107000,01073003600,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003700,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.2,30.1,32.1,,,5063,"(33.4969018589, -86.8907729426)",HLTHOUT,ARTHRITIS,0107000,01073003700,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003802,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.1,31.0,33.2,,,5409,"(33.4785707794, -86.890000907)",HLTHOUT,ARTHRITIS,0107000,01073003802,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003803,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.0,34.5,37.3,,,4199,"(33.485945214, -86.869692186)",HLTHOUT,ARTHRITIS,0107000,01073003803,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073003900,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.9,31.8,33.9,,,1783,"(33.4989959327, -86.8647600038)",HLTHOUT,ARTHRITIS,0107000,01073003900,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004000,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.8,36.4,39.3,,,3772,"(33.4953246015, -86.8516232073)",HLTHOUT,ARTHRITIS,0107000,01073004000,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.6,35.5,37.7,,,2341,"(33.5007439361, -86.8270720379)",HLTHOUT,ARTHRITIS,0107000,01073004200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,15.1,14.4,15.8,,,5003,"(33.5041857556, -86.8033798346)",HLTHOUT,ARTHRITIS,0107000,01073004500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004701,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,23.7,22.5,24.9,,,3480,"(33.5075242148, -86.7836675838)",HLTHOUT,ARTHRITIS,0107000,01073004701,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004702,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,27.0,25.9,28.1,,,2944,"(33.5119902661, -86.7694550989)",HLTHOUT,ARTHRITIS,0107000,01073004702,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004800,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,30.1,29.0,31.2,,,1861,"(33.4989064008, -86.78269914)",HLTHOUT,ARTHRITIS,0107000,01073004800,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004901,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,22.1,21.2,23.0,,,1167,"(33.4971595645, -86.7917440668)",HLTHOUT,ARTHRITIS,0107000,01073004901,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073004902,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,18.4,17.5,19.4,,,3146,"(33.4935824043, -86.8009294603)",HLTHOUT,ARTHRITIS,0107000,01073004902,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005000,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,19.6,18.7,20.4,,,3482,"(33.4866689795, -86.8173262831)",HLTHOUT,ARTHRITIS,0107000,01073005000,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005101,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.6,35.3,37.8,,,1507,"(33.4945909008, -86.834763936)",HLTHOUT,ARTHRITIS,0107000,01073005101,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005103,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,40.1,38.6,41.7,,,2587,"(33.485714885, -86.8327817467)",HLTHOUT,ARTHRITIS,0107000,01073005103,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005104,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,18.9,18.0,19.8,,,2881,"(33.4749941816, -86.8335421747)",HLTHOUT,ARTHRITIS,0107000,01073005104,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.9,36.1,39.7,,,3740,"(33.4806708775, -86.8508671514)",HLTHOUT,ARTHRITIS,0107000,01073005200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005302,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,33.2,31.8,34.5,,,3463,"(33.5766456449, -86.6965590316)",HLTHOUT,ARTHRITIS,0107000,01073005302,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,36.7,35.4,37.9,,,1824,"(33.5670293898, -86.8005567213)",HLTHOUT,ARTHRITIS,0107000,01073005500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005600,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.8,30.3,33.2,,,4367,"(33.5200981234, -86.7272063198)",HLTHOUT,ARTHRITIS,0107000,01073005600,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005701,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,35.8,34.1,37.3,,,2372,"(33.4629543329, -86.8898406628)",HLTHOUT,ARTHRITIS,0107000,01073005701,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005702,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.8,36.0,39.3,,,3413,"(33.4698691385, -86.874290602)",HLTHOUT,ARTHRITIS,0107000,01073005702,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005800,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,18.4,17.7,19.1,,,4216,"(33.479062325, -86.8128063089)",HLTHOUT,ARTHRITIS,0107000,01073005800,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005903,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.2,31.1,33.3,,,4933,"(33.597162309, -86.6766736351)",HLTHOUT,ARTHRITIS,0107000,01073005903,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005905,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.2,32.9,35.4,,,5039,"(33.603988456, -86.7008123418)",HLTHOUT,ARTHRITIS,0107000,01073005905,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005907,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,30.1,28.9,31.3,,,1975,"(33.6142861501, -86.6691996417)",HLTHOUT,ARTHRITIS,0107000,01073005907,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005908,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.5,31.5,33.5,,,1621,"(33.6182924432, -86.6801483084)",HLTHOUT,ARTHRITIS,0107000,01073005908,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005909,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,28.0,26.5,29.4,,,2524,"(33.611811773, -86.7214221514)",HLTHOUT,ARTHRITIS,0107000,01073005909,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073005910,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,28.0,26.8,29.1,,,4612,"(33.6299017499, -86.7194311229)",HLTHOUT,ARTHRITIS,0107000,01073005910,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,41.3,39.4,43.1,,,114,"(33.4363786806, -86.9128923072)",HLTHOUT,ARTHRITIS,0107000,01073010500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010701,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,15.1,14.0,16.3,,,74,"(33.473886155, -86.8146487762)",HLTHOUT,ARTHRITIS,0107000,01073010701,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010706,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,15.3,14.6,16.0,,,1528,"(33.4443709442, -86.8405352645)",HLTHOUT,ARTHRITIS,0107000,01073010706,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010801,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,24.9,23.9,26.2,,,168,"(33.514097853, -86.7466971362)",HLTHOUT,ARTHRITIS,0107000,01073010801,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010802,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,33.2,31.7,35.0,,,172,"(33.4885493477, -86.780843024)",HLTHOUT,ARTHRITIS,0107000,01073010802,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010803,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,23.8,22.6,25.0,,,514,"(33.5229093892, -86.7102618642)",HLTHOUT,ARTHRITIS,0107000,01073010803,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073010805,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,32.0,30.1,34.0,,,86,"(33.4952792472, -86.6987184974)",HLTHOUT,ARTHRITIS,0107000,01073010805,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011104,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,29.8,28.5,31.1,,,1688,"(33.6159436433, -86.6557892507)",HLTHOUT,ARTHRITIS,0107000,01073011104,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011107,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,42,"(33.5804845249, -86.6301110961)",HLTHOUT,ARTHRITIS,0107000,01073011107,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011108,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,9,"(33.6050742596, -86.6316729386)",HLTHOUT,ARTHRITIS,0107000,01073011108,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011207,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,25.3,24.3,26.2,,,815,"(33.6718848706, -86.6772510465)",HLTHOUT,ARTHRITIS,0107000,01073011207,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011209,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,27.2,26.1,28.3,,,1062,"(33.6557189992, -86.7050698349)",HLTHOUT,ARTHRITIS,0107000,01073011209,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011210,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,23.8,22.3,25.3,,,1385,"(33.6641893755, -86.6956170686)",HLTHOUT,ARTHRITIS,0107000,01073011210,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011803,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,28.2,27.0,29.4,,,928,"(33.6252575173, -86.6998610409)",HLTHOUT,ARTHRITIS,0107000,01073011803,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011804,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,25.8,24.6,27.0,,,1157,"(33.6474916175, -86.7042974424)",HLTHOUT,ARTHRITIS,0107000,01073011804,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011901,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,6,"(33.6355414646, -86.736946691)",HLTHOUT,ARTHRITIS,0107000,01073011901,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073011904,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,34.8,33.3,36.3,,,1915,"(33.593140185, -86.7357930541)",HLTHOUT,ARTHRITIS,0107000,01073011904,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012001,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,44.8,42.9,46.6,,,304,"(33.5919486112, -86.864384068)",HLTHOUT,ARTHRITIS,0107000,01073012001,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012002,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,44,"(33.5859234197, -86.8357007188)",HLTHOUT,ARTHRITIS,0107000,01073012002,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012200,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,23,"(33.5967441904, -87.0879396857)",HLTHOUT,ARTHRITIS,0107000,01073012200,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012302,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,26.3,25.2,27.5,,,144,"(33.5542816352, -87.0544691416)",HLTHOUT,ARTHRITIS,0107000,01073012302,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012305,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,30.5,28.6,32.2,,,403,"(33.4695358064, -86.96831739)",HLTHOUT,ARTHRITIS,0107000,01073012305,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012401,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,27.4,25.6,29.4,,,1066,"(33.5571951048, -86.8777935049)",HLTHOUT,ARTHRITIS,0107000,01073012401,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012402,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.9,30.8,33.0,,,418,"(33.549984172, -86.8994543327)",HLTHOUT,ARTHRITIS,0107000,01073012402,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012500,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,37.9,36.5,39.4,,,410,"(33.529160486, -86.9346476445)",HLTHOUT,ARTHRITIS,0107000,01073012500,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012602,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,35.4,34.5,36.3,,,371,"(33.570164674, -86.666430582)",HLTHOUT,ARTHRITIS,0107000,01073012602,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012701,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,44,"(33.5484078071, -86.6323773455)",HLTHOUT,ARTHRITIS,0107000,01073012701,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012703,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,14.8,13.8,15.9,,,498,"(33.4681180943, -86.6671888213)",HLTHOUT,ARTHRITIS,0107000,01073012703,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012704,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,27.0,25.2,29.0,,,113,"(33.5034195908, -86.6180983403)",HLTHOUT,ARTHRITIS,0107000,01073012704,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012803,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,11.9,11.1,12.7,,,1261,"(33.4439425865, -86.7212936938)",HLTHOUT,ARTHRITIS,0107000,01073012803,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073012910,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,9,"(33.4345805042, -86.7263292059)",HLTHOUT,ARTHRITIS,0107000,01073012910,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073013002,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,41.0,39.1,42.9,,,1514,"(33.46604181, -86.8567287797)",HLTHOUT,ARTHRITIS,0107000,01073013002,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073013100,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,38.7,37.5,39.9,,,4424,"(33.44880214, -86.8878401579)",HLTHOUT,ARTHRITIS,0107000,01073013100,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073013300,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,39.2,37.6,40.7,,,1782,"(33.4396443569, -86.9248768665)",HLTHOUT,ARTHRITIS,0107000,01073013300,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073013901,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,35.0,33.4,36.6,,,952,"(33.4729384906, -86.9547337648)",HLTHOUT,ARTHRITIS,0107000,01073013901,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073014302,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,19.0,18.1,19.8,,,2778,"(33.4244658829, -86.8841474217)",HLTHOUT,ARTHRITIS,0107000,01073014302,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01073014413,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,17.7,16.9,18.6,,,397,"(33.4226593117, -86.8508620751)",HLTHOUT,ARTHRITIS,0107000,01073014413,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01117030213,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,20.3,19.1,21.5,,,644,"(33.4395975193, -86.6735959359)",HLTHOUT,ARTHRITIS,0107000,01117030213,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01117030217,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,,,,*,Estimates suppressed for population less than 50,16,"(33.4556995763, -86.6520208639)",HLTHOUT,ARTHRITIS,0107000,01117030217,Arthritis 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Health Outcomes,0107000-01117030303,Arthritis among adults aged >=18 Years,%,CrdPrv,Crude prevalence,12.8,12.1,13.6,,,968,"(33.4258661239, -86.713819356)",HLTHOUT,ARTHRITIS,0107000,01117030303,Arthritis 2015,AL,Alabama,Birmingham,City,BRFSS,Unhealthy Behaviors,0107000,Binge drinking among adults aged >=18 Years,%,AgeAdjPrv,Age-adjusted prevalence,11.2,11.1,11.3,,,212237,"(33.5275663773, -86.7988174678)",UNHBEH,BINGE,0107000,,Binge Drinking 2015,AL,Alabama,Birmingham,City,BRFSS,Unhealthy Behaviors,0107000,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,11.3,11.3,11.4,,,212237,"(33.5275663773, -86.7988174678)",UNHBEH,BINGE,0107000,,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000100,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.1,9.7,10.5,,,3042,"(33.5794328326, -86.7228323926)",UNHBEH,BINGE,0107000,01073000100,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000300,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.8,10.3,11.2,,,2735,"(33.5428208686, -86.752433978)",UNHBEH,BINGE,0107000,01073000300,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000400,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.5,9.0,10.0,,,3338,"(33.5632449633, -86.7640474064)",UNHBEH,BINGE,0107000,01073000400,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000500,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.6,8.1,9.0,,,2864,"(33.5442404594, -86.7749130719)",UNHBEH,BINGE,0107000,01073000500,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000700,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,7.4,6.9,7.9,,,2577,"(33.5525406139, -86.8016893706)",UNHBEH,BINGE,0107000,01073000700,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073000800,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.9,8.5,9.3,,,3859,"(33.549697789, -86.8330944744)",UNHBEH,BINGE,0107000,01073000800,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001100,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.6,9.2,10.1,,,5354,"(33.5429143325, -86.8756782852)",UNHBEH,BINGE,0107000,01073001100,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001200,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.4,9.1,9.7,,,2876,"(33.5278767706, -86.8604161686)",UNHBEH,BINGE,0107000,01073001200,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001400,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.9,8.5,9.3,,,2181,"(33.5261497258, -86.835146606)",UNHBEH,BINGE,0107000,01073001400,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001500,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.4,9.1,9.8,,,3189,"(33.5298727342, -86.8197191685)",UNHBEH,BINGE,0107000,01073001500,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001600,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.2,7.7,8.6,,,3390,"(33.5372993423, -86.8036590482)",UNHBEH,BINGE,0107000,01073001600,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073001902,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.3,8.9,9.8,,,1894,"(33.5532050997, -86.7429801603)",UNHBEH,BINGE,0107000,01073001902,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002000,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.1,8.7,9.6,,,3885,"(33.5541574106, -86.7167229915)",UNHBEH,BINGE,0107000,01073002000,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002100,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.0,9.6,10.6,,,3186,"(33.5650015942, -86.7101024766)",UNHBEH,BINGE,0107000,01073002100,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002200,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.1,9.7,10.6,,,2630,"(33.5521301205, -86.7276759508)",UNHBEH,BINGE,0107000,01073002200,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002303,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.9,8.5,9.4,,,2936,"(33.5383153207, -86.7270445428)",UNHBEH,BINGE,0107000,01073002303,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002305,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.3,15.8,16.7,,,2952,"(33.5333415976, -86.7479566084)",UNHBEH,BINGE,0107000,01073002305,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002306,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,15.6,15.2,16.1,,,3257,"(33.5213873564, -86.7490031289)",UNHBEH,BINGE,0107000,01073002306,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002400,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,11.1,10.8,11.5,,,3629,"(33.5260748309, -86.7830315488)",UNHBEH,BINGE,0107000,01073002400,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002700,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,13.6,13.0,14.2,,,3992,"(33.5176008419, -86.8106887452)",UNHBEH,BINGE,0107000,01073002700,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002900,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.3,7.8,8.8,,,2064,"(33.5132498864, -86.83004749)",UNHBEH,BINGE,0107000,01073002900,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003001,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,14.3,13.3,15.3,,,3779,"(33.5125158094, -86.8577164946)",UNHBEH,BINGE,0107000,01073003001,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003002,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,7.4,7.0,7.8,,,2203,"(33.512258109, -86.8441439907)",UNHBEH,BINGE,0107000,01073003002,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003100,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.5,9.1,10.0,,,3637,"(33.5059655756, -86.8745506086)",UNHBEH,BINGE,0107000,01073003100,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003200,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,7.6,7.3,8.0,,,931,"(33.5094018502, -86.8859081961)",UNHBEH,BINGE,0107000,01073003200,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003300,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.4,8.0,8.9,,,947,"(33.5171261108, -86.8913819749)",UNHBEH,BINGE,0107000,01073003300,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073002305,Obesity among adults aged >=18 Years,%,CrdPrv,Crude prevalence,31.7,30.4,33.0,,,2952,"(33.5333415976, -86.7479566084)",UNHBEH,OBESITY,0107000,01073002305,Obesity 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003400,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.8,8.3,9.3,,,2477,"(33.5052229234, -86.9014844656)",UNHBEH,BINGE,0107000,01073003400,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003500,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.0,9.5,10.5,,,2780,"(33.5065714011, -86.9195910063)",UNHBEH,BINGE,0107000,01073003500,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003600,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.9,9.4,10.3,,,4683,"(33.48476397, -86.8981392947)",UNHBEH,BINGE,0107000,01073003600,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003700,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.3,9.9,10.7,,,5063,"(33.4969018589, -86.8907729426)",UNHBEH,BINGE,0107000,01073003700,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003802,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,10.3,9.9,10.7,,,5409,"(33.4785707794, -86.890000907)",UNHBEH,BINGE,0107000,01073003802,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003803,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.2,8.7,9.7,,,4199,"(33.485945214, -86.869692186)",UNHBEH,BINGE,0107000,01073003803,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073003900,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.5,9.1,9.8,,,1783,"(33.4989959327, -86.8647600038)",UNHBEH,BINGE,0107000,01073003900,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004000,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,8.5,8.0,9.0,,,3772,"(33.4953246015, -86.8516232073)",UNHBEH,BINGE,0107000,01073004000,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004200,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,9.1,8.8,9.4,,,2341,"(33.5007439361, -86.8270720379)",UNHBEH,BINGE,0107000,01073004200,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004500,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,13.8,12.9,14.8,,,5003,"(33.5041857556, -86.8033798346)",UNHBEH,BINGE,0107000,01073004500,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004701,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.4,15.7,17.2,,,3480,"(33.5075242148, -86.7836675838)",UNHBEH,BINGE,0107000,01073004701,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004702,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,15.3,14.9,15.7,,,2944,"(33.5119902661, -86.7694550989)",UNHBEH,BINGE,0107000,01073004702,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004800,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,14.1,13.7,14.5,,,1861,"(33.4989064008, -86.78269914)",UNHBEH,BINGE,0107000,01073004800,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004901,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,17.0,16.4,17.7,,,1167,"(33.4971595645, -86.7917440668)",UNHBEH,BINGE,0107000,01073004901,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073004902,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.3,15.6,17.1,,,3146,"(33.4935824043, -86.8009294603)",UNHBEH,BINGE,0107000,01073004902,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073005000,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,16.1,15.6,16.7,,,3482,"(33.4866689795, -86.8173262831)",UNHBEH,BINGE,0107000,01073005000,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073005101,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,7.9,7.5,8.3,,,1507,"(33.4945909008, -86.834763936)",UNHBEH,BINGE,0107000,01073005101,Binge Drinking 2015,AL,Alabama,Birmingham,Census Tract,BRFSS,Unhealthy Behaviors,0107000-01073005103,Binge drinking among adults aged >=18 Years,%,CrdPrv,Crude prevalence,7.7,7.4,8.0,,,2587,"(33.485714885, -86.8327817467)",UNHBEH,BINGE,0107000,01073005103,Binge Drinking ================================================ FILE: test/external/gtest/gtest-all.cc ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google C++ Testing and Mocking Framework (Google Test) // // Sometimes it's desirable to build Google Test by compiling a single file. // This file serves this purpose. // This line ensures that gtest.h can be compiled on its own, even // when it's fused. #include "gtest/gtest.h" // The following lines pull in the real gtest *.cc files. // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Utilities for testing Google Test itself and code that uses Google Test // (e.g. frameworks built on top of Google Test). // GOOGLETEST_CM0004 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ #define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // This helper class can be used to mock out Google Test failure reporting // so that we can test Google Test or code that builds on Google Test. // // An object of this class appends a TestPartResult object to the // TestPartResultArray object given in the constructor whenever a Google Test // failure is reported. It can either intercept only failures that are // generated in the same thread that created this object or it can intercept // all generated failures. The scope of this mock object can be controlled with // the second argument to the two arguments constructor. class GTEST_API_ ScopedFakeTestPartResultReporter : public TestPartResultReporterInterface { public: // The two possible mocking modes of this object. enum InterceptMode { INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. INTERCEPT_ALL_THREADS // Intercepts all failures. }; // The c'tor sets this object as the test part result reporter used // by Google Test. The 'result' parameter specifies where to report the // results. This reporter will only catch failures generated in the current // thread. DEPRECATED explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); // Same as above, but you can choose the interception scope of this object. ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, TestPartResultArray* result); // The d'tor restores the previous test part result reporter. virtual ~ScopedFakeTestPartResultReporter(); // Appends the TestPartResult object to the TestPartResultArray // received in the constructor. // // This method is from the TestPartResultReporterInterface // interface. virtual void ReportTestPartResult(const TestPartResult& result); private: void Init(); const InterceptMode intercept_mode_; TestPartResultReporterInterface* old_reporter_; TestPartResultArray* const result_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); }; namespace internal { // A helper class for implementing EXPECT_FATAL_FAILURE() and // EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given // TestPartResultArray contains exactly one failure that has the given // type and contains the given substring. If that's not the case, a // non-fatal failure will be generated. class GTEST_API_ SingleFailureChecker { public: // The constructor remembers the arguments. SingleFailureChecker(const TestPartResultArray* results, TestPartResult::Type type, const std::string& substr); ~SingleFailureChecker(); private: const TestPartResultArray* const results_; const TestPartResult::Type type_; const std::string substr_; GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); }; } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // A set of macros for testing Google Test assertions or code that's expected // to generate Google Test fatal failures. It verifies that the given // statement will cause exactly one fatal Google Test failure with 'substr' // being part of the failure message. // // There are two different versions of this macro. EXPECT_FATAL_FAILURE only // affects and considers failures generated in the current thread and // EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. // // The verification of the assertion is done correctly even when the statement // throws an exception or aborts the current function. // // Known restrictions: // - 'statement' cannot reference local non-static variables or // non-static members of the current object. // - 'statement' cannot return a value. // - You cannot stream a failure message to this macro. // // Note that even though the implementations of the following two // macros are much alike, we cannot refactor them to use a common // helper macro, due to some peculiarity in how the preprocessor // works. The AcceptsMacroThatExpandsToUnprotectedComma test in // gtest_unittest.cc will fail to compile if we do that. #define EXPECT_FATAL_FAILURE(statement, substr) \ do { \ class GTestExpectFatalFailureHelper {\ public:\ static void Execute() { statement; }\ };\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ GTestExpectFatalFailureHelper::Execute();\ }\ } while (::testing::internal::AlwaysFalse()) #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ do { \ class GTestExpectFatalFailureHelper {\ public:\ static void Execute() { statement; }\ };\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ALL_THREADS, >est_failures);\ GTestExpectFatalFailureHelper::Execute();\ }\ } while (::testing::internal::AlwaysFalse()) // A macro for testing Google Test assertions or code that's expected to // generate Google Test non-fatal failures. It asserts that the given // statement will cause exactly one non-fatal Google Test failure with 'substr' // being part of the failure message. // // There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only // affects and considers failures generated in the current thread and // EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. // // 'statement' is allowed to reference local variables and members of // the current object. // // The verification of the assertion is done correctly even when the statement // throws an exception or aborts the current function. // // Known restrictions: // - You cannot stream a failure message to this macro. // // Note that even though the implementations of the following two // macros are much alike, we cannot refactor them to use a common // helper macro, due to some peculiarity in how the preprocessor // works. If we do that, the code won't compile when the user gives // EXPECT_NONFATAL_FAILURE() a statement that contains a macro that // expands to code containing an unprotected comma. The // AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc // catches that. // // For the same reason, we have to write // if (::testing::internal::AlwaysTrue()) { statement; } // instead of // GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) // to avoid an MSVC warning on unreachable code. #define EXPECT_NONFATAL_FAILURE(statement, substr) \ do {\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ if (::testing::internal::AlwaysTrue()) { statement; }\ }\ } while (::testing::internal::AlwaysFalse()) #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ do {\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \ >est_failures);\ if (::testing::internal::AlwaysTrue()) { statement; }\ }\ } while (::testing::internal::AlwaysFalse()) #endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ #include #include #include #include #include #include #include #include #include #include #include #include #include #include // NOLINT #include #include #if GTEST_OS_LINUX // FIXME: Use autoconf to detect availability of // gettimeofday(). # define GTEST_HAS_GETTIMEOFDAY_ 1 # include // NOLINT # include // NOLINT # include // NOLINT // Declares vsnprintf(). This header is not available on Windows. # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT # include #elif GTEST_OS_SYMBIAN # define GTEST_HAS_GETTIMEOFDAY_ 1 # include // NOLINT #elif GTEST_OS_ZOS # define GTEST_HAS_GETTIMEOFDAY_ 1 # include // NOLINT // On z/OS we additionally need strings.h for strcasecmp. # include // NOLINT #elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. # include // NOLINT # undef min #elif GTEST_OS_WINDOWS // We are on Windows proper. # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT # if GTEST_OS_WINDOWS_MINGW // MinGW has gettimeofday() but not _ftime64(). // FIXME: Use autoconf to detect availability of // gettimeofday(). // FIXME: There are other ways to get the time on // Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW // supports these. consider using them instead. # define GTEST_HAS_GETTIMEOFDAY_ 1 # include // NOLINT # endif // GTEST_OS_WINDOWS_MINGW // cpplint thinks that the header is already included, so we want to // silence it. # include // NOLINT # undef min #else // Assume other platforms have gettimeofday(). // FIXME: Use autoconf to detect availability of // gettimeofday(). # define GTEST_HAS_GETTIMEOFDAY_ 1 // cpplint thinks that the header is already included, so we want to // silence it. # include // NOLINT # include // NOLINT #endif // GTEST_OS_LINUX #if GTEST_HAS_EXCEPTIONS # include #endif #if GTEST_CAN_STREAM_RESULTS_ # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT #endif // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Utility functions and classes used by the Google C++ testing framework.// // This file contains purely Google Test's internal implementation. Please // DO NOT #INCLUDE IT IN A USER PROGRAM. #ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ #define GTEST_SRC_GTEST_INTERNAL_INL_H_ #ifndef _WIN32_WCE # include #endif // !_WIN32_WCE #include #include // For strtoll/_strtoul64/malloc/free. #include // For memmove. #include #include #include #if GTEST_CAN_STREAM_RESULTS_ # include // NOLINT # include // NOLINT #endif #if GTEST_OS_WINDOWS # include // NOLINT #endif // GTEST_OS_WINDOWS GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // Declares the flags. // // We don't want the users to modify this flag in the code, but want // Google Test's own unit tests to be able to access it. Therefore we // declare it here as opposed to in gtest.h. GTEST_DECLARE_bool_(death_test_use_fork); namespace internal { // The value of GetTestTypeId() as seen from within the Google Test // library. This is solely for testing GetTestTypeId(). GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; // Names of the flags (needed for parsing Google Test flags). const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; const char kBreakOnFailureFlag[] = "break_on_failure"; const char kCatchExceptionsFlag[] = "catch_exceptions"; const char kColorFlag[] = "color"; const char kFilterFlag[] = "filter"; const char kListTestsFlag[] = "list_tests"; const char kOutputFlag[] = "output"; const char kPrintTimeFlag[] = "print_time"; const char kPrintUTF8Flag[] = "print_utf8"; const char kRandomSeedFlag[] = "random_seed"; const char kRepeatFlag[] = "repeat"; const char kShuffleFlag[] = "shuffle"; const char kStackTraceDepthFlag[] = "stack_trace_depth"; const char kStreamResultToFlag[] = "stream_result_to"; const char kThrowOnFailureFlag[] = "throw_on_failure"; const char kFlagfileFlag[] = "flagfile"; // A valid random seed must be in [1, kMaxRandomSeed]. const int kMaxRandomSeed = 99999; // g_help_flag is true iff the --help flag or an equivalent form is // specified on the command line. GTEST_API_ extern bool g_help_flag; // Returns the current time in milliseconds. GTEST_API_ TimeInMillis GetTimeInMillis(); // Returns true iff Google Test should use colors in the output. GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); // Formats the given time in milliseconds as seconds. GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); // Converts the given time in milliseconds to a date string in the ISO 8601 // format, without the timezone information. N.B.: due to the use the // non-reentrant localtime() function, this function is not thread safe. Do // not use it in any code that can be called from multiple threads. GTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms); // Parses a string for an Int32 flag, in the form of "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. GTEST_API_ bool ParseInt32Flag( const char* str, const char* flag, Int32* value); // Returns a random seed in range [1, kMaxRandomSeed] based on the // given --gtest_random_seed flag value. inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { const unsigned int raw_seed = (random_seed_flag == 0) ? static_cast(GetTimeInMillis()) : static_cast(random_seed_flag); // Normalizes the actual seed to range [1, kMaxRandomSeed] such that // it's easy to type. const int normalized_seed = static_cast((raw_seed - 1U) % static_cast(kMaxRandomSeed)) + 1; return normalized_seed; } // Returns the first valid random seed after 'seed'. The behavior is // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is // considered to be 1. inline int GetNextRandomSeed(int seed) { GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) << "Invalid random seed " << seed << " - must be in [1, " << kMaxRandomSeed << "]."; const int next_seed = seed + 1; return (next_seed > kMaxRandomSeed) ? 1 : next_seed; } // This class saves the values of all Google Test flags in its c'tor, and // restores them in its d'tor. class GTestFlagSaver { public: // The c'tor. GTestFlagSaver() { also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); break_on_failure_ = GTEST_FLAG(break_on_failure); catch_exceptions_ = GTEST_FLAG(catch_exceptions); color_ = GTEST_FLAG(color); death_test_style_ = GTEST_FLAG(death_test_style); death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); filter_ = GTEST_FLAG(filter); internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); list_tests_ = GTEST_FLAG(list_tests); output_ = GTEST_FLAG(output); print_time_ = GTEST_FLAG(print_time); print_utf8_ = GTEST_FLAG(print_utf8); random_seed_ = GTEST_FLAG(random_seed); repeat_ = GTEST_FLAG(repeat); shuffle_ = GTEST_FLAG(shuffle); stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); stream_result_to_ = GTEST_FLAG(stream_result_to); throw_on_failure_ = GTEST_FLAG(throw_on_failure); } // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. ~GTestFlagSaver() { GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; GTEST_FLAG(break_on_failure) = break_on_failure_; GTEST_FLAG(catch_exceptions) = catch_exceptions_; GTEST_FLAG(color) = color_; GTEST_FLAG(death_test_style) = death_test_style_; GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; GTEST_FLAG(filter) = filter_; GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; GTEST_FLAG(list_tests) = list_tests_; GTEST_FLAG(output) = output_; GTEST_FLAG(print_time) = print_time_; GTEST_FLAG(print_utf8) = print_utf8_; GTEST_FLAG(random_seed) = random_seed_; GTEST_FLAG(repeat) = repeat_; GTEST_FLAG(shuffle) = shuffle_; GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; GTEST_FLAG(stream_result_to) = stream_result_to_; GTEST_FLAG(throw_on_failure) = throw_on_failure_; } private: // Fields for saving the original values of flags. bool also_run_disabled_tests_; bool break_on_failure_; bool catch_exceptions_; std::string color_; std::string death_test_style_; bool death_test_use_fork_; std::string filter_; std::string internal_run_death_test_; bool list_tests_; std::string output_; bool print_time_; bool print_utf8_; internal::Int32 random_seed_; internal::Int32 repeat_; bool shuffle_; internal::Int32 stack_trace_depth_; std::string stream_result_to_; bool throw_on_failure_; } GTEST_ATTRIBUTE_UNUSED_; // Converts a Unicode code point to a narrow string in UTF-8 encoding. // code_point parameter is of type UInt32 because wchar_t may not be // wide enough to contain a code point. // If the code_point is not a valid Unicode code point // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted // to "(Invalid Unicode 0xXXXXXXXX)". GTEST_API_ std::string CodePointToUtf8(UInt32 code_point); // Converts a wide string to a narrow string in UTF-8 encoding. // The wide string is assumed to have the following encoding: // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) // UTF-32 if sizeof(wchar_t) == 4 (on Linux) // Parameter str points to a null-terminated wide string. // Parameter num_chars may additionally limit the number // of wchar_t characters processed. -1 is used when the entire string // should be processed. // If the string contains code points that are not valid Unicode code points // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output // as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding // and contains invalid UTF-16 surrogate pairs, values in those pairs // will be encoded as individual Unicode characters from Basic Normal Plane. GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars); // Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file // if the variable is present. If a file already exists at this location, this // function will write over it. If the variable is present, but the file cannot // be created, prints an error and exits. void WriteToShardStatusFileIfNeeded(); // Checks whether sharding is enabled by examining the relevant // environment variable values. If the variables are present, // but inconsistent (e.g., shard_index >= total_shards), prints // an error and exits. If in_subprocess_for_death_test, sharding is // disabled because it must only be applied to the original test // process. Otherwise, we could filter out death tests we intended to execute. GTEST_API_ bool ShouldShard(const char* total_shards_str, const char* shard_index_str, bool in_subprocess_for_death_test); // Parses the environment variable var as an Int32. If it is unset, // returns default_val. If it is not an Int32, prints an error and // and aborts. GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); // Given the total number of shards, the shard index, and the test id, // returns true iff the test should be run on this shard. The test id is // some arbitrary but unique non-negative integer assigned to each test // method. Assumes that 0 <= shard_index < total_shards. GTEST_API_ bool ShouldRunTestOnShard( int total_shards, int shard_index, int test_id); // STL container utilities. // Returns the number of elements in the given container that satisfy // the given predicate. template inline int CountIf(const Container& c, Predicate predicate) { // Implemented as an explicit loop since std::count_if() in libCstd on // Solaris has a non-standard signature. int count = 0; for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { if (predicate(*it)) ++count; } return count; } // Applies a function/functor to each element in the container. template void ForEach(const Container& c, Functor functor) { std::for_each(c.begin(), c.end(), functor); } // Returns the i-th element of the vector, or default_value if i is not // in range [0, v.size()). template inline E GetElementOr(const std::vector& v, int i, E default_value) { return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; } // Performs an in-place shuffle of a range of the vector's elements. // 'begin' and 'end' are element indices as an STL-style range; // i.e. [begin, end) are shuffled, where 'end' == size() means to // shuffle to the end of the vector. template void ShuffleRange(internal::Random* random, int begin, int end, std::vector* v) { const int size = static_cast(v->size()); GTEST_CHECK_(0 <= begin && begin <= size) << "Invalid shuffle range start " << begin << ": must be in range [0, " << size << "]."; GTEST_CHECK_(begin <= end && end <= size) << "Invalid shuffle range finish " << end << ": must be in range [" << begin << ", " << size << "]."; // Fisher-Yates shuffle, from // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle for (int range_width = end - begin; range_width >= 2; range_width--) { const int last_in_range = begin + range_width - 1; const int selected = begin + random->Generate(range_width); std::swap((*v)[selected], (*v)[last_in_range]); } } // Performs an in-place shuffle of the vector's elements. template inline void Shuffle(internal::Random* random, std::vector* v) { ShuffleRange(random, 0, static_cast(v->size()), v); } // A function for deleting an object. Handy for being used as a // functor. template static void Delete(T* x) { delete x; } // A predicate that checks the key of a TestProperty against a known key. // // TestPropertyKeyIs is copyable. class TestPropertyKeyIs { public: // Constructor. // // TestPropertyKeyIs has NO default constructor. explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} // Returns true iff the test name of test property matches on key_. bool operator()(const TestProperty& test_property) const { return test_property.key() == key_; } private: std::string key_; }; // Class UnitTestOptions. // // This class contains functions for processing options the user // specifies when running the tests. It has only static members. // // In most cases, the user can specify an option using either an // environment variable or a command line flag. E.g. you can set the // test filter using either GTEST_FILTER or --gtest_filter. If both // the variable and the flag are present, the latter overrides the // former. class GTEST_API_ UnitTestOptions { public: // Functions for processing the gtest_output flag. // Returns the output format, or "" for normal printed output. static std::string GetOutputFormat(); // Returns the absolute path of the requested output file, or the // default (test_detail.xml in the original working directory) if // none was explicitly specified. static std::string GetAbsolutePathToOutputFile(); // Functions for processing the gtest_filter flag. // Returns true iff the wildcard pattern matches the string. The // first ':' or '\0' character in pattern marks the end of it. // // This recursive algorithm isn't very efficient, but is clear and // works well enough for matching test names, which are short. static bool PatternMatchesString(const char *pattern, const char *str); // Returns true iff the user-specified filter matches the test case // name and the test name. static bool FilterMatchesTest(const std::string &test_case_name, const std::string &test_name); #if GTEST_OS_WINDOWS // Function for supporting the gtest_catch_exception flag. // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. // This function is useful as an __except condition. static int GTestShouldProcessSEH(DWORD exception_code); #endif // GTEST_OS_WINDOWS // Returns true if "name" matches the ':' separated list of glob-style // filters in "filter". static bool MatchesFilter(const std::string& name, const char* filter); }; // Returns the current application's name, removing directory path if that // is present. Used by UnitTestOptions::GetOutputFile. GTEST_API_ FilePath GetCurrentExecutableName(); // The role interface for getting the OS stack trace as a string. class OsStackTraceGetterInterface { public: OsStackTraceGetterInterface() {} virtual ~OsStackTraceGetterInterface() {} // Returns the current OS stack trace as an std::string. Parameters: // // max_depth - the maximum number of stack frames to be included // in the trace. // skip_count - the number of top frames to be skipped; doesn't count // against max_depth. virtual std::string CurrentStackTrace(int max_depth, int skip_count) = 0; // UponLeavingGTest() should be called immediately before Google Test calls // user code. It saves some information about the current stack that // CurrentStackTrace() will use to find and hide Google Test stack frames. virtual void UponLeavingGTest() = 0; // This string is inserted in place of stack frames that are part of // Google Test's implementation. static const char* const kElidedFramesMarker; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); }; // A working implementation of the OsStackTraceGetterInterface interface. class OsStackTraceGetter : public OsStackTraceGetterInterface { public: OsStackTraceGetter() {} virtual std::string CurrentStackTrace(int max_depth, int skip_count); virtual void UponLeavingGTest(); private: #if GTEST_HAS_ABSL Mutex mutex_; // Protects all internal state. // We save the stack frame below the frame that calls user code. // We do this because the address of the frame immediately below // the user code changes between the call to UponLeavingGTest() // and any calls to the stack trace code from within the user code. void* caller_frame_ = nullptr; #endif // GTEST_HAS_ABSL GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); }; // Information about a Google Test trace point. struct TraceInfo { const char* file; int line; std::string message; }; // This is the default global test part result reporter used in UnitTestImpl. // This class should only be used by UnitTestImpl. class DefaultGlobalTestPartResultReporter : public TestPartResultReporterInterface { public: explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); // Implements the TestPartResultReporterInterface. Reports the test part // result in the current test. virtual void ReportTestPartResult(const TestPartResult& result); private: UnitTestImpl* const unit_test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); }; // This is the default per thread test part result reporter used in // UnitTestImpl. This class should only be used by UnitTestImpl. class DefaultPerThreadTestPartResultReporter : public TestPartResultReporterInterface { public: explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); // Implements the TestPartResultReporterInterface. The implementation just // delegates to the current global test part result reporter of *unit_test_. virtual void ReportTestPartResult(const TestPartResult& result); private: UnitTestImpl* const unit_test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); }; // The private implementation of the UnitTest class. We don't protect // the methods under a mutex, as this class is not accessible by a // user and the UnitTest class that delegates work to this class does // proper locking. class GTEST_API_ UnitTestImpl { public: explicit UnitTestImpl(UnitTest* parent); virtual ~UnitTestImpl(); // There are two different ways to register your own TestPartResultReporter. // You can register your own repoter to listen either only for test results // from the current thread or for results from all threads. // By default, each per-thread test result repoter just passes a new // TestPartResult to the global test result reporter, which registers the // test part result for the currently running test. // Returns the global test part result reporter. TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); // Sets the global test part result reporter. void SetGlobalTestPartResultReporter( TestPartResultReporterInterface* reporter); // Returns the test part result reporter for the current thread. TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); // Sets the test part result reporter for the current thread. void SetTestPartResultReporterForCurrentThread( TestPartResultReporterInterface* reporter); // Gets the number of successful test cases. int successful_test_case_count() const; // Gets the number of failed test cases. int failed_test_case_count() const; // Gets the number of all test cases. int total_test_case_count() const; // Gets the number of all test cases that contain at least one test // that should run. int test_case_to_run_count() const; // Gets the number of successful tests. int successful_test_count() const; // Gets the number of failed tests. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Gets the number of all tests. int total_test_count() const; // Gets the number of tests that should run. int test_to_run_count() const; // Gets the time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const { return start_timestamp_; } // Gets the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Returns true iff the unit test passed (i.e. all test cases passed). bool Passed() const { return !Failed(); } // Returns true iff the unit test failed (i.e. some test case failed // or something outside of all tests failed). bool Failed() const { return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); } // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. const TestCase* GetTestCase(int i) const { const int index = GetElementOr(test_case_indices_, i, -1); return index < 0 ? NULL : test_cases_[i]; } // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. TestCase* GetMutableTestCase(int i) { const int index = GetElementOr(test_case_indices_, i, -1); return index < 0 ? NULL : test_cases_[index]; } // Provides access to the event listener list. TestEventListeners* listeners() { return &listeners_; } // Returns the TestResult for the test that's currently running, or // the TestResult for the ad hoc test if no test is running. TestResult* current_test_result(); // Returns the TestResult for the ad hoc test. const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } // Sets the OS stack trace getter. // // Does nothing if the input and the current OS stack trace getter // are the same; otherwise, deletes the old getter and makes the // input the current getter. void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); // Returns the current OS stack trace getter if it is not NULL; // otherwise, creates an OsStackTraceGetter, makes it the current // getter, and returns it. OsStackTraceGetterInterface* os_stack_trace_getter(); // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // CurrentOsStackTraceExceptTop(1), Foo() will be included in the // trace but Bar() and CurrentOsStackTraceExceptTop() won't. std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_; // Finds and returns a TestCase with the given name. If one doesn't // exist, creates one and returns it. // // Arguments: // // test_case_name: name of the test case // type_param: the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case TestCase* GetTestCase(const char* test_case_name, const char* type_param, Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc); // Adds a TestInfo to the unit test. // // Arguments: // // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case // test_info: the TestInfo object void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc, TestInfo* test_info) { // In order to support thread-safe death tests, we need to // remember the original working directory when the test program // was first invoked. We cannot do this in RUN_ALL_TESTS(), as // the user may have changed the current directory before calling // RUN_ALL_TESTS(). Therefore we capture the current directory in // AddTestInfo(), which is called to register a TEST or TEST_F // before main() is reached. if (original_working_dir_.IsEmpty()) { original_working_dir_.Set(FilePath::GetCurrentDir()); GTEST_CHECK_(!original_working_dir_.IsEmpty()) << "Failed to get the current working directory."; } GetTestCase(test_info->test_case_name(), test_info->type_param(), set_up_tc, tear_down_tc)->AddTestInfo(test_info); } // Returns ParameterizedTestCaseRegistry object used to keep track of // value-parameterized tests and instantiate and register them. internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { return parameterized_test_registry_; } // Sets the TestCase object for the test that's currently running. void set_current_test_case(TestCase* a_current_test_case) { current_test_case_ = a_current_test_case; } // Sets the TestInfo object for the test that's currently running. If // current_test_info is NULL, the assertion results will be stored in // ad_hoc_test_result_. void set_current_test_info(TestInfo* a_current_test_info) { current_test_info_ = a_current_test_info; } // Registers all parameterized tests defined using TEST_P and // INSTANTIATE_TEST_CASE_P, creating regular tests for each test/parameter // combination. This method can be called more then once; it has guards // protecting from registering the tests more then once. If // value-parameterized tests are disabled, RegisterParameterizedTests is // present but does nothing. void RegisterParameterizedTests(); // Runs all tests in this UnitTest object, prints the result, and // returns true if all tests are successful. If any exception is // thrown during a test, this test is considered to be failed, but // the rest of the tests will still be run. bool RunAllTests(); // Clears the results of all tests, except the ad hoc tests. void ClearNonAdHocTestResult() { ForEach(test_cases_, TestCase::ClearTestCaseResult); } // Clears the results of ad-hoc test assertions. void ClearAdHocTestResult() { ad_hoc_test_result_.Clear(); } // Adds a TestProperty to the current TestResult object when invoked in a // context of a test or a test case, or to the global property set. If the // result already contains a property with the same key, the value will be // updated. void RecordProperty(const TestProperty& test_property); enum ReactionToSharding { HONOR_SHARDING_PROTOCOL, IGNORE_SHARDING_PROTOCOL }; // Matches the full name of each test against the user-specified // filter to decide whether the test should run, then records the // result in each TestCase and TestInfo object. // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests // based on sharding variables in the environment. // Returns the number of tests that should run. int FilterTests(ReactionToSharding shard_tests); // Prints the names of the tests matching the user-specified filter flag. void ListTestsMatchingFilter(); const TestCase* current_test_case() const { return current_test_case_; } TestInfo* current_test_info() { return current_test_info_; } const TestInfo* current_test_info() const { return current_test_info_; } // Returns the vector of environments that need to be set-up/torn-down // before/after the tests are run. std::vector& environments() { return environments_; } // Getters for the per-thread Google Test trace stack. std::vector& gtest_trace_stack() { return *(gtest_trace_stack_.pointer()); } const std::vector& gtest_trace_stack() const { return gtest_trace_stack_.get(); } #if GTEST_HAS_DEATH_TEST void InitDeathTestSubprocessControlInfo() { internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); } // Returns a pointer to the parsed --gtest_internal_run_death_test // flag, or NULL if that flag was not specified. // This information is useful only in a death test child process. // Must not be called before a call to InitGoogleTest. const InternalRunDeathTestFlag* internal_run_death_test_flag() const { return internal_run_death_test_flag_.get(); } // Returns a pointer to the current death test factory. internal::DeathTestFactory* death_test_factory() { return death_test_factory_.get(); } void SuppressTestEventsIfInSubprocess(); friend class ReplaceDeathTestFactory; #endif // GTEST_HAS_DEATH_TEST // Initializes the event listener performing XML output as specified by // UnitTestOptions. Must not be called before InitGoogleTest. void ConfigureXmlOutput(); #if GTEST_CAN_STREAM_RESULTS_ // Initializes the event listener for streaming test results to a socket. // Must not be called before InitGoogleTest. void ConfigureStreamingOutput(); #endif // Performs initialization dependent upon flag values obtained in // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest // this function is also called from RunAllTests. Since this function can be // called more than once, it has to be idempotent. void PostFlagParsingInit(); // Gets the random seed used at the start of the current test iteration. int random_seed() const { return random_seed_; } // Gets the random number generator. internal::Random* random() { return &random_; } // Shuffles all test cases, and the tests within each test case, // making sure that death tests are still run first. void ShuffleTests(); // Restores the test cases and tests to their order before the first shuffle. void UnshuffleTests(); // Returns the value of GTEST_FLAG(catch_exceptions) at the moment // UnitTest::Run() starts. bool catch_exceptions() const { return catch_exceptions_; } private: friend class ::testing::UnitTest; // Used by UnitTest::Run() to capture the state of // GTEST_FLAG(catch_exceptions) at the moment it starts. void set_catch_exceptions(bool value) { catch_exceptions_ = value; } // The UnitTest object that owns this implementation object. UnitTest* const parent_; // The working directory when the first TEST() or TEST_F() was // executed. internal::FilePath original_working_dir_; // The default test part result reporters. DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; DefaultPerThreadTestPartResultReporter default_per_thread_test_part_result_reporter_; // Points to (but doesn't own) the global test part result reporter. TestPartResultReporterInterface* global_test_part_result_repoter_; // Protects read and write access to global_test_part_result_reporter_. internal::Mutex global_test_part_result_reporter_mutex_; // Points to (but doesn't own) the per-thread test part result reporter. internal::ThreadLocal per_thread_test_part_result_reporter_; // The vector of environments that need to be set-up/torn-down // before/after the tests are run. std::vector environments_; // The vector of TestCases in their original order. It owns the // elements in the vector. std::vector test_cases_; // Provides a level of indirection for the test case list to allow // easy shuffling and restoring the test case order. The i-th // element of this vector is the index of the i-th test case in the // shuffled order. std::vector test_case_indices_; // ParameterizedTestRegistry object used to register value-parameterized // tests. internal::ParameterizedTestCaseRegistry parameterized_test_registry_; // Indicates whether RegisterParameterizedTests() has been called already. bool parameterized_tests_registered_; // Index of the last death test case registered. Initially -1. int last_death_test_case_; // This points to the TestCase for the currently running test. It // changes as Google Test goes through one test case after another. // When no test is running, this is set to NULL and Google Test // stores assertion results in ad_hoc_test_result_. Initially NULL. TestCase* current_test_case_; // This points to the TestInfo for the currently running test. It // changes as Google Test goes through one test after another. When // no test is running, this is set to NULL and Google Test stores // assertion results in ad_hoc_test_result_. Initially NULL. TestInfo* current_test_info_; // Normally, a user only writes assertions inside a TEST or TEST_F, // or inside a function called by a TEST or TEST_F. Since Google // Test keeps track of which test is current running, it can // associate such an assertion with the test it belongs to. // // If an assertion is encountered when no TEST or TEST_F is running, // Google Test attributes the assertion result to an imaginary "ad hoc" // test, and records the result in ad_hoc_test_result_. TestResult ad_hoc_test_result_; // The list of event listeners that can be used to track events inside // Google Test. TestEventListeners listeners_; // The OS stack trace getter. Will be deleted when the UnitTest // object is destructed. By default, an OsStackTraceGetter is used, // but the user can set this field to use a custom getter if that is // desired. OsStackTraceGetterInterface* os_stack_trace_getter_; // True iff PostFlagParsingInit() has been called. bool post_flag_parse_init_performed_; // The random number seed used at the beginning of the test run. int random_seed_; // Our random number generator. internal::Random random_; // The time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp_; // How long the test took to run, in milliseconds. TimeInMillis elapsed_time_; #if GTEST_HAS_DEATH_TEST // The decomposed components of the gtest_internal_run_death_test flag, // parsed when RUN_ALL_TESTS is called. internal::scoped_ptr internal_run_death_test_flag_; internal::scoped_ptr death_test_factory_; #endif // GTEST_HAS_DEATH_TEST // A per-thread stack of traces created by the SCOPED_TRACE() macro. internal::ThreadLocal > gtest_trace_stack_; // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests() // starts. bool catch_exceptions_; GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); }; // class UnitTestImpl // Convenience function for accessing the global UnitTest // implementation object. inline UnitTestImpl* GetUnitTestImpl() { return UnitTest::GetInstance()->impl(); } #if GTEST_USES_SIMPLE_RE // Internal helper functions for implementing the simple regular // expression matcher. GTEST_API_ bool IsInSet(char ch, const char* str); GTEST_API_ bool IsAsciiDigit(char ch); GTEST_API_ bool IsAsciiPunct(char ch); GTEST_API_ bool IsRepeat(char ch); GTEST_API_ bool IsAsciiWhiteSpace(char ch); GTEST_API_ bool IsAsciiWordChar(char ch); GTEST_API_ bool IsValidEscape(char ch); GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); GTEST_API_ bool ValidateRegex(const char* regex); GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); GTEST_API_ bool MatchRepetitionAndRegexAtHead( bool escaped, char ch, char repeat, const char* regex, const char* str); GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); #endif // GTEST_USES_SIMPLE_RE // Parses the command line for Google Test flags, without initializing // other parts of Google Test. GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); #if GTEST_HAS_DEATH_TEST // Returns the message describing the last system error, regardless of the // platform. GTEST_API_ std::string GetLastErrnoDescription(); // Attempts to parse a string into a positive integer pointed to by the // number parameter. Returns true if that is possible. // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use // it here. template bool ParseNaturalNumber(const ::std::string& str, Integer* number) { // Fail fast if the given string does not begin with a digit; // this bypasses strtoXXX's "optional leading whitespace and plus // or minus sign" semantics, which are undesirable here. if (str.empty() || !IsDigit(str[0])) { return false; } errno = 0; char* end; // BiggestConvertible is the largest integer type that system-provided // string-to-number conversion routines can return. # if GTEST_OS_WINDOWS && !defined(__GNUC__) // MSVC and C++ Builder define __int64 instead of the standard long long. typedef unsigned __int64 BiggestConvertible; const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); # else typedef unsigned long long BiggestConvertible; // NOLINT const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); # endif // GTEST_OS_WINDOWS && !defined(__GNUC__) const bool parse_success = *end == '\0' && errno == 0; // FIXME: Convert this to compile time assertion when it is // available. GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); const Integer result = static_cast(parsed); if (parse_success && static_cast(result) == parsed) { *number = result; return true; } return false; } #endif // GTEST_HAS_DEATH_TEST // TestResult contains some private methods that should be hidden from // Google Test user but are required for testing. This class allow our tests // to access them. // // This class is supplied only for the purpose of testing Google Test's own // constructs. Do not use it in user tests, either directly or indirectly. class TestResultAccessor { public: static void RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) { test_result->RecordProperty(xml_element, property); } static void ClearTestPartResults(TestResult* test_result) { test_result->ClearTestPartResults(); } static const std::vector& test_part_results( const TestResult& test_result) { return test_result.test_part_results(); } }; #if GTEST_CAN_STREAM_RESULTS_ // Streams test results to the given port on the given host machine. class StreamingListener : public EmptyTestEventListener { public: // Abstract base class for writing strings to a socket. class AbstractSocketWriter { public: virtual ~AbstractSocketWriter() {} // Sends a string to the socket. virtual void Send(const std::string& message) = 0; // Closes the socket. virtual void CloseConnection() {} // Sends a string and a newline to the socket. void SendLn(const std::string& message) { Send(message + "\n"); } }; // Concrete class for actually writing strings to a socket. class SocketWriter : public AbstractSocketWriter { public: SocketWriter(const std::string& host, const std::string& port) : sockfd_(-1), host_name_(host), port_num_(port) { MakeConnection(); } virtual ~SocketWriter() { if (sockfd_ != -1) CloseConnection(); } // Sends a string to the socket. virtual void Send(const std::string& message) { GTEST_CHECK_(sockfd_ != -1) << "Send() can be called only when there is a connection."; const int len = static_cast(message.length()); if (write(sockfd_, message.c_str(), len) != len) { GTEST_LOG_(WARNING) << "stream_result_to: failed to stream to " << host_name_ << ":" << port_num_; } } private: // Creates a client socket and connects to the server. void MakeConnection(); // Closes the socket. void CloseConnection() { GTEST_CHECK_(sockfd_ != -1) << "CloseConnection() can be called only when there is a connection."; close(sockfd_); sockfd_ = -1; } int sockfd_; // socket file descriptor const std::string host_name_; const std::string port_num_; GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter); }; // class SocketWriter // Escapes '=', '&', '%', and '\n' characters in str as "%xx". static std::string UrlEncode(const char* str); StreamingListener(const std::string& host, const std::string& port) : socket_writer_(new SocketWriter(host, port)) { Start(); } explicit StreamingListener(AbstractSocketWriter* socket_writer) : socket_writer_(socket_writer) { Start(); } void OnTestProgramStart(const UnitTest& /* unit_test */) { SendLn("event=TestProgramStart"); } void OnTestProgramEnd(const UnitTest& unit_test) { // Note that Google Test current only report elapsed time for each // test iteration, not for the entire test program. SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed())); // Notify the streaming server to stop. socket_writer_->CloseConnection(); } void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) { SendLn("event=TestIterationStart&iteration=" + StreamableToString(iteration)); } void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) { SendLn("event=TestIterationEnd&passed=" + FormatBool(unit_test.Passed()) + "&elapsed_time=" + StreamableToString(unit_test.elapsed_time()) + "ms"); } void OnTestCaseStart(const TestCase& test_case) { SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); } void OnTestCaseEnd(const TestCase& test_case) { SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) + "ms"); } void OnTestStart(const TestInfo& test_info) { SendLn(std::string("event=TestStart&name=") + test_info.name()); } void OnTestEnd(const TestInfo& test_info) { SendLn("event=TestEnd&passed=" + FormatBool((test_info.result())->Passed()) + "&elapsed_time=" + StreamableToString((test_info.result())->elapsed_time()) + "ms"); } void OnTestPartResult(const TestPartResult& test_part_result) { const char* file_name = test_part_result.file_name(); if (file_name == NULL) file_name = ""; SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + "&line=" + StreamableToString(test_part_result.line_number()) + "&message=" + UrlEncode(test_part_result.message())); } private: // Sends the given message and a newline to the socket. void SendLn(const std::string& message) { socket_writer_->SendLn(message); } // Called at the start of streaming to notify the receiver what // protocol we are using. void Start() { SendLn("gtest_streaming_protocol_version=1.0"); } std::string FormatBool(bool value) { return value ? "1" : "0"; } const scoped_ptr socket_writer_; GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener); }; // class StreamingListener #endif // GTEST_CAN_STREAM_RESULTS_ } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ #if GTEST_OS_WINDOWS # define vsnprintf _vsnprintf #endif // GTEST_OS_WINDOWS #if GTEST_OS_MAC #ifndef GTEST_OS_IOS #include #endif #endif #if GTEST_HAS_ABSL #include "absl/debugging/failure_signal_handler.h" #include "absl/debugging/stacktrace.h" #include "absl/debugging/symbolize.h" #include "absl/strings/str_cat.h" #endif // GTEST_HAS_ABSL namespace testing { using internal::CountIf; using internal::ForEach; using internal::GetElementOr; using internal::Shuffle; // Constants. // A test whose test case name or test name matches this filter is // disabled and not run. static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; // A test case whose name matches this filter is considered a death // test case and will be run before test cases whose name doesn't // match this filter. static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; // A test filter that matches everything. static const char kUniversalFilter[] = "*"; // The default output format. static const char kDefaultOutputFormat[] = "xml"; // The default output file. static const char kDefaultOutputFile[] = "test_detail"; // The environment variable name for the test shard index. static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; // The environment variable name for the total number of test shards. static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; // The environment variable name for the test shard status file. static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; namespace internal { // The text used in failure messages to indicate the start of the // stack trace. const char kStackTraceMarker[] = "\nStack trace:\n"; // g_help_flag is true iff the --help flag or an equivalent form is // specified on the command line. bool g_help_flag = false; // Utilty function to Open File for Writing static FILE* OpenFileForWriting(const std::string& output_file) { FILE* fileout = NULL; FilePath output_file_path(output_file); FilePath output_dir(output_file_path.RemoveFileName()); if (output_dir.CreateDirectoriesRecursively()) { fileout = posix::FOpen(output_file.c_str(), "w"); } if (fileout == NULL) { GTEST_LOG_(FATAL) << "Unable to open file \"" << output_file << "\""; } return fileout; } } // namespace internal // Bazel passes in the argument to '--test_filter' via the TESTBRIDGE_TEST_ONLY // environment variable. static const char* GetDefaultFilter() { const char* const testbridge_test_only = internal::posix::GetEnv("TESTBRIDGE_TEST_ONLY"); if (testbridge_test_only != NULL) { return testbridge_test_only; } return kUniversalFilter; } GTEST_DEFINE_bool_( also_run_disabled_tests, internal::BoolFromGTestEnv("also_run_disabled_tests", false), "Run disabled tests too, in addition to the tests normally being run."); GTEST_DEFINE_bool_( break_on_failure, internal::BoolFromGTestEnv("break_on_failure", false), "True iff a failed assertion should be a debugger break-point."); GTEST_DEFINE_bool_( catch_exceptions, internal::BoolFromGTestEnv("catch_exceptions", true), "True iff " GTEST_NAME_ " should catch exceptions and treat them as test failures."); GTEST_DEFINE_string_( color, internal::StringFromGTestEnv("color", "auto"), "Whether to use colors in the output. Valid values: yes, no, " "and auto. 'auto' means to use colors if the output is " "being sent to a terminal and the TERM environment variable " "is set to a terminal type that supports colors."); GTEST_DEFINE_string_( filter, internal::StringFromGTestEnv("filter", GetDefaultFilter()), "A colon-separated list of glob (not regex) patterns " "for filtering the tests to run, optionally followed by a " "'-' and a : separated list of negative patterns (tests to " "exclude). A test is run if it matches one of the positive " "patterns and does not match any of the negative patterns."); GTEST_DEFINE_bool_( install_failure_signal_handler, internal::BoolFromGTestEnv("install_failure_signal_handler", false), "If true and supported on the current platform, " GTEST_NAME_ " should " "install a signal handler that dumps debugging information when fatal " "signals are raised."); GTEST_DEFINE_bool_(list_tests, false, "List all tests without running them."); // The net priority order after flag processing is thus: // --gtest_output command line flag // GTEST_OUTPUT environment variable // XML_OUTPUT_FILE environment variable // '' GTEST_DEFINE_string_( output, internal::StringFromGTestEnv("output", internal::OutputFlagAlsoCheckEnvVar().c_str()), "A format (defaults to \"xml\" but can be specified to be \"json\"), " "optionally followed by a colon and an output file name or directory. " "A directory is indicated by a trailing pathname separator. " "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " "If a directory is specified, output files will be created " "within that directory, with file-names based on the test " "executable's name and, if necessary, made unique by adding " "digits."); GTEST_DEFINE_bool_( print_time, internal::BoolFromGTestEnv("print_time", true), "True iff " GTEST_NAME_ " should display elapsed time in text output."); GTEST_DEFINE_bool_( print_utf8, internal::BoolFromGTestEnv("print_utf8", true), "True iff " GTEST_NAME_ " prints UTF8 characters as text."); GTEST_DEFINE_int32_( random_seed, internal::Int32FromGTestEnv("random_seed", 0), "Random number seed to use when shuffling test orders. Must be in range " "[1, 99999], or 0 to use a seed based on the current time."); GTEST_DEFINE_int32_( repeat, internal::Int32FromGTestEnv("repeat", 1), "How many times to repeat each test. Specify a negative number " "for repeating forever. Useful for shaking out flaky tests."); GTEST_DEFINE_bool_( show_internal_stack_frames, false, "True iff " GTEST_NAME_ " should include internal stack frames when " "printing test failure stack traces."); GTEST_DEFINE_bool_( shuffle, internal::BoolFromGTestEnv("shuffle", false), "True iff " GTEST_NAME_ " should randomize tests' order on every run."); GTEST_DEFINE_int32_( stack_trace_depth, internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), "The maximum number of stack frames to print when an " "assertion fails. The valid range is 0 through 100, inclusive."); GTEST_DEFINE_string_( stream_result_to, internal::StringFromGTestEnv("stream_result_to", ""), "This flag specifies the host name and the port number on which to stream " "test results. Example: \"localhost:555\". The flag is effective only on " "Linux."); GTEST_DEFINE_bool_( throw_on_failure, internal::BoolFromGTestEnv("throw_on_failure", false), "When this flag is specified, a failed assertion will throw an exception " "if exceptions are enabled or exit the program with a non-zero code " "otherwise. For use with an external test framework."); #if GTEST_USE_OWN_FLAGFILE_FLAG_ GTEST_DEFINE_string_( flagfile, internal::StringFromGTestEnv("flagfile", ""), "This flag specifies the flagfile to read command-line flags from."); #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ namespace internal { // Generates a random number from [0, range), using a Linear // Congruential Generator (LCG). Crashes if 'range' is 0 or greater // than kMaxRange. UInt32 Random::Generate(UInt32 range) { // These constants are the same as are used in glibc's rand(3). // Use wider types than necessary to prevent unsigned overflow diagnostics. state_ = static_cast(1103515245ULL*state_ + 12345U) % kMaxRange; GTEST_CHECK_(range > 0) << "Cannot generate a number in the range [0, 0)."; GTEST_CHECK_(range <= kMaxRange) << "Generation of a number in [0, " << range << ") was requested, " << "but this can only generate numbers in [0, " << kMaxRange << ")."; // Converting via modulus introduces a bit of downward bias, but // it's simple, and a linear congruential generator isn't too good // to begin with. return state_ % range; } // GTestIsInitialized() returns true iff the user has initialized // Google Test. Useful for catching the user mistake of not initializing // Google Test before calling RUN_ALL_TESTS(). static bool GTestIsInitialized() { return GetArgvs().size() > 0; } // Iterates over a vector of TestCases, keeping a running sum of the // results of calling a given int-returning method on each. // Returns the sum. static int SumOverTestCaseList(const std::vector& case_list, int (TestCase::*method)() const) { int sum = 0; for (size_t i = 0; i < case_list.size(); i++) { sum += (case_list[i]->*method)(); } return sum; } // Returns true iff the test case passed. static bool TestCasePassed(const TestCase* test_case) { return test_case->should_run() && test_case->Passed(); } // Returns true iff the test case failed. static bool TestCaseFailed(const TestCase* test_case) { return test_case->should_run() && test_case->Failed(); } // Returns true iff test_case contains at least one test that should // run. static bool ShouldRunTestCase(const TestCase* test_case) { return test_case->should_run(); } // AssertHelper constructor. AssertHelper::AssertHelper(TestPartResult::Type type, const char* file, int line, const char* message) : data_(new AssertHelperData(type, file, line, message)) { } AssertHelper::~AssertHelper() { delete data_; } // Message assignment, for assertion streaming support. void AssertHelper::operator=(const Message& message) const { UnitTest::GetInstance()-> AddTestPartResult(data_->type, data_->file, data_->line, AppendUserMessage(data_->message, message), UnitTest::GetInstance()->impl() ->CurrentOsStackTraceExceptTop(1) // Skips the stack frame for this function itself. ); // NOLINT } // Mutex for linked pointers. GTEST_API_ GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); // A copy of all command line arguments. Set by InitGoogleTest(). static ::std::vector g_argvs; ::std::vector GetArgvs() { #if defined(GTEST_CUSTOM_GET_ARGVS_) // GTEST_CUSTOM_GET_ARGVS_() may return a container of std::string or // ::string. This code converts it to the appropriate type. const auto& custom = GTEST_CUSTOM_GET_ARGVS_(); return ::std::vector(custom.begin(), custom.end()); #else // defined(GTEST_CUSTOM_GET_ARGVS_) return g_argvs; #endif // defined(GTEST_CUSTOM_GET_ARGVS_) } // Returns the current application's name, removing directory path if that // is present. FilePath GetCurrentExecutableName() { FilePath result; #if GTEST_OS_WINDOWS result.Set(FilePath(GetArgvs()[0]).RemoveExtension("exe")); #else result.Set(FilePath(GetArgvs()[0])); #endif // GTEST_OS_WINDOWS return result.RemoveDirectoryName(); } // Functions for processing the gtest_output flag. // Returns the output format, or "" for normal printed output. std::string UnitTestOptions::GetOutputFormat() { const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); const char* const colon = strchr(gtest_output_flag, ':'); return (colon == NULL) ? std::string(gtest_output_flag) : std::string(gtest_output_flag, colon - gtest_output_flag); } // Returns the name of the requested output file, or the default if none // was explicitly specified. std::string UnitTestOptions::GetAbsolutePathToOutputFile() { const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); std::string format = GetOutputFormat(); if (format.empty()) format = std::string(kDefaultOutputFormat); const char* const colon = strchr(gtest_output_flag, ':'); if (colon == NULL) return internal::FilePath::MakeFileName( internal::FilePath( UnitTest::GetInstance()->original_working_dir()), internal::FilePath(kDefaultOutputFile), 0, format.c_str()).string(); internal::FilePath output_name(colon + 1); if (!output_name.IsAbsolutePath()) // FIXME: on Windows \some\path is not an absolute // path (as its meaning depends on the current drive), yet the // following logic for turning it into an absolute path is wrong. // Fix it. output_name = internal::FilePath::ConcatPaths( internal::FilePath(UnitTest::GetInstance()->original_working_dir()), internal::FilePath(colon + 1)); if (!output_name.IsDirectory()) return output_name.string(); internal::FilePath result(internal::FilePath::GenerateUniqueFileName( output_name, internal::GetCurrentExecutableName(), GetOutputFormat().c_str())); return result.string(); } // Returns true iff the wildcard pattern matches the string. The // first ':' or '\0' character in pattern marks the end of it. // // This recursive algorithm isn't very efficient, but is clear and // works well enough for matching test names, which are short. bool UnitTestOptions::PatternMatchesString(const char *pattern, const char *str) { switch (*pattern) { case '\0': case ':': // Either ':' or '\0' marks the end of the pattern. return *str == '\0'; case '?': // Matches any single character. return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); case '*': // Matches any string (possibly empty) of characters. return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || PatternMatchesString(pattern + 1, str); default: // Non-special character. Matches itself. return *pattern == *str && PatternMatchesString(pattern + 1, str + 1); } } bool UnitTestOptions::MatchesFilter( const std::string& name, const char* filter) { const char *cur_pattern = filter; for (;;) { if (PatternMatchesString(cur_pattern, name.c_str())) { return true; } // Finds the next pattern in the filter. cur_pattern = strchr(cur_pattern, ':'); // Returns if no more pattern can be found. if (cur_pattern == NULL) { return false; } // Skips the pattern separater (the ':' character). cur_pattern++; } } // Returns true iff the user-specified filter matches the test case // name and the test name. bool UnitTestOptions::FilterMatchesTest(const std::string &test_case_name, const std::string &test_name) { const std::string& full_name = test_case_name + "." + test_name.c_str(); // Split --gtest_filter at '-', if there is one, to separate into // positive filter and negative filter portions const char* const p = GTEST_FLAG(filter).c_str(); const char* const dash = strchr(p, '-'); std::string positive; std::string negative; if (dash == NULL) { positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter negative = ""; } else { positive = std::string(p, dash); // Everything up to the dash negative = std::string(dash + 1); // Everything after the dash if (positive.empty()) { // Treat '-test1' as the same as '*-test1' positive = kUniversalFilter; } } // A filter is a colon-separated list of patterns. It matches a // test if any pattern in it matches the test. return (MatchesFilter(full_name, positive.c_str()) && !MatchesFilter(full_name, negative.c_str())); } #if GTEST_HAS_SEH // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. // This function is useful as an __except condition. int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { // Google Test should handle a SEH exception if: // 1. the user wants it to, AND // 2. this is not a breakpoint exception, AND // 3. this is not a C++ exception (VC++ implements them via SEH, // apparently). // // SEH exception code for C++ exceptions. // (see http://support.microsoft.com/kb/185294 for more information). const DWORD kCxxExceptionCode = 0xe06d7363; bool should_handle = true; if (!GTEST_FLAG(catch_exceptions)) should_handle = false; else if (exception_code == EXCEPTION_BREAKPOINT) should_handle = false; else if (exception_code == kCxxExceptionCode) should_handle = false; return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH; } #endif // GTEST_HAS_SEH } // namespace internal // The c'tor sets this object as the test part result reporter used by // Google Test. The 'result' parameter specifies where to report the // results. Intercepts only failures from the current thread. ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( TestPartResultArray* result) : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), result_(result) { Init(); } // The c'tor sets this object as the test part result reporter used by // Google Test. The 'result' parameter specifies where to report the // results. ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( InterceptMode intercept_mode, TestPartResultArray* result) : intercept_mode_(intercept_mode), result_(result) { Init(); } void ScopedFakeTestPartResultReporter::Init() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); if (intercept_mode_ == INTERCEPT_ALL_THREADS) { old_reporter_ = impl->GetGlobalTestPartResultReporter(); impl->SetGlobalTestPartResultReporter(this); } else { old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); impl->SetTestPartResultReporterForCurrentThread(this); } } // The d'tor restores the test part result reporter used by Google Test // before. ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); if (intercept_mode_ == INTERCEPT_ALL_THREADS) { impl->SetGlobalTestPartResultReporter(old_reporter_); } else { impl->SetTestPartResultReporterForCurrentThread(old_reporter_); } } // Increments the test part result count and remembers the result. // This method is from the TestPartResultReporterInterface interface. void ScopedFakeTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { result_->Append(result); } namespace internal { // Returns the type ID of ::testing::Test. We should always call this // instead of GetTypeId< ::testing::Test>() to get the type ID of // testing::Test. This is to work around a suspected linker bug when // using Google Test as a framework on Mac OS X. The bug causes // GetTypeId< ::testing::Test>() to return different values depending // on whether the call is from the Google Test framework itself or // from user test code. GetTestTypeId() is guaranteed to always // return the same value, as it always calls GetTypeId<>() from the // gtest.cc, which is within the Google Test framework. TypeId GetTestTypeId() { return GetTypeId(); } // The value of GetTestTypeId() as seen from within the Google Test // library. This is solely for testing GetTestTypeId(). extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); // This predicate-formatter checks that 'results' contains a test part // failure of the given type and that the failure message contains the // given substring. static AssertionResult HasOneFailure(const char* /* results_expr */, const char* /* type_expr */, const char* /* substr_expr */, const TestPartResultArray& results, TestPartResult::Type type, const std::string& substr) { const std::string expected(type == TestPartResult::kFatalFailure ? "1 fatal failure" : "1 non-fatal failure"); Message msg; if (results.size() != 1) { msg << "Expected: " << expected << "\n" << " Actual: " << results.size() << " failures"; for (int i = 0; i < results.size(); i++) { msg << "\n" << results.GetTestPartResult(i); } return AssertionFailure() << msg; } const TestPartResult& r = results.GetTestPartResult(0); if (r.type() != type) { return AssertionFailure() << "Expected: " << expected << "\n" << " Actual:\n" << r; } if (strstr(r.message(), substr.c_str()) == NULL) { return AssertionFailure() << "Expected: " << expected << " containing \"" << substr << "\"\n" << " Actual:\n" << r; } return AssertionSuccess(); } // The constructor of SingleFailureChecker remembers where to look up // test part results, what type of failure we expect, and what // substring the failure message should contain. SingleFailureChecker::SingleFailureChecker(const TestPartResultArray* results, TestPartResult::Type type, const std::string& substr) : results_(results), type_(type), substr_(substr) {} // The destructor of SingleFailureChecker verifies that the given // TestPartResultArray contains exactly one failure that has the given // type and contains the given substring. If that's not the case, a // non-fatal failure will be generated. SingleFailureChecker::~SingleFailureChecker() { EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); } DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( UnitTestImpl* unit_test) : unit_test_(unit_test) {} void DefaultGlobalTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { unit_test_->current_test_result()->AddTestPartResult(result); unit_test_->listeners()->repeater()->OnTestPartResult(result); } DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( UnitTestImpl* unit_test) : unit_test_(unit_test) {} void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); } // Returns the global test part result reporter. TestPartResultReporterInterface* UnitTestImpl::GetGlobalTestPartResultReporter() { internal::MutexLock lock(&global_test_part_result_reporter_mutex_); return global_test_part_result_repoter_; } // Sets the global test part result reporter. void UnitTestImpl::SetGlobalTestPartResultReporter( TestPartResultReporterInterface* reporter) { internal::MutexLock lock(&global_test_part_result_reporter_mutex_); global_test_part_result_repoter_ = reporter; } // Returns the test part result reporter for the current thread. TestPartResultReporterInterface* UnitTestImpl::GetTestPartResultReporterForCurrentThread() { return per_thread_test_part_result_reporter_.get(); } // Sets the test part result reporter for the current thread. void UnitTestImpl::SetTestPartResultReporterForCurrentThread( TestPartResultReporterInterface* reporter) { per_thread_test_part_result_reporter_.set(reporter); } // Gets the number of successful test cases. int UnitTestImpl::successful_test_case_count() const { return CountIf(test_cases_, TestCasePassed); } // Gets the number of failed test cases. int UnitTestImpl::failed_test_case_count() const { return CountIf(test_cases_, TestCaseFailed); } // Gets the number of all test cases. int UnitTestImpl::total_test_case_count() const { return static_cast(test_cases_.size()); } // Gets the number of all test cases that contain at least one test // that should run. int UnitTestImpl::test_case_to_run_count() const { return CountIf(test_cases_, ShouldRunTestCase); } // Gets the number of successful tests. int UnitTestImpl::successful_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); } // Gets the number of failed tests. int UnitTestImpl::failed_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); } // Gets the number of disabled tests that will be reported in the XML report. int UnitTestImpl::reportable_disabled_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::reportable_disabled_test_count); } // Gets the number of disabled tests. int UnitTestImpl::disabled_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); } // Gets the number of tests to be printed in the XML report. int UnitTestImpl::reportable_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count); } // Gets the number of all tests. int UnitTestImpl::total_test_count() const { return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); } // Gets the number of tests that should run. int UnitTestImpl::test_to_run_count() const { return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); } // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // CurrentOsStackTraceExceptTop(1), Foo() will be included in the // trace but Bar() and CurrentOsStackTraceExceptTop() won't. std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { return os_stack_trace_getter()->CurrentStackTrace( static_cast(GTEST_FLAG(stack_trace_depth)), skip_count + 1 // Skips the user-specified number of frames plus this function // itself. ); // NOLINT } // Returns the current time in milliseconds. TimeInMillis GetTimeInMillis() { #if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) // Difference between 1970-01-01 and 1601-01-01 in milliseconds. // http://analogous.blogspot.com/2005/04/epoch.html const TimeInMillis kJavaEpochToWinFileTimeDelta = static_cast(116444736UL) * 100000UL; const DWORD kTenthMicrosInMilliSecond = 10000; SYSTEMTIME now_systime; FILETIME now_filetime; ULARGE_INTEGER now_int64; // FIXME: Shouldn't this just use // GetSystemTimeAsFileTime()? GetSystemTime(&now_systime); if (SystemTimeToFileTime(&now_systime, &now_filetime)) { now_int64.LowPart = now_filetime.dwLowDateTime; now_int64.HighPart = now_filetime.dwHighDateTime; now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - kJavaEpochToWinFileTimeDelta; return now_int64.QuadPart; } return 0; #elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ __timeb64 now; // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 // (deprecated function) there. // FIXME: Use GetTickCount()? Or use // SystemTimeToFileTime() GTEST_DISABLE_MSC_DEPRECATED_PUSH_() _ftime64(&now); GTEST_DISABLE_MSC_DEPRECATED_POP_() return static_cast(now.time) * 1000 + now.millitm; #elif GTEST_HAS_GETTIMEOFDAY_ struct timeval now; gettimeofday(&now, NULL); return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; #else # error "Don't know how to get the current time on your system." #endif } // Utilities // class String. #if GTEST_OS_WINDOWS_MOBILE // Creates a UTF-16 wide string from the given ANSI string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the wide string, or NULL if the // input is NULL. LPCWSTR String::AnsiToUtf16(const char* ansi) { if (!ansi) return NULL; const int length = strlen(ansi); const int unicode_length = MultiByteToWideChar(CP_ACP, 0, ansi, length, NULL, 0); WCHAR* unicode = new WCHAR[unicode_length + 1]; MultiByteToWideChar(CP_ACP, 0, ansi, length, unicode, unicode_length); unicode[unicode_length] = 0; return unicode; } // Creates an ANSI string from the given wide string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the ANSI string, or NULL if the // input is NULL. const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { if (!utf16_str) return NULL; const int ansi_length = WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, NULL, 0, NULL, NULL); char* ansi = new char[ansi_length + 1]; WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, ansi, ansi_length, NULL, NULL); ansi[ansi_length] = 0; return ansi; } #endif // GTEST_OS_WINDOWS_MOBILE // Compares two C strings. Returns true iff they have the same content. // // Unlike strcmp(), this function can handle NULL argument(s). A NULL // C string is considered different to any non-NULL C string, // including the empty string. bool String::CStringEquals(const char * lhs, const char * rhs) { if ( lhs == NULL ) return rhs == NULL; if ( rhs == NULL ) return false; return strcmp(lhs, rhs) == 0; } #if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING // Converts an array of wide chars to a narrow string using the UTF-8 // encoding, and streams the result to the given Message object. static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, Message* msg) { for (size_t i = 0; i != length; ) { // NOLINT if (wstr[i] != L'\0') { *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); while (i != length && wstr[i] != L'\0') i++; } else { *msg << '\0'; i++; } } } #endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING void SplitString(const ::std::string& str, char delimiter, ::std::vector< ::std::string>* dest) { ::std::vector< ::std::string> parsed; ::std::string::size_type pos = 0; while (::testing::internal::AlwaysTrue()) { const ::std::string::size_type colon = str.find(delimiter, pos); if (colon == ::std::string::npos) { parsed.push_back(str.substr(pos)); break; } else { parsed.push_back(str.substr(pos, colon - pos)); pos = colon + 1; } } dest->swap(parsed); } } // namespace internal // Constructs an empty Message. // We allocate the stringstream separately because otherwise each use of // ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's // stack frame leading to huge stack frames in some cases; gcc does not reuse // the stack space. Message::Message() : ss_(new ::std::stringstream) { // By default, we want there to be enough precision when printing // a double to a Message. *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); } // These two overloads allow streaming a wide C string to a Message // using the UTF-8 encoding. Message& Message::operator <<(const wchar_t* wide_c_str) { return *this << internal::String::ShowWideCString(wide_c_str); } Message& Message::operator <<(wchar_t* wide_c_str) { return *this << internal::String::ShowWideCString(wide_c_str); } #if GTEST_HAS_STD_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& Message::operator <<(const ::std::wstring& wstr) { internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); return *this; } #endif // GTEST_HAS_STD_WSTRING #if GTEST_HAS_GLOBAL_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& Message::operator <<(const ::wstring& wstr) { internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); return *this; } #endif // GTEST_HAS_GLOBAL_WSTRING // Gets the text streamed to this object so far as an std::string. // Each '\0' character in the buffer is replaced with "\\0". std::string Message::GetString() const { return internal::StringStreamToString(ss_.get()); } // AssertionResult constructors. // Used in EXPECT_TRUE/FALSE(assertion_result). AssertionResult::AssertionResult(const AssertionResult& other) : success_(other.success_), message_(other.message_.get() != NULL ? new ::std::string(*other.message_) : static_cast< ::std::string*>(NULL)) { } // Swaps two AssertionResults. void AssertionResult::swap(AssertionResult& other) { using std::swap; swap(success_, other.success_); swap(message_, other.message_); } // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. AssertionResult AssertionResult::operator!() const { AssertionResult negation(!success_); if (message_.get() != NULL) negation << *message_; return negation; } // Makes a successful assertion result. AssertionResult AssertionSuccess() { return AssertionResult(true); } // Makes a failed assertion result. AssertionResult AssertionFailure() { return AssertionResult(false); } // Makes a failed assertion result with the given failure message. // Deprecated; use AssertionFailure() << message. AssertionResult AssertionFailure(const Message& message) { return AssertionFailure() << message; } namespace internal { namespace edit_distance { std::vector CalculateOptimalEdits(const std::vector& left, const std::vector& right) { std::vector > costs( left.size() + 1, std::vector(right.size() + 1)); std::vector > best_move( left.size() + 1, std::vector(right.size() + 1)); // Populate for empty right. for (size_t l_i = 0; l_i < costs.size(); ++l_i) { costs[l_i][0] = static_cast(l_i); best_move[l_i][0] = kRemove; } // Populate for empty left. for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) { costs[0][r_i] = static_cast(r_i); best_move[0][r_i] = kAdd; } for (size_t l_i = 0; l_i < left.size(); ++l_i) { for (size_t r_i = 0; r_i < right.size(); ++r_i) { if (left[l_i] == right[r_i]) { // Found a match. Consume it. costs[l_i + 1][r_i + 1] = costs[l_i][r_i]; best_move[l_i + 1][r_i + 1] = kMatch; continue; } const double add = costs[l_i + 1][r_i]; const double remove = costs[l_i][r_i + 1]; const double replace = costs[l_i][r_i]; if (add < remove && add < replace) { costs[l_i + 1][r_i + 1] = add + 1; best_move[l_i + 1][r_i + 1] = kAdd; } else if (remove < add && remove < replace) { costs[l_i + 1][r_i + 1] = remove + 1; best_move[l_i + 1][r_i + 1] = kRemove; } else { // We make replace a little more expensive than add/remove to lower // their priority. costs[l_i + 1][r_i + 1] = replace + 1.00001; best_move[l_i + 1][r_i + 1] = kReplace; } } } // Reconstruct the best path. We do it in reverse order. std::vector best_path; for (size_t l_i = left.size(), r_i = right.size(); l_i > 0 || r_i > 0;) { EditType move = best_move[l_i][r_i]; best_path.push_back(move); l_i -= move != kAdd; r_i -= move != kRemove; } std::reverse(best_path.begin(), best_path.end()); return best_path; } namespace { // Helper class to convert string into ids with deduplication. class InternalStrings { public: size_t GetId(const std::string& str) { IdMap::iterator it = ids_.find(str); if (it != ids_.end()) return it->second; size_t id = ids_.size(); return ids_[str] = id; } private: typedef std::map IdMap; IdMap ids_; }; } // namespace std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right) { std::vector left_ids, right_ids; { InternalStrings intern_table; for (size_t i = 0; i < left.size(); ++i) { left_ids.push_back(intern_table.GetId(left[i])); } for (size_t i = 0; i < right.size(); ++i) { right_ids.push_back(intern_table.GetId(right[i])); } } return CalculateOptimalEdits(left_ids, right_ids); } namespace { // Helper class that holds the state for one hunk and prints it out to the // stream. // It reorders adds/removes when possible to group all removes before all // adds. It also adds the hunk header before printint into the stream. class Hunk { public: Hunk(size_t left_start, size_t right_start) : left_start_(left_start), right_start_(right_start), adds_(), removes_(), common_() {} void PushLine(char edit, const char* line) { switch (edit) { case ' ': ++common_; FlushEdits(); hunk_.push_back(std::make_pair(' ', line)); break; case '-': ++removes_; hunk_removes_.push_back(std::make_pair('-', line)); break; case '+': ++adds_; hunk_adds_.push_back(std::make_pair('+', line)); break; } } void PrintTo(std::ostream* os) { PrintHeader(os); FlushEdits(); for (std::list >::const_iterator it = hunk_.begin(); it != hunk_.end(); ++it) { *os << it->first << it->second << "\n"; } } bool has_edits() const { return adds_ || removes_; } private: void FlushEdits() { hunk_.splice(hunk_.end(), hunk_removes_); hunk_.splice(hunk_.end(), hunk_adds_); } // Print a unified diff header for one hunk. // The format is // "@@ -, +, @@" // where the left/right parts are omitted if unnecessary. void PrintHeader(std::ostream* ss) const { *ss << "@@ "; if (removes_) { *ss << "-" << left_start_ << "," << (removes_ + common_); } if (removes_ && adds_) { *ss << " "; } if (adds_) { *ss << "+" << right_start_ << "," << (adds_ + common_); } *ss << " @@\n"; } size_t left_start_, right_start_; size_t adds_, removes_, common_; std::list > hunk_, hunk_adds_, hunk_removes_; }; } // namespace // Create a list of diff hunks in Unified diff format. // Each hunk has a header generated by PrintHeader above plus a body with // lines prefixed with ' ' for no change, '-' for deletion and '+' for // addition. // 'context' represents the desired unchanged prefix/suffix around the diff. // If two hunks are close enough that their contexts overlap, then they are // joined into one hunk. std::string CreateUnifiedDiff(const std::vector& left, const std::vector& right, size_t context) { const std::vector edits = CalculateOptimalEdits(left, right); size_t l_i = 0, r_i = 0, edit_i = 0; std::stringstream ss; while (edit_i < edits.size()) { // Find first edit. while (edit_i < edits.size() && edits[edit_i] == kMatch) { ++l_i; ++r_i; ++edit_i; } // Find the first line to include in the hunk. const size_t prefix_context = std::min(l_i, context); Hunk hunk(l_i - prefix_context + 1, r_i - prefix_context + 1); for (size_t i = prefix_context; i > 0; --i) { hunk.PushLine(' ', left[l_i - i].c_str()); } // Iterate the edits until we found enough suffix for the hunk or the input // is over. size_t n_suffix = 0; for (; edit_i < edits.size(); ++edit_i) { if (n_suffix >= context) { // Continue only if the next hunk is very close. std::vector::const_iterator it = edits.begin() + edit_i; while (it != edits.end() && *it == kMatch) ++it; if (it == edits.end() || (it - edits.begin()) - edit_i >= context) { // There is no next edit or it is too far away. break; } } EditType edit = edits[edit_i]; // Reset count when a non match is found. n_suffix = edit == kMatch ? n_suffix + 1 : 0; if (edit == kMatch || edit == kRemove || edit == kReplace) { hunk.PushLine(edit == kMatch ? ' ' : '-', left[l_i].c_str()); } if (edit == kAdd || edit == kReplace) { hunk.PushLine('+', right[r_i].c_str()); } // Advance indices, depending on edit type. l_i += edit != kAdd; r_i += edit != kRemove; } if (!hunk.has_edits()) { // We are done. We don't want this hunk. break; } hunk.PrintTo(&ss); } return ss.str(); } } // namespace edit_distance namespace { // The string representation of the values received in EqFailure() are already // escaped. Split them on escaped '\n' boundaries. Leave all other escaped // characters the same. std::vector SplitEscapedString(const std::string& str) { std::vector lines; size_t start = 0, end = str.size(); if (end > 2 && str[0] == '"' && str[end - 1] == '"') { ++start; --end; } bool escaped = false; for (size_t i = start; i + 1 < end; ++i) { if (escaped) { escaped = false; if (str[i] == 'n') { lines.push_back(str.substr(start, i - start - 1)); start = i + 1; } } else { escaped = str[i] == '\\'; } } lines.push_back(str.substr(start, end - start)); return lines; } } // namespace // Constructs and returns the message for an equality assertion // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. // // The first four parameters are the expressions used in the assertion // and their values, as strings. For example, for ASSERT_EQ(foo, bar) // where foo is 5 and bar is 6, we have: // // lhs_expression: "foo" // rhs_expression: "bar" // lhs_value: "5" // rhs_value: "6" // // The ignoring_case parameter is true iff the assertion is a // *_STRCASEEQ*. When it's true, the string "Ignoring case" will // be inserted into the message. AssertionResult EqFailure(const char* lhs_expression, const char* rhs_expression, const std::string& lhs_value, const std::string& rhs_value, bool ignoring_case) { Message msg; msg << "Expected equality of these values:"; msg << "\n " << lhs_expression; if (lhs_value != lhs_expression) { msg << "\n Which is: " << lhs_value; } msg << "\n " << rhs_expression; if (rhs_value != rhs_expression) { msg << "\n Which is: " << rhs_value; } if (ignoring_case) { msg << "\nIgnoring case"; } if (!lhs_value.empty() && !rhs_value.empty()) { const std::vector lhs_lines = SplitEscapedString(lhs_value); const std::vector rhs_lines = SplitEscapedString(rhs_value); if (lhs_lines.size() > 1 || rhs_lines.size() > 1) { msg << "\nWith diff:\n" << edit_distance::CreateUnifiedDiff(lhs_lines, rhs_lines); } } return AssertionFailure() << msg; } // Constructs a failure message for Boolean assertions such as EXPECT_TRUE. std::string GetBoolAssertionFailureMessage( const AssertionResult& assertion_result, const char* expression_text, const char* actual_predicate_value, const char* expected_predicate_value) { const char* actual_message = assertion_result.message(); Message msg; msg << "Value of: " << expression_text << "\n Actual: " << actual_predicate_value; if (actual_message[0] != '\0') msg << " (" << actual_message << ")"; msg << "\nExpected: " << expected_predicate_value; return msg.GetString(); } // Helper function for implementing ASSERT_NEAR. AssertionResult DoubleNearPredFormat(const char* expr1, const char* expr2, const char* abs_error_expr, double val1, double val2, double abs_error) { const double diff = fabs(val1 - val2); if (diff <= abs_error) return AssertionSuccess(); // FIXME: do not print the value of an expression if it's // already a literal. return AssertionFailure() << "The difference between " << expr1 << " and " << expr2 << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" << expr1 << " evaluates to " << val1 << ",\n" << expr2 << " evaluates to " << val2 << ", and\n" << abs_error_expr << " evaluates to " << abs_error << "."; } // Helper template for implementing FloatLE() and DoubleLE(). template AssertionResult FloatingPointLE(const char* expr1, const char* expr2, RawType val1, RawType val2) { // Returns success if val1 is less than val2, if (val1 < val2) { return AssertionSuccess(); } // or if val1 is almost equal to val2. const FloatingPoint lhs(val1), rhs(val2); if (lhs.AlmostEquals(rhs)) { return AssertionSuccess(); } // Note that the above two checks will both fail if either val1 or // val2 is NaN, as the IEEE floating-point standard requires that // any predicate involving a NaN must return false. ::std::stringstream val1_ss; val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) << val1; ::std::stringstream val2_ss; val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) << val2; return AssertionFailure() << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" << " Actual: " << StringStreamToString(&val1_ss) << " vs " << StringStreamToString(&val2_ss); } } // namespace internal // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. AssertionResult FloatLE(const char* expr1, const char* expr2, float val1, float val2) { return internal::FloatingPointLE(expr1, expr2, val1, val2); } // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. AssertionResult DoubleLE(const char* expr1, const char* expr2, double val1, double val2) { return internal::FloatingPointLE(expr1, expr2, val1, val2); } namespace internal { // The helper function for {ASSERT|EXPECT}_EQ with int or enum // arguments. AssertionResult CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs) { if (lhs == rhs) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, FormatForComparisonFailureMessage(lhs, rhs), FormatForComparisonFailureMessage(rhs, lhs), false); } // A macro for implementing the helper functions needed to implement // ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here // just to avoid copy-and-paste of similar code. #define GTEST_IMPL_CMP_HELPER_(op_name, op)\ AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ BiggestInt val1, BiggestInt val2) {\ if (val1 op val2) {\ return AssertionSuccess();\ } else {\ return AssertionFailure() \ << "Expected: (" << expr1 << ") " #op " (" << expr2\ << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ << " vs " << FormatForComparisonFailureMessage(val2, val1);\ }\ } // Implements the helper function for {ASSERT|EXPECT}_NE with int or // enum arguments. GTEST_IMPL_CMP_HELPER_(NE, !=) // Implements the helper function for {ASSERT|EXPECT}_LE with int or // enum arguments. GTEST_IMPL_CMP_HELPER_(LE, <=) // Implements the helper function for {ASSERT|EXPECT}_LT with int or // enum arguments. GTEST_IMPL_CMP_HELPER_(LT, < ) // Implements the helper function for {ASSERT|EXPECT}_GE with int or // enum arguments. GTEST_IMPL_CMP_HELPER_(GE, >=) // Implements the helper function for {ASSERT|EXPECT}_GT with int or // enum arguments. GTEST_IMPL_CMP_HELPER_(GT, > ) #undef GTEST_IMPL_CMP_HELPER_ // The helper function for {ASSERT|EXPECT}_STREQ. AssertionResult CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) { if (String::CStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), false); } // The helper function for {ASSERT|EXPECT}_STRCASEEQ. AssertionResult CmpHelperSTRCASEEQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) { if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), true); } // The helper function for {ASSERT|EXPECT}_STRNE. AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2) { if (!String::CStringEquals(s1, s2)) { return AssertionSuccess(); } else { return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << "), actual: \"" << s1 << "\" vs \"" << s2 << "\""; } } // The helper function for {ASSERT|EXPECT}_STRCASENE. AssertionResult CmpHelperSTRCASENE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2) { if (!String::CaseInsensitiveCStringEquals(s1, s2)) { return AssertionSuccess(); } else { return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << ") (ignoring case), actual: \"" << s1 << "\" vs \"" << s2 << "\""; } } } // namespace internal namespace { // Helper functions for implementing IsSubString() and IsNotSubstring(). // This group of overloaded functions return true iff needle is a // substring of haystack. NULL is considered a substring of itself // only. bool IsSubstringPred(const char* needle, const char* haystack) { if (needle == NULL || haystack == NULL) return needle == haystack; return strstr(haystack, needle) != NULL; } bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { if (needle == NULL || haystack == NULL) return needle == haystack; return wcsstr(haystack, needle) != NULL; } // StringType here can be either ::std::string or ::std::wstring. template bool IsSubstringPred(const StringType& needle, const StringType& haystack) { return haystack.find(needle) != StringType::npos; } // This function implements either IsSubstring() or IsNotSubstring(), // depending on the value of the expected_to_be_substring parameter. // StringType here can be const char*, const wchar_t*, ::std::string, // or ::std::wstring. template AssertionResult IsSubstringImpl( bool expected_to_be_substring, const char* needle_expr, const char* haystack_expr, const StringType& needle, const StringType& haystack) { if (IsSubstringPred(needle, haystack) == expected_to_be_substring) return AssertionSuccess(); const bool is_wide_string = sizeof(needle[0]) > 1; const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; return AssertionFailure() << "Value of: " << needle_expr << "\n" << " Actual: " << begin_string_quote << needle << "\"\n" << "Expected: " << (expected_to_be_substring ? "" : "not ") << "a substring of " << haystack_expr << "\n" << "Which is: " << begin_string_quote << haystack << "\""; } } // namespace // IsSubstring() and IsNotSubstring() check whether needle is a // substring of haystack (NULL is considered a substring of itself // only), and return an appropriate error message when they fail. AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } #if GTEST_HAS_STD_WSTRING AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } #endif // GTEST_HAS_STD_WSTRING namespace internal { #if GTEST_OS_WINDOWS namespace { // Helper function for IsHRESULT{SuccessFailure} predicates AssertionResult HRESULTFailureHelper(const char* expr, const char* expected, long hr) { // NOLINT # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_TV_TITLE // Windows CE doesn't support FormatMessage. const char error_text[] = ""; # else // Looks up the human-readable system message for the HRESULT code // and since we're not passing any params to FormatMessage, we don't // want inserts expanded. const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS; const DWORD kBufSize = 4096; // Gets the system's human readable message string for this HRESULT. char error_text[kBufSize] = { '\0' }; DWORD message_length = ::FormatMessageA(kFlags, 0, // no source, we're asking system hr, // the error 0, // no line width restrictions error_text, // output buffer kBufSize, // buf size NULL); // no arguments for inserts // Trims tailing white space (FormatMessage leaves a trailing CR-LF) for (; message_length && IsSpace(error_text[message_length - 1]); --message_length) { error_text[message_length - 1] = '\0'; } # endif // GTEST_OS_WINDOWS_MOBILE const std::string error_hex("0x" + String::FormatHexInt(hr)); return ::testing::AssertionFailure() << "Expected: " << expr << " " << expected << ".\n" << " Actual: " << error_hex << " " << error_text << "\n"; } } // namespace AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT if (SUCCEEDED(hr)) { return AssertionSuccess(); } return HRESULTFailureHelper(expr, "succeeds", hr); } AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT if (FAILED(hr)) { return AssertionSuccess(); } return HRESULTFailureHelper(expr, "fails", hr); } #endif // GTEST_OS_WINDOWS // Utility functions for encoding Unicode text (wide strings) in // UTF-8. // A Unicode code-point can have up to 21 bits, and is encoded in UTF-8 // like this: // // Code-point length Encoding // 0 - 7 bits 0xxxxxxx // 8 - 11 bits 110xxxxx 10xxxxxx // 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx // 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx // The maximum code-point a one-byte UTF-8 sequence can represent. const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; // The maximum code-point a two-byte UTF-8 sequence can represent. const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; // The maximum code-point a three-byte UTF-8 sequence can represent. const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; // The maximum code-point a four-byte UTF-8 sequence can represent. const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; // Chops off the n lowest bits from a bit pattern. Returns the n // lowest bits. As a side effect, the original bit pattern will be // shifted to the right by n bits. inline UInt32 ChopLowBits(UInt32* bits, int n) { const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); *bits >>= n; return low_bits; } // Converts a Unicode code point to a narrow string in UTF-8 encoding. // code_point parameter is of type UInt32 because wchar_t may not be // wide enough to contain a code point. // If the code_point is not a valid Unicode code point // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted // to "(Invalid Unicode 0xXXXXXXXX)". std::string CodePointToUtf8(UInt32 code_point) { if (code_point > kMaxCodePoint4) { return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")"; } char str[5]; // Big enough for the largest valid code point. if (code_point <= kMaxCodePoint1) { str[1] = '\0'; str[0] = static_cast(code_point); // 0xxxxxxx } else if (code_point <= kMaxCodePoint2) { str[2] = '\0'; str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xC0 | code_point); // 110xxxxx } else if (code_point <= kMaxCodePoint3) { str[3] = '\0'; str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xE0 | code_point); // 1110xxxx } else { // code_point <= kMaxCodePoint4 str[4] = '\0'; str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xF0 | code_point); // 11110xxx } return str; } // The following two functions only make sense if the system // uses UTF-16 for wide string encoding. All supported systems // with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. // Determines if the arguments constitute UTF-16 surrogate pair // and thus should be combined into a single Unicode code point // using CreateCodePointFromUtf16SurrogatePair. inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { return sizeof(wchar_t) == 2 && (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; } // Creates a Unicode code point from UTF16 surrogate pair. inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, wchar_t second) { const UInt32 mask = (1 << 10) - 1; return (sizeof(wchar_t) == 2) ? (((first & mask) << 10) | (second & mask)) + 0x10000 : // This function should not be called when the condition is // false, but we provide a sensible default in case it is. static_cast(first); } // Converts a wide string to a narrow string in UTF-8 encoding. // The wide string is assumed to have the following encoding: // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) // UTF-32 if sizeof(wchar_t) == 4 (on Linux) // Parameter str points to a null-terminated wide string. // Parameter num_chars may additionally limit the number // of wchar_t characters processed. -1 is used when the entire string // should be processed. // If the string contains code points that are not valid Unicode code points // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output // as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding // and contains invalid UTF-16 surrogate pairs, values in those pairs // will be encoded as individual Unicode characters from Basic Normal Plane. std::string WideStringToUtf8(const wchar_t* str, int num_chars) { if (num_chars == -1) num_chars = static_cast(wcslen(str)); ::std::stringstream stream; for (int i = 0; i < num_chars; ++i) { UInt32 unicode_code_point; if (str[i] == L'\0') { break; } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], str[i + 1]); i++; } else { unicode_code_point = static_cast(str[i]); } stream << CodePointToUtf8(unicode_code_point); } return StringStreamToString(&stream); } // Converts a wide C string to an std::string using the UTF-8 encoding. // NULL will be converted to "(null)". std::string String::ShowWideCString(const wchar_t * wide_c_str) { if (wide_c_str == NULL) return "(null)"; return internal::WideStringToUtf8(wide_c_str, -1); } // Compares two wide C strings. Returns true iff they have the same // content. // // Unlike wcscmp(), this function can handle NULL argument(s). A NULL // C string is considered different to any non-NULL C string, // including the empty string. bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { if (lhs == NULL) return rhs == NULL; if (rhs == NULL) return false; return wcscmp(lhs, rhs) == 0; } // Helper function for *_STREQ on wide strings. AssertionResult CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const wchar_t* lhs, const wchar_t* rhs) { if (String::WideCStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), false); } // Helper function for *_STRNE on wide strings. AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2) { if (!String::WideCStringEquals(s1, s2)) { return AssertionSuccess(); } return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << "), actual: " << PrintToString(s1) << " vs " << PrintToString(s2); } // Compares two C strings, ignoring case. Returns true iff they have // the same content. // // Unlike strcasecmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { if (lhs == NULL) return rhs == NULL; if (rhs == NULL) return false; return posix::StrCaseCmp(lhs, rhs) == 0; } // Compares two wide C strings, ignoring case. Returns true iff they // have the same content. // // Unlike wcscasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL wide C string, // including the empty string. // NB: The implementations on different platforms slightly differ. // On windows, this method uses _wcsicmp which compares according to LC_CTYPE // environment variable. On GNU platform this method uses wcscasecmp // which compares according to LC_CTYPE category of the current locale. // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the // current locale. bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs) { if (lhs == NULL) return rhs == NULL; if (rhs == NULL) return false; #if GTEST_OS_WINDOWS return _wcsicmp(lhs, rhs) == 0; #elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID return wcscasecmp(lhs, rhs) == 0; #else // Android, Mac OS X and Cygwin don't define wcscasecmp. // Other unknown OSes may not define it either. wint_t left, right; do { left = towlower(*lhs++); right = towlower(*rhs++); } while (left && left == right); return left == right; #endif // OS selector } // Returns true iff str ends with the given suffix, ignoring case. // Any string is considered to end with an empty suffix. bool String::EndsWithCaseInsensitive( const std::string& str, const std::string& suffix) { const size_t str_len = str.length(); const size_t suffix_len = suffix.length(); return (str_len >= suffix_len) && CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, suffix.c_str()); } // Formats an int value as "%02d". std::string String::FormatIntWidth2(int value) { std::stringstream ss; ss << std::setfill('0') << std::setw(2) << value; return ss.str(); } // Formats an int value as "%X". std::string String::FormatHexInt(int value) { std::stringstream ss; ss << std::hex << std::uppercase << value; return ss.str(); } // Formats a byte as "%02X". std::string String::FormatByte(unsigned char value) { std::stringstream ss; ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase << static_cast(value); return ss.str(); } // Converts the buffer in a stringstream to an std::string, converting NUL // bytes to "\\0" along the way. std::string StringStreamToString(::std::stringstream* ss) { const ::std::string& str = ss->str(); const char* const start = str.c_str(); const char* const end = start + str.length(); std::string result; result.reserve(2 * (end - start)); for (const char* ch = start; ch != end; ++ch) { if (*ch == '\0') { result += "\\0"; // Replaces NUL with "\\0"; } else { result += *ch; } } return result; } // Appends the user-supplied message to the Google-Test-generated message. std::string AppendUserMessage(const std::string& gtest_msg, const Message& user_msg) { // Appends the user message if it's non-empty. const std::string user_msg_string = user_msg.GetString(); if (user_msg_string.empty()) { return gtest_msg; } return gtest_msg + "\n" + user_msg_string; } } // namespace internal // class TestResult // Creates an empty TestResult. TestResult::TestResult() : death_test_count_(0), elapsed_time_(0) { } // D'tor. TestResult::~TestResult() { } // Returns the i-th test part result among all the results. i can // range from 0 to total_part_count() - 1. If i is not in that range, // aborts the program. const TestPartResult& TestResult::GetTestPartResult(int i) const { if (i < 0 || i >= total_part_count()) internal::posix::Abort(); return test_part_results_.at(i); } // Returns the i-th test property. i can range from 0 to // test_property_count() - 1. If i is not in that range, aborts the // program. const TestProperty& TestResult::GetTestProperty(int i) const { if (i < 0 || i >= test_property_count()) internal::posix::Abort(); return test_properties_.at(i); } // Clears the test part results. void TestResult::ClearTestPartResults() { test_part_results_.clear(); } // Adds a test part result to the list. void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { test_part_results_.push_back(test_part_result); } // Adds a test property to the list. If a property with the same key as the // supplied property is already represented, the value of this test_property // replaces the old value for that key. void TestResult::RecordProperty(const std::string& xml_element, const TestProperty& test_property) { if (!ValidateTestProperty(xml_element, test_property)) { return; } internal::MutexLock lock(&test_properites_mutex_); const std::vector::iterator property_with_matching_key = std::find_if(test_properties_.begin(), test_properties_.end(), internal::TestPropertyKeyIs(test_property.key())); if (property_with_matching_key == test_properties_.end()) { test_properties_.push_back(test_property); return; } property_with_matching_key->SetValue(test_property.value()); } // The list of reserved attributes used in the element of XML // output. static const char* const kReservedTestSuitesAttributes[] = { "disabled", "errors", "failures", "name", "random_seed", "tests", "time", "timestamp" }; // The list of reserved attributes used in the element of XML // output. static const char* const kReservedTestSuiteAttributes[] = { "disabled", "errors", "failures", "name", "tests", "time" }; // The list of reserved attributes used in the element of XML output. static const char* const kReservedTestCaseAttributes[] = { "classname", "name", "status", "time", "type_param", "value_param", "file", "line"}; template std::vector ArrayAsVector(const char* const (&array)[kSize]) { return std::vector(array, array + kSize); } static std::vector GetReservedAttributesForElement( const std::string& xml_element) { if (xml_element == "testsuites") { return ArrayAsVector(kReservedTestSuitesAttributes); } else if (xml_element == "testsuite") { return ArrayAsVector(kReservedTestSuiteAttributes); } else if (xml_element == "testcase") { return ArrayAsVector(kReservedTestCaseAttributes); } else { GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; } // This code is unreachable but some compilers may not realizes that. return std::vector(); } static std::string FormatWordList(const std::vector& words) { Message word_list; for (size_t i = 0; i < words.size(); ++i) { if (i > 0 && words.size() > 2) { word_list << ", "; } if (i == words.size() - 1) { word_list << "and "; } word_list << "'" << words[i] << "'"; } return word_list.GetString(); } static bool ValidateTestPropertyName( const std::string& property_name, const std::vector& reserved_names) { if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != reserved_names.end()) { ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name << " (" << FormatWordList(reserved_names) << " are reserved by " << GTEST_NAME_ << ")"; return false; } return true; } // Adds a failure if the key is a reserved attribute of the element named // xml_element. Returns true if the property is valid. bool TestResult::ValidateTestProperty(const std::string& xml_element, const TestProperty& test_property) { return ValidateTestPropertyName(test_property.key(), GetReservedAttributesForElement(xml_element)); } // Clears the object. void TestResult::Clear() { test_part_results_.clear(); test_properties_.clear(); death_test_count_ = 0; elapsed_time_ = 0; } // Returns true iff the test failed. bool TestResult::Failed() const { for (int i = 0; i < total_part_count(); ++i) { if (GetTestPartResult(i).failed()) return true; } return false; } // Returns true iff the test part fatally failed. static bool TestPartFatallyFailed(const TestPartResult& result) { return result.fatally_failed(); } // Returns true iff the test fatally failed. bool TestResult::HasFatalFailure() const { return CountIf(test_part_results_, TestPartFatallyFailed) > 0; } // Returns true iff the test part non-fatally failed. static bool TestPartNonfatallyFailed(const TestPartResult& result) { return result.nonfatally_failed(); } // Returns true iff the test has a non-fatal failure. bool TestResult::HasNonfatalFailure() const { return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; } // Gets the number of all test parts. This is the sum of the number // of successful test parts and the number of failed test parts. int TestResult::total_part_count() const { return static_cast(test_part_results_.size()); } // Returns the number of the test properties. int TestResult::test_property_count() const { return static_cast(test_properties_.size()); } // class Test // Creates a Test object. // The c'tor saves the states of all flags. Test::Test() : gtest_flag_saver_(new GTEST_FLAG_SAVER_) { } // The d'tor restores the states of all flags. The actual work is // done by the d'tor of the gtest_flag_saver_ field, and thus not // visible here. Test::~Test() { } // Sets up the test fixture. // // A sub-class may override this. void Test::SetUp() { } // Tears down the test fixture. // // A sub-class may override this. void Test::TearDown() { } // Allows user supplied key value pairs to be recorded for later output. void Test::RecordProperty(const std::string& key, const std::string& value) { UnitTest::GetInstance()->RecordProperty(key, value); } // Allows user supplied key value pairs to be recorded for later output. void Test::RecordProperty(const std::string& key, int value) { Message value_message; value_message << value; RecordProperty(key, value_message.GetString().c_str()); } namespace internal { void ReportFailureInUnknownLocation(TestPartResult::Type result_type, const std::string& message) { // This function is a friend of UnitTest and as such has access to // AddTestPartResult. UnitTest::GetInstance()->AddTestPartResult( result_type, NULL, // No info about the source file where the exception occurred. -1, // We have no info on which line caused the exception. message, ""); // No stack trace, either. } } // namespace internal // Google Test requires all tests in the same test case to use the same test // fixture class. This function checks if the current test has the // same fixture class as the first test in the current test case. If // yes, it returns true; otherwise it generates a Google Test failure and // returns false. bool Test::HasSameFixtureClass() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); const TestCase* const test_case = impl->current_test_case(); // Info about the first test in the current test case. const TestInfo* const first_test_info = test_case->test_info_list()[0]; const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_; const char* const first_test_name = first_test_info->name(); // Info about the current test. const TestInfo* const this_test_info = impl->current_test_info(); const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_; const char* const this_test_name = this_test_info->name(); if (this_fixture_id != first_fixture_id) { // Is the first test defined using TEST? const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); // Is this test defined using TEST? const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); if (first_is_TEST || this_is_TEST) { // Both TEST and TEST_F appear in same test case, which is incorrect. // Tell the user how to fix this. // Gets the name of the TEST and the name of the TEST_F. Note // that first_is_TEST and this_is_TEST cannot both be true, as // the fixture IDs are different for the two tests. const char* const TEST_name = first_is_TEST ? first_test_name : this_test_name; const char* const TEST_F_name = first_is_TEST ? this_test_name : first_test_name; ADD_FAILURE() << "All tests in the same test case must use the same test fixture\n" << "class, so mixing TEST_F and TEST in the same test case is\n" << "illegal. In test case " << this_test_info->test_case_name() << ",\n" << "test " << TEST_F_name << " is defined using TEST_F but\n" << "test " << TEST_name << " is defined using TEST. You probably\n" << "want to change the TEST to TEST_F or move it to another test\n" << "case."; } else { // Two fixture classes with the same name appear in two different // namespaces, which is not allowed. Tell the user how to fix this. ADD_FAILURE() << "All tests in the same test case must use the same test fixture\n" << "class. However, in test case " << this_test_info->test_case_name() << ",\n" << "you defined test " << first_test_name << " and test " << this_test_name << "\n" << "using two different test fixture classes. This can happen if\n" << "the two classes are from different namespaces or translation\n" << "units and have the same name. You should probably rename one\n" << "of the classes to put the tests into different test cases."; } return false; } return true; } #if GTEST_HAS_SEH // Adds an "exception thrown" fatal failure to the current test. This // function returns its result via an output parameter pointer because VC++ // prohibits creation of objects with destructors on stack in functions // using __try (see error C2712). static std::string* FormatSehExceptionMessage(DWORD exception_code, const char* location) { Message message; message << "SEH exception with code 0x" << std::setbase(16) << exception_code << std::setbase(10) << " thrown in " << location << "."; return new std::string(message.GetString()); } #endif // GTEST_HAS_SEH namespace internal { #if GTEST_HAS_EXCEPTIONS // Adds an "exception thrown" fatal failure to the current test. static std::string FormatCxxExceptionMessage(const char* description, const char* location) { Message message; if (description != NULL) { message << "C++ exception with description \"" << description << "\""; } else { message << "Unknown C++ exception"; } message << " thrown in " << location << "."; return message.GetString(); } static std::string PrintTestPartResultToString( const TestPartResult& test_part_result); GoogleTestFailureException::GoogleTestFailureException( const TestPartResult& failure) : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} #endif // GTEST_HAS_EXCEPTIONS // We put these helper functions in the internal namespace as IBM's xlC // compiler rejects the code if they were declared static. // Runs the given method and handles SEH exceptions it throws, when // SEH is supported; returns the 0-value for type Result in case of an // SEH exception. (Microsoft compilers cannot handle SEH and C++ // exceptions in the same function. Therefore, we provide a separate // wrapper function for handling SEH exceptions.) template Result HandleSehExceptionsInMethodIfSupported( T* object, Result (T::*method)(), const char* location) { #if GTEST_HAS_SEH __try { return (object->*method)(); } __except (internal::UnitTestOptions::GTestShouldProcessSEH( // NOLINT GetExceptionCode())) { // We create the exception message on the heap because VC++ prohibits // creation of objects with destructors on stack in functions using __try // (see error C2712). std::string* exception_message = FormatSehExceptionMessage( GetExceptionCode(), location); internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, *exception_message); delete exception_message; return static_cast(0); } #else (void)location; return (object->*method)(); #endif // GTEST_HAS_SEH } // Runs the given method and catches and reports C++ and/or SEH-style // exceptions, if they are supported; returns the 0-value for type // Result in case of an SEH exception. template Result HandleExceptionsInMethodIfSupported( T* object, Result (T::*method)(), const char* location) { // NOTE: The user code can affect the way in which Google Test handles // exceptions by setting GTEST_FLAG(catch_exceptions), but only before // RUN_ALL_TESTS() starts. It is technically possible to check the flag // after the exception is caught and either report or re-throw the // exception based on the flag's value: // // try { // // Perform the test method. // } catch (...) { // if (GTEST_FLAG(catch_exceptions)) // // Report the exception as failure. // else // throw; // Re-throws the original exception. // } // // However, the purpose of this flag is to allow the program to drop into // the debugger when the exception is thrown. On most platforms, once the // control enters the catch block, the exception origin information is // lost and the debugger will stop the program at the point of the // re-throw in this function -- instead of at the point of the original // throw statement in the code under test. For this reason, we perform // the check early, sacrificing the ability to affect Google Test's // exception handling in the method where the exception is thrown. if (internal::GetUnitTestImpl()->catch_exceptions()) { #if GTEST_HAS_EXCEPTIONS try { return HandleSehExceptionsInMethodIfSupported(object, method, location); } catch (const AssertionException&) { // NOLINT // This failure was reported already. } catch (const internal::GoogleTestFailureException&) { // NOLINT // This exception type can only be thrown by a failed Google // Test assertion with the intention of letting another testing // framework catch it. Therefore we just re-throw it. throw; } catch (const std::exception& e) { // NOLINT internal::ReportFailureInUnknownLocation( TestPartResult::kFatalFailure, FormatCxxExceptionMessage(e.what(), location)); } catch (...) { // NOLINT internal::ReportFailureInUnknownLocation( TestPartResult::kFatalFailure, FormatCxxExceptionMessage(NULL, location)); } return static_cast(0); #else return HandleSehExceptionsInMethodIfSupported(object, method, location); #endif // GTEST_HAS_EXCEPTIONS } else { return (object->*method)(); } } } // namespace internal // Runs the test and updates the test result. void Test::Run() { if (!HasSameFixtureClass()) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()"); // We will run the test only if SetUp() was successful. if (!HasFatalFailure()) { impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &Test::TestBody, "the test body"); } // However, we want to clean up as much as possible. Hence we will // always call TearDown(), even if SetUp() or the test body has // failed. impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &Test::TearDown, "TearDown()"); } // Returns true iff the current test has a fatal failure. bool Test::HasFatalFailure() { return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); } // Returns true iff the current test has a non-fatal failure. bool Test::HasNonfatalFailure() { return internal::GetUnitTestImpl()->current_test_result()-> HasNonfatalFailure(); } // class TestInfo // Constructs a TestInfo object. It assumes ownership of the test factory // object. TestInfo::TestInfo(const std::string& a_test_case_name, const std::string& a_name, const char* a_type_param, const char* a_value_param, internal::CodeLocation a_code_location, internal::TypeId fixture_class_id, internal::TestFactoryBase* factory) : test_case_name_(a_test_case_name), name_(a_name), type_param_(a_type_param ? new std::string(a_type_param) : NULL), value_param_(a_value_param ? new std::string(a_value_param) : NULL), location_(a_code_location), fixture_class_id_(fixture_class_id), should_run_(false), is_disabled_(false), matches_filter_(false), factory_(factory), result_() {} // Destructs a TestInfo object. TestInfo::~TestInfo() { delete factory_; } namespace internal { // Creates a new TestInfo object and registers it with Google Test; // returns the created object. // // Arguments: // // test_case_name: name of the test case // name: name of the test // type_param: the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // value_param: text representation of the test's value parameter, // or NULL if this is not a value-parameterized test. // code_location: code location where the test is defined // fixture_class_id: ID of the test fixture class // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case // factory: pointer to the factory that creates a test object. // The newly created TestInfo instance will assume // ownership of the factory object. TestInfo* MakeAndRegisterTestInfo( const char* test_case_name, const char* name, const char* type_param, const char* value_param, CodeLocation code_location, TypeId fixture_class_id, SetUpTestCaseFunc set_up_tc, TearDownTestCaseFunc tear_down_tc, TestFactoryBase* factory) { TestInfo* const test_info = new TestInfo(test_case_name, name, type_param, value_param, code_location, fixture_class_id, factory); GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); return test_info; } void ReportInvalidTestCaseType(const char* test_case_name, CodeLocation code_location) { Message errors; errors << "Attempted redefinition of test case " << test_case_name << ".\n" << "All tests in the same test case must use the same test fixture\n" << "class. However, in test case " << test_case_name << ", you tried\n" << "to define a test using a fixture class different from the one\n" << "used earlier. This can happen if the two fixture classes are\n" << "from different namespaces and have the same name. You should\n" << "probably rename one of the classes to put the tests into different\n" << "test cases."; GTEST_LOG_(ERROR) << FormatFileLocation(code_location.file.c_str(), code_location.line) << " " << errors.GetString(); } } // namespace internal namespace { // A predicate that checks the test name of a TestInfo against a known // value. // // This is used for implementation of the TestCase class only. We put // it in the anonymous namespace to prevent polluting the outer // namespace. // // TestNameIs is copyable. class TestNameIs { public: // Constructor. // // TestNameIs has NO default constructor. explicit TestNameIs(const char* name) : name_(name) {} // Returns true iff the test name of test_info matches name_. bool operator()(const TestInfo * test_info) const { return test_info && test_info->name() == name_; } private: std::string name_; }; } // namespace namespace internal { // This method expands all parameterized tests registered with macros TEST_P // and INSTANTIATE_TEST_CASE_P into regular tests and registers those. // This will be done just once during the program runtime. void UnitTestImpl::RegisterParameterizedTests() { if (!parameterized_tests_registered_) { parameterized_test_registry_.RegisterTests(); parameterized_tests_registered_ = true; } } } // namespace internal // Creates the test object, runs it, records its result, and then // deletes it. void TestInfo::Run() { if (!should_run_) return; // Tells UnitTest where to store test result. internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_info(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); // Notifies the unit test event listeners that a test is about to start. repeater->OnTestStart(*this); const TimeInMillis start = internal::GetTimeInMillis(); impl->os_stack_trace_getter()->UponLeavingGTest(); // Creates the test object. Test* const test = internal::HandleExceptionsInMethodIfSupported( factory_, &internal::TestFactoryBase::CreateTest, "the test fixture's constructor"); // Runs the test if the constructor didn't generate a fatal failure. // Note that the object will not be null if (!Test::HasFatalFailure()) { // This doesn't throw as all user code that can throw are wrapped into // exception handling code. test->Run(); } // Deletes the test object. impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( test, &Test::DeleteSelf_, "the test fixture's destructor"); result_.set_elapsed_time(internal::GetTimeInMillis() - start); // Notifies the unit test event listener that a test has just finished. repeater->OnTestEnd(*this); // Tells UnitTest to stop associating assertion results to this // test. impl->set_current_test_info(NULL); } // class TestCase // Gets the number of successful tests in this test case. int TestCase::successful_test_count() const { return CountIf(test_info_list_, TestPassed); } // Gets the number of failed tests in this test case. int TestCase::failed_test_count() const { return CountIf(test_info_list_, TestFailed); } // Gets the number of disabled tests that will be reported in the XML report. int TestCase::reportable_disabled_test_count() const { return CountIf(test_info_list_, TestReportableDisabled); } // Gets the number of disabled tests in this test case. int TestCase::disabled_test_count() const { return CountIf(test_info_list_, TestDisabled); } // Gets the number of tests to be printed in the XML report. int TestCase::reportable_test_count() const { return CountIf(test_info_list_, TestReportable); } // Get the number of tests in this test case that should run. int TestCase::test_to_run_count() const { return CountIf(test_info_list_, ShouldRunTest); } // Gets the number of all tests. int TestCase::total_test_count() const { return static_cast(test_info_list_.size()); } // Creates a TestCase with the given name. // // Arguments: // // name: name of the test case // a_type_param: the name of the test case's type parameter, or NULL if // this is not a typed or a type-parameterized test case. // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case TestCase::TestCase(const char* a_name, const char* a_type_param, Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc) : name_(a_name), type_param_(a_type_param ? new std::string(a_type_param) : NULL), set_up_tc_(set_up_tc), tear_down_tc_(tear_down_tc), should_run_(false), elapsed_time_(0) { } // Destructor of TestCase. TestCase::~TestCase() { // Deletes every Test in the collection. ForEach(test_info_list_, internal::Delete); } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. const TestInfo* TestCase::GetTestInfo(int i) const { const int index = GetElementOr(test_indices_, i, -1); return index < 0 ? NULL : test_info_list_[index]; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. TestInfo* TestCase::GetMutableTestInfo(int i) { const int index = GetElementOr(test_indices_, i, -1); return index < 0 ? NULL : test_info_list_[index]; } // Adds a test to this test case. Will delete the test upon // destruction of the TestCase object. void TestCase::AddTestInfo(TestInfo * test_info) { test_info_list_.push_back(test_info); test_indices_.push_back(static_cast(test_indices_.size())); } // Runs every test in this TestCase. void TestCase::Run() { if (!should_run_) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_case(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); repeater->OnTestCaseStart(*this); impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &TestCase::RunSetUpTestCase, "SetUpTestCase()"); const internal::TimeInMillis start = internal::GetTimeInMillis(); for (int i = 0; i < total_test_count(); i++) { GetMutableTestInfo(i)->Run(); } elapsed_time_ = internal::GetTimeInMillis() - start; impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &TestCase::RunTearDownTestCase, "TearDownTestCase()"); repeater->OnTestCaseEnd(*this); impl->set_current_test_case(NULL); } // Clears the results of all tests in this test case. void TestCase::ClearResult() { ad_hoc_test_result_.Clear(); ForEach(test_info_list_, TestInfo::ClearTestResult); } // Shuffles the tests in this test case. void TestCase::ShuffleTests(internal::Random* random) { Shuffle(random, &test_indices_); } // Restores the test order to before the first shuffle. void TestCase::UnshuffleTests() { for (size_t i = 0; i < test_indices_.size(); i++) { test_indices_[i] = static_cast(i); } } // Formats a countable noun. Depending on its quantity, either the // singular form or the plural form is used. e.g. // // FormatCountableNoun(1, "formula", "formuli") returns "1 formula". // FormatCountableNoun(5, "book", "books") returns "5 books". static std::string FormatCountableNoun(int count, const char * singular_form, const char * plural_form) { return internal::StreamableToString(count) + " " + (count == 1 ? singular_form : plural_form); } // Formats the count of tests. static std::string FormatTestCount(int test_count) { return FormatCountableNoun(test_count, "test", "tests"); } // Formats the count of test cases. static std::string FormatTestCaseCount(int test_case_count) { return FormatCountableNoun(test_case_count, "test case", "test cases"); } // Converts a TestPartResult::Type enum to human-friendly string // representation. Both kNonFatalFailure and kFatalFailure are translated // to "Failure", as the user usually doesn't care about the difference // between the two when viewing the test result. static const char * TestPartResultTypeToString(TestPartResult::Type type) { switch (type) { case TestPartResult::kSuccess: return "Success"; case TestPartResult::kNonFatalFailure: case TestPartResult::kFatalFailure: #ifdef _MSC_VER return "error: "; #else return "Failure\n"; #endif default: return "Unknown result type"; } } namespace internal { // Prints a TestPartResult to an std::string. static std::string PrintTestPartResultToString( const TestPartResult& test_part_result) { return (Message() << internal::FormatFileLocation(test_part_result.file_name(), test_part_result.line_number()) << " " << TestPartResultTypeToString(test_part_result.type()) << test_part_result.message()).GetString(); } // Prints a TestPartResult. static void PrintTestPartResult(const TestPartResult& test_part_result) { const std::string& result = PrintTestPartResultToString(test_part_result); printf("%s\n", result.c_str()); fflush(stdout); // If the test program runs in Visual Studio or a debugger, the // following statements add the test part result message to the Output // window such that the user can double-click on it to jump to the // corresponding source code location; otherwise they do nothing. #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE // We don't call OutputDebugString*() on Windows Mobile, as printing // to stdout is done by OutputDebugString() there already - we don't // want the same message printed twice. ::OutputDebugStringA(result.c_str()); ::OutputDebugStringA("\n"); #endif } // class PrettyUnitTestResultPrinter enum GTestColor { COLOR_DEFAULT, COLOR_RED, COLOR_GREEN, COLOR_YELLOW }; #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \ !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW // Returns the character attribute for the given color. static WORD GetColorAttribute(GTestColor color) { switch (color) { case COLOR_RED: return FOREGROUND_RED; case COLOR_GREEN: return FOREGROUND_GREEN; case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; default: return 0; } } static int GetBitOffset(WORD color_mask) { if (color_mask == 0) return 0; int bitOffset = 0; while ((color_mask & 1) == 0) { color_mask >>= 1; ++bitOffset; } return bitOffset; } static WORD GetNewColor(GTestColor color, WORD old_color_attrs) { // Let's reuse the BG static const WORD background_mask = BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_INTENSITY; static const WORD foreground_mask = FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY; const WORD existing_bg = old_color_attrs & background_mask; WORD new_color = GetColorAttribute(color) | existing_bg | FOREGROUND_INTENSITY; static const int bg_bitOffset = GetBitOffset(background_mask); static const int fg_bitOffset = GetBitOffset(foreground_mask); if (((new_color & background_mask) >> bg_bitOffset) == ((new_color & foreground_mask) >> fg_bitOffset)) { new_color ^= FOREGROUND_INTENSITY; // invert intensity } return new_color; } #else // Returns the ANSI color code for the given color. COLOR_DEFAULT is // an invalid input. static const char* GetAnsiColorCode(GTestColor color) { switch (color) { case COLOR_RED: return "1"; case COLOR_GREEN: return "2"; case COLOR_YELLOW: return "3"; default: return NULL; }; } #endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE // Returns true iff Google Test should use colors in the output. bool ShouldUseColor(bool stdout_is_tty) { const char* const gtest_color = GTEST_FLAG(color).c_str(); if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW // On Windows the TERM variable is usually not set, but the // console there does support colors. return stdout_is_tty; #else // On non-Windows platforms, we rely on the TERM variable. const char* const term = posix::GetEnv("TERM"); const bool term_supports_color = String::CStringEquals(term, "xterm") || String::CStringEquals(term, "xterm-color") || String::CStringEquals(term, "xterm-256color") || String::CStringEquals(term, "screen") || String::CStringEquals(term, "screen-256color") || String::CStringEquals(term, "tmux") || String::CStringEquals(term, "tmux-256color") || String::CStringEquals(term, "rxvt-unicode") || String::CStringEquals(term, "rxvt-unicode-256color") || String::CStringEquals(term, "linux") || String::CStringEquals(term, "cygwin"); return stdout_is_tty && term_supports_color; #endif // GTEST_OS_WINDOWS } return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || String::CaseInsensitiveCStringEquals(gtest_color, "true") || String::CaseInsensitiveCStringEquals(gtest_color, "t") || String::CStringEquals(gtest_color, "1"); // We take "yes", "true", "t", and "1" as meaning "yes". If the // value is neither one of these nor "auto", we treat it as "no" to // be conservative. } // Helpers for printing colored strings to stdout. Note that on Windows, we // cannot simply emit special characters and have the terminal change colors. // This routine must actually emit the characters rather than return a string // that would be colored when printed, as can be done on Linux. static void ColoredPrintf(GTestColor color, const char* fmt, ...) { va_list args; va_start(args, fmt); #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS || \ GTEST_OS_IOS || GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT const bool use_color = AlwaysFalse(); #else static const bool in_color_mode = ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); const bool use_color = in_color_mode && (color != COLOR_DEFAULT); #endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS // The '!= 0' comparison is necessary to satisfy MSVC 7.1. if (!use_color) { vprintf(fmt, args); va_end(args); return; } #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \ !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); // Gets the current text color. CONSOLE_SCREEN_BUFFER_INFO buffer_info; GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); const WORD old_color_attrs = buffer_info.wAttributes; const WORD new_color = GetNewColor(color, old_color_attrs); // We need to flush the stream buffers into the console before each // SetConsoleTextAttribute call lest it affect the text that is already // printed but has not yet reached the console. fflush(stdout); SetConsoleTextAttribute(stdout_handle, new_color); vprintf(fmt, args); fflush(stdout); // Restores the text color. SetConsoleTextAttribute(stdout_handle, old_color_attrs); #else printf("\033[0;3%sm", GetAnsiColorCode(color)); vprintf(fmt, args); printf("\033[m"); // Resets the terminal to default. #endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE va_end(args); } // Text printed in Google Test's text output and --gtest_list_tests // output to label the type parameter and value parameter for a test. static const char kTypeParamLabel[] = "TypeParam"; static const char kValueParamLabel[] = "GetParam()"; static void PrintFullTestCommentIfPresent(const TestInfo& test_info) { const char* const type_param = test_info.type_param(); const char* const value_param = test_info.value_param(); if (type_param != NULL || value_param != NULL) { printf(", where "); if (type_param != NULL) { printf("%s = %s", kTypeParamLabel, type_param); if (value_param != NULL) printf(" and "); } if (value_param != NULL) { printf("%s = %s", kValueParamLabel, value_param); } } } // This class implements the TestEventListener interface. // // Class PrettyUnitTestResultPrinter is copyable. class PrettyUnitTestResultPrinter : public TestEventListener { public: PrettyUnitTestResultPrinter() {} static void PrintTestName(const char * test_case, const char * test) { printf("%s.%s", test_case, test); } // The following methods override what's in the TestEventListener class. virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} virtual void OnTestCaseStart(const TestCase& test_case); virtual void OnTestStart(const TestInfo& test_info); virtual void OnTestPartResult(const TestPartResult& result); virtual void OnTestEnd(const TestInfo& test_info); virtual void OnTestCaseEnd(const TestCase& test_case); virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} private: static void PrintFailedTests(const UnitTest& unit_test); }; // Fired before each iteration of tests starts. void PrettyUnitTestResultPrinter::OnTestIterationStart( const UnitTest& unit_test, int iteration) { if (GTEST_FLAG(repeat) != 1) printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); const char* const filter = GTEST_FLAG(filter).c_str(); // Prints the filter if it's not *. This reminds the user that some // tests may be skipped. if (!String::CStringEquals(filter, kUniversalFilter)) { ColoredPrintf(COLOR_YELLOW, "Note: %s filter = %s\n", GTEST_NAME_, filter); } if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { const Int32 shard_index = Int32FromEnvOrDie(kTestShardIndex, -1); ColoredPrintf(COLOR_YELLOW, "Note: This is test shard %d of %s.\n", static_cast(shard_index) + 1, internal::posix::GetEnv(kTestTotalShards)); } if (GTEST_FLAG(shuffle)) { ColoredPrintf(COLOR_YELLOW, "Note: Randomizing tests' orders with a seed of %d .\n", unit_test.random_seed()); } ColoredPrintf(COLOR_GREEN, "[==========] "); printf("Running %s from %s.\n", FormatTestCount(unit_test.test_to_run_count()).c_str(), FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); fflush(stdout); } void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( const UnitTest& /*unit_test*/) { ColoredPrintf(COLOR_GREEN, "[----------] "); printf("Global test environment set-up.\n"); fflush(stdout); } void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { const std::string counts = FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); ColoredPrintf(COLOR_GREEN, "[----------] "); printf("%s from %s", counts.c_str(), test_case.name()); if (test_case.type_param() == NULL) { printf("\n"); } else { printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); } fflush(stdout); } void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { ColoredPrintf(COLOR_GREEN, "[ RUN ] "); PrintTestName(test_info.test_case_name(), test_info.name()); printf("\n"); fflush(stdout); } // Called after an assertion failure. void PrettyUnitTestResultPrinter::OnTestPartResult( const TestPartResult& result) { // If the test part succeeded, we don't need to do anything. if (result.type() == TestPartResult::kSuccess) return; // Print failure message from the assertion (e.g. expected this and got that). PrintTestPartResult(result); fflush(stdout); } void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { if (test_info.result()->Passed()) { ColoredPrintf(COLOR_GREEN, "[ OK ] "); } else { ColoredPrintf(COLOR_RED, "[ FAILED ] "); } PrintTestName(test_info.test_case_name(), test_info.name()); if (test_info.result()->Failed()) PrintFullTestCommentIfPresent(test_info); if (GTEST_FLAG(print_time)) { printf(" (%s ms)\n", internal::StreamableToString( test_info.result()->elapsed_time()).c_str()); } else { printf("\n"); } fflush(stdout); } void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { if (!GTEST_FLAG(print_time)) return; const std::string counts = FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); ColoredPrintf(COLOR_GREEN, "[----------] "); printf("%s from %s (%s ms total)\n\n", counts.c_str(), test_case.name(), internal::StreamableToString(test_case.elapsed_time()).c_str()); fflush(stdout); } void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( const UnitTest& /*unit_test*/) { ColoredPrintf(COLOR_GREEN, "[----------] "); printf("Global test environment tear-down\n"); fflush(stdout); } // Internal helper for printing the list of failed tests. void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { const int failed_test_count = unit_test.failed_test_count(); if (failed_test_count == 0) { return; } for (int i = 0; i < unit_test.total_test_case_count(); ++i) { const TestCase& test_case = *unit_test.GetTestCase(i); if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { continue; } for (int j = 0; j < test_case.total_test_count(); ++j) { const TestInfo& test_info = *test_case.GetTestInfo(j); if (!test_info.should_run() || test_info.result()->Passed()) { continue; } ColoredPrintf(COLOR_RED, "[ FAILED ] "); printf("%s.%s", test_case.name(), test_info.name()); PrintFullTestCommentIfPresent(test_info); printf("\n"); } } } void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { ColoredPrintf(COLOR_GREEN, "[==========] "); printf("%s from %s ran.", FormatTestCount(unit_test.test_to_run_count()).c_str(), FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); if (GTEST_FLAG(print_time)) { printf(" (%s ms total)", internal::StreamableToString(unit_test.elapsed_time()).c_str()); } printf("\n"); ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); int num_failures = unit_test.failed_test_count(); if (!unit_test.Passed()) { const int failed_test_count = unit_test.failed_test_count(); ColoredPrintf(COLOR_RED, "[ FAILED ] "); printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); PrintFailedTests(unit_test); printf("\n%2d FAILED %s\n", num_failures, num_failures == 1 ? "TEST" : "TESTS"); } int num_disabled = unit_test.reportable_disabled_test_count(); if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { if (!num_failures) { printf("\n"); // Add a spacer if no FAILURE banner is displayed. } ColoredPrintf(COLOR_YELLOW, " YOU HAVE %d DISABLED %s\n\n", num_disabled, num_disabled == 1 ? "TEST" : "TESTS"); } // Ensure that Google Test output is printed before, e.g., heapchecker output. fflush(stdout); } // End PrettyUnitTestResultPrinter // class TestEventRepeater // // This class forwards events to other event listeners. class TestEventRepeater : public TestEventListener { public: TestEventRepeater() : forwarding_enabled_(true) {} virtual ~TestEventRepeater(); void Append(TestEventListener *listener); TestEventListener* Release(TestEventListener* listener); // Controls whether events will be forwarded to listeners_. Set to false // in death test child processes. bool forwarding_enabled() const { return forwarding_enabled_; } void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } virtual void OnTestProgramStart(const UnitTest& unit_test); virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); virtual void OnTestCaseStart(const TestCase& test_case); virtual void OnTestStart(const TestInfo& test_info); virtual void OnTestPartResult(const TestPartResult& result); virtual void OnTestEnd(const TestInfo& test_info); virtual void OnTestCaseEnd(const TestCase& test_case); virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); virtual void OnTestProgramEnd(const UnitTest& unit_test); private: // Controls whether events will be forwarded to listeners_. Set to false // in death test child processes. bool forwarding_enabled_; // The list of listeners that receive events. std::vector listeners_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); }; TestEventRepeater::~TestEventRepeater() { ForEach(listeners_, Delete); } void TestEventRepeater::Append(TestEventListener *listener) { listeners_.push_back(listener); } // FIXME: Factor the search functionality into Vector::Find. TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { for (size_t i = 0; i < listeners_.size(); ++i) { if (listeners_[i] == listener) { listeners_.erase(listeners_.begin() + i); return listener; } } return NULL; } // Since most methods are very similar, use macros to reduce boilerplate. // This defines a member that forwards the call to all listeners. #define GTEST_REPEATER_METHOD_(Name, Type) \ void TestEventRepeater::Name(const Type& parameter) { \ if (forwarding_enabled_) { \ for (size_t i = 0; i < listeners_.size(); i++) { \ listeners_[i]->Name(parameter); \ } \ } \ } // This defines a member that forwards the call to all listeners in reverse // order. #define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ void TestEventRepeater::Name(const Type& parameter) { \ if (forwarding_enabled_) { \ for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ listeners_[i]->Name(parameter); \ } \ } \ } GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) #undef GTEST_REPEATER_METHOD_ #undef GTEST_REVERSE_REPEATER_METHOD_ void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, int iteration) { if (forwarding_enabled_) { for (size_t i = 0; i < listeners_.size(); i++) { listeners_[i]->OnTestIterationStart(unit_test, iteration); } } } void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, int iteration) { if (forwarding_enabled_) { for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { listeners_[i]->OnTestIterationEnd(unit_test, iteration); } } } // End TestEventRepeater // This class generates an XML output file. class XmlUnitTestResultPrinter : public EmptyTestEventListener { public: explicit XmlUnitTestResultPrinter(const char* output_file); virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); void ListTestsMatchingFilter(const std::vector& test_cases); // Prints an XML summary of all unit tests. static void PrintXmlTestsList(std::ostream* stream, const std::vector& test_cases); private: // Is c a whitespace character that is normalized to a space character // when it appears in an XML attribute value? static bool IsNormalizableWhitespace(char c) { return c == 0x9 || c == 0xA || c == 0xD; } // May c appear in a well-formed XML document? static bool IsValidXmlCharacter(char c) { return IsNormalizableWhitespace(c) || c >= 0x20; } // Returns an XML-escaped copy of the input string str. If // is_attribute is true, the text is meant to appear as an attribute // value, and normalizable whitespace is preserved by replacing it // with character references. static std::string EscapeXml(const std::string& str, bool is_attribute); // Returns the given string with all characters invalid in XML removed. static std::string RemoveInvalidXmlCharacters(const std::string& str); // Convenience wrapper around EscapeXml when str is an attribute value. static std::string EscapeXmlAttribute(const std::string& str) { return EscapeXml(str, true); } // Convenience wrapper around EscapeXml when str is not an attribute value. static std::string EscapeXmlText(const char* str) { return EscapeXml(str, false); } // Verifies that the given attribute belongs to the given element and // streams the attribute as XML. static void OutputXmlAttribute(std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value); // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. static void OutputXmlCDataSection(::std::ostream* stream, const char* data); // Streams an XML representation of a TestInfo object. static void OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info); // Prints an XML representation of a TestCase object static void PrintXmlTestCase(::std::ostream* stream, const TestCase& test_case); // Prints an XML summary of unit_test to output stream out. static void PrintXmlUnitTest(::std::ostream* stream, const UnitTest& unit_test); // Produces a string representing the test properties in a result as space // delimited XML attributes based on the property key="value" pairs. // When the std::string is not empty, it includes a space at the beginning, // to delimit this attribute from prior attributes. static std::string TestPropertiesAsXmlAttributes(const TestResult& result); // Streams an XML representation of the test properties of a TestResult // object. static void OutputXmlTestProperties(std::ostream* stream, const TestResult& result); // The output file. const std::string output_file_; GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); }; // Creates a new XmlUnitTestResultPrinter. XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) : output_file_(output_file) { if (output_file_.empty()) { GTEST_LOG_(FATAL) << "XML output file may not be null"; } } // Called after the unit test ends. void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { FILE* xmlout = OpenFileForWriting(output_file_); std::stringstream stream; PrintXmlUnitTest(&stream, unit_test); fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); fclose(xmlout); } void XmlUnitTestResultPrinter::ListTestsMatchingFilter( const std::vector& test_cases) { FILE* xmlout = OpenFileForWriting(output_file_); std::stringstream stream; PrintXmlTestsList(&stream, test_cases); fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); fclose(xmlout); } // Returns an XML-escaped copy of the input string str. If is_attribute // is true, the text is meant to appear as an attribute value, and // normalizable whitespace is preserved by replacing it with character // references. // // Invalid XML characters in str, if any, are stripped from the output. // It is expected that most, if not all, of the text processed by this // module will consist of ordinary English text. // If this module is ever modified to produce version 1.1 XML output, // most invalid characters can be retained using character references. // FIXME: It might be nice to have a minimally invasive, human-readable // escaping scheme for invalid characters, rather than dropping them. std::string XmlUnitTestResultPrinter::EscapeXml( const std::string& str, bool is_attribute) { Message m; for (size_t i = 0; i < str.size(); ++i) { const char ch = str[i]; switch (ch) { case '<': m << "<"; break; case '>': m << ">"; break; case '&': m << "&"; break; case '\'': if (is_attribute) m << "'"; else m << '\''; break; case '"': if (is_attribute) m << """; else m << '"'; break; default: if (IsValidXmlCharacter(ch)) { if (is_attribute && IsNormalizableWhitespace(ch)) m << "&#x" << String::FormatByte(static_cast(ch)) << ";"; else m << ch; } break; } } return m.GetString(); } // Returns the given string with all characters invalid in XML removed. // Currently invalid characters are dropped from the string. An // alternative is to replace them with certain characters such as . or ?. std::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters( const std::string& str) { std::string output; output.reserve(str.size()); for (std::string::const_iterator it = str.begin(); it != str.end(); ++it) if (IsValidXmlCharacter(*it)) output.push_back(*it); return output; } // The following routines generate an XML representation of a UnitTest // object. // GOOGLETEST_CM0009 DO NOT DELETE // // This is how Google Test concepts map to the DTD: // // <-- corresponds to a UnitTest object // <-- corresponds to a TestCase object // <-- corresponds to a TestInfo object // ... // ... // ... // <-- individual assertion failures // // // // Formats the given time in milliseconds as seconds. std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { ::std::stringstream ss; ss << (static_cast(ms) * 1e-3); return ss.str(); } static bool PortableLocaltime(time_t seconds, struct tm* out) { #if defined(_MSC_VER) return localtime_s(out, &seconds) == 0; #elif defined(__MINGW32__) || defined(__MINGW64__) // MINGW provides neither localtime_r nor localtime_s, but uses // Windows' localtime(), which has a thread-local tm buffer. struct tm* tm_ptr = localtime(&seconds); // NOLINT if (tm_ptr == NULL) return false; *out = *tm_ptr; return true; #else return localtime_r(&seconds, out) != NULL; #endif } // Converts the given epoch time in milliseconds to a date string in the ISO // 8601 format, without the timezone information. std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) { struct tm time_struct; if (!PortableLocaltime(static_cast(ms / 1000), &time_struct)) return ""; // YYYY-MM-DDThh:mm:ss return StreamableToString(time_struct.tm_year + 1900) + "-" + String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + String::FormatIntWidth2(time_struct.tm_mday) + "T" + String::FormatIntWidth2(time_struct.tm_hour) + ":" + String::FormatIntWidth2(time_struct.tm_min) + ":" + String::FormatIntWidth2(time_struct.tm_sec); } // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, const char* data) { const char* segment = data; *stream << ""); if (next_segment != NULL) { stream->write( segment, static_cast(next_segment - segment)); *stream << "]]>]]>"); } else { *stream << segment; break; } } *stream << "]]>"; } void XmlUnitTestResultPrinter::OutputXmlAttribute( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value) { const std::vector& allowed_names = GetReservedAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Attribute " << name << " is not allowed for element <" << element_name << ">."; *stream << " " << name << "=\"" << EscapeXmlAttribute(value) << "\""; } // Prints an XML representation of a TestInfo object. // FIXME: There is also value in printing properties with the plain printer. void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) { const TestResult& result = *test_info.result(); const std::string kTestcase = "testcase"; if (test_info.is_in_another_shard()) { return; } *stream << " \n"; return; } OutputXmlAttribute(stream, kTestcase, "status", test_info.should_run() ? "run" : "notrun"); OutputXmlAttribute(stream, kTestcase, "time", FormatTimeInMillisAsSeconds(result.elapsed_time())); OutputXmlAttribute(stream, kTestcase, "classname", test_case_name); int failures = 0; for (int i = 0; i < result.total_part_count(); ++i) { const TestPartResult& part = result.GetTestPartResult(i); if (part.failed()) { if (++failures == 1) { *stream << ">\n"; } const std::string location = internal::FormatCompilerIndependentFileLocation(part.file_name(), part.line_number()); const std::string summary = location + "\n" + part.summary(); *stream << " "; const std::string detail = location + "\n" + part.message(); OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); *stream << "\n"; } } if (failures == 0 && result.test_property_count() == 0) { *stream << " />\n"; } else { if (failures == 0) { *stream << ">\n"; } OutputXmlTestProperties(stream, result); *stream << " \n"; } } // Prints an XML representation of a TestCase object void XmlUnitTestResultPrinter::PrintXmlTestCase(std::ostream* stream, const TestCase& test_case) { const std::string kTestsuite = "testsuite"; *stream << " <" << kTestsuite; OutputXmlAttribute(stream, kTestsuite, "name", test_case.name()); OutputXmlAttribute(stream, kTestsuite, "tests", StreamableToString(test_case.reportable_test_count())); if (!GTEST_FLAG(list_tests)) { OutputXmlAttribute(stream, kTestsuite, "failures", StreamableToString(test_case.failed_test_count())); OutputXmlAttribute( stream, kTestsuite, "disabled", StreamableToString(test_case.reportable_disabled_test_count())); OutputXmlAttribute(stream, kTestsuite, "errors", "0"); OutputXmlAttribute(stream, kTestsuite, "time", FormatTimeInMillisAsSeconds(test_case.elapsed_time())); *stream << TestPropertiesAsXmlAttributes(test_case.ad_hoc_test_result()); } *stream << ">\n"; for (int i = 0; i < test_case.total_test_count(); ++i) { if (test_case.GetTestInfo(i)->is_reportable()) OutputXmlTestInfo(stream, test_case.name(), *test_case.GetTestInfo(i)); } *stream << " \n"; } // Prints an XML summary of unit_test to output stream out. void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream, const UnitTest& unit_test) { const std::string kTestsuites = "testsuites"; *stream << "\n"; *stream << "<" << kTestsuites; OutputXmlAttribute(stream, kTestsuites, "tests", StreamableToString(unit_test.reportable_test_count())); OutputXmlAttribute(stream, kTestsuites, "failures", StreamableToString(unit_test.failed_test_count())); OutputXmlAttribute( stream, kTestsuites, "disabled", StreamableToString(unit_test.reportable_disabled_test_count())); OutputXmlAttribute(stream, kTestsuites, "errors", "0"); OutputXmlAttribute( stream, kTestsuites, "timestamp", FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp())); OutputXmlAttribute(stream, kTestsuites, "time", FormatTimeInMillisAsSeconds(unit_test.elapsed_time())); if (GTEST_FLAG(shuffle)) { OutputXmlAttribute(stream, kTestsuites, "random_seed", StreamableToString(unit_test.random_seed())); } *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result()); OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); *stream << ">\n"; for (int i = 0; i < unit_test.total_test_case_count(); ++i) { if (unit_test.GetTestCase(i)->reportable_test_count() > 0) PrintXmlTestCase(stream, *unit_test.GetTestCase(i)); } *stream << "\n"; } void XmlUnitTestResultPrinter::PrintXmlTestsList( std::ostream* stream, const std::vector& test_cases) { const std::string kTestsuites = "testsuites"; *stream << "\n"; *stream << "<" << kTestsuites; int total_tests = 0; for (size_t i = 0; i < test_cases.size(); ++i) { total_tests += test_cases[i]->total_test_count(); } OutputXmlAttribute(stream, kTestsuites, "tests", StreamableToString(total_tests)); OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); *stream << ">\n"; for (size_t i = 0; i < test_cases.size(); ++i) { PrintXmlTestCase(stream, *test_cases[i]); } *stream << "\n"; } // Produces a string representing the test properties in a result as space // delimited XML attributes based on the property key="value" pairs. std::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( const TestResult& result) { Message attributes; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); attributes << " " << property.key() << "=" << "\"" << EscapeXmlAttribute(property.value()) << "\""; } return attributes.GetString(); } void XmlUnitTestResultPrinter::OutputXmlTestProperties( std::ostream* stream, const TestResult& result) { const std::string kProperties = "properties"; const std::string kProperty = "property"; if (result.test_property_count() <= 0) { return; } *stream << "<" << kProperties << ">\n"; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); *stream << "<" << kProperty; *stream << " name=\"" << EscapeXmlAttribute(property.key()) << "\""; *stream << " value=\"" << EscapeXmlAttribute(property.value()) << "\""; *stream << "/>\n"; } *stream << "\n"; } // End XmlUnitTestResultPrinter // This class generates an JSON output file. class JsonUnitTestResultPrinter : public EmptyTestEventListener { public: explicit JsonUnitTestResultPrinter(const char* output_file); virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); // Prints an JSON summary of all unit tests. static void PrintJsonTestList(::std::ostream* stream, const std::vector& test_cases); private: // Returns an JSON-escaped copy of the input string str. static std::string EscapeJson(const std::string& str); //// Verifies that the given attribute belongs to the given element and //// streams the attribute as JSON. static void OutputJsonKey(std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value, const std::string& indent, bool comma = true); static void OutputJsonKey(std::ostream* stream, const std::string& element_name, const std::string& name, int value, const std::string& indent, bool comma = true); // Streams a JSON representation of a TestInfo object. static void OutputJsonTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info); // Prints a JSON representation of a TestCase object static void PrintJsonTestCase(::std::ostream* stream, const TestCase& test_case); // Prints a JSON summary of unit_test to output stream out. static void PrintJsonUnitTest(::std::ostream* stream, const UnitTest& unit_test); // Produces a string representing the test properties in a result as // a JSON dictionary. static std::string TestPropertiesAsJson(const TestResult& result, const std::string& indent); // The output file. const std::string output_file_; GTEST_DISALLOW_COPY_AND_ASSIGN_(JsonUnitTestResultPrinter); }; // Creates a new JsonUnitTestResultPrinter. JsonUnitTestResultPrinter::JsonUnitTestResultPrinter(const char* output_file) : output_file_(output_file) { if (output_file_.empty()) { GTEST_LOG_(FATAL) << "JSON output file may not be null"; } } void JsonUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { FILE* jsonout = OpenFileForWriting(output_file_); std::stringstream stream; PrintJsonUnitTest(&stream, unit_test); fprintf(jsonout, "%s", StringStreamToString(&stream).c_str()); fclose(jsonout); } // Returns an JSON-escaped copy of the input string str. std::string JsonUnitTestResultPrinter::EscapeJson(const std::string& str) { Message m; for (size_t i = 0; i < str.size(); ++i) { const char ch = str[i]; switch (ch) { case '\\': case '"': case '/': m << '\\' << ch; break; case '\b': m << "\\b"; break; case '\t': m << "\\t"; break; case '\n': m << "\\n"; break; case '\f': m << "\\f"; break; case '\r': m << "\\r"; break; default: if (ch < ' ') { m << "\\u00" << String::FormatByte(static_cast(ch)); } else { m << ch; } break; } } return m.GetString(); } // The following routines generate an JSON representation of a UnitTest // object. // Formats the given time in milliseconds as seconds. static std::string FormatTimeInMillisAsDuration(TimeInMillis ms) { ::std::stringstream ss; ss << (static_cast(ms) * 1e-3) << "s"; return ss.str(); } // Converts the given epoch time in milliseconds to a date string in the // RFC3339 format, without the timezone information. static std::string FormatEpochTimeInMillisAsRFC3339(TimeInMillis ms) { struct tm time_struct; if (!PortableLocaltime(static_cast(ms / 1000), &time_struct)) return ""; // YYYY-MM-DDThh:mm:ss return StreamableToString(time_struct.tm_year + 1900) + "-" + String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + String::FormatIntWidth2(time_struct.tm_mday) + "T" + String::FormatIntWidth2(time_struct.tm_hour) + ":" + String::FormatIntWidth2(time_struct.tm_min) + ":" + String::FormatIntWidth2(time_struct.tm_sec) + "Z"; } static inline std::string Indent(int width) { return std::string(width, ' '); } void JsonUnitTestResultPrinter::OutputJsonKey( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value, const std::string& indent, bool comma) { const std::vector& allowed_names = GetReservedAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Key \"" << name << "\" is not allowed for value \"" << element_name << "\"."; *stream << indent << "\"" << name << "\": \"" << EscapeJson(value) << "\""; if (comma) *stream << ",\n"; } void JsonUnitTestResultPrinter::OutputJsonKey( std::ostream* stream, const std::string& element_name, const std::string& name, int value, const std::string& indent, bool comma) { const std::vector& allowed_names = GetReservedAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Key \"" << name << "\" is not allowed for value \"" << element_name << "\"."; *stream << indent << "\"" << name << "\": " << StreamableToString(value); if (comma) *stream << ",\n"; } // Prints a JSON representation of a TestInfo object. void JsonUnitTestResultPrinter::OutputJsonTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) { const TestResult& result = *test_info.result(); const std::string kTestcase = "testcase"; const std::string kIndent = Indent(10); *stream << Indent(8) << "{\n"; OutputJsonKey(stream, kTestcase, "name", test_info.name(), kIndent); if (test_info.value_param() != NULL) { OutputJsonKey(stream, kTestcase, "value_param", test_info.value_param(), kIndent); } if (test_info.type_param() != NULL) { OutputJsonKey(stream, kTestcase, "type_param", test_info.type_param(), kIndent); } if (GTEST_FLAG(list_tests)) { OutputJsonKey(stream, kTestcase, "file", test_info.file(), kIndent); OutputJsonKey(stream, kTestcase, "line", test_info.line(), kIndent, false); *stream << "\n" << Indent(8) << "}"; return; } OutputJsonKey(stream, kTestcase, "status", test_info.should_run() ? "RUN" : "NOTRUN", kIndent); OutputJsonKey(stream, kTestcase, "time", FormatTimeInMillisAsDuration(result.elapsed_time()), kIndent); OutputJsonKey(stream, kTestcase, "classname", test_case_name, kIndent, false); *stream << TestPropertiesAsJson(result, kIndent); int failures = 0; for (int i = 0; i < result.total_part_count(); ++i) { const TestPartResult& part = result.GetTestPartResult(i); if (part.failed()) { *stream << ",\n"; if (++failures == 1) { *stream << kIndent << "\"" << "failures" << "\": [\n"; } const std::string location = internal::FormatCompilerIndependentFileLocation(part.file_name(), part.line_number()); const std::string message = EscapeJson(location + "\n" + part.message()); *stream << kIndent << " {\n" << kIndent << " \"failure\": \"" << message << "\",\n" << kIndent << " \"type\": \"\"\n" << kIndent << " }"; } } if (failures > 0) *stream << "\n" << kIndent << "]"; *stream << "\n" << Indent(8) << "}"; } // Prints an JSON representation of a TestCase object void JsonUnitTestResultPrinter::PrintJsonTestCase(std::ostream* stream, const TestCase& test_case) { const std::string kTestsuite = "testsuite"; const std::string kIndent = Indent(6); *stream << Indent(4) << "{\n"; OutputJsonKey(stream, kTestsuite, "name", test_case.name(), kIndent); OutputJsonKey(stream, kTestsuite, "tests", test_case.reportable_test_count(), kIndent); if (!GTEST_FLAG(list_tests)) { OutputJsonKey(stream, kTestsuite, "failures", test_case.failed_test_count(), kIndent); OutputJsonKey(stream, kTestsuite, "disabled", test_case.reportable_disabled_test_count(), kIndent); OutputJsonKey(stream, kTestsuite, "errors", 0, kIndent); OutputJsonKey(stream, kTestsuite, "time", FormatTimeInMillisAsDuration(test_case.elapsed_time()), kIndent, false); *stream << TestPropertiesAsJson(test_case.ad_hoc_test_result(), kIndent) << ",\n"; } *stream << kIndent << "\"" << kTestsuite << "\": [\n"; bool comma = false; for (int i = 0; i < test_case.total_test_count(); ++i) { if (test_case.GetTestInfo(i)->is_reportable()) { if (comma) { *stream << ",\n"; } else { comma = true; } OutputJsonTestInfo(stream, test_case.name(), *test_case.GetTestInfo(i)); } } *stream << "\n" << kIndent << "]\n" << Indent(4) << "}"; } // Prints a JSON summary of unit_test to output stream out. void JsonUnitTestResultPrinter::PrintJsonUnitTest(std::ostream* stream, const UnitTest& unit_test) { const std::string kTestsuites = "testsuites"; const std::string kIndent = Indent(2); *stream << "{\n"; OutputJsonKey(stream, kTestsuites, "tests", unit_test.reportable_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "failures", unit_test.failed_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "disabled", unit_test.reportable_disabled_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "errors", 0, kIndent); if (GTEST_FLAG(shuffle)) { OutputJsonKey(stream, kTestsuites, "random_seed", unit_test.random_seed(), kIndent); } OutputJsonKey(stream, kTestsuites, "timestamp", FormatEpochTimeInMillisAsRFC3339(unit_test.start_timestamp()), kIndent); OutputJsonKey(stream, kTestsuites, "time", FormatTimeInMillisAsDuration(unit_test.elapsed_time()), kIndent, false); *stream << TestPropertiesAsJson(unit_test.ad_hoc_test_result(), kIndent) << ",\n"; OutputJsonKey(stream, kTestsuites, "name", "AllTests", kIndent); *stream << kIndent << "\"" << kTestsuites << "\": [\n"; bool comma = false; for (int i = 0; i < unit_test.total_test_case_count(); ++i) { if (unit_test.GetTestCase(i)->reportable_test_count() > 0) { if (comma) { *stream << ",\n"; } else { comma = true; } PrintJsonTestCase(stream, *unit_test.GetTestCase(i)); } } *stream << "\n" << kIndent << "]\n" << "}\n"; } void JsonUnitTestResultPrinter::PrintJsonTestList( std::ostream* stream, const std::vector& test_cases) { const std::string kTestsuites = "testsuites"; const std::string kIndent = Indent(2); *stream << "{\n"; int total_tests = 0; for (size_t i = 0; i < test_cases.size(); ++i) { total_tests += test_cases[i]->total_test_count(); } OutputJsonKey(stream, kTestsuites, "tests", total_tests, kIndent); OutputJsonKey(stream, kTestsuites, "name", "AllTests", kIndent); *stream << kIndent << "\"" << kTestsuites << "\": [\n"; for (size_t i = 0; i < test_cases.size(); ++i) { if (i != 0) { *stream << ",\n"; } PrintJsonTestCase(stream, *test_cases[i]); } *stream << "\n" << kIndent << "]\n" << "}\n"; } // Produces a string representing the test properties in a result as // a JSON dictionary. std::string JsonUnitTestResultPrinter::TestPropertiesAsJson( const TestResult& result, const std::string& indent) { Message attributes; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); attributes << ",\n" << indent << "\"" << property.key() << "\": " << "\"" << EscapeJson(property.value()) << "\""; } return attributes.GetString(); } // End JsonUnitTestResultPrinter #if GTEST_CAN_STREAM_RESULTS_ // Checks if str contains '=', '&', '%' or '\n' characters. If yes, // replaces them by "%xx" where xx is their hexadecimal value. For // example, replaces "=" with "%3D". This algorithm is O(strlen(str)) // in both time and space -- important as the input str may contain an // arbitrarily long test failure message and stack trace. std::string StreamingListener::UrlEncode(const char* str) { std::string result; result.reserve(strlen(str) + 1); for (char ch = *str; ch != '\0'; ch = *++str) { switch (ch) { case '%': case '=': case '&': case '\n': result.append("%" + String::FormatByte(static_cast(ch))); break; default: result.push_back(ch); break; } } return result; } void StreamingListener::SocketWriter::MakeConnection() { GTEST_CHECK_(sockfd_ == -1) << "MakeConnection() can't be called when there is already a connection."; addrinfo hints; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses. hints.ai_socktype = SOCK_STREAM; addrinfo* servinfo = NULL; // Use the getaddrinfo() to get a linked list of IP addresses for // the given host name. const int error_num = getaddrinfo( host_name_.c_str(), port_num_.c_str(), &hints, &servinfo); if (error_num != 0) { GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: " << gai_strerror(error_num); } // Loop through all the results and connect to the first we can. for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != NULL; cur_addr = cur_addr->ai_next) { sockfd_ = socket( cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol); if (sockfd_ != -1) { // Connect the client socket to the server socket. if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) { close(sockfd_); sockfd_ = -1; } } } freeaddrinfo(servinfo); // all done with this structure if (sockfd_ == -1) { GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to " << host_name_ << ":" << port_num_; } } // End of class Streaming Listener #endif // GTEST_CAN_STREAM_RESULTS__ // class OsStackTraceGetter const char* const OsStackTraceGetterInterface::kElidedFramesMarker = "... " GTEST_NAME_ " internal frames ..."; std::string OsStackTraceGetter::CurrentStackTrace(int max_depth, int skip_count) GTEST_LOCK_EXCLUDED_(mutex_) { #if GTEST_HAS_ABSL std::string result; if (max_depth <= 0) { return result; } max_depth = std::min(max_depth, kMaxStackTraceDepth); std::vector raw_stack(max_depth); // Skips the frames requested by the caller, plus this function. const int raw_stack_size = absl::GetStackTrace(&raw_stack[0], max_depth, skip_count + 1); void* caller_frame = nullptr; { MutexLock lock(&mutex_); caller_frame = caller_frame_; } for (int i = 0; i < raw_stack_size; ++i) { if (raw_stack[i] == caller_frame && !GTEST_FLAG(show_internal_stack_frames)) { // Add a marker to the trace and stop adding frames. absl::StrAppend(&result, kElidedFramesMarker, "\n"); break; } char tmp[1024]; const char* symbol = "(unknown)"; if (absl::Symbolize(raw_stack[i], tmp, sizeof(tmp))) { symbol = tmp; } char line[1024]; snprintf(line, sizeof(line), " %p: %s\n", raw_stack[i], symbol); result += line; } return result; #else // !GTEST_HAS_ABSL static_cast(max_depth); static_cast(skip_count); return ""; #endif // GTEST_HAS_ABSL } void OsStackTraceGetter::UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_) { #if GTEST_HAS_ABSL void* caller_frame = nullptr; if (absl::GetStackTrace(&caller_frame, 1, 3) <= 0) { caller_frame = nullptr; } MutexLock lock(&mutex_); caller_frame_ = caller_frame; #endif // GTEST_HAS_ABSL } // A helper class that creates the premature-exit file in its // constructor and deletes the file in its destructor. class ScopedPrematureExitFile { public: explicit ScopedPrematureExitFile(const char* premature_exit_filepath) : premature_exit_filepath_(premature_exit_filepath ? premature_exit_filepath : "") { // If a path to the premature-exit file is specified... if (!premature_exit_filepath_.empty()) { // create the file with a single "0" character in it. I/O // errors are ignored as there's nothing better we can do and we // don't want to fail the test because of this. FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); fwrite("0", 1, 1, pfile); fclose(pfile); } } ~ScopedPrematureExitFile() { if (!premature_exit_filepath_.empty()) { int retval = remove(premature_exit_filepath_.c_str()); if (retval) { GTEST_LOG_(ERROR) << "Failed to remove premature exit filepath \"" << premature_exit_filepath_ << "\" with error " << retval; } } } private: const std::string premature_exit_filepath_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile); }; } // namespace internal // class TestEventListeners TestEventListeners::TestEventListeners() : repeater_(new internal::TestEventRepeater()), default_result_printer_(NULL), default_xml_generator_(NULL) { } TestEventListeners::~TestEventListeners() { delete repeater_; } // Returns the standard listener responsible for the default console // output. Can be removed from the listeners list to shut down default // console output. Note that removing this object from the listener list // with Release transfers its ownership to the user. void TestEventListeners::Append(TestEventListener* listener) { repeater_->Append(listener); } // Removes the given event listener from the list and returns it. It then // becomes the caller's responsibility to delete the listener. Returns // NULL if the listener is not found in the list. TestEventListener* TestEventListeners::Release(TestEventListener* listener) { if (listener == default_result_printer_) default_result_printer_ = NULL; else if (listener == default_xml_generator_) default_xml_generator_ = NULL; return repeater_->Release(listener); } // Returns repeater that broadcasts the TestEventListener events to all // subscribers. TestEventListener* TestEventListeners::repeater() { return repeater_; } // Sets the default_result_printer attribute to the provided listener. // The listener is also added to the listener list and previous // default_result_printer is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { if (default_result_printer_ != listener) { // It is an error to pass this method a listener that is already in the // list. delete Release(default_result_printer_); default_result_printer_ = listener; if (listener != NULL) Append(listener); } } // Sets the default_xml_generator attribute to the provided listener. The // listener is also added to the listener list and previous // default_xml_generator is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { if (default_xml_generator_ != listener) { // It is an error to pass this method a listener that is already in the // list. delete Release(default_xml_generator_); default_xml_generator_ = listener; if (listener != NULL) Append(listener); } } // Controls whether events will be forwarded by the repeater to the // listeners in the list. bool TestEventListeners::EventForwardingEnabled() const { return repeater_->forwarding_enabled(); } void TestEventListeners::SuppressEventForwarding() { repeater_->set_forwarding_enabled(false); } // class UnitTest // Gets the singleton UnitTest object. The first time this method is // called, a UnitTest object is constructed and returned. Consecutive // calls will return the same object. // // We don't protect this under mutex_ as a user is not supposed to // call this before main() starts, from which point on the return // value will never change. UnitTest* UnitTest::GetInstance() { // When compiled with MSVC 7.1 in optimized mode, destroying the // UnitTest object upon exiting the program messes up the exit code, // causing successful tests to appear failed. We have to use a // different implementation in this case to bypass the compiler bug. // This implementation makes the compiler happy, at the cost of // leaking the UnitTest object. // CodeGear C++Builder insists on a public destructor for the // default implementation. Use this implementation to keep good OO // design with private destructor. #if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) static UnitTest* const instance = new UnitTest; return instance; #else static UnitTest instance; return &instance; #endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) } // Gets the number of successful test cases. int UnitTest::successful_test_case_count() const { return impl()->successful_test_case_count(); } // Gets the number of failed test cases. int UnitTest::failed_test_case_count() const { return impl()->failed_test_case_count(); } // Gets the number of all test cases. int UnitTest::total_test_case_count() const { return impl()->total_test_case_count(); } // Gets the number of all test cases that contain at least one test // that should run. int UnitTest::test_case_to_run_count() const { return impl()->test_case_to_run_count(); } // Gets the number of successful tests. int UnitTest::successful_test_count() const { return impl()->successful_test_count(); } // Gets the number of failed tests. int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } // Gets the number of disabled tests that will be reported in the XML report. int UnitTest::reportable_disabled_test_count() const { return impl()->reportable_disabled_test_count(); } // Gets the number of disabled tests. int UnitTest::disabled_test_count() const { return impl()->disabled_test_count(); } // Gets the number of tests to be printed in the XML report. int UnitTest::reportable_test_count() const { return impl()->reportable_test_count(); } // Gets the number of all tests. int UnitTest::total_test_count() const { return impl()->total_test_count(); } // Gets the number of tests that should run. int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } // Gets the time of the test program start, in ms from the start of the // UNIX epoch. internal::TimeInMillis UnitTest::start_timestamp() const { return impl()->start_timestamp(); } // Gets the elapsed time, in milliseconds. internal::TimeInMillis UnitTest::elapsed_time() const { return impl()->elapsed_time(); } // Returns true iff the unit test passed (i.e. all test cases passed). bool UnitTest::Passed() const { return impl()->Passed(); } // Returns true iff the unit test failed (i.e. some test case failed // or something outside of all tests failed). bool UnitTest::Failed() const { return impl()->Failed(); } // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. const TestCase* UnitTest::GetTestCase(int i) const { return impl()->GetTestCase(i); } // Returns the TestResult containing information on test failures and // properties logged outside of individual test cases. const TestResult& UnitTest::ad_hoc_test_result() const { return *impl()->ad_hoc_test_result(); } // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. TestCase* UnitTest::GetMutableTestCase(int i) { return impl()->GetMutableTestCase(i); } // Returns the list of event listeners that can be used to track events // inside Google Test. TestEventListeners& UnitTest::listeners() { return *impl()->listeners(); } // Registers and returns a global test environment. When a test // program is run, all global test environments will be set-up in the // order they were registered. After all tests in the program have // finished, all global test environments will be torn-down in the // *reverse* order they were registered. // // The UnitTest object takes ownership of the given environment. // // We don't protect this under mutex_, as we only support calling it // from the main thread. Environment* UnitTest::AddEnvironment(Environment* env) { if (env == NULL) { return NULL; } impl_->environments().push_back(env); return env; } // Adds a TestPartResult to the current TestResult object. All Google Test // assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call // this to report their results. The user code should use the // assertion macros instead of calling this directly. void UnitTest::AddTestPartResult( TestPartResult::Type result_type, const char* file_name, int line_number, const std::string& message, const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) { Message msg; msg << message; internal::MutexLock lock(&mutex_); if (impl_->gtest_trace_stack().size() > 0) { msg << "\n" << GTEST_NAME_ << " trace:"; for (int i = static_cast(impl_->gtest_trace_stack().size()); i > 0; --i) { const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) << " " << trace.message; } } if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { msg << internal::kStackTraceMarker << os_stack_trace; } const TestPartResult result = TestPartResult(result_type, file_name, line_number, msg.GetString().c_str()); impl_->GetTestPartResultReporterForCurrentThread()-> ReportTestPartResult(result); if (result_type != TestPartResult::kSuccess) { // gtest_break_on_failure takes precedence over // gtest_throw_on_failure. This allows a user to set the latter // in the code (perhaps in order to use Google Test assertions // with another testing framework) and specify the former on the // command line for debugging. if (GTEST_FLAG(break_on_failure)) { #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // Using DebugBreak on Windows allows gtest to still break into a debugger // when a failure happens and both the --gtest_break_on_failure and // the --gtest_catch_exceptions flags are specified. DebugBreak(); #elif (!defined(__native_client__)) && \ ((defined(__clang__) || defined(__GNUC__)) && \ (defined(__x86_64__) || defined(__i386__))) // with clang/gcc we can achieve the same effect on x86 by invoking int3 asm("int3"); #else // Dereference NULL through a volatile pointer to prevent the compiler // from removing. We use this rather than abort() or __builtin_trap() for // portability: Symbian doesn't implement abort() well, and some debuggers // don't correctly trap abort(). *static_cast(NULL) = 1; #endif // GTEST_OS_WINDOWS } else if (GTEST_FLAG(throw_on_failure)) { #if GTEST_HAS_EXCEPTIONS throw internal::GoogleTestFailureException(result); #else // We cannot call abort() as it generates a pop-up in debug mode // that cannot be suppressed in VC 7.1 or below. exit(1); #endif } } } // Adds a TestProperty to the current TestResult object when invoked from // inside a test, to current TestCase's ad_hoc_test_result_ when invoked // from SetUpTestCase or TearDownTestCase, or to the global property set // when invoked elsewhere. If the result already contains a property with // the same key, the value will be updated. void UnitTest::RecordProperty(const std::string& key, const std::string& value) { impl_->RecordProperty(TestProperty(key, value)); } // Runs all tests in this UnitTest object and prints the result. // Returns 0 if successful, or 1 otherwise. // // We don't protect this under mutex_, as we only support calling it // from the main thread. int UnitTest::Run() { const bool in_death_test_child_process = internal::GTEST_FLAG(internal_run_death_test).length() > 0; // Google Test implements this protocol for catching that a test // program exits before returning control to Google Test: // // 1. Upon start, Google Test creates a file whose absolute path // is specified by the environment variable // TEST_PREMATURE_EXIT_FILE. // 2. When Google Test has finished its work, it deletes the file. // // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before // running a Google-Test-based test program and check the existence // of the file at the end of the test execution to see if it has // exited prematurely. // If we are in the child process of a death test, don't // create/delete the premature exit file, as doing so is unnecessary // and will confuse the parent process. Otherwise, create/delete // the file upon entering/leaving this function. If the program // somehow exits before this function has a chance to return, the // premature-exit file will be left undeleted, causing a test runner // that understands the premature-exit-file protocol to report the // test as having failed. const internal::ScopedPrematureExitFile premature_exit_file( in_death_test_child_process ? NULL : internal::posix::GetEnv("TEST_PREMATURE_EXIT_FILE")); // Captures the value of GTEST_FLAG(catch_exceptions). This value will be // used for the duration of the program. impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions)); #if GTEST_OS_WINDOWS // Either the user wants Google Test to catch exceptions thrown by the // tests or this is executing in the context of death test child // process. In either case the user does not want to see pop-up dialogs // about crashes - they are expected. if (impl()->catch_exceptions() || in_death_test_child_process) { # if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // SetErrorMode doesn't exist on CE. SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); # endif // !GTEST_OS_WINDOWS_MOBILE # if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE // Death test children can be terminated with _abort(). On Windows, // _abort() can show a dialog with a warning message. This forces the // abort message to go to stderr instead. _set_error_mode(_OUT_TO_STDERR); # endif # if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE // In the debug version, Visual Studio pops up a separate dialog // offering a choice to debug the aborted program. We need to suppress // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement // executed. Google Test will notify the user of any unexpected // failure via stderr. // // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. // Users of prior VC versions shall suffer the agony and pain of // clicking through the countless debug dialogs. // FIXME: find a way to suppress the abort dialog() in the // debug mode when compiled with VC 7.1 or lower. if (!GTEST_FLAG(break_on_failure)) _set_abort_behavior( 0x0, // Clear the following flags: _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. # endif } #endif // GTEST_OS_WINDOWS return internal::HandleExceptionsInMethodIfSupported( impl(), &internal::UnitTestImpl::RunAllTests, "auxiliary test code (environments or event listeners)") ? 0 : 1; } // Returns the working directory when the first TEST() or TEST_F() was // executed. const char* UnitTest::original_working_dir() const { return impl_->original_working_dir_.c_str(); } // Returns the TestCase object for the test that's currently running, // or NULL if no test is running. const TestCase* UnitTest::current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); return impl_->current_test_case(); } // Returns the TestInfo object for the test that's currently running, // or NULL if no test is running. const TestInfo* UnitTest::current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); return impl_->current_test_info(); } // Returns the random seed used at the start of the current test run. int UnitTest::random_seed() const { return impl_->random_seed(); } // Returns ParameterizedTestCaseRegistry object used to keep track of // value-parameterized tests and instantiate and register them. internal::ParameterizedTestCaseRegistry& UnitTest::parameterized_test_registry() GTEST_LOCK_EXCLUDED_(mutex_) { return impl_->parameterized_test_registry(); } // Creates an empty UnitTest. UnitTest::UnitTest() { impl_ = new internal::UnitTestImpl(this); } // Destructor of UnitTest. UnitTest::~UnitTest() { delete impl_; } // Pushes a trace defined by SCOPED_TRACE() on to the per-thread // Google Test trace stack. void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); impl_->gtest_trace_stack().push_back(trace); } // Pops a trace from the per-thread Google Test trace stack. void UnitTest::PopGTestTrace() GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); impl_->gtest_trace_stack().pop_back(); } namespace internal { UnitTestImpl::UnitTestImpl(UnitTest* parent) : parent_(parent), GTEST_DISABLE_MSC_WARNINGS_PUSH_(4355 /* using this in initializer */) default_global_test_part_result_reporter_(this), default_per_thread_test_part_result_reporter_(this), GTEST_DISABLE_MSC_WARNINGS_POP_() global_test_part_result_repoter_( &default_global_test_part_result_reporter_), per_thread_test_part_result_reporter_( &default_per_thread_test_part_result_reporter_), parameterized_test_registry_(), parameterized_tests_registered_(false), last_death_test_case_(-1), current_test_case_(NULL), current_test_info_(NULL), ad_hoc_test_result_(), os_stack_trace_getter_(NULL), post_flag_parse_init_performed_(false), random_seed_(0), // Will be overridden by the flag before first use. random_(0), // Will be reseeded before first use. start_timestamp_(0), elapsed_time_(0), #if GTEST_HAS_DEATH_TEST death_test_factory_(new DefaultDeathTestFactory), #endif // Will be overridden by the flag before first use. catch_exceptions_(false) { listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); } UnitTestImpl::~UnitTestImpl() { // Deletes every TestCase. ForEach(test_cases_, internal::Delete); // Deletes every Environment. ForEach(environments_, internal::Delete); delete os_stack_trace_getter_; } // Adds a TestProperty to the current TestResult object when invoked in a // context of a test, to current test case's ad_hoc_test_result when invoke // from SetUpTestCase/TearDownTestCase, or to the global property set // otherwise. If the result already contains a property with the same key, // the value will be updated. void UnitTestImpl::RecordProperty(const TestProperty& test_property) { std::string xml_element; TestResult* test_result; // TestResult appropriate for property recording. if (current_test_info_ != NULL) { xml_element = "testcase"; test_result = &(current_test_info_->result_); } else if (current_test_case_ != NULL) { xml_element = "testsuite"; test_result = &(current_test_case_->ad_hoc_test_result_); } else { xml_element = "testsuites"; test_result = &ad_hoc_test_result_; } test_result->RecordProperty(xml_element, test_property); } #if GTEST_HAS_DEATH_TEST // Disables event forwarding if the control is currently in a death test // subprocess. Must not be called before InitGoogleTest. void UnitTestImpl::SuppressTestEventsIfInSubprocess() { if (internal_run_death_test_flag_.get() != NULL) listeners()->SuppressEventForwarding(); } #endif // GTEST_HAS_DEATH_TEST // Initializes event listeners performing XML output as specified by // UnitTestOptions. Must not be called before InitGoogleTest. void UnitTestImpl::ConfigureXmlOutput() { const std::string& output_format = UnitTestOptions::GetOutputFormat(); if (output_format == "xml") { listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); } else if (output_format == "json") { listeners()->SetDefaultXmlGenerator(new JsonUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); } else if (output_format != "") { GTEST_LOG_(WARNING) << "WARNING: unrecognized output format \"" << output_format << "\" ignored."; } } #if GTEST_CAN_STREAM_RESULTS_ // Initializes event listeners for streaming test results in string form. // Must not be called before InitGoogleTest. void UnitTestImpl::ConfigureStreamingOutput() { const std::string& target = GTEST_FLAG(stream_result_to); if (!target.empty()) { const size_t pos = target.find(':'); if (pos != std::string::npos) { listeners()->Append(new StreamingListener(target.substr(0, pos), target.substr(pos+1))); } else { GTEST_LOG_(WARNING) << "unrecognized streaming target \"" << target << "\" ignored."; } } } #endif // GTEST_CAN_STREAM_RESULTS_ // Performs initialization dependent upon flag values obtained in // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest // this function is also called from RunAllTests. Since this function can be // called more than once, it has to be idempotent. void UnitTestImpl::PostFlagParsingInit() { // Ensures that this function does not execute more than once. if (!post_flag_parse_init_performed_) { post_flag_parse_init_performed_ = true; #if defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_) // Register to send notifications about key process state changes. listeners()->Append(new GTEST_CUSTOM_TEST_EVENT_LISTENER_()); #endif // defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_) #if GTEST_HAS_DEATH_TEST InitDeathTestSubprocessControlInfo(); SuppressTestEventsIfInSubprocess(); #endif // GTEST_HAS_DEATH_TEST // Registers parameterized tests. This makes parameterized tests // available to the UnitTest reflection API without running // RUN_ALL_TESTS. RegisterParameterizedTests(); // Configures listeners for XML output. This makes it possible for users // to shut down the default XML output before invoking RUN_ALL_TESTS. ConfigureXmlOutput(); #if GTEST_CAN_STREAM_RESULTS_ // Configures listeners for streaming test results to the specified server. ConfigureStreamingOutput(); #endif // GTEST_CAN_STREAM_RESULTS_ #if GTEST_HAS_ABSL if (GTEST_FLAG(install_failure_signal_handler)) { absl::FailureSignalHandlerOptions options; absl::InstallFailureSignalHandler(options); } #endif // GTEST_HAS_ABSL } } // A predicate that checks the name of a TestCase against a known // value. // // This is used for implementation of the UnitTest class only. We put // it in the anonymous namespace to prevent polluting the outer // namespace. // // TestCaseNameIs is copyable. class TestCaseNameIs { public: // Constructor. explicit TestCaseNameIs(const std::string& name) : name_(name) {} // Returns true iff the name of test_case matches name_. bool operator()(const TestCase* test_case) const { return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; } private: std::string name_; }; // Finds and returns a TestCase with the given name. If one doesn't // exist, creates one and returns it. It's the CALLER'S // RESPONSIBILITY to ensure that this function is only called WHEN THE // TESTS ARE NOT SHUFFLED. // // Arguments: // // test_case_name: name of the test case // type_param: the name of the test case's type parameter, or NULL if // this is not a typed or a type-parameterized test case. // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, const char* type_param, Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc) { // Can we find a TestCase with the given name? const std::vector::const_reverse_iterator test_case = std::find_if(test_cases_.rbegin(), test_cases_.rend(), TestCaseNameIs(test_case_name)); if (test_case != test_cases_.rend()) return *test_case; // No. Let's create one. TestCase* const new_test_case = new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc); // Is this a death test case? if (internal::UnitTestOptions::MatchesFilter(test_case_name, kDeathTestCaseFilter)) { // Yes. Inserts the test case after the last death test case // defined so far. This only works when the test cases haven't // been shuffled. Otherwise we may end up running a death test // after a non-death test. ++last_death_test_case_; test_cases_.insert(test_cases_.begin() + last_death_test_case_, new_test_case); } else { // No. Appends to the end of the list. test_cases_.push_back(new_test_case); } test_case_indices_.push_back(static_cast(test_case_indices_.size())); return new_test_case; } // Helpers for setting up / tearing down the given environment. They // are for use in the ForEach() function. static void SetUpEnvironment(Environment* env) { env->SetUp(); } static void TearDownEnvironment(Environment* env) { env->TearDown(); } // Runs all tests in this UnitTest object, prints the result, and // returns true if all tests are successful. If any exception is // thrown during a test, the test is considered to be failed, but the // rest of the tests will still be run. // // When parameterized tests are enabled, it expands and registers // parameterized tests first in RegisterParameterizedTests(). // All other functions called from RunAllTests() may safely assume that // parameterized tests are ready to be counted and run. bool UnitTestImpl::RunAllTests() { // True iff Google Test is initialized before RUN_ALL_TESTS() is called. const bool gtest_is_initialized_before_run_all_tests = GTestIsInitialized(); // Do not run any test if the --help flag was specified. if (g_help_flag) return true; // Repeats the call to the post-flag parsing initialization in case the // user didn't call InitGoogleTest. PostFlagParsingInit(); // Even if sharding is not on, test runners may want to use the // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding // protocol. internal::WriteToShardStatusFileIfNeeded(); // True iff we are in a subprocess for running a thread-safe-style // death test. bool in_subprocess_for_death_test = false; #if GTEST_HAS_DEATH_TEST in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); # if defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_) if (in_subprocess_for_death_test) { GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_(); } # endif // defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_) #endif // GTEST_HAS_DEATH_TEST const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, in_subprocess_for_death_test); // Compares the full test names with the filter to decide which // tests to run. const bool has_tests_to_run = FilterTests(should_shard ? HONOR_SHARDING_PROTOCOL : IGNORE_SHARDING_PROTOCOL) > 0; // Lists the tests and exits if the --gtest_list_tests flag was specified. if (GTEST_FLAG(list_tests)) { // This must be called *after* FilterTests() has been called. ListTestsMatchingFilter(); return true; } random_seed_ = GTEST_FLAG(shuffle) ? GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; // True iff at least one test has failed. bool failed = false; TestEventListener* repeater = listeners()->repeater(); start_timestamp_ = GetTimeInMillis(); repeater->OnTestProgramStart(*parent_); // How many times to repeat the tests? We don't want to repeat them // when we are inside the subprocess of a death test. const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); // Repeats forever if the repeat count is negative. const bool forever = repeat < 0; for (int i = 0; forever || i != repeat; i++) { // We want to preserve failures generated by ad-hoc test // assertions executed before RUN_ALL_TESTS(). ClearNonAdHocTestResult(); const TimeInMillis start = GetTimeInMillis(); // Shuffles test cases and tests if requested. if (has_tests_to_run && GTEST_FLAG(shuffle)) { random()->Reseed(random_seed_); // This should be done before calling OnTestIterationStart(), // such that a test event listener can see the actual test order // in the event. ShuffleTests(); } // Tells the unit test event listeners that the tests are about to start. repeater->OnTestIterationStart(*parent_, i); // Runs each test case if there is at least one test to run. if (has_tests_to_run) { // Sets up all environments beforehand. repeater->OnEnvironmentsSetUpStart(*parent_); ForEach(environments_, SetUpEnvironment); repeater->OnEnvironmentsSetUpEnd(*parent_); // Runs the tests only if there was no fatal failure during global // set-up. if (!Test::HasFatalFailure()) { for (int test_index = 0; test_index < total_test_case_count(); test_index++) { GetMutableTestCase(test_index)->Run(); } } // Tears down all environments in reverse order afterwards. repeater->OnEnvironmentsTearDownStart(*parent_); std::for_each(environments_.rbegin(), environments_.rend(), TearDownEnvironment); repeater->OnEnvironmentsTearDownEnd(*parent_); } elapsed_time_ = GetTimeInMillis() - start; // Tells the unit test event listener that the tests have just finished. repeater->OnTestIterationEnd(*parent_, i); // Gets the result and clears it. if (!Passed()) { failed = true; } // Restores the original test order after the iteration. This // allows the user to quickly repro a failure that happens in the // N-th iteration without repeating the first (N - 1) iterations. // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in // case the user somehow changes the value of the flag somewhere // (it's always safe to unshuffle the tests). UnshuffleTests(); if (GTEST_FLAG(shuffle)) { // Picks a new random seed for each iteration. random_seed_ = GetNextRandomSeed(random_seed_); } } repeater->OnTestProgramEnd(*parent_); if (!gtest_is_initialized_before_run_all_tests) { ColoredPrintf( COLOR_RED, "\nIMPORTANT NOTICE - DO NOT IGNORE:\n" "This test program did NOT call " GTEST_INIT_GOOGLE_TEST_NAME_ "() before calling RUN_ALL_TESTS(). This is INVALID. Soon " GTEST_NAME_ " will start to enforce the valid usage. " "Please fix it ASAP, or IT WILL START TO FAIL.\n"); // NOLINT #if GTEST_FOR_GOOGLE_ ColoredPrintf(COLOR_RED, "For more details, see http://wiki/Main/ValidGUnitMain.\n"); #endif // GTEST_FOR_GOOGLE_ } return !failed; } // Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file // if the variable is present. If a file already exists at this location, this // function will write over it. If the variable is present, but the file cannot // be created, prints an error and exits. void WriteToShardStatusFileIfNeeded() { const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); if (test_shard_file != NULL) { FILE* const file = posix::FOpen(test_shard_file, "w"); if (file == NULL) { ColoredPrintf(COLOR_RED, "Could not write to the test shard status file \"%s\" " "specified by the %s environment variable.\n", test_shard_file, kTestShardStatusFile); fflush(stdout); exit(EXIT_FAILURE); } fclose(file); } } // Checks whether sharding is enabled by examining the relevant // environment variable values. If the variables are present, // but inconsistent (i.e., shard_index >= total_shards), prints // an error and exits. If in_subprocess_for_death_test, sharding is // disabled because it must only be applied to the original test // process. Otherwise, we could filter out death tests we intended to execute. bool ShouldShard(const char* total_shards_env, const char* shard_index_env, bool in_subprocess_for_death_test) { if (in_subprocess_for_death_test) { return false; } const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); if (total_shards == -1 && shard_index == -1) { return false; } else if (total_shards == -1 && shard_index != -1) { const Message msg = Message() << "Invalid environment variables: you have " << kTestShardIndex << " = " << shard_index << ", but have left " << kTestTotalShards << " unset.\n"; ColoredPrintf(COLOR_RED, msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } else if (total_shards != -1 && shard_index == -1) { const Message msg = Message() << "Invalid environment variables: you have " << kTestTotalShards << " = " << total_shards << ", but have left " << kTestShardIndex << " unset.\n"; ColoredPrintf(COLOR_RED, msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } else if (shard_index < 0 || shard_index >= total_shards) { const Message msg = Message() << "Invalid environment variables: we require 0 <= " << kTestShardIndex << " < " << kTestTotalShards << ", but you have " << kTestShardIndex << "=" << shard_index << ", " << kTestTotalShards << "=" << total_shards << ".\n"; ColoredPrintf(COLOR_RED, msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } return total_shards > 1; } // Parses the environment variable var as an Int32. If it is unset, // returns default_val. If it is not an Int32, prints an error // and aborts. Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { const char* str_val = posix::GetEnv(var); if (str_val == NULL) { return default_val; } Int32 result; if (!ParseInt32(Message() << "The value of environment variable " << var, str_val, &result)) { exit(EXIT_FAILURE); } return result; } // Given the total number of shards, the shard index, and the test id, // returns true iff the test should be run on this shard. The test id is // some arbitrary but unique non-negative integer assigned to each test // method. Assumes that 0 <= shard_index < total_shards. bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { return (test_id % total_shards) == shard_index; } // Compares the name of each test with the user-specified filter to // decide whether the test should be run, then records the result in // each TestCase and TestInfo object. // If shard_tests == true, further filters tests based on sharding // variables in the environment - see // https://github.com/google/googletest/blob/master/googletest/docs/advanced.md // . Returns the number of tests that should run. int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? Int32FromEnvOrDie(kTestTotalShards, -1) : -1; const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? Int32FromEnvOrDie(kTestShardIndex, -1) : -1; // num_runnable_tests are the number of tests that will // run across all shards (i.e., match filter and are not disabled). // num_selected_tests are the number of tests to be run on // this shard. int num_runnable_tests = 0; int num_selected_tests = 0; for (size_t i = 0; i < test_cases_.size(); i++) { TestCase* const test_case = test_cases_[i]; const std::string &test_case_name = test_case->name(); test_case->set_should_run(false); for (size_t j = 0; j < test_case->test_info_list().size(); j++) { TestInfo* const test_info = test_case->test_info_list()[j]; const std::string test_name(test_info->name()); // A test is disabled if test case name or test name matches // kDisableTestFilter. const bool is_disabled = internal::UnitTestOptions::MatchesFilter(test_case_name, kDisableTestFilter) || internal::UnitTestOptions::MatchesFilter(test_name, kDisableTestFilter); test_info->is_disabled_ = is_disabled; const bool matches_filter = internal::UnitTestOptions::FilterMatchesTest(test_case_name, test_name); test_info->matches_filter_ = matches_filter; const bool is_runnable = (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && matches_filter; const bool is_in_another_shard = shard_tests != IGNORE_SHARDING_PROTOCOL && !ShouldRunTestOnShard(total_shards, shard_index, num_runnable_tests); test_info->is_in_another_shard_ = is_in_another_shard; const bool is_selected = is_runnable && !is_in_another_shard; num_runnable_tests += is_runnable; num_selected_tests += is_selected; test_info->should_run_ = is_selected; test_case->set_should_run(test_case->should_run() || is_selected); } } return num_selected_tests; } // Prints the given C-string on a single line by replacing all '\n' // characters with string "\\n". If the output takes more than // max_length characters, only prints the first max_length characters // and "...". static void PrintOnOneLine(const char* str, int max_length) { if (str != NULL) { for (int i = 0; *str != '\0'; ++str) { if (i >= max_length) { printf("..."); break; } if (*str == '\n') { printf("\\n"); i += 2; } else { printf("%c", *str); ++i; } } } } // Prints the names of the tests matching the user-specified filter flag. void UnitTestImpl::ListTestsMatchingFilter() { // Print at most this many characters for each type/value parameter. const int kMaxParamLength = 250; for (size_t i = 0; i < test_cases_.size(); i++) { const TestCase* const test_case = test_cases_[i]; bool printed_test_case_name = false; for (size_t j = 0; j < test_case->test_info_list().size(); j++) { const TestInfo* const test_info = test_case->test_info_list()[j]; if (test_info->matches_filter_) { if (!printed_test_case_name) { printed_test_case_name = true; printf("%s.", test_case->name()); if (test_case->type_param() != NULL) { printf(" # %s = ", kTypeParamLabel); // We print the type parameter on a single line to make // the output easy to parse by a program. PrintOnOneLine(test_case->type_param(), kMaxParamLength); } printf("\n"); } printf(" %s", test_info->name()); if (test_info->value_param() != NULL) { printf(" # %s = ", kValueParamLabel); // We print the value parameter on a single line to make the // output easy to parse by a program. PrintOnOneLine(test_info->value_param(), kMaxParamLength); } printf("\n"); } } } fflush(stdout); const std::string& output_format = UnitTestOptions::GetOutputFormat(); if (output_format == "xml" || output_format == "json") { FILE* fileout = OpenFileForWriting( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); std::stringstream stream; if (output_format == "xml") { XmlUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()) .PrintXmlTestsList(&stream, test_cases_); } else if (output_format == "json") { JsonUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()) .PrintJsonTestList(&stream, test_cases_); } fprintf(fileout, "%s", StringStreamToString(&stream).c_str()); fclose(fileout); } } // Sets the OS stack trace getter. // // Does nothing if the input and the current OS stack trace getter are // the same; otherwise, deletes the old getter and makes the input the // current getter. void UnitTestImpl::set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) { if (os_stack_trace_getter_ != getter) { delete os_stack_trace_getter_; os_stack_trace_getter_ = getter; } } // Returns the current OS stack trace getter if it is not NULL; // otherwise, creates an OsStackTraceGetter, makes it the current // getter, and returns it. OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { if (os_stack_trace_getter_ == NULL) { #ifdef GTEST_OS_STACK_TRACE_GETTER_ os_stack_trace_getter_ = new GTEST_OS_STACK_TRACE_GETTER_; #else os_stack_trace_getter_ = new OsStackTraceGetter; #endif // GTEST_OS_STACK_TRACE_GETTER_ } return os_stack_trace_getter_; } // Returns the most specific TestResult currently running. TestResult* UnitTestImpl::current_test_result() { if (current_test_info_ != NULL) { return ¤t_test_info_->result_; } if (current_test_case_ != NULL) { return ¤t_test_case_->ad_hoc_test_result_; } return &ad_hoc_test_result_; } // Shuffles all test cases, and the tests within each test case, // making sure that death tests are still run first. void UnitTestImpl::ShuffleTests() { // Shuffles the death test cases. ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); // Shuffles the non-death test cases. ShuffleRange(random(), last_death_test_case_ + 1, static_cast(test_cases_.size()), &test_case_indices_); // Shuffles the tests inside each test case. for (size_t i = 0; i < test_cases_.size(); i++) { test_cases_[i]->ShuffleTests(random()); } } // Restores the test cases and tests to their order before the first shuffle. void UnitTestImpl::UnshuffleTests() { for (size_t i = 0; i < test_cases_.size(); i++) { // Unshuffles the tests in each test case. test_cases_[i]->UnshuffleTests(); // Resets the index of each test case. test_case_indices_[i] = static_cast(i); } } // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. std::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, int skip_count) { // We pass skip_count + 1 to skip this wrapper function in addition // to what the user really wants to skip. return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); } // Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to // suppress unreachable code warnings. namespace { class ClassUniqueToAlwaysTrue {}; } bool IsTrue(bool condition) { return condition; } bool AlwaysTrue() { #if GTEST_HAS_EXCEPTIONS // This condition is always false so AlwaysTrue() never actually throws, // but it makes the compiler think that it may throw. if (IsTrue(false)) throw ClassUniqueToAlwaysTrue(); #endif // GTEST_HAS_EXCEPTIONS return true; } // If *pstr starts with the given prefix, modifies *pstr to be right // past the prefix and returns true; otherwise leaves *pstr unchanged // and returns false. None of pstr, *pstr, and prefix can be NULL. bool SkipPrefix(const char* prefix, const char** pstr) { const size_t prefix_len = strlen(prefix); if (strncmp(*pstr, prefix, prefix_len) == 0) { *pstr += prefix_len; return true; } return false; } // Parses a string as a command line flag. The string should have // the format "--flag=value". When def_optional is true, the "=value" // part can be omitted. // // Returns the value of the flag, or NULL if the parsing failed. static const char* ParseFlagValue(const char* str, const char* flag, bool def_optional) { // str and flag must not be NULL. if (str == NULL || flag == NULL) return NULL; // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. const std::string flag_str = std::string("--") + GTEST_FLAG_PREFIX_ + flag; const size_t flag_len = flag_str.length(); if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; // Skips the flag name. const char* flag_end = str + flag_len; // When def_optional is true, it's OK to not have a "=value" part. if (def_optional && (flag_end[0] == '\0')) { return flag_end; } // If def_optional is true and there are more characters after the // flag name, or if def_optional is false, there must be a '=' after // the flag name. if (flag_end[0] != '=') return NULL; // Returns the string after "=". return flag_end + 1; } // Parses a string for a bool flag, in the form of either // "--flag=value" or "--flag". // // In the former case, the value is taken as true as long as it does // not start with '0', 'f', or 'F'. // // In the latter case, the value is taken as true. // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. static bool ParseBoolFlag(const char* str, const char* flag, bool* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, true); // Aborts if the parsing failed. if (value_str == NULL) return false; // Converts the string value to a bool. *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); return true; } // Parses a string for an Int32 flag, in the form of // "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, false); // Aborts if the parsing failed. if (value_str == NULL) return false; // Sets *value to the value of the flag. return ParseInt32(Message() << "The value of flag --" << flag, value_str, value); } // Parses a string for a string flag, in the form of // "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. template static bool ParseStringFlag(const char* str, const char* flag, String* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, false); // Aborts if the parsing failed. if (value_str == NULL) return false; // Sets *value to the value of the flag. *value = value_str; return true; } // Determines whether a string has a prefix that Google Test uses for its // flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. // If Google Test detects that a command line flag has its prefix but is not // recognized, it will print its help message. Flags starting with // GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test // internal flags and do not trigger the help message. static bool HasGoogleTestFlagPrefix(const char* str) { return (SkipPrefix("--", &str) || SkipPrefix("-", &str) || SkipPrefix("/", &str)) && !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); } // Prints a string containing code-encoded text. The following escape // sequences can be used in the string to control the text color: // // @@ prints a single '@' character. // @R changes the color to red. // @G changes the color to green. // @Y changes the color to yellow. // @D changes to the default terminal text color. // // FIXME: Write tests for this once we add stdout // capturing to Google Test. static void PrintColorEncoded(const char* str) { GTestColor color = COLOR_DEFAULT; // The current color. // Conceptually, we split the string into segments divided by escape // sequences. Then we print one segment at a time. At the end of // each iteration, the str pointer advances to the beginning of the // next segment. for (;;) { const char* p = strchr(str, '@'); if (p == NULL) { ColoredPrintf(color, "%s", str); return; } ColoredPrintf(color, "%s", std::string(str, p).c_str()); const char ch = p[1]; str = p + 2; if (ch == '@') { ColoredPrintf(color, "@"); } else if (ch == 'D') { color = COLOR_DEFAULT; } else if (ch == 'R') { color = COLOR_RED; } else if (ch == 'G') { color = COLOR_GREEN; } else if (ch == 'Y') { color = COLOR_YELLOW; } else { --str; } } } static const char kColorEncodedHelpMessage[] = "This program contains tests written using " GTEST_NAME_ ". You can use the\n" "following command line flags to control its behavior:\n" "\n" "Test Selection:\n" " @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" " List the names of all tests instead of running them. The name of\n" " TEST(Foo, Bar) is \"Foo.Bar\".\n" " @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" "[@G-@YNEGATIVE_PATTERNS]@D\n" " Run only the tests whose name matches one of the positive patterns but\n" " none of the negative patterns. '?' matches any single character; '*'\n" " matches any substring; ':' separates two patterns.\n" " @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" " Run all disabled tests too.\n" "\n" "Test Execution:\n" " @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" " Run the tests repeatedly; use a negative count to repeat forever.\n" " @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" " Randomize tests' orders on every iteration.\n" " @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" " Random number seed to use for shuffling test orders (between 1 and\n" " 99999, or 0 to use a seed based on the current time).\n" "\n" "Test Output:\n" " @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" " Enable/disable colored output. The default is @Gauto@D.\n" " -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" " Don't print the elapsed time of each test.\n" " @G--" GTEST_FLAG_PREFIX_ "output=@Y(@Gjson@Y|@Gxml@Y)[@G:@YDIRECTORY_PATH@G" GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" " Generate a JSON or XML report in the given directory or with the given\n" " file name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" # if GTEST_CAN_STREAM_RESULTS_ " @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n" " Stream test results to the given server.\n" # endif // GTEST_CAN_STREAM_RESULTS_ "\n" "Assertion Behavior:\n" # if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS " @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" " Set the default death test style.\n" # endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS " @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" " Turn assertion failures into debugger break-points.\n" " @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" " Turn assertion failures into C++ exceptions for use by an external\n" " test framework.\n" " @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" " Do not report exceptions as test failures. Instead, allow them\n" " to crash the program or throw a pop-up (on Windows).\n" "\n" "Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " "the corresponding\n" "environment variable of a flag (all letters in upper-case). For example, to\n" "disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ "color=no@D or set\n" "the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" "\n" "For more information, please read the " GTEST_NAME_ " documentation at\n" "@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" "(not one in your own code or tests), please report it to\n" "@G<" GTEST_DEV_EMAIL_ ">@D.\n"; static bool ParseGoogleTestFlag(const char* const arg) { return ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, >EST_FLAG(also_run_disabled_tests)) || ParseBoolFlag(arg, kBreakOnFailureFlag, >EST_FLAG(break_on_failure)) || ParseBoolFlag(arg, kCatchExceptionsFlag, >EST_FLAG(catch_exceptions)) || ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || ParseStringFlag(arg, kDeathTestStyleFlag, >EST_FLAG(death_test_style)) || ParseBoolFlag(arg, kDeathTestUseFork, >EST_FLAG(death_test_use_fork)) || ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || ParseStringFlag(arg, kInternalRunDeathTestFlag, >EST_FLAG(internal_run_death_test)) || ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || ParseBoolFlag(arg, kPrintUTF8Flag, >EST_FLAG(print_utf8)) || ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || ParseInt32Flag(arg, kStackTraceDepthFlag, >EST_FLAG(stack_trace_depth)) || ParseStringFlag(arg, kStreamResultToFlag, >EST_FLAG(stream_result_to)) || ParseBoolFlag(arg, kThrowOnFailureFlag, >EST_FLAG(throw_on_failure)); } #if GTEST_USE_OWN_FLAGFILE_FLAG_ static void LoadFlagsFromFile(const std::string& path) { FILE* flagfile = posix::FOpen(path.c_str(), "r"); if (!flagfile) { GTEST_LOG_(FATAL) << "Unable to open file \"" << GTEST_FLAG(flagfile) << "\""; } std::string contents(ReadEntireFile(flagfile)); posix::FClose(flagfile); std::vector lines; SplitString(contents, '\n', &lines); for (size_t i = 0; i < lines.size(); ++i) { if (lines[i].empty()) continue; if (!ParseGoogleTestFlag(lines[i].c_str())) g_help_flag = true; } } #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ // Parses the command line for Google Test flags, without initializing // other parts of Google Test. The type parameter CharType can be // instantiated to either char or wchar_t. template void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { for (int i = 1; i < *argc; i++) { const std::string arg_string = StreamableToString(argv[i]); const char* const arg = arg_string.c_str(); using internal::ParseBoolFlag; using internal::ParseInt32Flag; using internal::ParseStringFlag; bool remove_flag = false; if (ParseGoogleTestFlag(arg)) { remove_flag = true; #if GTEST_USE_OWN_FLAGFILE_FLAG_ } else if (ParseStringFlag(arg, kFlagfileFlag, >EST_FLAG(flagfile))) { LoadFlagsFromFile(GTEST_FLAG(flagfile)); remove_flag = true; #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ } else if (arg_string == "--help" || arg_string == "-h" || arg_string == "-?" || arg_string == "/?" || HasGoogleTestFlagPrefix(arg)) { // Both help flag and unrecognized Google Test flags (excluding // internal ones) trigger help display. g_help_flag = true; } if (remove_flag) { // Shift the remainder of the argv list left by one. Note // that argv has (*argc + 1) elements, the last one always being // NULL. The following loop moves the trailing NULL element as // well. for (int j = i; j != *argc; j++) { argv[j] = argv[j + 1]; } // Decrements the argument count. (*argc)--; // We also need to decrement the iterator as we just removed // an element. i--; } } if (g_help_flag) { // We print the help here instead of in RUN_ALL_TESTS(), as the // latter may not be called at all if the user is using Google // Test with another testing framework. PrintColorEncoded(kColorEncodedHelpMessage); } } // Parses the command line for Google Test flags, without initializing // other parts of Google Test. void ParseGoogleTestFlagsOnly(int* argc, char** argv) { ParseGoogleTestFlagsOnlyImpl(argc, argv); // Fix the value of *_NSGetArgc() on macOS, but iff // *_NSGetArgv() == argv // Only applicable to char** version of argv #if GTEST_OS_MAC #ifndef GTEST_OS_IOS if (*_NSGetArgv() == argv) { *_NSGetArgc() = *argc; } #endif #endif } void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { ParseGoogleTestFlagsOnlyImpl(argc, argv); } // The internal implementation of InitGoogleTest(). // // The type parameter CharType can be instantiated to either char or // wchar_t. template void InitGoogleTestImpl(int* argc, CharType** argv) { // We don't want to run the initialization code twice. if (GTestIsInitialized()) return; if (*argc <= 0) return; g_argvs.clear(); for (int i = 0; i != *argc; i++) { g_argvs.push_back(StreamableToString(argv[i])); } #if GTEST_HAS_ABSL absl::InitializeSymbolizer(g_argvs[0].c_str()); #endif // GTEST_HAS_ABSL ParseGoogleTestFlagsOnly(argc, argv); GetUnitTestImpl()->PostFlagParsingInit(); } } // namespace internal // Initializes Google Test. This must be called before calling // RUN_ALL_TESTS(). In particular, it parses a command line for the // flags that Google Test recognizes. Whenever a Google Test flag is // seen, it is removed from argv, and *argc is decremented. // // No value is returned. Instead, the Google Test flag variables are // updated. // // Calling the function for the second time has no user-visible effect. void InitGoogleTest(int* argc, char** argv) { #if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv); #else // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) internal::InitGoogleTestImpl(argc, argv); #endif // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) } // This overloaded version can be used in Windows programs compiled in // UNICODE mode. void InitGoogleTest(int* argc, wchar_t** argv) { #if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv); #else // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) internal::InitGoogleTestImpl(argc, argv); #endif // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) } std::string TempDir() { #if defined(GTEST_CUSTOM_TEMPDIR_FUNCTION_) return GTEST_CUSTOM_TEMPDIR_FUNCTION_(); #endif #if GTEST_OS_WINDOWS_MOBILE return "\\temp\\"; #elif GTEST_OS_WINDOWS const char* temp_dir = internal::posix::GetEnv("TEMP"); if (temp_dir == NULL || temp_dir[0] == '\0') return "\\temp\\"; else if (temp_dir[strlen(temp_dir) - 1] == '\\') return temp_dir; else return std::string(temp_dir) + "\\"; #elif GTEST_OS_LINUX_ANDROID return "/sdcard/"; #else return "/tmp/"; #endif // GTEST_OS_WINDOWS_MOBILE } // Class ScopedTrace // Pushes the given source file location and message onto a per-thread // trace stack maintained by Google Test. void ScopedTrace::PushTrace(const char* file, int line, std::string message) { internal::TraceInfo trace; trace.file = file; trace.line = line; trace.message.swap(message); UnitTest::GetInstance()->PushGTestTrace(trace); } // Pops the info pushed by the c'tor. ScopedTrace::~ScopedTrace() GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { UnitTest::GetInstance()->PopGTestTrace(); } } // namespace testing // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // This file implements death tests. #if GTEST_HAS_DEATH_TEST # if GTEST_OS_MAC # include # endif // GTEST_OS_MAC # include # include # include # if GTEST_OS_LINUX # include # endif // GTEST_OS_LINUX # include # if GTEST_OS_WINDOWS # include # else # include # include # endif // GTEST_OS_WINDOWS # if GTEST_OS_QNX # include # endif // GTEST_OS_QNX # if GTEST_OS_FUCHSIA # include # include # include # include # include # endif // GTEST_OS_FUCHSIA #endif // GTEST_HAS_DEATH_TEST namespace testing { // Constants. // The default death test style. // // This is defined in internal/gtest-port.h as "fast", but can be overridden by // a definition in internal/custom/gtest-port.h. The recommended value, which is // used internally at Google, is "threadsafe". static const char kDefaultDeathTestStyle[] = GTEST_DEFAULT_DEATH_TEST_STYLE; GTEST_DEFINE_string_( death_test_style, internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), "Indicates how to run a death test in a forked child process: " "\"threadsafe\" (child process re-executes the test binary " "from the beginning, running only the specific death test) or " "\"fast\" (child process runs the death test immediately " "after forking)."); GTEST_DEFINE_bool_( death_test_use_fork, internal::BoolFromGTestEnv("death_test_use_fork", false), "Instructs to use fork()/_exit() instead of clone() in death tests. " "Ignored and always uses fork() on POSIX systems where clone() is not " "implemented. Useful when running under valgrind or similar tools if " "those do not support clone(). Valgrind 3.3.1 will just fail if " "it sees an unsupported combination of clone() flags. " "It is not recommended to use this flag w/o valgrind though it will " "work in 99% of the cases. Once valgrind is fixed, this flag will " "most likely be removed."); namespace internal { GTEST_DEFINE_string_( internal_run_death_test, "", "Indicates the file, line number, temporal index of " "the single death test to run, and a file descriptor to " "which a success code may be sent, all separated by " "the '|' characters. This flag is specified if and only if the current " "process is a sub-process launched for running a thread-safe " "death test. FOR INTERNAL USE ONLY."); } // namespace internal #if GTEST_HAS_DEATH_TEST namespace internal { // Valid only for fast death tests. Indicates the code is running in the // child process of a fast style death test. # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA static bool g_in_fast_death_test_child = false; # endif // Returns a Boolean value indicating whether the caller is currently // executing in the context of the death test child process. Tools such as // Valgrind heap checkers may need this to modify their behavior in death // tests. IMPORTANT: This is an internal utility. Using it may break the // implementation of death tests. User code MUST NOT use it. bool InDeathTestChild() { # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA // On Windows and Fuchsia, death tests are thread-safe regardless of the value // of the death_test_style flag. return !GTEST_FLAG(internal_run_death_test).empty(); # else if (GTEST_FLAG(death_test_style) == "threadsafe") return !GTEST_FLAG(internal_run_death_test).empty(); else return g_in_fast_death_test_child; #endif } } // namespace internal // ExitedWithCode constructor. ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { } // ExitedWithCode function-call operator. bool ExitedWithCode::operator()(int exit_status) const { # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA return exit_status == exit_code_; # else return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; # endif // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA } # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // KilledBySignal constructor. KilledBySignal::KilledBySignal(int signum) : signum_(signum) { } // KilledBySignal function-call operator. bool KilledBySignal::operator()(int exit_status) const { # if defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_) { bool result; if (GTEST_KILLED_BY_SIGNAL_OVERRIDE_(signum_, exit_status, &result)) { return result; } } # endif // defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_) return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; } # endif // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA namespace internal { // Utilities needed for death tests. // Generates a textual description of a given exit code, in the format // specified by wait(2). static std::string ExitSummary(int exit_code) { Message m; # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA m << "Exited with exit status " << exit_code; # else if (WIFEXITED(exit_code)) { m << "Exited with exit status " << WEXITSTATUS(exit_code); } else if (WIFSIGNALED(exit_code)) { m << "Terminated by signal " << WTERMSIG(exit_code); } # ifdef WCOREDUMP if (WCOREDUMP(exit_code)) { m << " (core dumped)"; } # endif # endif // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA return m.GetString(); } // Returns true if exit_status describes a process that was terminated // by a signal, or exited normally with a nonzero exit code. bool ExitedUnsuccessfully(int exit_status) { return !ExitedWithCode(0)(exit_status); } # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Generates a textual failure message when a death test finds more than // one thread running, or cannot determine the number of threads, prior // to executing the given statement. It is the responsibility of the // caller not to pass a thread_count of 1. static std::string DeathTestThreadWarning(size_t thread_count) { Message msg; msg << "Death tests use fork(), which is unsafe particularly" << " in a threaded context. For this test, " << GTEST_NAME_ << " "; if (thread_count == 0) { msg << "couldn't detect the number of threads."; } else { msg << "detected " << thread_count << " threads."; } msg << " See " "https://github.com/google/googletest/blob/master/googletest/docs/" "advanced.md#death-tests-and-threads" << " for more explanation and suggested solutions, especially if" << " this is the last message you see before your test times out."; return msg.GetString(); } # endif // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Flag characters for reporting a death test that did not die. static const char kDeathTestLived = 'L'; static const char kDeathTestReturned = 'R'; static const char kDeathTestThrew = 'T'; static const char kDeathTestInternalError = 'I'; #if GTEST_OS_FUCHSIA // File descriptor used for the pipe in the child process. static const int kFuchsiaReadPipeFd = 3; #endif // An enumeration describing all of the possible ways that a death test can // conclude. DIED means that the process died while executing the test // code; LIVED means that process lived beyond the end of the test code; // RETURNED means that the test statement attempted to execute a return // statement, which is not allowed; THREW means that the test statement // returned control by throwing an exception. IN_PROGRESS means the test // has not yet concluded. // FIXME: Unify names and possibly values for // AbortReason, DeathTestOutcome, and flag characters above. enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW }; // Routine for aborting the program which is safe to call from an // exec-style death test child process, in which case the error // message is propagated back to the parent process. Otherwise, the // message is simply printed to stderr. In either case, the program // then exits with status 1. static void DeathTestAbort(const std::string& message) { // On a POSIX system, this function may be called from a threadsafe-style // death test child process, which operates on a very small stack. Use // the heap for any additional non-minuscule memory requirements. const InternalRunDeathTestFlag* const flag = GetUnitTestImpl()->internal_run_death_test_flag(); if (flag != NULL) { FILE* parent = posix::FDOpen(flag->write_fd(), "w"); fputc(kDeathTestInternalError, parent); fprintf(parent, "%s", message.c_str()); fflush(parent); _exit(1); } else { fprintf(stderr, "%s", message.c_str()); fflush(stderr); posix::Abort(); } } // A replacement for CHECK that calls DeathTestAbort if the assertion // fails. # define GTEST_DEATH_TEST_CHECK_(expression) \ do { \ if (!::testing::internal::IsTrue(expression)) { \ DeathTestAbort( \ ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + ::testing::internal::StreamableToString(__LINE__) + ": " \ + #expression); \ } \ } while (::testing::internal::AlwaysFalse()) // This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for // evaluating any system call that fulfills two conditions: it must return // -1 on failure, and set errno to EINTR when it is interrupted and // should be tried again. The macro expands to a loop that repeatedly // evaluates the expression as long as it evaluates to -1 and sets // errno to EINTR. If the expression evaluates to -1 but errno is // something other than EINTR, DeathTestAbort is called. # define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ do { \ int gtest_retval; \ do { \ gtest_retval = (expression); \ } while (gtest_retval == -1 && errno == EINTR); \ if (gtest_retval == -1) { \ DeathTestAbort( \ ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + ::testing::internal::StreamableToString(__LINE__) + ": " \ + #expression + " != -1"); \ } \ } while (::testing::internal::AlwaysFalse()) // Returns the message describing the last system error in errno. std::string GetLastErrnoDescription() { return errno == 0 ? "" : posix::StrError(errno); } // This is called from a death test parent process to read a failure // message from the death test child process and log it with the FATAL // severity. On Windows, the message is read from a pipe handle. On other // platforms, it is read from a file descriptor. static void FailFromInternalError(int fd) { Message error; char buffer[256]; int num_read; do { while ((num_read = posix::Read(fd, buffer, 255)) > 0) { buffer[num_read] = '\0'; error << buffer; } } while (num_read == -1 && errno == EINTR); if (num_read == 0) { GTEST_LOG_(FATAL) << error.GetString(); } else { const int last_error = errno; GTEST_LOG_(FATAL) << "Error while reading death test internal: " << GetLastErrnoDescription() << " [" << last_error << "]"; } } // Death test constructor. Increments the running death test count // for the current test. DeathTest::DeathTest() { TestInfo* const info = GetUnitTestImpl()->current_test_info(); if (info == NULL) { DeathTestAbort("Cannot run a death test outside of a TEST or " "TEST_F construct"); } } // Creates and returns a death test by dispatching to the current // death test factory. bool DeathTest::Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) { return GetUnitTestImpl()->death_test_factory()->Create( statement, regex, file, line, test); } const char* DeathTest::LastMessage() { return last_death_test_message_.c_str(); } void DeathTest::set_last_death_test_message(const std::string& message) { last_death_test_message_ = message; } std::string DeathTest::last_death_test_message_; // Provides cross platform implementation for some death functionality. class DeathTestImpl : public DeathTest { protected: DeathTestImpl(const char* a_statement, const RE* a_regex) : statement_(a_statement), regex_(a_regex), spawned_(false), status_(-1), outcome_(IN_PROGRESS), read_fd_(-1), write_fd_(-1) {} // read_fd_ is expected to be closed and cleared by a derived class. ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } void Abort(AbortReason reason); virtual bool Passed(bool status_ok); const char* statement() const { return statement_; } const RE* regex() const { return regex_; } bool spawned() const { return spawned_; } void set_spawned(bool is_spawned) { spawned_ = is_spawned; } int status() const { return status_; } void set_status(int a_status) { status_ = a_status; } DeathTestOutcome outcome() const { return outcome_; } void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } int read_fd() const { return read_fd_; } void set_read_fd(int fd) { read_fd_ = fd; } int write_fd() const { return write_fd_; } void set_write_fd(int fd) { write_fd_ = fd; } // Called in the parent process only. Reads the result code of the death // test child process via a pipe, interprets it to set the outcome_ // member, and closes read_fd_. Outputs diagnostics and terminates in // case of unexpected codes. void ReadAndInterpretStatusByte(); private: // The textual content of the code this object is testing. This class // doesn't own this string and should not attempt to delete it. const char* const statement_; // The regular expression which test output must match. DeathTestImpl // doesn't own this object and should not attempt to delete it. const RE* const regex_; // True if the death test child process has been successfully spawned. bool spawned_; // The exit status of the child process. int status_; // How the death test concluded. DeathTestOutcome outcome_; // Descriptor to the read end of the pipe to the child process. It is // always -1 in the child process. The child keeps its write end of the // pipe in write_fd_. int read_fd_; // Descriptor to the child's write end of the pipe to the parent process. // It is always -1 in the parent process. The parent keeps its end of the // pipe in read_fd_. int write_fd_; }; // Called in the parent process only. Reads the result code of the death // test child process via a pipe, interprets it to set the outcome_ // member, and closes read_fd_. Outputs diagnostics and terminates in // case of unexpected codes. void DeathTestImpl::ReadAndInterpretStatusByte() { char flag; int bytes_read; // The read() here blocks until data is available (signifying the // failure of the death test) or until the pipe is closed (signifying // its success), so it's okay to call this in the parent before // the child process has exited. do { bytes_read = posix::Read(read_fd(), &flag, 1); } while (bytes_read == -1 && errno == EINTR); if (bytes_read == 0) { set_outcome(DIED); } else if (bytes_read == 1) { switch (flag) { case kDeathTestReturned: set_outcome(RETURNED); break; case kDeathTestThrew: set_outcome(THREW); break; case kDeathTestLived: set_outcome(LIVED); break; case kDeathTestInternalError: FailFromInternalError(read_fd()); // Does not return. break; default: GTEST_LOG_(FATAL) << "Death test child process reported " << "unexpected status byte (" << static_cast(flag) << ")"; } } else { GTEST_LOG_(FATAL) << "Read from death test child process failed: " << GetLastErrnoDescription(); } GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); set_read_fd(-1); } // Signals that the death test code which should have exited, didn't. // Should be called only in a death test child process. // Writes a status byte to the child's status file descriptor, then // calls _exit(1). void DeathTestImpl::Abort(AbortReason reason) { // The parent process considers the death test to be a failure if // it finds any data in our pipe. So, here we write a single flag byte // to the pipe, then exit. const char status_ch = reason == TEST_DID_NOT_DIE ? kDeathTestLived : reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); // We are leaking the descriptor here because on some platforms (i.e., // when built as Windows DLL), destructors of global objects will still // run after calling _exit(). On such systems, write_fd_ will be // indirectly closed from the destructor of UnitTestImpl, causing double // close if it is also closed here. On debug configurations, double close // may assert. As there are no in-process buffers to flush here, we are // relying on the OS to close the descriptor after the process terminates // when the destructors are not run. _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) } // Returns an indented copy of stderr output for a death test. // This makes distinguishing death test output lines from regular log lines // much easier. static ::std::string FormatDeathTestOutput(const ::std::string& output) { ::std::string ret; for (size_t at = 0; ; ) { const size_t line_end = output.find('\n', at); ret += "[ DEATH ] "; if (line_end == ::std::string::npos) { ret += output.substr(at); break; } ret += output.substr(at, line_end + 1 - at); at = line_end + 1; } return ret; } // Assesses the success or failure of a death test, using both private // members which have previously been set, and one argument: // // Private data members: // outcome: An enumeration describing how the death test // concluded: DIED, LIVED, THREW, or RETURNED. The death test // fails in the latter three cases. // status: The exit status of the child process. On *nix, it is in the // in the format specified by wait(2). On Windows, this is the // value supplied to the ExitProcess() API or a numeric code // of the exception that terminated the program. // regex: A regular expression object to be applied to // the test's captured standard error output; the death test // fails if it does not match. // // Argument: // status_ok: true if exit_status is acceptable in the context of // this particular death test, which fails if it is false // // Returns true iff all of the above conditions are met. Otherwise, the // first failing condition, in the order given above, is the one that is // reported. Also sets the last death test message string. bool DeathTestImpl::Passed(bool status_ok) { if (!spawned()) return false; const std::string error_message = GetCapturedStderr(); bool success = false; Message buffer; buffer << "Death test: " << statement() << "\n"; switch (outcome()) { case LIVED: buffer << " Result: failed to die.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case THREW: buffer << " Result: threw an exception.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case RETURNED: buffer << " Result: illegal return in test statement.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case DIED: if (status_ok) { # if GTEST_USES_PCRE // PCRE regexes support embedded NULs. const bool matched = RE::PartialMatch(error_message, *regex()); # else const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); # endif // GTEST_USES_PCRE if (matched) { success = true; } else { buffer << " Result: died but not with expected error.\n" << " Expected: " << regex()->pattern() << "\n" << "Actual msg:\n" << FormatDeathTestOutput(error_message); } } else { buffer << " Result: died but not with expected exit code:\n" << " " << ExitSummary(status()) << "\n" << "Actual msg:\n" << FormatDeathTestOutput(error_message); } break; case IN_PROGRESS: default: GTEST_LOG_(FATAL) << "DeathTest::Passed somehow called before conclusion of test"; } DeathTest::set_last_death_test_message(buffer.GetString()); return success; } # if GTEST_OS_WINDOWS // WindowsDeathTest implements death tests on Windows. Due to the // specifics of starting new processes on Windows, death tests there are // always threadsafe, and Google Test considers the // --gtest_death_test_style=fast setting to be equivalent to // --gtest_death_test_style=threadsafe there. // // A few implementation notes: Like the Linux version, the Windows // implementation uses pipes for child-to-parent communication. But due to // the specifics of pipes on Windows, some extra steps are required: // // 1. The parent creates a communication pipe and stores handles to both // ends of it. // 2. The parent starts the child and provides it with the information // necessary to acquire the handle to the write end of the pipe. // 3. The child acquires the write end of the pipe and signals the parent // using a Windows event. // 4. Now the parent can release the write end of the pipe on its side. If // this is done before step 3, the object's reference count goes down to // 0 and it is destroyed, preventing the child from acquiring it. The // parent now has to release it, or read operations on the read end of // the pipe will not return when the child terminates. // 5. The parent reads child's output through the pipe (outcome code and // any possible error messages) from the pipe, and its stderr and then // determines whether to fail the test. // // Note: to distinguish Win32 API calls from the local method and function // calls, the former are explicitly resolved in the global namespace. // class WindowsDeathTest : public DeathTestImpl { public: WindowsDeathTest(const char* a_statement, const RE* a_regex, const char* file, int line) : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} // All of these virtual functions are inherited from DeathTest. virtual int Wait(); virtual TestRole AssumeRole(); private: // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; // Handle to the write end of the pipe to the child process. AutoHandle write_handle_; // Child process handle. AutoHandle child_handle_; // Event the child process uses to signal the parent that it has // acquired the handle to the write end of the pipe. After seeing this // event the parent can release its own handles to make sure its // ReadFile() calls return when the child terminates. AutoHandle event_handle_; }; // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int WindowsDeathTest::Wait() { if (!spawned()) return 0; // Wait until the child either signals that it has acquired the write end // of the pipe or it dies. const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; switch (::WaitForMultipleObjects(2, wait_handles, FALSE, // Waits for any of the handles. INFINITE)) { case WAIT_OBJECT_0: case WAIT_OBJECT_0 + 1: break; default: GTEST_DEATH_TEST_CHECK_(false); // Should not get here. } // The child has acquired the write end of the pipe or exited. // We release the handle on our side and continue. write_handle_.Reset(); event_handle_.Reset(); ReadAndInterpretStatusByte(); // Waits for the child process to exit if it haven't already. This // returns immediately if the child has already exited, regardless of // whether previous calls to WaitForMultipleObjects synchronized on this // handle or not. GTEST_DEATH_TEST_CHECK_( WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), INFINITE)); DWORD status_code; GTEST_DEATH_TEST_CHECK_( ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE); child_handle_.Reset(); set_status(static_cast(status_code)); return status(); } // The AssumeRole process for a Windows death test. It creates a child // process with the same executable as the current process to run the // death test. The child process is given the --gtest_filter and // --gtest_internal_run_death_test flags such that it knows to run the // current death test only. DeathTest::TestRole WindowsDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != NULL) { // ParseInternalRunDeathTestFlag() has performed all the necessary // processing. set_write_fd(flag->write_fd()); return EXECUTE_TEST; } // WindowsDeathTest uses an anonymous pipe to communicate results of // a death test. SECURITY_ATTRIBUTES handles_are_inheritable = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; HANDLE read_handle, write_handle; GTEST_DEATH_TEST_CHECK_( ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, 0) // Default buffer size. != FALSE); set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), O_RDONLY)); write_handle_.Reset(write_handle); event_handle_.Reset(::CreateEvent( &handles_are_inheritable, TRUE, // The event will automatically reset to non-signaled state. FALSE, // The initial state is non-signalled. NULL)); // The even is unnamed. GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_case_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index) + "|" + StreamableToString(static_cast(::GetCurrentProcessId())) + // size_t has the same width as pointers on both 32-bit and 64-bit // Windows platforms. // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. "|" + StreamableToString(reinterpret_cast(write_handle)) + "|" + StreamableToString(reinterpret_cast(event_handle_.Get())); char executable_path[_MAX_PATH + 1]; // NOLINT GTEST_DEATH_TEST_CHECK_( _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, executable_path, _MAX_PATH)); std::string command_line = std::string(::GetCommandLineA()) + " " + filter_flag + " \"" + internal_flag + "\""; DeathTest::set_last_death_test_message(""); CaptureStderr(); // Flush the log buffers since the log streams are shared with the child. FlushInfoLog(); // The child process will share the standard handles with the parent. STARTUPINFOA startup_info; memset(&startup_info, 0, sizeof(STARTUPINFO)); startup_info.dwFlags = STARTF_USESTDHANDLES; startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); PROCESS_INFORMATION process_info; GTEST_DEATH_TEST_CHECK_(::CreateProcessA( executable_path, const_cast(command_line.c_str()), NULL, // Retuned process handle is not inheritable. NULL, // Retuned thread handle is not inheritable. TRUE, // Child inherits all inheritable handles (for write_handle_). 0x0, // Default creation flags. NULL, // Inherit the parent's environment. UnitTest::GetInstance()->original_working_dir(), &startup_info, &process_info) != FALSE); child_handle_.Reset(process_info.hProcess); ::CloseHandle(process_info.hThread); set_spawned(true); return OVERSEE_TEST; } # elif GTEST_OS_FUCHSIA class FuchsiaDeathTest : public DeathTestImpl { public: FuchsiaDeathTest(const char* a_statement, const RE* a_regex, const char* file, int line) : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} virtual ~FuchsiaDeathTest() { zx_status_t status = zx_handle_close(child_process_); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); status = zx_handle_close(port_); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); } // All of these virtual functions are inherited from DeathTest. virtual int Wait(); virtual TestRole AssumeRole(); private: // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; zx_handle_t child_process_ = ZX_HANDLE_INVALID; zx_handle_t port_ = ZX_HANDLE_INVALID; }; // Utility class for accumulating command-line arguments. class Arguments { public: Arguments() { args_.push_back(NULL); } ~Arguments() { for (std::vector::iterator i = args_.begin(); i != args_.end(); ++i) { free(*i); } } void AddArgument(const char* argument) { args_.insert(args_.end() - 1, posix::StrDup(argument)); } template void AddArguments(const ::std::vector& arguments) { for (typename ::std::vector::const_iterator i = arguments.begin(); i != arguments.end(); ++i) { args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); } } char* const* Argv() { return &args_[0]; } int size() { return args_.size() - 1; } private: std::vector args_; }; // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int FuchsiaDeathTest::Wait() { if (!spawned()) return 0; // Register to wait for the child process to terminate. zx_status_t status_zx; status_zx = zx_object_wait_async(child_process_, port_, 0 /* key */, ZX_PROCESS_TERMINATED, ZX_WAIT_ASYNC_ONCE); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); // Wait for it to terminate, or an exception to be received. zx_port_packet_t packet; status_zx = zx_port_wait(port_, ZX_TIME_INFINITE, &packet); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); if (ZX_PKT_IS_EXCEPTION(packet.type)) { // Process encountered an exception. Kill it directly rather than letting // other handlers process the event. status_zx = zx_task_kill(child_process_); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); // Now wait for |child_process_| to terminate. zx_signals_t signals = 0; status_zx = zx_object_wait_one( child_process_, ZX_PROCESS_TERMINATED, ZX_TIME_INFINITE, &signals); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); GTEST_DEATH_TEST_CHECK_(signals & ZX_PROCESS_TERMINATED); } else { // Process terminated. GTEST_DEATH_TEST_CHECK_(ZX_PKT_IS_SIGNAL_ONE(packet.type)); GTEST_DEATH_TEST_CHECK_(packet.signal.observed & ZX_PROCESS_TERMINATED); } ReadAndInterpretStatusByte(); zx_info_process_t buffer; status_zx = zx_object_get_info( child_process_, ZX_INFO_PROCESS, &buffer, sizeof(buffer), nullptr, nullptr); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); GTEST_DEATH_TEST_CHECK_(buffer.exited); set_status(buffer.return_code); return status(); } // The AssumeRole process for a Fuchsia death test. It creates a child // process with the same executable as the current process to run the // death test. The child process is given the --gtest_filter and // --gtest_internal_run_death_test flags such that it knows to run the // current death test only. DeathTest::TestRole FuchsiaDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != NULL) { // ParseInternalRunDeathTestFlag() has performed all the necessary // processing. set_write_fd(kFuchsiaReadPipeFd); return EXECUTE_TEST; } CaptureStderr(); // Flush the log buffers since the log streams are shared with the child. FlushInfoLog(); // Build the child process command line. const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_case_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index); Arguments args; args.AddArguments(GetInjectableArgvs()); args.AddArgument(filter_flag.c_str()); args.AddArgument(internal_flag.c_str()); // Build the pipe for communication with the child. zx_status_t status; zx_handle_t child_pipe_handle; uint32_t type; status = fdio_pipe_half(&child_pipe_handle, &type); GTEST_DEATH_TEST_CHECK_(status >= 0); set_read_fd(status); // Set the pipe handle for the child. fdio_spawn_action_t add_handle_action = {}; add_handle_action.action = FDIO_SPAWN_ACTION_ADD_HANDLE; add_handle_action.h.id = PA_HND(type, kFuchsiaReadPipeFd); add_handle_action.h.handle = child_pipe_handle; // Spawn the child process. status = fdio_spawn_etc(ZX_HANDLE_INVALID, FDIO_SPAWN_CLONE_ALL, args.Argv()[0], args.Argv(), nullptr, 1, &add_handle_action, &child_process_, nullptr); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); // Create an exception port and attach it to the |child_process_|, to allow // us to suppress the system default exception handler from firing. status = zx_port_create(0, &port_); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); status = zx_task_bind_exception_port( child_process_, port_, 0 /* key */, 0 /*options */); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); set_spawned(true); return OVERSEE_TEST; } #else // We are neither on Windows, nor on Fuchsia. // ForkingDeathTest provides implementations for most of the abstract // methods of the DeathTest interface. Only the AssumeRole method is // left undefined. class ForkingDeathTest : public DeathTestImpl { public: ForkingDeathTest(const char* statement, const RE* regex); // All of these virtual functions are inherited from DeathTest. virtual int Wait(); protected: void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } private: // PID of child process during death test; 0 in the child process itself. pid_t child_pid_; }; // Constructs a ForkingDeathTest. ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) : DeathTestImpl(a_statement, a_regex), child_pid_(-1) {} // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int ForkingDeathTest::Wait() { if (!spawned()) return 0; ReadAndInterpretStatusByte(); int status_value; GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); set_status(status_value); return status_value; } // A concrete death test class that forks, then immediately runs the test // in the child process. class NoExecDeathTest : public ForkingDeathTest { public: NoExecDeathTest(const char* a_statement, const RE* a_regex) : ForkingDeathTest(a_statement, a_regex) { } virtual TestRole AssumeRole(); }; // The AssumeRole process for a fork-and-run death test. It implements a // straightforward fork, with a simple pipe to transmit the status byte. DeathTest::TestRole NoExecDeathTest::AssumeRole() { const size_t thread_count = GetThreadCount(); if (thread_count != 1) { GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); } int pipe_fd[2]; GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); DeathTest::set_last_death_test_message(""); CaptureStderr(); // When we fork the process below, the log file buffers are copied, but the // file descriptors are shared. We flush all log files here so that closing // the file descriptors in the child process doesn't throw off the // synchronization between descriptors and buffers in the parent process. // This is as close to the fork as possible to avoid a race condition in case // there are multiple threads running before the death test, and another // thread writes to the log file. FlushInfoLog(); const pid_t child_pid = fork(); GTEST_DEATH_TEST_CHECK_(child_pid != -1); set_child_pid(child_pid); if (child_pid == 0) { GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); set_write_fd(pipe_fd[1]); // Redirects all logging to stderr in the child process to prevent // concurrent writes to the log files. We capture stderr in the parent // process and append the child process' output to a log. LogToStderr(); // Event forwarding to the listeners of event listener API mush be shut // down in death test subprocesses. GetUnitTestImpl()->listeners()->SuppressEventForwarding(); g_in_fast_death_test_child = true; return EXECUTE_TEST; } else { GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); set_read_fd(pipe_fd[0]); set_spawned(true); return OVERSEE_TEST; } } // A concrete death test class that forks and re-executes the main // program from the beginning, with command-line flags set that cause // only this specific death test to be run. class ExecDeathTest : public ForkingDeathTest { public: ExecDeathTest(const char* a_statement, const RE* a_regex, const char* file, int line) : ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } virtual TestRole AssumeRole(); private: static ::std::vector GetArgvsForDeathTestChildProcess() { ::std::vector args = GetInjectableArgvs(); # if defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_) ::std::vector extra_args = GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_(); args.insert(args.end(), extra_args.begin(), extra_args.end()); # endif // defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_) return args; } // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; }; // Utility class for accumulating command-line arguments. class Arguments { public: Arguments() { args_.push_back(NULL); } ~Arguments() { for (std::vector::iterator i = args_.begin(); i != args_.end(); ++i) { free(*i); } } void AddArgument(const char* argument) { args_.insert(args_.end() - 1, posix::StrDup(argument)); } template void AddArguments(const ::std::vector& arguments) { for (typename ::std::vector::const_iterator i = arguments.begin(); i != arguments.end(); ++i) { args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); } } char* const* Argv() { return &args_[0]; } private: std::vector args_; }; // A struct that encompasses the arguments to the child process of a // threadsafe-style death test process. struct ExecDeathTestArgs { char* const* argv; // Command-line arguments for the child's call to exec int close_fd; // File descriptor to close; the read end of a pipe }; # if GTEST_OS_MAC inline char** GetEnviron() { // When Google Test is built as a framework on MacOS X, the environ variable // is unavailable. Apple's documentation (man environ) recommends using // _NSGetEnviron() instead. return *_NSGetEnviron(); } # else // Some POSIX platforms expect you to declare environ. extern "C" makes // it reside in the global namespace. extern "C" char** environ; inline char** GetEnviron() { return environ; } # endif // GTEST_OS_MAC # if !GTEST_OS_QNX // The main function for a threadsafe-style death test child process. // This function is called in a clone()-ed process and thus must avoid // any potentially unsafe operations like malloc or libc functions. static int ExecDeathTestChildMain(void* child_arg) { ExecDeathTestArgs* const args = static_cast(child_arg); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); // We need to execute the test program in the same environment where // it was originally invoked. Therefore we change to the original // working directory first. const char* const original_dir = UnitTest::GetInstance()->original_working_dir(); // We can safely call chdir() as it's a direct system call. if (chdir(original_dir) != 0) { DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } // We can safely call execve() as it's a direct system call. We // cannot use execvp() as it's a libc function and thus potentially // unsafe. Since execve() doesn't search the PATH, the user must // invoke the test program via a valid path that contains at least // one path separator. execve(args->argv[0], args->argv, GetEnviron()); DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " + original_dir + " failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } # endif // !GTEST_OS_QNX # if GTEST_HAS_CLONE // Two utility routines that together determine the direction the stack // grows. // This could be accomplished more elegantly by a single recursive // function, but we want to guard against the unlikely possibility of // a smart compiler optimizing the recursion away. // // GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining // StackLowerThanAddress into StackGrowsDown, which then doesn't give // correct answer. static void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; static void StackLowerThanAddress(const void* ptr, bool* result) { int dummy = 0; *result = (&dummy < ptr); } // Make sure AddressSanitizer does not tamper with the stack here. GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ static bool StackGrowsDown() { int dummy = 0; bool result; StackLowerThanAddress(&dummy, &result); return result; } # endif // GTEST_HAS_CLONE // Spawns a child process with the same executable as the current process in // a thread-safe manner and instructs it to run the death test. The // implementation uses fork(2) + exec. On systems where clone(2) is // available, it is used instead, being slightly more thread-safe. On QNX, // fork supports only single-threaded environments, so this function uses // spawn(2) there instead. The function dies with an error message if // anything goes wrong. static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) { ExecDeathTestArgs args = { argv, close_fd }; pid_t child_pid = -1; # if GTEST_OS_QNX // Obtains the current directory and sets it to be closed in the child // process. const int cwd_fd = open(".", O_RDONLY); GTEST_DEATH_TEST_CHECK_(cwd_fd != -1); GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC)); // We need to execute the test program in the same environment where // it was originally invoked. Therefore we change to the original // working directory first. const char* const original_dir = UnitTest::GetInstance()->original_working_dir(); // We can safely call chdir() as it's a direct system call. if (chdir(original_dir) != 0) { DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } int fd_flags; // Set close_fd to be closed after spawn. GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD, fd_flags | FD_CLOEXEC)); struct inheritance inherit = {0}; // spawn is a system call. child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron()); // Restores the current working directory. GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd)); # else // GTEST_OS_QNX # if GTEST_OS_LINUX // When a SIGPROF signal is received while fork() or clone() are executing, // the process may hang. To avoid this, we ignore SIGPROF here and re-enable // it after the call to fork()/clone() is complete. struct sigaction saved_sigprof_action; struct sigaction ignore_sigprof_action; memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); sigemptyset(&ignore_sigprof_action.sa_mask); ignore_sigprof_action.sa_handler = SIG_IGN; GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction( SIGPROF, &ignore_sigprof_action, &saved_sigprof_action)); # endif // GTEST_OS_LINUX # if GTEST_HAS_CLONE const bool use_fork = GTEST_FLAG(death_test_use_fork); if (!use_fork) { static const bool stack_grows_down = StackGrowsDown(); const size_t stack_size = getpagesize(); // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); // Maximum stack alignment in bytes: For a downward-growing stack, this // amount is subtracted from size of the stack space to get an address // that is within the stack space and is aligned on all systems we care // about. As far as I know there is no ABI with stack alignment greater // than 64. We assume stack and stack_size already have alignment of // kMaxStackAlignment. const size_t kMaxStackAlignment = 64; void* const stack_top = static_cast(stack) + (stack_grows_down ? stack_size - kMaxStackAlignment : 0); GTEST_DEATH_TEST_CHECK_(stack_size > kMaxStackAlignment && reinterpret_cast(stack_top) % kMaxStackAlignment == 0); child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); } # else const bool use_fork = true; # endif // GTEST_HAS_CLONE if (use_fork && (child_pid = fork()) == 0) { ExecDeathTestChildMain(&args); _exit(0); } # endif // GTEST_OS_QNX # if GTEST_OS_LINUX GTEST_DEATH_TEST_CHECK_SYSCALL_( sigaction(SIGPROF, &saved_sigprof_action, NULL)); # endif // GTEST_OS_LINUX GTEST_DEATH_TEST_CHECK_(child_pid != -1); return child_pid; } // The AssumeRole process for a fork-and-exec death test. It re-executes the // main program from the beginning, setting the --gtest_filter // and --gtest_internal_run_death_test flags to cause only the current // death test to be re-run. DeathTest::TestRole ExecDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != NULL) { set_write_fd(flag->write_fd()); return EXECUTE_TEST; } int pipe_fd[2]; GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); // Clear the close-on-exec flag on the write end of the pipe, lest // it be closed when the child process does an exec: GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_case_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index) + "|" + StreamableToString(pipe_fd[1]); Arguments args; args.AddArguments(GetArgvsForDeathTestChildProcess()); args.AddArgument(filter_flag.c_str()); args.AddArgument(internal_flag.c_str()); DeathTest::set_last_death_test_message(""); CaptureStderr(); // See the comment in NoExecDeathTest::AssumeRole for why the next line // is necessary. FlushInfoLog(); const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); set_child_pid(child_pid); set_read_fd(pipe_fd[0]); set_spawned(true); return OVERSEE_TEST; } # endif // !GTEST_OS_WINDOWS // Creates a concrete DeathTest-derived class that depends on the // --gtest_death_test_style flag, and sets the pointer pointed to // by the "test" argument to its address. If the test should be // skipped, sets that pointer to NULL. Returns true, unless the // flag is set to an invalid value. bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) { UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const int death_test_index = impl->current_test_info() ->increment_death_test_count(); if (flag != NULL) { if (death_test_index > flag->index()) { DeathTest::set_last_death_test_message( "Death test count (" + StreamableToString(death_test_index) + ") somehow exceeded expected maximum (" + StreamableToString(flag->index()) + ")"); return false; } if (!(flag->file() == file && flag->line() == line && flag->index() == death_test_index)) { *test = NULL; return true; } } # if GTEST_OS_WINDOWS if (GTEST_FLAG(death_test_style) == "threadsafe" || GTEST_FLAG(death_test_style) == "fast") { *test = new WindowsDeathTest(statement, regex, file, line); } # elif GTEST_OS_FUCHSIA if (GTEST_FLAG(death_test_style) == "threadsafe" || GTEST_FLAG(death_test_style) == "fast") { *test = new FuchsiaDeathTest(statement, regex, file, line); } # else if (GTEST_FLAG(death_test_style) == "threadsafe") { *test = new ExecDeathTest(statement, regex, file, line); } else if (GTEST_FLAG(death_test_style) == "fast") { *test = new NoExecDeathTest(statement, regex); } # endif // GTEST_OS_WINDOWS else { // NOLINT - this is more readable than unbalanced brackets inside #if. DeathTest::set_last_death_test_message( "Unknown death test style \"" + GTEST_FLAG(death_test_style) + "\" encountered"); return false; } return true; } # if GTEST_OS_WINDOWS // Recreates the pipe and event handles from the provided parameters, // signals the event, and returns a file descriptor wrapped around the pipe // handle. This function is called in the child process only. static int GetStatusFileDescriptor(unsigned int parent_process_id, size_t write_handle_as_size_t, size_t event_handle_as_size_t) { AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, FALSE, // Non-inheritable. parent_process_id)); if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { DeathTestAbort("Unable to open parent process " + StreamableToString(parent_process_id)); } // FIXME: Replace the following check with a // compile-time assertion when available. GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); const HANDLE write_handle = reinterpret_cast(write_handle_as_size_t); HANDLE dup_write_handle; // The newly initialized handle is accessible only in the parent // process. To obtain one accessible within the child, we need to use // DuplicateHandle. if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, ::GetCurrentProcess(), &dup_write_handle, 0x0, // Requested privileges ignored since // DUPLICATE_SAME_ACCESS is used. FALSE, // Request non-inheritable handler. DUPLICATE_SAME_ACCESS)) { DeathTestAbort("Unable to duplicate the pipe handle " + StreamableToString(write_handle_as_size_t) + " from the parent process " + StreamableToString(parent_process_id)); } const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); HANDLE dup_event_handle; if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, ::GetCurrentProcess(), &dup_event_handle, 0x0, FALSE, DUPLICATE_SAME_ACCESS)) { DeathTestAbort("Unable to duplicate the event handle " + StreamableToString(event_handle_as_size_t) + " from the parent process " + StreamableToString(parent_process_id)); } const int write_fd = ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); if (write_fd == -1) { DeathTestAbort("Unable to convert pipe handle " + StreamableToString(write_handle_as_size_t) + " to a file descriptor"); } // Signals the parent that the write end of the pipe has been acquired // so the parent can release its own write end. ::SetEvent(dup_event_handle); return write_fd; } # endif // GTEST_OS_WINDOWS // Returns a newly created InternalRunDeathTestFlag object with fields // initialized from the GTEST_FLAG(internal_run_death_test) flag if // the flag is specified; otherwise returns NULL. InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { if (GTEST_FLAG(internal_run_death_test) == "") return NULL; // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we // can use it here. int line = -1; int index = -1; ::std::vector< ::std::string> fields; SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); int write_fd = -1; # if GTEST_OS_WINDOWS unsigned int parent_process_id = 0; size_t write_handle_as_size_t = 0; size_t event_handle_as_size_t = 0; if (fields.size() != 6 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index) || !ParseNaturalNumber(fields[3], &parent_process_id) || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } write_fd = GetStatusFileDescriptor(parent_process_id, write_handle_as_size_t, event_handle_as_size_t); # elif GTEST_OS_FUCHSIA if (fields.size() != 3 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } # else if (fields.size() != 4 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index) || !ParseNaturalNumber(fields[3], &write_fd)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } # endif // GTEST_OS_WINDOWS return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); } } // namespace internal #endif // GTEST_HAS_DEATH_TEST } // namespace testing // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #if GTEST_OS_WINDOWS_MOBILE # include #elif GTEST_OS_WINDOWS # include # include #elif GTEST_OS_SYMBIAN // Symbian OpenC has PATH_MAX in sys/syslimits.h # include #else # include # include // Some Linux distributions define PATH_MAX here. #endif // GTEST_OS_WINDOWS_MOBILE #if GTEST_OS_WINDOWS # define GTEST_PATH_MAX_ _MAX_PATH #elif defined(PATH_MAX) # define GTEST_PATH_MAX_ PATH_MAX #elif defined(_XOPEN_PATH_MAX) # define GTEST_PATH_MAX_ _XOPEN_PATH_MAX #else # define GTEST_PATH_MAX_ _POSIX_PATH_MAX #endif // GTEST_OS_WINDOWS namespace testing { namespace internal { #if GTEST_OS_WINDOWS // On Windows, '\\' is the standard path separator, but many tools and the // Windows API also accept '/' as an alternate path separator. Unless otherwise // noted, a file path can contain either kind of path separators, or a mixture // of them. const char kPathSeparator = '\\'; const char kAlternatePathSeparator = '/'; const char kAlternatePathSeparatorString[] = "/"; # if GTEST_OS_WINDOWS_MOBILE // Windows CE doesn't have a current directory. You should not use // the current directory in tests on Windows CE, but this at least // provides a reasonable fallback. const char kCurrentDirectoryString[] = "\\"; // Windows CE doesn't define INVALID_FILE_ATTRIBUTES const DWORD kInvalidFileAttributes = 0xffffffff; # else const char kCurrentDirectoryString[] = ".\\"; # endif // GTEST_OS_WINDOWS_MOBILE #else const char kPathSeparator = '/'; const char kCurrentDirectoryString[] = "./"; #endif // GTEST_OS_WINDOWS // Returns whether the given character is a valid path separator. static bool IsPathSeparator(char c) { #if GTEST_HAS_ALT_PATH_SEP_ return (c == kPathSeparator) || (c == kAlternatePathSeparator); #else return c == kPathSeparator; #endif } // Returns the current working directory, or "" if unsuccessful. FilePath FilePath::GetCurrentDir() { #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT // Windows CE doesn't have a current directory, so we just return // something reasonable. return FilePath(kCurrentDirectoryString); #elif GTEST_OS_WINDOWS char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); #else char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; char* result = getcwd(cwd, sizeof(cwd)); # if GTEST_OS_NACL // getcwd will likely fail in NaCl due to the sandbox, so return something // reasonable. The user may have provided a shim implementation for getcwd, // however, so fallback only when failure is detected. return FilePath(result == NULL ? kCurrentDirectoryString : cwd); # endif // GTEST_OS_NACL return FilePath(result == NULL ? "" : cwd); #endif // GTEST_OS_WINDOWS_MOBILE } // Returns a copy of the FilePath with the case-insensitive extension removed. // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns // FilePath("dir/file"). If a case-insensitive extension is not // found, returns a copy of the original FilePath. FilePath FilePath::RemoveExtension(const char* extension) const { const std::string dot_extension = std::string(".") + extension; if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { return FilePath(pathname_.substr( 0, pathname_.length() - dot_extension.length())); } return *this; } // Returns a pointer to the last occurrence of a valid path separator in // the FilePath. On Windows, for example, both '/' and '\' are valid path // separators. Returns NULL if no path separator was found. const char* FilePath::FindLastPathSeparator() const { const char* const last_sep = strrchr(c_str(), kPathSeparator); #if GTEST_HAS_ALT_PATH_SEP_ const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); // Comparing two pointers of which only one is NULL is undefined. if (last_alt_sep != NULL && (last_sep == NULL || last_alt_sep > last_sep)) { return last_alt_sep; } #endif return last_sep; } // Returns a copy of the FilePath with the directory part removed. // Example: FilePath("path/to/file").RemoveDirectoryName() returns // FilePath("file"). If there is no directory part ("just_a_file"), it returns // the FilePath unmodified. If there is no file part ("just_a_dir/") it // returns an empty FilePath (""). // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath FilePath::RemoveDirectoryName() const { const char* const last_sep = FindLastPathSeparator(); return last_sep ? FilePath(last_sep + 1) : *this; } // RemoveFileName returns the directory path with the filename removed. // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". // If the FilePath is "a_file" or "/a_file", RemoveFileName returns // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does // not have a file, like "just/a/dir/", it returns the FilePath unmodified. // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath FilePath::RemoveFileName() const { const char* const last_sep = FindLastPathSeparator(); std::string dir; if (last_sep) { dir = std::string(c_str(), last_sep + 1 - c_str()); } else { dir = kCurrentDirectoryString; } return FilePath(dir); } // Helper functions for naming files in a directory for xml output. // Given directory = "dir", base_name = "test", number = 0, // extension = "xml", returns "dir/test.xml". If number is greater // than zero (e.g., 12), returns "dir/test_12.xml". // On Windows platform, uses \ as the separator rather than /. FilePath FilePath::MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension) { std::string file; if (number == 0) { file = base_name.string() + "." + extension; } else { file = base_name.string() + "_" + StreamableToString(number) + "." + extension; } return ConcatPaths(directory, FilePath(file)); } // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". // On Windows, uses \ as the separator rather than /. FilePath FilePath::ConcatPaths(const FilePath& directory, const FilePath& relative_path) { if (directory.IsEmpty()) return relative_path; const FilePath dir(directory.RemoveTrailingPathSeparator()); return FilePath(dir.string() + kPathSeparator + relative_path.string()); } // Returns true if pathname describes something findable in the file-system, // either a file, directory, or whatever. bool FilePath::FileOrDirectoryExists() const { #if GTEST_OS_WINDOWS_MOBILE LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); const DWORD attributes = GetFileAttributes(unicode); delete [] unicode; return attributes != kInvalidFileAttributes; #else posix::StatStruct file_stat; return posix::Stat(pathname_.c_str(), &file_stat) == 0; #endif // GTEST_OS_WINDOWS_MOBILE } // Returns true if pathname describes a directory in the file-system // that exists. bool FilePath::DirectoryExists() const { bool result = false; #if GTEST_OS_WINDOWS // Don't strip off trailing separator if path is a root directory on // Windows (like "C:\\"). const FilePath& path(IsRootDirectory() ? *this : RemoveTrailingPathSeparator()); #else const FilePath& path(*this); #endif #if GTEST_OS_WINDOWS_MOBILE LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); const DWORD attributes = GetFileAttributes(unicode); delete [] unicode; if ((attributes != kInvalidFileAttributes) && (attributes & FILE_ATTRIBUTE_DIRECTORY)) { result = true; } #else posix::StatStruct file_stat; result = posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); #endif // GTEST_OS_WINDOWS_MOBILE return result; } // Returns true if pathname describes a root directory. (Windows has one // root directory per disk drive.) bool FilePath::IsRootDirectory() const { #if GTEST_OS_WINDOWS // FIXME: on Windows a network share like // \\server\share can be a root directory, although it cannot be the // current directory. Handle this properly. return pathname_.length() == 3 && IsAbsolutePath(); #else return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); #endif } // Returns true if pathname describes an absolute path. bool FilePath::IsAbsolutePath() const { const char* const name = pathname_.c_str(); #if GTEST_OS_WINDOWS return pathname_.length() >= 3 && ((name[0] >= 'a' && name[0] <= 'z') || (name[0] >= 'A' && name[0] <= 'Z')) && name[1] == ':' && IsPathSeparator(name[2]); #else return IsPathSeparator(name[0]); #endif } // Returns a pathname for a file that does not currently exist. The pathname // will be directory/base_name.extension or // directory/base_name_.extension if directory/base_name.extension // already exists. The number will be incremented until a pathname is found // that does not already exist. // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. // There could be a race condition if two or more processes are calling this // function at the same time -- they could both pick the same filename. FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, const FilePath& base_name, const char* extension) { FilePath full_pathname; int number = 0; do { full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); } while (full_pathname.FileOrDirectoryExists()); return full_pathname; } // Returns true if FilePath ends with a path separator, which indicates that // it is intended to represent a directory. Returns false otherwise. // This does NOT check that a directory (or file) actually exists. bool FilePath::IsDirectory() const { return !pathname_.empty() && IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); } // Create directories so that path exists. Returns true if successful or if // the directories already exist; returns false if unable to create directories // for any reason. bool FilePath::CreateDirectoriesRecursively() const { if (!this->IsDirectory()) { return false; } if (pathname_.length() == 0 || this->DirectoryExists()) { return true; } const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); return parent.CreateDirectoriesRecursively() && this->CreateFolder(); } // Create the directory so that path exists. Returns true if successful or // if the directory already exists; returns false if unable to create the // directory for any reason, including if the parent directory does not // exist. Not named "CreateDirectory" because that's a macro on Windows. bool FilePath::CreateFolder() const { #if GTEST_OS_WINDOWS_MOBILE FilePath removed_sep(this->RemoveTrailingPathSeparator()); LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); int result = CreateDirectory(unicode, NULL) ? 0 : -1; delete [] unicode; #elif GTEST_OS_WINDOWS int result = _mkdir(pathname_.c_str()); #else int result = mkdir(pathname_.c_str(), 0777); #endif // GTEST_OS_WINDOWS_MOBILE if (result == -1) { return this->DirectoryExists(); // An error is OK if the directory exists. } return true; // No error. } // If input name has a trailing separator character, remove it and return the // name, otherwise return the name string unmodified. // On Windows platform, uses \ as the separator, other platforms use /. FilePath FilePath::RemoveTrailingPathSeparator() const { return IsDirectory() ? FilePath(pathname_.substr(0, pathname_.length() - 1)) : *this; } // Removes any redundant separators that might be in the pathname. // For example, "bar///foo" becomes "bar/foo". Does not eliminate other // redundancies that might be in a pathname involving "." or "..". // FIXME: handle Windows network shares (e.g. \\server\share). void FilePath::Normalize() { if (pathname_.c_str() == NULL) { pathname_ = ""; return; } const char* src = pathname_.c_str(); char* const dest = new char[pathname_.length() + 1]; char* dest_ptr = dest; memset(dest_ptr, 0, pathname_.length() + 1); while (*src != '\0') { *dest_ptr = *src; if (!IsPathSeparator(*src)) { src++; } else { #if GTEST_HAS_ALT_PATH_SEP_ if (*dest_ptr == kAlternatePathSeparator) { *dest_ptr = kPathSeparator; } #endif while (IsPathSeparator(*src)) src++; } dest_ptr++; } *dest_ptr = '\0'; pathname_ = dest; delete[] dest; } } // namespace internal } // namespace testing // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include #include #include #if GTEST_OS_WINDOWS # include # include # include # include // Used in ThreadLocal. #else # include #endif // GTEST_OS_WINDOWS #if GTEST_OS_MAC # include # include # include #endif // GTEST_OS_MAC #if GTEST_OS_QNX # include # include # include #endif // GTEST_OS_QNX #if GTEST_OS_AIX # include # include #endif // GTEST_OS_AIX #if GTEST_OS_FUCHSIA # include # include #endif // GTEST_OS_FUCHSIA namespace testing { namespace internal { #if defined(_MSC_VER) || defined(__BORLANDC__) // MSVC and C++Builder do not provide a definition of STDERR_FILENO. const int kStdOutFileno = 1; const int kStdErrFileno = 2; #else const int kStdOutFileno = STDOUT_FILENO; const int kStdErrFileno = STDERR_FILENO; #endif // _MSC_VER #if GTEST_OS_LINUX namespace { template T ReadProcFileField(const std::string& filename, int field) { std::string dummy; std::ifstream file(filename.c_str()); while (field-- > 0) { file >> dummy; } T output = 0; file >> output; return output; } } // namespace // Returns the number of active threads, or 0 when there is an error. size_t GetThreadCount() { const std::string filename = (Message() << "/proc/" << getpid() << "/stat").GetString(); return ReadProcFileField(filename, 19); } #elif GTEST_OS_MAC size_t GetThreadCount() { const task_t task = mach_task_self(); mach_msg_type_number_t thread_count; thread_act_array_t thread_list; const kern_return_t status = task_threads(task, &thread_list, &thread_count); if (status == KERN_SUCCESS) { // task_threads allocates resources in thread_list and we need to free them // to avoid leaks. vm_deallocate(task, reinterpret_cast(thread_list), sizeof(thread_t) * thread_count); return static_cast(thread_count); } else { return 0; } } #elif GTEST_OS_QNX // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. size_t GetThreadCount() { const int fd = open("/proc/self/as", O_RDONLY); if (fd < 0) { return 0; } procfs_info process_info; const int status = devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), NULL); close(fd); if (status == EOK) { return static_cast(process_info.num_threads); } else { return 0; } } #elif GTEST_OS_AIX size_t GetThreadCount() { struct procentry64 entry; pid_t pid = getpid(); int status = getprocs64(&entry, sizeof(entry), NULL, 0, &pid, 1); if (status == 1) { return entry.pi_thcount; } else { return 0; } } #elif GTEST_OS_FUCHSIA size_t GetThreadCount() { int dummy_buffer; size_t avail; zx_status_t status = zx_object_get_info( zx_process_self(), ZX_INFO_PROCESS_THREADS, &dummy_buffer, 0, nullptr, &avail); if (status == ZX_OK) { return avail; } else { return 0; } } #else size_t GetThreadCount() { // There's no portable way to detect the number of threads, so we just // return 0 to indicate that we cannot detect it. return 0; } #endif // GTEST_OS_LINUX #if GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS void SleepMilliseconds(int n) { ::Sleep(n); } AutoHandle::AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} AutoHandle::AutoHandle(Handle handle) : handle_(handle) {} AutoHandle::~AutoHandle() { Reset(); } AutoHandle::Handle AutoHandle::Get() const { return handle_; } void AutoHandle::Reset() { Reset(INVALID_HANDLE_VALUE); } void AutoHandle::Reset(HANDLE handle) { // Resetting with the same handle we already own is invalid. if (handle_ != handle) { if (IsCloseable()) { ::CloseHandle(handle_); } handle_ = handle; } else { GTEST_CHECK_(!IsCloseable()) << "Resetting a valid handle to itself is likely a programmer error " "and thus not allowed."; } } bool AutoHandle::IsCloseable() const { // Different Windows APIs may use either of these values to represent an // invalid handle. return handle_ != NULL && handle_ != INVALID_HANDLE_VALUE; } Notification::Notification() : event_(::CreateEvent(NULL, // Default security attributes. TRUE, // Do not reset automatically. FALSE, // Initially unset. NULL)) { // Anonymous event. GTEST_CHECK_(event_.Get() != NULL); } void Notification::Notify() { GTEST_CHECK_(::SetEvent(event_.Get()) != FALSE); } void Notification::WaitForNotification() { GTEST_CHECK_( ::WaitForSingleObject(event_.Get(), INFINITE) == WAIT_OBJECT_0); } Mutex::Mutex() : owner_thread_id_(0), type_(kDynamic), critical_section_init_phase_(0), critical_section_(new CRITICAL_SECTION) { ::InitializeCriticalSection(critical_section_); } Mutex::~Mutex() { // Static mutexes are leaked intentionally. It is not thread-safe to try // to clean them up. // FIXME: Switch to Slim Reader/Writer (SRW) Locks, which requires // nothing to clean it up but is available only on Vista and later. // https://docs.microsoft.com/en-us/windows/desktop/Sync/slim-reader-writer--srw--locks if (type_ == kDynamic) { ::DeleteCriticalSection(critical_section_); delete critical_section_; critical_section_ = NULL; } } void Mutex::Lock() { ThreadSafeLazyInit(); ::EnterCriticalSection(critical_section_); owner_thread_id_ = ::GetCurrentThreadId(); } void Mutex::Unlock() { ThreadSafeLazyInit(); // We don't protect writing to owner_thread_id_ here, as it's the // caller's responsibility to ensure that the current thread holds the // mutex when this is called. owner_thread_id_ = 0; ::LeaveCriticalSection(critical_section_); } // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void Mutex::AssertHeld() { ThreadSafeLazyInit(); GTEST_CHECK_(owner_thread_id_ == ::GetCurrentThreadId()) << "The current thread is not holding the mutex @" << this; } namespace { // Use the RAII idiom to flag mem allocs that are intentionally never // deallocated. The motivation is to silence the false positive mem leaks // that are reported by the debug version of MS's CRT which can only detect // if an alloc is missing a matching deallocation. // Example: // MemoryIsNotDeallocated memory_is_not_deallocated; // critical_section_ = new CRITICAL_SECTION; // class MemoryIsNotDeallocated { public: MemoryIsNotDeallocated() : old_crtdbg_flag_(0) { #ifdef _MSC_VER old_crtdbg_flag_ = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); // Set heap allocation block type to _IGNORE_BLOCK so that MS debug CRT // doesn't report mem leak if there's no matching deallocation. _CrtSetDbgFlag(old_crtdbg_flag_ & ~_CRTDBG_ALLOC_MEM_DF); #endif // _MSC_VER } ~MemoryIsNotDeallocated() { #ifdef _MSC_VER // Restore the original _CRTDBG_ALLOC_MEM_DF flag _CrtSetDbgFlag(old_crtdbg_flag_); #endif // _MSC_VER } private: int old_crtdbg_flag_; GTEST_DISALLOW_COPY_AND_ASSIGN_(MemoryIsNotDeallocated); }; } // namespace // Initializes owner_thread_id_ and critical_section_ in static mutexes. void Mutex::ThreadSafeLazyInit() { // Dynamic mutexes are initialized in the constructor. if (type_ == kStatic) { switch ( ::InterlockedCompareExchange(&critical_section_init_phase_, 1L, 0L)) { case 0: // If critical_section_init_phase_ was 0 before the exchange, we // are the first to test it and need to perform the initialization. owner_thread_id_ = 0; { // Use RAII to flag that following mem alloc is never deallocated. MemoryIsNotDeallocated memory_is_not_deallocated; critical_section_ = new CRITICAL_SECTION; } ::InitializeCriticalSection(critical_section_); // Updates the critical_section_init_phase_ to 2 to signal // initialization complete. GTEST_CHECK_(::InterlockedCompareExchange( &critical_section_init_phase_, 2L, 1L) == 1L); break; case 1: // Somebody else is already initializing the mutex; spin until they // are done. while (::InterlockedCompareExchange(&critical_section_init_phase_, 2L, 2L) != 2L) { // Possibly yields the rest of the thread's time slice to other // threads. ::Sleep(0); } break; case 2: break; // The mutex is already initialized and ready for use. default: GTEST_CHECK_(false) << "Unexpected value of critical_section_init_phase_ " << "while initializing a static mutex."; } } } namespace { class ThreadWithParamSupport : public ThreadWithParamBase { public: static HANDLE CreateThread(Runnable* runnable, Notification* thread_can_start) { ThreadMainParam* param = new ThreadMainParam(runnable, thread_can_start); DWORD thread_id; // FIXME: Consider to use _beginthreadex instead. HANDLE thread_handle = ::CreateThread( NULL, // Default security. 0, // Default stack size. &ThreadWithParamSupport::ThreadMain, param, // Parameter to ThreadMainStatic 0x0, // Default creation flags. &thread_id); // Need a valid pointer for the call to work under Win98. GTEST_CHECK_(thread_handle != NULL) << "CreateThread failed with error " << ::GetLastError() << "."; if (thread_handle == NULL) { delete param; } return thread_handle; } private: struct ThreadMainParam { ThreadMainParam(Runnable* runnable, Notification* thread_can_start) : runnable_(runnable), thread_can_start_(thread_can_start) { } scoped_ptr runnable_; // Does not own. Notification* thread_can_start_; }; static DWORD WINAPI ThreadMain(void* ptr) { // Transfers ownership. scoped_ptr param(static_cast(ptr)); if (param->thread_can_start_ != NULL) param->thread_can_start_->WaitForNotification(); param->runnable_->Run(); return 0; } // Prohibit instantiation. ThreadWithParamSupport(); GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParamSupport); }; } // namespace ThreadWithParamBase::ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start) : thread_(ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) { } ThreadWithParamBase::~ThreadWithParamBase() { Join(); } void ThreadWithParamBase::Join() { GTEST_CHECK_(::WaitForSingleObject(thread_.Get(), INFINITE) == WAIT_OBJECT_0) << "Failed to join the thread with error " << ::GetLastError() << "."; } // Maps a thread to a set of ThreadIdToThreadLocals that have values // instantiated on that thread and notifies them when the thread exits. A // ThreadLocal instance is expected to persist until all threads it has // values on have terminated. class ThreadLocalRegistryImpl { public: // Registers thread_local_instance as having value on the current thread. // Returns a value that can be used to identify the thread from other threads. static ThreadLocalValueHolderBase* GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance) { DWORD current_thread = ::GetCurrentThreadId(); MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); ThreadIdToThreadLocals::iterator thread_local_pos = thread_to_thread_locals->find(current_thread); if (thread_local_pos == thread_to_thread_locals->end()) { thread_local_pos = thread_to_thread_locals->insert( std::make_pair(current_thread, ThreadLocalValues())).first; StartWatcherThreadFor(current_thread); } ThreadLocalValues& thread_local_values = thread_local_pos->second; ThreadLocalValues::iterator value_pos = thread_local_values.find(thread_local_instance); if (value_pos == thread_local_values.end()) { value_pos = thread_local_values .insert(std::make_pair( thread_local_instance, linked_ptr( thread_local_instance->NewValueForCurrentThread()))) .first; } return value_pos->second.get(); } static void OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance) { std::vector > value_holders; // Clean up the ThreadLocalValues data structure while holding the lock, but // defer the destruction of the ThreadLocalValueHolderBases. { MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); for (ThreadIdToThreadLocals::iterator it = thread_to_thread_locals->begin(); it != thread_to_thread_locals->end(); ++it) { ThreadLocalValues& thread_local_values = it->second; ThreadLocalValues::iterator value_pos = thread_local_values.find(thread_local_instance); if (value_pos != thread_local_values.end()) { value_holders.push_back(value_pos->second); thread_local_values.erase(value_pos); // This 'if' can only be successful at most once, so theoretically we // could break out of the loop here, but we don't bother doing so. } } } // Outside the lock, let the destructor for 'value_holders' deallocate the // ThreadLocalValueHolderBases. } static void OnThreadExit(DWORD thread_id) { GTEST_CHECK_(thread_id != 0) << ::GetLastError(); std::vector > value_holders; // Clean up the ThreadIdToThreadLocals data structure while holding the // lock, but defer the destruction of the ThreadLocalValueHolderBases. { MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); ThreadIdToThreadLocals::iterator thread_local_pos = thread_to_thread_locals->find(thread_id); if (thread_local_pos != thread_to_thread_locals->end()) { ThreadLocalValues& thread_local_values = thread_local_pos->second; for (ThreadLocalValues::iterator value_pos = thread_local_values.begin(); value_pos != thread_local_values.end(); ++value_pos) { value_holders.push_back(value_pos->second); } thread_to_thread_locals->erase(thread_local_pos); } } // Outside the lock, let the destructor for 'value_holders' deallocate the // ThreadLocalValueHolderBases. } private: // In a particular thread, maps a ThreadLocal object to its value. typedef std::map > ThreadLocalValues; // Stores all ThreadIdToThreadLocals having values in a thread, indexed by // thread's ID. typedef std::map ThreadIdToThreadLocals; // Holds the thread id and thread handle that we pass from // StartWatcherThreadFor to WatcherThreadFunc. typedef std::pair ThreadIdAndHandle; static void StartWatcherThreadFor(DWORD thread_id) { // The returned handle will be kept in thread_map and closed by // watcher_thread in WatcherThreadFunc. HANDLE thread = ::OpenThread(SYNCHRONIZE | THREAD_QUERY_INFORMATION, FALSE, thread_id); GTEST_CHECK_(thread != NULL); // We need to pass a valid thread ID pointer into CreateThread for it // to work correctly under Win98. DWORD watcher_thread_id; HANDLE watcher_thread = ::CreateThread( NULL, // Default security. 0, // Default stack size &ThreadLocalRegistryImpl::WatcherThreadFunc, reinterpret_cast(new ThreadIdAndHandle(thread_id, thread)), CREATE_SUSPENDED, &watcher_thread_id); GTEST_CHECK_(watcher_thread != NULL); // Give the watcher thread the same priority as ours to avoid being // blocked by it. ::SetThreadPriority(watcher_thread, ::GetThreadPriority(::GetCurrentThread())); ::ResumeThread(watcher_thread); ::CloseHandle(watcher_thread); } // Monitors exit from a given thread and notifies those // ThreadIdToThreadLocals about thread termination. static DWORD WINAPI WatcherThreadFunc(LPVOID param) { const ThreadIdAndHandle* tah = reinterpret_cast(param); GTEST_CHECK_( ::WaitForSingleObject(tah->second, INFINITE) == WAIT_OBJECT_0); OnThreadExit(tah->first); ::CloseHandle(tah->second); delete tah; return 0; } // Returns map of thread local instances. static ThreadIdToThreadLocals* GetThreadLocalsMapLocked() { mutex_.AssertHeld(); MemoryIsNotDeallocated memory_is_not_deallocated; static ThreadIdToThreadLocals* map = new ThreadIdToThreadLocals(); return map; } // Protects access to GetThreadLocalsMapLocked() and its return value. static Mutex mutex_; // Protects access to GetThreadMapLocked() and its return value. static Mutex thread_map_mutex_; }; Mutex ThreadLocalRegistryImpl::mutex_(Mutex::kStaticMutex); Mutex ThreadLocalRegistryImpl::thread_map_mutex_(Mutex::kStaticMutex); ThreadLocalValueHolderBase* ThreadLocalRegistry::GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance) { return ThreadLocalRegistryImpl::GetValueOnCurrentThread( thread_local_instance); } void ThreadLocalRegistry::OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance) { ThreadLocalRegistryImpl::OnThreadLocalDestroyed(thread_local_instance); } #endif // GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS #if GTEST_USES_POSIX_RE // Implements RE. Currently only needed for death tests. RE::~RE() { if (is_valid_) { // regfree'ing an invalid regex might crash because the content // of the regex is undefined. Since the regex's are essentially // the same, one cannot be valid (or invalid) without the other // being so too. regfree(&partial_regex_); regfree(&full_regex_); } free(const_cast(pattern_)); } // Returns true iff regular expression re matches the entire str. bool RE::FullMatch(const char* str, const RE& re) { if (!re.is_valid_) return false; regmatch_t match; return regexec(&re.full_regex_, str, 1, &match, 0) == 0; } // Returns true iff regular expression re matches a substring of str // (including str itself). bool RE::PartialMatch(const char* str, const RE& re) { if (!re.is_valid_) return false; regmatch_t match; return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; } // Initializes an RE from its string representation. void RE::Init(const char* regex) { pattern_ = posix::StrDup(regex); // Reserves enough bytes to hold the regular expression used for a // full match. const size_t full_regex_len = strlen(regex) + 10; char* const full_pattern = new char[full_regex_len]; snprintf(full_pattern, full_regex_len, "^(%s)$", regex); is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; // We want to call regcomp(&partial_regex_, ...) even if the // previous expression returns false. Otherwise partial_regex_ may // not be properly initialized can may cause trouble when it's // freed. // // Some implementation of POSIX regex (e.g. on at least some // versions of Cygwin) doesn't accept the empty string as a valid // regex. We change it to an equivalent form "()" to be safe. if (is_valid_) { const char* const partial_regex = (*regex == '\0') ? "()" : regex; is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; } EXPECT_TRUE(is_valid_) << "Regular expression \"" << regex << "\" is not a valid POSIX Extended regular expression."; delete[] full_pattern; } #elif GTEST_USES_SIMPLE_RE // Returns true iff ch appears anywhere in str (excluding the // terminating '\0' character). bool IsInSet(char ch, const char* str) { return ch != '\0' && strchr(str, ch) != NULL; } // Returns true iff ch belongs to the given classification. Unlike // similar functions in , these aren't affected by the // current locale. bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } bool IsAsciiPunct(char ch) { return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); } bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } bool IsAsciiWordChar(char ch) { return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || ('0' <= ch && ch <= '9') || ch == '_'; } // Returns true iff "\\c" is a supported escape sequence. bool IsValidEscape(char c) { return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); } // Returns true iff the given atom (specified by escaped and pattern) // matches ch. The result is undefined if the atom is invalid. bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { if (escaped) { // "\\p" where p is pattern_char. switch (pattern_char) { case 'd': return IsAsciiDigit(ch); case 'D': return !IsAsciiDigit(ch); case 'f': return ch == '\f'; case 'n': return ch == '\n'; case 'r': return ch == '\r'; case 's': return IsAsciiWhiteSpace(ch); case 'S': return !IsAsciiWhiteSpace(ch); case 't': return ch == '\t'; case 'v': return ch == '\v'; case 'w': return IsAsciiWordChar(ch); case 'W': return !IsAsciiWordChar(ch); } return IsAsciiPunct(pattern_char) && pattern_char == ch; } return (pattern_char == '.' && ch != '\n') || pattern_char == ch; } // Helper function used by ValidateRegex() to format error messages. static std::string FormatRegexSyntaxError(const char* regex, int index) { return (Message() << "Syntax error at index " << index << " in simple regular expression \"" << regex << "\": ").GetString(); } // Generates non-fatal failures and returns false if regex is invalid; // otherwise returns true. bool ValidateRegex(const char* regex) { if (regex == NULL) { // FIXME: fix the source file location in the // assertion failures to match where the regex is used in user // code. ADD_FAILURE() << "NULL is not a valid simple regular expression."; return false; } bool is_valid = true; // True iff ?, *, or + can follow the previous atom. bool prev_repeatable = false; for (int i = 0; regex[i]; i++) { if (regex[i] == '\\') { // An escape sequence i++; if (regex[i] == '\0') { ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) << "'\\' cannot appear at the end."; return false; } if (!IsValidEscape(regex[i])) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) << "invalid escape sequence \"\\" << regex[i] << "\"."; is_valid = false; } prev_repeatable = true; } else { // Not an escape sequence. const char ch = regex[i]; if (ch == '^' && i > 0) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'^' can only appear at the beginning."; is_valid = false; } else if (ch == '$' && regex[i + 1] != '\0') { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'$' can only appear at the end."; is_valid = false; } else if (IsInSet(ch, "()[]{}|")) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'" << ch << "' is unsupported."; is_valid = false; } else if (IsRepeat(ch) && !prev_repeatable) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'" << ch << "' can only follow a repeatable token."; is_valid = false; } prev_repeatable = !IsInSet(ch, "^$?*+"); } } return is_valid; } // Matches a repeated regex atom followed by a valid simple regular // expression. The regex atom is defined as c if escaped is false, // or \c otherwise. repeat is the repetition meta character (?, *, // or +). The behavior is undefined if str contains too many // characters to be indexable by size_t, in which case the test will // probably time out anyway. We are fine with this limitation as // std::string has it too. bool MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) { const size_t min_count = (repeat == '+') ? 1 : 0; const size_t max_count = (repeat == '?') ? 1 : static_cast(-1) - 1; // We cannot call numeric_limits::max() as it conflicts with the // max() macro on Windows. for (size_t i = 0; i <= max_count; ++i) { // We know that the atom matches each of the first i characters in str. if (i >= min_count && MatchRegexAtHead(regex, str + i)) { // We have enough matches at the head, and the tail matches too. // Since we only care about *whether* the pattern matches str // (as opposed to *how* it matches), there is no need to find a // greedy match. return true; } if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) return false; } return false; } // Returns true iff regex matches a prefix of str. regex must be a // valid simple regular expression and not start with "^", or the // result is undefined. bool MatchRegexAtHead(const char* regex, const char* str) { if (*regex == '\0') // An empty regex matches a prefix of anything. return true; // "$" only matches the end of a string. Note that regex being // valid guarantees that there's nothing after "$" in it. if (*regex == '$') return *str == '\0'; // Is the first thing in regex an escape sequence? const bool escaped = *regex == '\\'; if (escaped) ++regex; if (IsRepeat(regex[1])) { // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so // here's an indirect recursion. It terminates as the regex gets // shorter in each recursion. return MatchRepetitionAndRegexAtHead( escaped, regex[0], regex[1], regex + 2, str); } else { // regex isn't empty, isn't "$", and doesn't start with a // repetition. We match the first atom of regex with the first // character of str and recurse. return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && MatchRegexAtHead(regex + 1, str + 1); } } // Returns true iff regex matches any substring of str. regex must be // a valid simple regular expression, or the result is undefined. // // The algorithm is recursive, but the recursion depth doesn't exceed // the regex length, so we won't need to worry about running out of // stack space normally. In rare cases the time complexity can be // exponential with respect to the regex length + the string length, // but usually it's must faster (often close to linear). bool MatchRegexAnywhere(const char* regex, const char* str) { if (regex == NULL || str == NULL) return false; if (*regex == '^') return MatchRegexAtHead(regex + 1, str); // A successful match can be anywhere in str. do { if (MatchRegexAtHead(regex, str)) return true; } while (*str++ != '\0'); return false; } // Implements the RE class. RE::~RE() { free(const_cast(pattern_)); free(const_cast(full_pattern_)); } // Returns true iff regular expression re matches the entire str. bool RE::FullMatch(const char* str, const RE& re) { return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); } // Returns true iff regular expression re matches a substring of str // (including str itself). bool RE::PartialMatch(const char* str, const RE& re) { return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); } // Initializes an RE from its string representation. void RE::Init(const char* regex) { pattern_ = full_pattern_ = NULL; if (regex != NULL) { pattern_ = posix::StrDup(regex); } is_valid_ = ValidateRegex(regex); if (!is_valid_) { // No need to calculate the full pattern when the regex is invalid. return; } const size_t len = strlen(regex); // Reserves enough bytes to hold the regular expression used for a // full match: we need space to prepend a '^', append a '$', and // terminate the string with '\0'. char* buffer = static_cast(malloc(len + 3)); full_pattern_ = buffer; if (*regex != '^') *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. // We don't use snprintf or strncpy, as they trigger a warning when // compiled with VC++ 8.0. memcpy(buffer, regex, len); buffer += len; if (len == 0 || regex[len - 1] != '$') *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. *buffer = '\0'; } #endif // GTEST_USES_POSIX_RE const char kUnknownFile[] = "unknown file"; // Formats a source file path and a line number as they would appear // in an error message from the compiler used to compile this code. GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { const std::string file_name(file == NULL ? kUnknownFile : file); if (line < 0) { return file_name + ":"; } #ifdef _MSC_VER return file_name + "(" + StreamableToString(line) + "):"; #else return file_name + ":" + StreamableToString(line) + ":"; #endif // _MSC_VER } // Formats a file location for compiler-independent XML output. // Although this function is not platform dependent, we put it next to // FormatFileLocation in order to contrast the two functions. // Note that FormatCompilerIndependentFileLocation() does NOT append colon // to the file location it produces, unlike FormatFileLocation(). GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( const char* file, int line) { const std::string file_name(file == NULL ? kUnknownFile : file); if (line < 0) return file_name; else return file_name + ":" + StreamableToString(line); } GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) : severity_(severity) { const char* const marker = severity == GTEST_INFO ? "[ INFO ]" : severity == GTEST_WARNING ? "[WARNING]" : severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; GetStream() << ::std::endl << marker << " " << FormatFileLocation(file, line).c_str() << ": "; } // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. GTestLog::~GTestLog() { GetStream() << ::std::endl; if (severity_ == GTEST_FATAL) { fflush(stderr); posix::Abort(); } } // Disable Microsoft deprecation warnings for POSIX functions called from // this class (creat, dup, dup2, and close) GTEST_DISABLE_MSC_DEPRECATED_PUSH_() #if GTEST_HAS_STREAM_REDIRECTION // Object that captures an output stream (stdout/stderr). class CapturedStream { public: // The ctor redirects the stream to a temporary file. explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { # if GTEST_OS_WINDOWS char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); const UINT success = ::GetTempFileNameA(temp_dir_path, "gtest_redir", 0, // Generate unique file name. temp_file_path); GTEST_CHECK_(success != 0) << "Unable to create a temporary file in " << temp_dir_path; const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " << temp_file_path; filename_ = temp_file_path; # else // There's no guarantee that a test has write access to the current // directory, so we create the temporary file in the /tmp directory // instead. We use /tmp on most systems, and /sdcard on Android. // That's because Android doesn't have /tmp. # if GTEST_OS_LINUX_ANDROID // Note: Android applications are expected to call the framework's // Context.getExternalStorageDirectory() method through JNI to get // the location of the world-writable SD Card directory. However, // this requires a Context handle, which cannot be retrieved // globally from native code. Doing so also precludes running the // code as part of a regular standalone executable, which doesn't // run in a Dalvik process (e.g. when running it through 'adb shell'). // // The location /sdcard is directly accessible from native code // and is the only location (unofficially) supported by the Android // team. It's generally a symlink to the real SD Card mount point // which can be /mnt/sdcard, /mnt/sdcard0, /system/media/sdcard, or // other OEM-customized locations. Never rely on these, and always // use /sdcard. char name_template[] = "/sdcard/gtest_captured_stream.XXXXXX"; # else char name_template[] = "/tmp/captured_stream.XXXXXX"; # endif // GTEST_OS_LINUX_ANDROID const int captured_fd = mkstemp(name_template); filename_ = name_template; # endif // GTEST_OS_WINDOWS fflush(NULL); dup2(captured_fd, fd_); close(captured_fd); } ~CapturedStream() { remove(filename_.c_str()); } std::string GetCapturedString() { if (uncaptured_fd_ != -1) { // Restores the original stream. fflush(NULL); dup2(uncaptured_fd_, fd_); close(uncaptured_fd_); uncaptured_fd_ = -1; } FILE* const file = posix::FOpen(filename_.c_str(), "r"); const std::string content = ReadEntireFile(file); posix::FClose(file); return content; } private: const int fd_; // A stream to capture. int uncaptured_fd_; // Name of the temporary file holding the stderr output. ::std::string filename_; GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); }; GTEST_DISABLE_MSC_DEPRECATED_POP_() static CapturedStream* g_captured_stderr = NULL; static CapturedStream* g_captured_stdout = NULL; // Starts capturing an output stream (stdout/stderr). static void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { if (*stream != NULL) { GTEST_LOG_(FATAL) << "Only one " << stream_name << " capturer can exist at a time."; } *stream = new CapturedStream(fd); } // Stops capturing the output stream and returns the captured string. static std::string GetCapturedStream(CapturedStream** captured_stream) { const std::string content = (*captured_stream)->GetCapturedString(); delete *captured_stream; *captured_stream = NULL; return content; } // Starts capturing stdout. void CaptureStdout() { CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); } // Starts capturing stderr. void CaptureStderr() { CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); } // Stops capturing stdout and returns the captured string. std::string GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } // Stops capturing stderr and returns the captured string. std::string GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); } #endif // GTEST_HAS_STREAM_REDIRECTION size_t GetFileSize(FILE* file) { fseek(file, 0, SEEK_END); return static_cast(ftell(file)); } std::string ReadEntireFile(FILE* file) { const size_t file_size = GetFileSize(file); char* const buffer = new char[file_size]; size_t bytes_last_read = 0; // # of bytes read in the last fread() size_t bytes_read = 0; // # of bytes read so far fseek(file, 0, SEEK_SET); // Keeps reading the file until we cannot read further or the // pre-determined file size is reached. do { bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); bytes_read += bytes_last_read; } while (bytes_last_read > 0 && bytes_read < file_size); const std::string content(buffer, bytes_read); delete[] buffer; return content; } #if GTEST_HAS_DEATH_TEST static const std::vector* g_injected_test_argvs = NULL; // Owned. std::vector GetInjectableArgvs() { if (g_injected_test_argvs != NULL) { return *g_injected_test_argvs; } return GetArgvs(); } void SetInjectableArgvs(const std::vector* new_argvs) { if (g_injected_test_argvs != new_argvs) delete g_injected_test_argvs; g_injected_test_argvs = new_argvs; } void SetInjectableArgvs(const std::vector& new_argvs) { SetInjectableArgvs( new std::vector(new_argvs.begin(), new_argvs.end())); } #if GTEST_HAS_GLOBAL_STRING void SetInjectableArgvs(const std::vector< ::string>& new_argvs) { SetInjectableArgvs( new std::vector(new_argvs.begin(), new_argvs.end())); } #endif // GTEST_HAS_GLOBAL_STRING void ClearInjectableArgvs() { delete g_injected_test_argvs; g_injected_test_argvs = NULL; } #endif // GTEST_HAS_DEATH_TEST #if GTEST_OS_WINDOWS_MOBILE namespace posix { void Abort() { DebugBreak(); TerminateProcess(GetCurrentProcess(), 1); } } // namespace posix #endif // GTEST_OS_WINDOWS_MOBILE // Returns the name of the environment variable corresponding to the // given flag. For example, FlagToEnvVar("foo") will return // "GTEST_FOO" in the open-source version. static std::string FlagToEnvVar(const char* flag) { const std::string full_flag = (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); Message env_var; for (size_t i = 0; i != full_flag.length(); i++) { env_var << ToUpper(full_flag.c_str()[i]); } return env_var.GetString(); } // Parses 'str' for a 32-bit signed integer. If successful, writes // the result to *value and returns true; otherwise leaves *value // unchanged and returns false. bool ParseInt32(const Message& src_text, const char* str, Int32* value) { // Parses the environment variable as a decimal integer. char* end = NULL; const long long_value = strtol(str, &end, 10); // NOLINT // Has strtol() consumed all characters in the string? if (*end != '\0') { // No - an invalid character was encountered. Message msg; msg << "WARNING: " << src_text << " is expected to be a 32-bit integer, but actually" << " has value \"" << str << "\".\n"; printf("%s", msg.GetString().c_str()); fflush(stdout); return false; } // Is the parsed value in the range of an Int32? const Int32 result = static_cast(long_value); if (long_value == LONG_MAX || long_value == LONG_MIN || // The parsed value overflows as a long. (strtol() returns // LONG_MAX or LONG_MIN when the input overflows.) result != long_value // The parsed value overflows as an Int32. ) { Message msg; msg << "WARNING: " << src_text << " is expected to be a 32-bit integer, but actually" << " has value " << str << ", which overflows.\n"; printf("%s", msg.GetString().c_str()); fflush(stdout); return false; } *value = result; return true; } // Reads and returns the Boolean environment variable corresponding to // the given flag; if it's not set, returns default_value. // // The value is considered true iff it's not "0". bool BoolFromGTestEnv(const char* flag, bool default_value) { #if defined(GTEST_GET_BOOL_FROM_ENV_) return GTEST_GET_BOOL_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const string_value = posix::GetEnv(env_var.c_str()); return string_value == NULL ? default_value : strcmp(string_value, "0") != 0; #endif // defined(GTEST_GET_BOOL_FROM_ENV_) } // Reads and returns a 32-bit integer stored in the environment // variable corresponding to the given flag; if it isn't set or // doesn't represent a valid 32-bit integer, returns default_value. Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { #if defined(GTEST_GET_INT32_FROM_ENV_) return GTEST_GET_INT32_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const string_value = posix::GetEnv(env_var.c_str()); if (string_value == NULL) { // The environment variable is not set. return default_value; } Int32 result = default_value; if (!ParseInt32(Message() << "Environment variable " << env_var, string_value, &result)) { printf("The default value %s is used.\n", (Message() << default_value).GetString().c_str()); fflush(stdout); return default_value; } return result; #endif // defined(GTEST_GET_INT32_FROM_ENV_) } // As a special case for the 'output' flag, if GTEST_OUTPUT is not // set, we look for XML_OUTPUT_FILE, which is set by the Bazel build // system. The value of XML_OUTPUT_FILE is a filename without the // "xml:" prefix of GTEST_OUTPUT. // Note that this is meant to be called at the call site so it does // not check that the flag is 'output' // In essence this checks an env variable called XML_OUTPUT_FILE // and if it is set we prepend "xml:" to its value, if it not set we return "" std::string OutputFlagAlsoCheckEnvVar(){ std::string default_value_for_output_flag = ""; const char* xml_output_file_env = posix::GetEnv("XML_OUTPUT_FILE"); if (NULL != xml_output_file_env) { default_value_for_output_flag = std::string("xml:") + xml_output_file_env; } return default_value_for_output_flag; } // Reads and returns the string environment variable corresponding to // the given flag; if it's not set, returns default_value. const char* StringFromGTestEnv(const char* flag, const char* default_value) { #if defined(GTEST_GET_STRING_FROM_ENV_) return GTEST_GET_STRING_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const value = posix::GetEnv(env_var.c_str()); return value == NULL ? default_value : value; #endif // defined(GTEST_GET_STRING_FROM_ENV_) } } // namespace internal } // namespace testing // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Google Test - The Google C++ Testing and Mocking Framework // // This file implements a universal value printer that can print a // value of any type T: // // void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); // // It uses the << operator when possible, and prints the bytes in the // object otherwise. A user can override its behavior for a class // type Foo by defining either operator<<(::std::ostream&, const Foo&) // or void PrintTo(const Foo&, ::std::ostream*) in the namespace that // defines Foo. #include #include #include #include // NOLINT #include namespace testing { namespace { using ::std::ostream; // Prints a segment of bytes in the given object. GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) { char text[5] = ""; for (size_t i = 0; i != count; i++) { const size_t j = start + i; if (i != 0) { // Organizes the bytes into groups of 2 for easy parsing by // human. if ((j % 2) == 0) *os << ' '; else *os << '-'; } GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]); *os << text; } } // Prints the bytes in the given value to the given ostream. void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) { // Tells the user how big the object is. *os << count << "-byte object <"; const size_t kThreshold = 132; const size_t kChunkSize = 64; // If the object size is bigger than kThreshold, we'll have to omit // some details by printing only the first and the last kChunkSize // bytes. // FIXME: let the user control the threshold using a flag. if (count < kThreshold) { PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); } else { PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); *os << " ... "; // Rounds up to 2-byte boundary. const size_t resume_pos = (count - kChunkSize + 1)/2*2; PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); } *os << ">"; } } // namespace namespace internal2 { // Delegates to PrintBytesInObjectToImpl() to print the bytes in the // given object. The delegation simplifies the implementation, which // uses the << operator and thus is easier done outside of the // ::testing::internal namespace, which contains a << operator that // sometimes conflicts with the one in STL. void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) { PrintBytesInObjectToImpl(obj_bytes, count, os); } } // namespace internal2 namespace internal { // Depending on the value of a char (or wchar_t), we print it in one // of three formats: // - as is if it's a printable ASCII (e.g. 'a', '2', ' '), // - as a hexadecimal escape sequence (e.g. '\x7F'), or // - as a special escape sequence (e.g. '\r', '\n'). enum CharFormat { kAsIs, kHexEscape, kSpecialEscape }; // Returns true if c is a printable ASCII character. We test the // value of c directly instead of calling isprint(), which is buggy on // Windows Mobile. inline bool IsPrintableAscii(wchar_t c) { return 0x20 <= c && c <= 0x7E; } // Prints a wide or narrow char c as a character literal without the // quotes, escaping it when necessary; returns how c was formatted. // The template argument UnsignedChar is the unsigned version of Char, // which is the type of c. template static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { switch (static_cast(c)) { case L'\0': *os << "\\0"; break; case L'\'': *os << "\\'"; break; case L'\\': *os << "\\\\"; break; case L'\a': *os << "\\a"; break; case L'\b': *os << "\\b"; break; case L'\f': *os << "\\f"; break; case L'\n': *os << "\\n"; break; case L'\r': *os << "\\r"; break; case L'\t': *os << "\\t"; break; case L'\v': *os << "\\v"; break; default: if (IsPrintableAscii(c)) { *os << static_cast(c); return kAsIs; } else { ostream::fmtflags flags = os->flags(); *os << "\\x" << std::hex << std::uppercase << static_cast(static_cast(c)); os->flags(flags); return kHexEscape; } } return kSpecialEscape; } // Prints a wchar_t c as if it's part of a string literal, escaping it when // necessary; returns how c was formatted. static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { switch (c) { case L'\'': *os << "'"; return kAsIs; case L'"': *os << "\\\""; return kSpecialEscape; default: return PrintAsCharLiteralTo(c, os); } } // Prints a char c as if it's part of a string literal, escaping it when // necessary; returns how c was formatted. static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { return PrintAsStringLiteralTo( static_cast(static_cast(c)), os); } // Prints a wide or narrow character c and its code. '\0' is printed // as "'\\0'", other unprintable characters are also properly escaped // using the standard C++ escape sequence. The template argument // UnsignedChar is the unsigned version of Char, which is the type of c. template void PrintCharAndCodeTo(Char c, ostream* os) { // First, print c as a literal in the most readable form we can find. *os << ((sizeof(c) > 1) ? "L'" : "'"); const CharFormat format = PrintAsCharLiteralTo(c, os); *os << "'"; // To aid user debugging, we also print c's code in decimal, unless // it's 0 (in which case c was printed as '\\0', making the code // obvious). if (c == 0) return; *os << " (" << static_cast(c); // For more convenience, we print c's code again in hexadecimal, // unless c was already printed in the form '\x##' or the code is in // [1, 9]. if (format == kHexEscape || (1 <= c && c <= 9)) { // Do nothing. } else { *os << ", 0x" << String::FormatHexInt(static_cast(c)); } *os << ")"; } void PrintTo(unsigned char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } void PrintTo(signed char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } // Prints a wchar_t as a symbol if it is printable or as its internal // code otherwise and also as its code. L'\0' is printed as "L'\\0'". void PrintTo(wchar_t wc, ostream* os) { PrintCharAndCodeTo(wc, os); } // Prints the given array of characters to the ostream. CharType must be either // char or wchar_t. // The array starts at begin, the length is len, it may include '\0' characters // and may not be NUL-terminated. template GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ static CharFormat PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) { const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\""; *os << kQuoteBegin; bool is_previous_hex = false; CharFormat print_format = kAsIs; for (size_t index = 0; index < len; ++index) { const CharType cur = begin[index]; if (is_previous_hex && IsXDigit(cur)) { // Previous character is of '\x..' form and this character can be // interpreted as another hexadecimal digit in its number. Break string to // disambiguate. *os << "\" " << kQuoteBegin; } is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; // Remember if any characters required hex escaping. if (is_previous_hex) { print_format = kHexEscape; } } *os << "\""; return print_format; } // Prints a (const) char/wchar_t array of 'len' elements, starting at address // 'begin'. CharType must be either char or wchar_t. template GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ static void UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) { // The code // const char kFoo[] = "foo"; // generates an array of 4, not 3, elements, with the last one being '\0'. // // Therefore when printing a char array, we don't print the last element if // it's '\0', such that the output matches the string literal as it's // written in the source code. if (len > 0 && begin[len - 1] == '\0') { PrintCharsAsStringTo(begin, len - 1, os); return; } // If, however, the last element in the array is not '\0', e.g. // const char kFoo[] = { 'f', 'o', 'o' }; // we must print the entire array. We also print a message to indicate // that the array is not NUL-terminated. PrintCharsAsStringTo(begin, len, os); *os << " (no terminating NUL)"; } // Prints a (const) char array of 'len' elements, starting at address 'begin'. void UniversalPrintArray(const char* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } // Prints a (const) wchar_t array of 'len' elements, starting at address // 'begin'. void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } // Prints the given C string to the ostream. void PrintTo(const char* s, ostream* os) { if (s == NULL) { *os << "NULL"; } else { *os << ImplicitCast_(s) << " pointing to "; PrintCharsAsStringTo(s, strlen(s), os); } } // MSVC compiler can be configured to define whar_t as a typedef // of unsigned short. Defining an overload for const wchar_t* in that case // would cause pointers to unsigned shorts be printed as wide strings, // possibly accessing more memory than intended and causing invalid // memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when // wchar_t is implemented as a native type. #if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) // Prints the given wide C string to the ostream. void PrintTo(const wchar_t* s, ostream* os) { if (s == NULL) { *os << "NULL"; } else { *os << ImplicitCast_(s) << " pointing to "; PrintCharsAsStringTo(s, std::wcslen(s), os); } } #endif // wchar_t is native namespace { bool ContainsUnprintableControlCodes(const char* str, size_t length) { const unsigned char *s = reinterpret_cast(str); for (size_t i = 0; i < length; i++) { unsigned char ch = *s++; if (std::iscntrl(ch)) { switch (ch) { case '\t': case '\n': case '\r': break; default: return true; } } } return false; } bool IsUTF8TrailByte(unsigned char t) { return 0x80 <= t && t<= 0xbf; } bool IsValidUTF8(const char* str, size_t length) { const unsigned char *s = reinterpret_cast(str); for (size_t i = 0; i < length;) { unsigned char lead = s[i++]; if (lead <= 0x7f) { continue; // single-byte character (ASCII) 0..7F } if (lead < 0xc2) { return false; // trail byte or non-shortest form } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) { ++i; // 2-byte character } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length && IsUTF8TrailByte(s[i]) && IsUTF8TrailByte(s[i + 1]) && // check for non-shortest form and surrogate (lead != 0xe0 || s[i] >= 0xa0) && (lead != 0xed || s[i] < 0xa0)) { i += 2; // 3-byte character } else if (0xf0 <= lead && lead <= 0xf4 && (i + 3) <= length && IsUTF8TrailByte(s[i]) && IsUTF8TrailByte(s[i + 1]) && IsUTF8TrailByte(s[i + 2]) && // check for non-shortest form (lead != 0xf0 || s[i] >= 0x90) && (lead != 0xf4 || s[i] < 0x90)) { i += 3; // 4-byte character } else { return false; } } return true; } void ConditionalPrintAsText(const char* str, size_t length, ostream* os) { if (!ContainsUnprintableControlCodes(str, length) && IsValidUTF8(str, length)) { *os << "\n As Text: \"" << str << "\""; } } } // anonymous namespace // Prints a ::string object. #if GTEST_HAS_GLOBAL_STRING void PrintStringTo(const ::string& s, ostream* os) { if (PrintCharsAsStringTo(s.data(), s.size(), os) == kHexEscape) { if (GTEST_FLAG(print_utf8)) { ConditionalPrintAsText(s.data(), s.size(), os); } } } #endif // GTEST_HAS_GLOBAL_STRING void PrintStringTo(const ::std::string& s, ostream* os) { if (PrintCharsAsStringTo(s.data(), s.size(), os) == kHexEscape) { if (GTEST_FLAG(print_utf8)) { ConditionalPrintAsText(s.data(), s.size(), os); } } } // Prints a ::wstring object. #if GTEST_HAS_GLOBAL_WSTRING void PrintWideStringTo(const ::wstring& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } #endif // GTEST_HAS_GLOBAL_WSTRING #if GTEST_HAS_STD_WSTRING void PrintWideStringTo(const ::std::wstring& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } #endif // GTEST_HAS_STD_WSTRING } // namespace internal } // namespace testing // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) namespace testing { using internal::GetUnitTestImpl; // Gets the summary of the failure message by omitting the stack trace // in it. std::string TestPartResult::ExtractSummary(const char* message) { const char* const stack_trace = strstr(message, internal::kStackTraceMarker); return stack_trace == NULL ? message : std::string(message, stack_trace); } // Prints a TestPartResult object. std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { return os << result.file_name() << ":" << result.line_number() << ": " << (result.type() == TestPartResult::kSuccess ? "Success" : result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : "Non-fatal failure") << ":\n" << result.message() << std::endl; } // Appends a TestPartResult to the array. void TestPartResultArray::Append(const TestPartResult& result) { array_.push_back(result); } // Returns the TestPartResult at the given index (0-based). const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { if (index < 0 || index >= size()) { printf("\nInvalid index (%d) into TestPartResultArray.\n", index); internal::posix::Abort(); } return array_[index]; } // Returns the number of TestPartResult objects in the array. int TestPartResultArray::size() const { return static_cast(array_.size()); } namespace internal { HasNewFatalFailureHelper::HasNewFatalFailureHelper() : has_new_fatal_failure_(false), original_reporter_(GetUnitTestImpl()-> GetTestPartResultReporterForCurrentThread()) { GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); } HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( original_reporter_); } void HasNewFatalFailureHelper::ReportTestPartResult( const TestPartResult& result) { if (result.fatally_failed()) has_new_fatal_failure_ = true; original_reporter_->ReportTestPartResult(result); } } // namespace internal } // namespace testing // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. namespace testing { namespace internal { #if GTEST_HAS_TYPED_TEST_P // Skips to the first non-space char in str. Returns an empty string if str // contains only whitespace characters. static const char* SkipSpaces(const char* str) { while (IsSpace(*str)) str++; return str; } static std::vector SplitIntoTestNames(const char* src) { std::vector name_vec; src = SkipSpaces(src); for (; src != NULL; src = SkipComma(src)) { name_vec.push_back(StripTrailingSpaces(GetPrefixUntilComma(src))); } return name_vec; } // Verifies that registered_tests match the test names in // registered_tests_; returns registered_tests if successful, or // aborts the program otherwise. const char* TypedTestCasePState::VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) { typedef RegisteredTestsMap::const_iterator RegisteredTestIter; registered_ = true; std::vector name_vec = SplitIntoTestNames(registered_tests); Message errors; std::set tests; for (std::vector::const_iterator name_it = name_vec.begin(); name_it != name_vec.end(); ++name_it) { const std::string& name = *name_it; if (tests.count(name) != 0) { errors << "Test " << name << " is listed more than once.\n"; continue; } bool found = false; for (RegisteredTestIter it = registered_tests_.begin(); it != registered_tests_.end(); ++it) { if (name == it->first) { found = true; break; } } if (found) { tests.insert(name); } else { errors << "No test named " << name << " can be found in this test case.\n"; } } for (RegisteredTestIter it = registered_tests_.begin(); it != registered_tests_.end(); ++it) { if (tests.count(it->first) == 0) { errors << "You forgot to list test " << it->first << ".\n"; } } const std::string& errors_str = errors.GetString(); if (errors_str != "") { fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), errors_str.c_str()); fflush(stderr); posix::Abort(); } return registered_tests; } #endif // GTEST_HAS_TYPED_TEST_P } // namespace internal } // namespace testing ================================================ FILE: test/external/gtest/gtest.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the public API for Google Test. It should be // included by any test program that uses Google Test. // // IMPORTANT NOTE: Due to limitation of the C++ language, we have to // leave some internal implementation details in this header file. // They are clearly marked by comments like this: // // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // // Such code is NOT meant to be used by a user directly, and is subject // to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user // program! // // Acknowledgment: Google Test borrowed the idea of automatic test // registration from Barthelemy Dagenais' (barthelemy@prologique.com) // easyUnit framework. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_H_ #define GTEST_INCLUDE_GTEST_GTEST_H_ #include #include #include // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file declares functions and macros used internally by // Google Test. They are subject to change without notice. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Low-level types and utilities for porting Google Test to various // platforms. All macros ending with _ and symbols defined in an // internal namespace are subject to change without notice. Code // outside Google Test MUST NOT USE THEM DIRECTLY. Macros that don't // end with _ are part of Google Test's public API and can be used by // code outside Google Test. // // This file is fundamental to Google Test. All other Google Test source // files are expected to #include this. Therefore, it cannot #include // any other Google Test header. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ // Environment-describing macros // ----------------------------- // // Google Test can be used in many different environments. Macros in // this section tell Google Test what kind of environment it is being // used in, such that Google Test can provide environment-specific // features and implementations. // // Google Test tries to automatically detect the properties of its // environment, so users usually don't need to worry about these // macros. However, the automatic detection is not perfect. // Sometimes it's necessary for a user to define some of the following // macros in the build script to override Google Test's decisions. // // If the user doesn't define a macro in the list, Google Test will // provide a default definition. After this header is #included, all // macros in this list will be defined to either 1 or 0. // // Notes to maintainers: // - Each macro here is a user-tweakable knob; do not grow the list // lightly. // - Use #if to key off these macros. Don't use #ifdef or "#if // defined(...)", which will not work as these macros are ALWAYS // defined. // // GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) // is/isn't available. // GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions // are enabled. // GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string // is/isn't available // GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::wstring // is/isn't available // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular // expressions are/aren't available. // GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that // is/isn't available. // GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't // enabled. // GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that // std::wstring does/doesn't work (Google Test can // be used where std::wstring is unavailable). // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple // is/isn't available. // GTEST_HAS_SEH - Define it to 1/0 to indicate whether the // compiler supports Microsoft's "Structured // Exception Handling". // GTEST_HAS_STREAM_REDIRECTION // - Define it to 1/0 to indicate whether the // platform supports I/O stream redirection using // dup() and dup2(). // GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google // Test's own tr1 tuple implementation should be // used. Unused when the user sets // GTEST_HAS_TR1_TUPLE to 0. // GTEST_LANG_CXX11 - Define it to 1/0 to indicate that Google Test // is building in C++11/C++98 mode. // GTEST_LINKED_AS_SHARED_LIBRARY // - Define to 1 when compiling tests that use // Google Test as a shared library (known as // DLL on Windows). // GTEST_CREATE_SHARED_LIBRARY // - Define to 1 when compiling Google Test itself // as a shared library. // GTEST_DEFAULT_DEATH_TEST_STYLE // - The default value of --gtest_death_test_style. // The legacy default has been "fast" in the open // source version since 2008. The recommended value // is "threadsafe", and can be set in // custom/gtest-port.h. // Platform-indicating macros // -------------------------- // // Macros indicating the platform on which Google Test is being used // (a macro is defined to 1 if compiled on the given platform; // otherwise UNDEFINED -- it's never defined to 0.). Google Test // defines these macros automatically. Code outside Google Test MUST // NOT define them. // // GTEST_OS_AIX - IBM AIX // GTEST_OS_CYGWIN - Cygwin // GTEST_OS_FREEBSD - FreeBSD // GTEST_OS_FUCHSIA - Fuchsia // GTEST_OS_HPUX - HP-UX // GTEST_OS_LINUX - Linux // GTEST_OS_LINUX_ANDROID - Google Android // GTEST_OS_MAC - Mac OS X // GTEST_OS_IOS - iOS // GTEST_OS_NACL - Google Native Client (NaCl) // GTEST_OS_NETBSD - NetBSD // GTEST_OS_OPENBSD - OpenBSD // GTEST_OS_QNX - QNX // GTEST_OS_SOLARIS - Sun Solaris // GTEST_OS_SYMBIAN - Symbian // GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) // GTEST_OS_WINDOWS_DESKTOP - Windows Desktop // GTEST_OS_WINDOWS_MINGW - MinGW // GTEST_OS_WINDOWS_MOBILE - Windows Mobile // GTEST_OS_WINDOWS_PHONE - Windows Phone // GTEST_OS_WINDOWS_RT - Windows Store App/WinRT // GTEST_OS_ZOS - z/OS // // Among the platforms, Cygwin, Linux, Max OS X, and Windows have the // most stable support. Since core members of the Google Test project // don't have access to other platforms, support for them may be less // stable. If you notice any problems on your platform, please notify // googletestframework@googlegroups.com (patches for fixing them are // even more welcome!). // // It is possible that none of the GTEST_OS_* macros are defined. // Feature-indicating macros // ------------------------- // // Macros indicating which Google Test features are available (a macro // is defined to 1 if the corresponding feature is supported; // otherwise UNDEFINED -- it's never defined to 0.). Google Test // defines these macros automatically. Code outside Google Test MUST // NOT define them. // // These macros are public so that portable tests can be written. // Such tests typically surround code using a feature with an #if // which controls that code. For example: // // #if GTEST_HAS_DEATH_TEST // EXPECT_DEATH(DoSomethingDeadly()); // #endif // // GTEST_HAS_COMBINE - the Combine() function (for value-parameterized // tests) // GTEST_HAS_DEATH_TEST - death tests // GTEST_HAS_TYPED_TEST - typed tests // GTEST_HAS_TYPED_TEST_P - type-parameterized tests // GTEST_IS_THREADSAFE - Google Test is thread-safe. // GOOGLETEST_CM0007 DO NOT DELETE // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with // GTEST_HAS_POSIX_RE (see above) which users can // define themselves. // GTEST_USES_SIMPLE_RE - our own simple regex is used; // the above RE\b(s) are mutually exclusive. // GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ(). // Misc public macros // ------------------ // // GTEST_FLAG(flag_name) - references the variable corresponding to // the given Google Test flag. // Internal utilities // ------------------ // // The following macros and utilities are for Google Test's INTERNAL // use only. Code outside Google Test MUST NOT USE THEM DIRECTLY. // // Macros for basic C++ coding: // GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. // GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a // variable don't have to be used. // GTEST_DISALLOW_ASSIGN_ - disables operator=. // GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. // GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. // GTEST_INTENTIONAL_CONST_COND_PUSH_ - start code section where MSVC C4127 is // suppressed (constant conditional). // GTEST_INTENTIONAL_CONST_COND_POP_ - finish code section where MSVC C4127 // is suppressed. // // C++11 feature wrappers: // // testing::internal::forward - portability wrapper for std::forward. // testing::internal::move - portability wrapper for std::move. // // Synchronization: // Mutex, MutexLock, ThreadLocal, GetThreadCount() // - synchronization primitives. // // Template meta programming: // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. // IteratorTraits - partial implementation of std::iterator_traits, which // is not available in libCstd when compiled with Sun C++. // // Smart pointers: // scoped_ptr - as in TR2. // // Regular expressions: // RE - a simple regular expression class using the POSIX // Extended Regular Expression syntax on UNIX-like platforms // GOOGLETEST_CM0008 DO NOT DELETE // or a reduced regular exception syntax on other // platforms, including Windows. // Logging: // GTEST_LOG_() - logs messages at the specified severity level. // LogToStderr() - directs all log messages to stderr. // FlushInfoLog() - flushes informational log messages. // // Stdout and stderr capturing: // CaptureStdout() - starts capturing stdout. // GetCapturedStdout() - stops capturing stdout and returns the captured // string. // CaptureStderr() - starts capturing stderr. // GetCapturedStderr() - stops capturing stderr and returns the captured // string. // // Integer types: // TypeWithSize - maps an integer to a int type. // Int32, UInt32, Int64, UInt64, TimeInMillis // - integers of known sizes. // BiggestInt - the biggest signed integer type. // // Command-line utilities: // GTEST_DECLARE_*() - declares a flag. // GTEST_DEFINE_*() - defines a flag. // GetInjectableArgvs() - returns the command line as a vector of strings. // // Environment variable utilities: // GetEnv() - gets the value of an environment variable. // BoolFromGTestEnv() - parses a bool environment variable. // Int32FromGTestEnv() - parses an Int32 environment variable. // StringFromGTestEnv() - parses a string environment variable. #include // for isspace, etc #include // for ptrdiff_t #include #include #include #ifndef _WIN32_WCE # include # include #endif // !_WIN32_WCE #if defined __APPLE__ # include # include #endif // Brings in the definition of HAS_GLOBAL_STRING. This must be done // BEFORE we test HAS_GLOBAL_STRING. #include // NOLINT #include // NOLINT #include // NOLINT #include // NOLINT #include #include // NOLINT // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the GTEST_OS_* macro. // It is separate from gtest-port.h so that custom/gtest-port.h can include it. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ // Determines the platform on which Google Test is compiled. #ifdef __CYGWIN__ # define GTEST_OS_CYGWIN 1 #elif defined __SYMBIAN32__ # define GTEST_OS_SYMBIAN 1 #elif defined _WIN32 # define GTEST_OS_WINDOWS 1 # ifdef _WIN32_WCE # define GTEST_OS_WINDOWS_MOBILE 1 # elif defined(__MINGW__) || defined(__MINGW32__) # define GTEST_OS_WINDOWS_MINGW 1 # elif defined(WINAPI_FAMILY) # include # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) # define GTEST_OS_WINDOWS_DESKTOP 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP) # define GTEST_OS_WINDOWS_PHONE 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) # define GTEST_OS_WINDOWS_RT 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_TV_TITLE) # define GTEST_OS_WINDOWS_PHONE 1 # define GTEST_OS_WINDOWS_TV_TITLE 1 # else // WINAPI_FAMILY defined but no known partition matched. // Default to desktop. # define GTEST_OS_WINDOWS_DESKTOP 1 # endif # else # define GTEST_OS_WINDOWS_DESKTOP 1 # endif // _WIN32_WCE #elif defined __APPLE__ # define GTEST_OS_MAC 1 # if TARGET_OS_IPHONE # define GTEST_OS_IOS 1 # endif #elif defined __FreeBSD__ # define GTEST_OS_FREEBSD 1 #elif defined __Fuchsia__ # define GTEST_OS_FUCHSIA 1 #elif defined __linux__ # define GTEST_OS_LINUX 1 # if defined __ANDROID__ # define GTEST_OS_LINUX_ANDROID 1 # endif #elif defined __MVS__ # define GTEST_OS_ZOS 1 #elif defined(__sun) && defined(__SVR4) # define GTEST_OS_SOLARIS 1 #elif defined(_AIX) # define GTEST_OS_AIX 1 #elif defined(__hpux) # define GTEST_OS_HPUX 1 #elif defined __native_client__ # define GTEST_OS_NACL 1 #elif defined __NetBSD__ # define GTEST_OS_NETBSD 1 #elif defined __OpenBSD__ # define GTEST_OS_OPENBSD 1 #elif defined __QNX__ # define GTEST_OS_QNX 1 #endif // __CYGWIN__ #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Injection point for custom user configurations. See README for details // // ** Custom implementation starts here ** #ifndef GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ #endif // GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ #if !defined(GTEST_DEV_EMAIL_) # define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" # define GTEST_FLAG_PREFIX_ "gtest_" # define GTEST_FLAG_PREFIX_DASH_ "gtest-" # define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" # define GTEST_NAME_ "Google Test" # define GTEST_PROJECT_URL_ "https://github.com/google/googletest/" #endif // !defined(GTEST_DEV_EMAIL_) #if !defined(GTEST_INIT_GOOGLE_TEST_NAME_) # define GTEST_INIT_GOOGLE_TEST_NAME_ "testing::InitGoogleTest" #endif // !defined(GTEST_INIT_GOOGLE_TEST_NAME_) // Determines the version of gcc that is used to compile this. #ifdef __GNUC__ // 40302 means version 4.3.2. # define GTEST_GCC_VER_ \ (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) #endif // __GNUC__ // Macros for disabling Microsoft Visual C++ warnings. // // GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 4385) // /* code that triggers warnings C4800 and C4385 */ // GTEST_DISABLE_MSC_WARNINGS_POP_() #if _MSC_VER >= 1400 # define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings) \ __pragma(warning(push)) \ __pragma(warning(disable: warnings)) # define GTEST_DISABLE_MSC_WARNINGS_POP_() \ __pragma(warning(pop)) #else // Older versions of MSVC don't have __pragma. # define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings) # define GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // Clang on Windows does not understand MSVC's pragma warning. // We need clang-specific way to disable function deprecation warning. #ifdef __clang__ # define GTEST_DISABLE_MSC_DEPRECATED_PUSH_() \ _Pragma("clang diagnostic push") \ _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") \ _Pragma("clang diagnostic ignored \"-Wdeprecated-implementations\"") #define GTEST_DISABLE_MSC_DEPRECATED_POP_() \ _Pragma("clang diagnostic pop") #else # define GTEST_DISABLE_MSC_DEPRECATED_PUSH_() \ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4996) # define GTEST_DISABLE_MSC_DEPRECATED_POP_() \ GTEST_DISABLE_MSC_WARNINGS_POP_() #endif #ifndef GTEST_LANG_CXX11 // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when // -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a // value for __cplusplus, and recent versions of clang, gcc, and // probably other compilers set that too in C++11 mode. # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L || _MSC_VER >= 1900 // Compiling in at least C++11 mode. # define GTEST_LANG_CXX11 1 # else # define GTEST_LANG_CXX11 0 # endif #endif // Distinct from C++11 language support, some environments don't provide // proper C++11 library support. Notably, it's possible to build in // C++11 mode when targeting Mac OS X 10.6, which has an old libstdc++ // with no C++11 support. // // libstdc++ has sufficient C++11 support as of GCC 4.6.0, __GLIBCXX__ // 20110325, but maintenance releases in the 4.4 and 4.5 series followed // this date, so check for those versions by their date stamps. // https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html#abi.versioning #if GTEST_LANG_CXX11 && \ (!defined(__GLIBCXX__) || ( \ __GLIBCXX__ >= 20110325ul && /* GCC >= 4.6.0 */ \ /* Blacklist of patch releases of older branches: */ \ __GLIBCXX__ != 20110416ul && /* GCC 4.4.6 */ \ __GLIBCXX__ != 20120313ul && /* GCC 4.4.7 */ \ __GLIBCXX__ != 20110428ul && /* GCC 4.5.3 */ \ __GLIBCXX__ != 20120702ul)) /* GCC 4.5.4 */ # define GTEST_STDLIB_CXX11 1 #endif // Only use C++11 library features if the library provides them. #if GTEST_STDLIB_CXX11 # define GTEST_HAS_STD_BEGIN_AND_END_ 1 # define GTEST_HAS_STD_FORWARD_LIST_ 1 # if !defined(_MSC_VER) || (_MSC_FULL_VER >= 190023824) // works only with VS2015U2 and better # define GTEST_HAS_STD_FUNCTION_ 1 # endif # define GTEST_HAS_STD_INITIALIZER_LIST_ 1 # define GTEST_HAS_STD_MOVE_ 1 # define GTEST_HAS_STD_UNIQUE_PTR_ 1 # define GTEST_HAS_STD_SHARED_PTR_ 1 # define GTEST_HAS_UNORDERED_MAP_ 1 # define GTEST_HAS_UNORDERED_SET_ 1 #endif // C++11 specifies that provides std::tuple. // Some platforms still might not have it, however. #if GTEST_LANG_CXX11 # define GTEST_HAS_STD_TUPLE_ 1 # if defined(__clang__) // Inspired by // https://clang.llvm.org/docs/LanguageExtensions.html#include-file-checking-macros # if defined(__has_include) && !__has_include() # undef GTEST_HAS_STD_TUPLE_ # endif # elif defined(_MSC_VER) // Inspired by boost/config/stdlib/dinkumware.hpp # if defined(_CPPLIB_VER) && _CPPLIB_VER < 520 # undef GTEST_HAS_STD_TUPLE_ # endif # elif defined(__GLIBCXX__) // Inspired by boost/config/stdlib/libstdcpp3.hpp, // http://gcc.gnu.org/gcc-4.2/changes.html and // https://web.archive.org/web/20140227044429/gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt01ch01.html#manual.intro.status.standard.200x # if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 2) # undef GTEST_HAS_STD_TUPLE_ # endif # endif #endif // Brings in definitions for functions used in the testing::internal::posix // namespace (read, write, close, chdir, isatty, stat). We do not currently // use them on Windows Mobile. #if GTEST_OS_WINDOWS # if !GTEST_OS_WINDOWS_MOBILE # include # include # endif // In order to avoid having to include , use forward declaration #if GTEST_OS_WINDOWS_MINGW && !defined(__MINGW64_VERSION_MAJOR) // MinGW defined _CRITICAL_SECTION and _RTL_CRITICAL_SECTION as two // separate (equivalent) structs, instead of using typedef typedef struct _CRITICAL_SECTION GTEST_CRITICAL_SECTION; #else // Assume CRITICAL_SECTION is a typedef of _RTL_CRITICAL_SECTION. // This assumption is verified by // WindowsTypesTest.CRITICAL_SECTIONIs_RTL_CRITICAL_SECTION. typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION; #endif #else // This assumes that non-Windows OSes provide unistd.h. For OSes where this // is not the case, we need to include headers that provide the functions // mentioned above. # include # include #endif // GTEST_OS_WINDOWS #if GTEST_OS_LINUX_ANDROID // Used to define __ANDROID_API__ matching the target NDK API level. # include // NOLINT #endif // Defines this to true iff Google Test can use POSIX regular expressions. #ifndef GTEST_HAS_POSIX_RE # if GTEST_OS_LINUX_ANDROID // On Android, is only available starting with Gingerbread. # define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9) # else # define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS) # endif #endif #if GTEST_USES_PCRE // The appropriate headers have already been included. #elif GTEST_HAS_POSIX_RE // On some platforms, needs someone to define size_t, and // won't compile otherwise. We can #include it here as we already // included , which is guaranteed to define size_t through // . # include // NOLINT # define GTEST_USES_POSIX_RE 1 #elif GTEST_OS_WINDOWS // is not available on Windows. Use our own simple regex // implementation instead. # define GTEST_USES_SIMPLE_RE 1 #else // may not be available on this platform. Use our own // simple regex implementation instead. # define GTEST_USES_SIMPLE_RE 1 #endif // GTEST_USES_PCRE #ifndef GTEST_HAS_EXCEPTIONS // The user didn't tell us whether exceptions are enabled, so we need // to figure it out. # if defined(_MSC_VER) && defined(_CPPUNWIND) // MSVC defines _CPPUNWIND to 1 iff exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__BORLANDC__) // C++Builder's implementation of the STL uses the _HAS_EXCEPTIONS // macro to enable exceptions, so we'll do the same. // Assumes that exceptions are enabled by default. # ifndef _HAS_EXCEPTIONS # define _HAS_EXCEPTIONS 1 # endif // _HAS_EXCEPTIONS # define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS # elif defined(__clang__) // clang defines __EXCEPTIONS iff exceptions are enabled before clang 220714, // but iff cleanups are enabled after that. In Obj-C++ files, there can be // cleanups for ObjC exceptions which also need cleanups, even if C++ exceptions // are disabled. clang has __has_feature(cxx_exceptions) which checks for C++ // exceptions starting at clang r206352, but which checked for cleanups prior to // that. To reliably check for C++ exception availability with clang, check for // __EXCEPTIONS && __has_feature(cxx_exceptions). # define GTEST_HAS_EXCEPTIONS (__EXCEPTIONS && __has_feature(cxx_exceptions)) # elif defined(__GNUC__) && __EXCEPTIONS // gcc defines __EXCEPTIONS to 1 iff exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__SUNPRO_CC) // Sun Pro CC supports exceptions. However, there is no compile-time way of // detecting whether they are enabled or not. Therefore, we assume that // they are enabled unless the user tells us otherwise. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__IBMCPP__) && __EXCEPTIONS // xlC defines __EXCEPTIONS to 1 iff exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__HP_aCC) // Exception handling is in effect by default in HP aCC compiler. It has to // be turned of by +noeh compiler option if desired. # define GTEST_HAS_EXCEPTIONS 1 # else // For other compilers, we assume exceptions are disabled to be // conservative. # define GTEST_HAS_EXCEPTIONS 0 # endif // defined(_MSC_VER) || defined(__BORLANDC__) #endif // GTEST_HAS_EXCEPTIONS #if !defined(GTEST_HAS_STD_STRING) // Even though we don't use this macro any longer, we keep it in case // some clients still depend on it. # define GTEST_HAS_STD_STRING 1 #elif !GTEST_HAS_STD_STRING // The user told us that ::std::string isn't available. # error "::std::string isn't available." #endif // !defined(GTEST_HAS_STD_STRING) #ifndef GTEST_HAS_GLOBAL_STRING # define GTEST_HAS_GLOBAL_STRING 0 #endif // GTEST_HAS_GLOBAL_STRING #ifndef GTEST_HAS_STD_WSTRING // The user didn't tell us whether ::std::wstring is available, so we need // to figure it out. // FIXME: uses autoconf to detect whether ::std::wstring // is available. // Cygwin 1.7 and below doesn't support ::std::wstring. // Solaris' libc++ doesn't support it either. Android has // no support for it at least as recent as Froyo (2.2). # define GTEST_HAS_STD_WSTRING \ (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS)) #endif // GTEST_HAS_STD_WSTRING #ifndef GTEST_HAS_GLOBAL_WSTRING // The user didn't tell us whether ::wstring is available, so we need // to figure it out. # define GTEST_HAS_GLOBAL_WSTRING \ (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING) #endif // GTEST_HAS_GLOBAL_WSTRING // Determines whether RTTI is available. #ifndef GTEST_HAS_RTTI // The user didn't tell us whether RTTI is enabled, so we need to // figure it out. # ifdef _MSC_VER # ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled. # define GTEST_HAS_RTTI 1 # else # define GTEST_HAS_RTTI 0 # endif // Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled. # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302) # ifdef __GXX_RTTI // When building against STLport with the Android NDK and with // -frtti -fno-exceptions, the build fails at link time with undefined // references to __cxa_bad_typeid. Note sure if STL or toolchain bug, // so disable RTTI when detected. # if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \ !defined(__EXCEPTIONS) # define GTEST_HAS_RTTI 0 # else # define GTEST_HAS_RTTI 1 # endif // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS # else # define GTEST_HAS_RTTI 0 # endif // __GXX_RTTI // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the // first version with C++ support. # elif defined(__clang__) # define GTEST_HAS_RTTI __has_feature(cxx_rtti) // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if // both the typeid and dynamic_cast features are present. # elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) # ifdef __RTTI_ALL__ # define GTEST_HAS_RTTI 1 # else # define GTEST_HAS_RTTI 0 # endif # else // For all other compilers, we assume RTTI is enabled. # define GTEST_HAS_RTTI 1 # endif // _MSC_VER #endif // GTEST_HAS_RTTI // It's this header's responsibility to #include when RTTI // is enabled. #if GTEST_HAS_RTTI # include #endif // Determines whether Google Test can use the pthreads library. #ifndef GTEST_HAS_PTHREAD // The user didn't tell us explicitly, so we make reasonable assumptions about // which platforms have pthreads support. // // To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 // to your compiler flags. #define GTEST_HAS_PTHREAD \ (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX || GTEST_OS_QNX || \ GTEST_OS_FREEBSD || GTEST_OS_NACL || GTEST_OS_NETBSD || GTEST_OS_FUCHSIA) #endif // GTEST_HAS_PTHREAD #if GTEST_HAS_PTHREAD // gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is // true. # include // NOLINT // For timespec and nanosleep, used below. # include // NOLINT #endif // Determines if hash_map/hash_set are available. // Only used for testing against those containers. #if !defined(GTEST_HAS_HASH_MAP_) # if defined(_MSC_VER) && (_MSC_VER < 1900) # define GTEST_HAS_HASH_MAP_ 1 // Indicates that hash_map is available. # define GTEST_HAS_HASH_SET_ 1 // Indicates that hash_set is available. # endif // _MSC_VER #endif // !defined(GTEST_HAS_HASH_MAP_) // Determines whether Google Test can use tr1/tuple. You can define // this macro to 0 to prevent Google Test from using tuple (any // feature depending on tuple with be disabled in this mode). #ifndef GTEST_HAS_TR1_TUPLE # if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) // STLport, provided with the Android NDK, has neither or . # define GTEST_HAS_TR1_TUPLE 0 # elif defined(_MSC_VER) && (_MSC_VER >= 1910) // Prevent `warning C4996: 'std::tr1': warning STL4002: // The non-Standard std::tr1 namespace and TR1-only machinery // are deprecated and will be REMOVED.` # define GTEST_HAS_TR1_TUPLE 0 # elif GTEST_LANG_CXX11 && defined(_LIBCPP_VERSION) // libc++ doesn't support TR1. # define GTEST_HAS_TR1_TUPLE 0 # else // The user didn't tell us not to do it, so we assume it's OK. # define GTEST_HAS_TR1_TUPLE 1 # endif #endif // GTEST_HAS_TR1_TUPLE // Determines whether Google Test's own tr1 tuple implementation // should be used. #ifndef GTEST_USE_OWN_TR1_TUPLE // We use our own tuple implementation on Symbian. # if GTEST_OS_SYMBIAN # define GTEST_USE_OWN_TR1_TUPLE 1 # else // The user didn't tell us, so we need to figure it out. // We use our own TR1 tuple if we aren't sure the user has an // implementation of it already. At this time, libstdc++ 4.0.0+ and // MSVC 2010 are the only mainstream standard libraries that come // with a TR1 tuple implementation. NVIDIA's CUDA NVCC compiler // pretends to be GCC by defining __GNUC__ and friends, but cannot // compile GCC's tuple implementation. MSVC 2008 (9.0) provides TR1 // tuple in a 323 MB Feature Pack download, which we cannot assume the // user has. QNX's QCC compiler is a modified GCC but it doesn't // support TR1 tuple. libc++ only provides std::tuple, in C++11 mode, // and it can be used with some compilers that define __GNUC__. # if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000) \ && !GTEST_OS_QNX && !defined(_LIBCPP_VERSION)) \ || (_MSC_VER >= 1600 && _MSC_VER < 1900) # define GTEST_ENV_HAS_TR1_TUPLE_ 1 # endif // C++11 specifies that provides std::tuple. Use that if gtest is used // in C++11 mode and libstdc++ isn't very old (binaries targeting OS X 10.6 // can build with clang but need to use gcc4.2's libstdc++). # if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325) # define GTEST_ENV_HAS_STD_TUPLE_ 1 # endif # if GTEST_ENV_HAS_TR1_TUPLE_ || GTEST_ENV_HAS_STD_TUPLE_ # define GTEST_USE_OWN_TR1_TUPLE 0 # else # define GTEST_USE_OWN_TR1_TUPLE 1 # endif # endif // GTEST_OS_SYMBIAN #endif // GTEST_USE_OWN_TR1_TUPLE // To avoid conditional compilation we make it gtest-port.h's responsibility // to #include the header implementing tuple. #if GTEST_HAS_STD_TUPLE_ # include // IWYU pragma: export # define GTEST_TUPLE_NAMESPACE_ ::std #endif // GTEST_HAS_STD_TUPLE_ // We include tr1::tuple even if std::tuple is available to define printers for // them. #if GTEST_HAS_TR1_TUPLE # ifndef GTEST_TUPLE_NAMESPACE_ # define GTEST_TUPLE_NAMESPACE_ ::std::tr1 # endif // GTEST_TUPLE_NAMESPACE_ # if GTEST_USE_OWN_TR1_TUPLE // This file was GENERATED by command: // pump.py gtest-tuple.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2009 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Implements a subset of TR1 tuple needed by Google Test and Google Mock. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #include // For ::std::pair. // The compiler used in Symbian has a bug that prevents us from declaring the // tuple template as a friend (it complains that tuple is redefined). This // bypasses the bug by declaring the members that should otherwise be // private as public. // Sun Studio versions < 12 also have the above bug. #if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) # define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: #else # define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ template friend class tuple; \ private: #endif // Visual Studio 2010, 2012, and 2013 define symbols in std::tr1 that conflict // with our own definitions. Therefore using our own tuple does not work on // those compilers. #if defined(_MSC_VER) && _MSC_VER >= 1600 /* 1600 is Visual Studio 2010 */ # error "gtest's tuple doesn't compile on Visual Studio 2010 or later. \ GTEST_USE_OWN_TR1_TUPLE must be set to 0 on those compilers." #endif // GTEST_n_TUPLE_(T) is the type of an n-tuple. #define GTEST_0_TUPLE_(T) tuple<> #define GTEST_1_TUPLE_(T) tuple #define GTEST_2_TUPLE_(T) tuple #define GTEST_3_TUPLE_(T) tuple #define GTEST_4_TUPLE_(T) tuple #define GTEST_5_TUPLE_(T) tuple #define GTEST_6_TUPLE_(T) tuple #define GTEST_7_TUPLE_(T) tuple #define GTEST_8_TUPLE_(T) tuple #define GTEST_9_TUPLE_(T) tuple #define GTEST_10_TUPLE_(T) tuple // GTEST_n_TYPENAMES_(T) declares a list of n typenames. #define GTEST_0_TYPENAMES_(T) #define GTEST_1_TYPENAMES_(T) typename T##0 #define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 #define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 #define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3 #define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4 #define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5 #define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6 #define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 #define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, \ typename T##7, typename T##8 #define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, \ typename T##7, typename T##8, typename T##9 // In theory, defining stuff in the ::std namespace is undefined // behavior. We can do this as we are playing the role of a standard // library vendor. namespace std { namespace tr1 { template class tuple; // Anything in namespace gtest_internal is Google Test's INTERNAL // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. namespace gtest_internal { // ByRef::type is T if T is a reference; otherwise it's const T&. template struct ByRef { typedef const T& type; }; // NOLINT template struct ByRef { typedef T& type; }; // NOLINT // A handy wrapper for ByRef. #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type // AddRef::type is T if T is a reference; otherwise it's T&. This // is the same as tr1::add_reference::type. template struct AddRef { typedef T& type; }; // NOLINT template struct AddRef { typedef T& type; }; // NOLINT // A handy wrapper for AddRef. #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type // A helper for implementing get(). template class Get; // A helper for implementing tuple_element. kIndexValid is true // iff k < the number of fields in tuple type T. template struct TupleElement; template struct TupleElement { typedef T0 type; }; template struct TupleElement { typedef T1 type; }; template struct TupleElement { typedef T2 type; }; template struct TupleElement { typedef T3 type; }; template struct TupleElement { typedef T4 type; }; template struct TupleElement { typedef T5 type; }; template struct TupleElement { typedef T6 type; }; template struct TupleElement { typedef T7 type; }; template struct TupleElement { typedef T8 type; }; template struct TupleElement { typedef T9 type; }; } // namespace gtest_internal template <> class tuple<> { public: tuple() {} tuple(const tuple& /* t */) {} tuple& operator=(const tuple& /* t */) { return *this; } }; template class GTEST_1_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_() {} explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} tuple(const tuple& t) : f0_(t.f0_) {} template tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_1_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { f0_ = t.f0_; return *this; } T0 f0_; }; template class GTEST_2_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), f1_(f1) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} template tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} template tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_2_TUPLE_(U)& t) { return CopyFrom(t); } template tuple& operator=(const ::std::pair& p) { f0_ = p.first; f1_ = p.second; return *this; } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; return *this; } T0 f0_; T1 f1_; }; template class GTEST_3_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} template tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_3_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; return *this; } T0 f0_; T1 f1_; T2 f2_; }; template class GTEST_4_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), f3_(f3) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} template tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_4_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; }; template class GTEST_5_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_) {} template tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_5_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; }; template class GTEST_6_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} template tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_6_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; }; template class GTEST_7_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} template tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_7_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; }; template class GTEST_8_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} template tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_8_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; }; template class GTEST_9_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} template tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_9_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; f8_ = t.f8_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; T8 f8_; }; template class tuple { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), f9_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} template tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_10_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; f8_ = t.f8_; f9_ = t.f9_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; T8 f8_; T9 f9_; }; // 6.1.3.2 Tuple creation functions. // Known limitations: we don't support passing an // std::tr1::reference_wrapper to make_tuple(). And we don't // implement tie(). inline tuple<> make_tuple() { return tuple<>(); } template inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { return GTEST_1_TUPLE_(T)(f0); } template inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { return GTEST_2_TUPLE_(T)(f0, f1); } template inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { return GTEST_3_TUPLE_(T)(f0, f1, f2); } template inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3) { return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); } template inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4) { return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); } template inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5) { return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); } template inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6) { return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); } template inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); } template inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8) { return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); } template inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) { return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); } // 6.1.3.3 Tuple helper classes. template struct tuple_size; template struct tuple_size { static const int value = 0; }; template struct tuple_size { static const int value = 1; }; template struct tuple_size { static const int value = 2; }; template struct tuple_size { static const int value = 3; }; template struct tuple_size { static const int value = 4; }; template struct tuple_size { static const int value = 5; }; template struct tuple_size { static const int value = 6; }; template struct tuple_size { static const int value = 7; }; template struct tuple_size { static const int value = 8; }; template struct tuple_size { static const int value = 9; }; template struct tuple_size { static const int value = 10; }; template struct tuple_element { typedef typename gtest_internal::TupleElement< k < (tuple_size::value), k, Tuple>::type type; }; #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type // 6.1.3.4 Element access. namespace gtest_internal { template <> class Get<0> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) Field(Tuple& t) { return t.f0_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) ConstField(const Tuple& t) { return t.f0_; } }; template <> class Get<1> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) Field(Tuple& t) { return t.f1_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) ConstField(const Tuple& t) { return t.f1_; } }; template <> class Get<2> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) Field(Tuple& t) { return t.f2_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) ConstField(const Tuple& t) { return t.f2_; } }; template <> class Get<3> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) Field(Tuple& t) { return t.f3_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) ConstField(const Tuple& t) { return t.f3_; } }; template <> class Get<4> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) Field(Tuple& t) { return t.f4_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) ConstField(const Tuple& t) { return t.f4_; } }; template <> class Get<5> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) Field(Tuple& t) { return t.f5_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) ConstField(const Tuple& t) { return t.f5_; } }; template <> class Get<6> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) Field(Tuple& t) { return t.f6_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) ConstField(const Tuple& t) { return t.f6_; } }; template <> class Get<7> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) Field(Tuple& t) { return t.f7_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) ConstField(const Tuple& t) { return t.f7_; } }; template <> class Get<8> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) Field(Tuple& t) { return t.f8_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) ConstField(const Tuple& t) { return t.f8_; } }; template <> class Get<9> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) Field(Tuple& t) { return t.f9_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) ConstField(const Tuple& t) { return t.f9_; } }; } // namespace gtest_internal template GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) get(GTEST_10_TUPLE_(T)& t) { return gtest_internal::Get::Field(t); } template GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) get(const GTEST_10_TUPLE_(T)& t) { return gtest_internal::Get::ConstField(t); } // 6.1.3.5 Relational operators // We only implement == and !=, as we don't have a need for the rest yet. namespace gtest_internal { // SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the // first k fields of t1 equals the first k fields of t2. // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if // k1 != k2. template struct SameSizeTuplePrefixComparator; template <> struct SameSizeTuplePrefixComparator<0, 0> { template static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { return true; } }; template struct SameSizeTuplePrefixComparator { template static bool Eq(const Tuple1& t1, const Tuple2& t2) { return SameSizeTuplePrefixComparator::Eq(t1, t2) && ::std::tr1::get(t1) == ::std::tr1::get(t2); } }; } // namespace gtest_internal template inline bool operator==(const GTEST_10_TUPLE_(T)& t, const GTEST_10_TUPLE_(U)& u) { return gtest_internal::SameSizeTuplePrefixComparator< tuple_size::value, tuple_size::value>::Eq(t, u); } template inline bool operator!=(const GTEST_10_TUPLE_(T)& t, const GTEST_10_TUPLE_(U)& u) { return !(t == u); } // 6.1.4 Pairs. // Unimplemented. } // namespace tr1 } // namespace std #undef GTEST_0_TUPLE_ #undef GTEST_1_TUPLE_ #undef GTEST_2_TUPLE_ #undef GTEST_3_TUPLE_ #undef GTEST_4_TUPLE_ #undef GTEST_5_TUPLE_ #undef GTEST_6_TUPLE_ #undef GTEST_7_TUPLE_ #undef GTEST_8_TUPLE_ #undef GTEST_9_TUPLE_ #undef GTEST_10_TUPLE_ #undef GTEST_0_TYPENAMES_ #undef GTEST_1_TYPENAMES_ #undef GTEST_2_TYPENAMES_ #undef GTEST_3_TYPENAMES_ #undef GTEST_4_TYPENAMES_ #undef GTEST_5_TYPENAMES_ #undef GTEST_6_TYPENAMES_ #undef GTEST_7_TYPENAMES_ #undef GTEST_8_TYPENAMES_ #undef GTEST_9_TYPENAMES_ #undef GTEST_10_TYPENAMES_ #undef GTEST_DECLARE_TUPLE_AS_FRIEND_ #undef GTEST_BY_REF_ #undef GTEST_ADD_REF_ #undef GTEST_TUPLE_ELEMENT_ #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ # elif GTEST_OS_SYMBIAN // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to // use STLport's tuple implementation, which unfortunately doesn't // work as the copy of STLport distributed with Symbian is incomplete. // By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to // use its own tuple implementation. # ifdef BOOST_HAS_TR1_TUPLE # undef BOOST_HAS_TR1_TUPLE # endif // BOOST_HAS_TR1_TUPLE // This prevents , which defines // BOOST_HAS_TR1_TUPLE, from being #included by Boost's . # define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED # include // IWYU pragma: export // NOLINT # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000) // GCC 4.0+ implements tr1/tuple in the header. This does // not conform to the TR1 spec, which requires the header to be . # if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 // Until version 4.3.2, gcc has a bug that causes , // which is #included by , to not compile when RTTI is // disabled. _TR1_FUNCTIONAL is the header guard for // . Hence the following #define is used to prevent // from being included. # define _TR1_FUNCTIONAL 1 # include # undef _TR1_FUNCTIONAL // Allows the user to #include // if they choose to. # else # include // NOLINT # endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 // VS 2010 now has tr1 support. # elif _MSC_VER >= 1600 # include // IWYU pragma: export // NOLINT # else // GTEST_USE_OWN_TR1_TUPLE # include // IWYU pragma: export // NOLINT # endif // GTEST_USE_OWN_TR1_TUPLE #endif // GTEST_HAS_TR1_TUPLE // Determines whether clone(2) is supported. // Usually it will only be available on Linux, excluding // Linux on the Itanium architecture. // Also see http://linux.die.net/man/2/clone. #ifndef GTEST_HAS_CLONE // The user didn't tell us, so we need to figure it out. # if GTEST_OS_LINUX && !defined(__ia64__) # if GTEST_OS_LINUX_ANDROID // On Android, clone() became available at different API levels for each 32-bit // architecture. # if defined(__LP64__) || \ (defined(__arm__) && __ANDROID_API__ >= 9) || \ (defined(__mips__) && __ANDROID_API__ >= 12) || \ (defined(__i386__) && __ANDROID_API__ >= 17) # define GTEST_HAS_CLONE 1 # else # define GTEST_HAS_CLONE 0 # endif # else # define GTEST_HAS_CLONE 1 # endif # else # define GTEST_HAS_CLONE 0 # endif // GTEST_OS_LINUX && !defined(__ia64__) #endif // GTEST_HAS_CLONE // Determines whether to support stream redirection. This is used to test // output correctness and to implement death tests. #ifndef GTEST_HAS_STREAM_REDIRECTION // By default, we assume that stream redirection is supported on all // platforms except known mobile ones. # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || \ GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT # define GTEST_HAS_STREAM_REDIRECTION 0 # else # define GTEST_HAS_STREAM_REDIRECTION 1 # endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN #endif // GTEST_HAS_STREAM_REDIRECTION // Determines whether to support death tests. // Google Test does not support death tests for VC 7.1 and earlier as // abort() in a VC 7.1 application compiled as GUI in debug config // pops up a dialog window that cannot be suppressed programmatically. #if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ (GTEST_OS_MAC && !GTEST_OS_IOS) || \ (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \ GTEST_OS_OPENBSD || GTEST_OS_QNX || GTEST_OS_FREEBSD || \ GTEST_OS_NETBSD || GTEST_OS_FUCHSIA) # define GTEST_HAS_DEATH_TEST 1 #endif // Determines whether to support type-driven tests. // Typed tests need and variadic macros, which GCC, VC++ 8.0, // Sun Pro CC, IBM Visual Age, and HP aCC support. #if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \ defined(__IBMCPP__) || defined(__HP_aCC) # define GTEST_HAS_TYPED_TEST 1 # define GTEST_HAS_TYPED_TEST_P 1 #endif // Determines whether to support Combine(). This only makes sense when // value-parameterized tests are enabled. The implementation doesn't // work on Sun Studio since it doesn't understand templated conversion // operators. #if (GTEST_HAS_TR1_TUPLE || GTEST_HAS_STD_TUPLE_) && !defined(__SUNPRO_CC) # define GTEST_HAS_COMBINE 1 #endif // Determines whether the system compiler uses UTF-16 for encoding wide strings. #define GTEST_WIDE_STRING_USES_UTF16_ \ (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX) // Determines whether test results can be streamed to a socket. #if GTEST_OS_LINUX # define GTEST_CAN_STREAM_RESULTS_ 1 #endif // Defines some utility macros. // The GNU compiler emits a warning if nested "if" statements are followed by // an "else" statement and braces are not used to explicitly disambiguate the // "else" binding. This leads to problems with code like: // // if (gate) // ASSERT_*(condition) << "Some message"; // // The "switch (0) case 0:" idiom is used to suppress this. #ifdef __INTEL_COMPILER # define GTEST_AMBIGUOUS_ELSE_BLOCKER_ #else # define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default: // NOLINT #endif // Use this annotation at the end of a struct/class definition to // prevent the compiler from optimizing away instances that are never // used. This is useful when all interesting logic happens inside the // c'tor and / or d'tor. Example: // // struct Foo { // Foo() { ... } // } GTEST_ATTRIBUTE_UNUSED_; // // Also use it after a variable or parameter declaration to tell the // compiler the variable/parameter does not have to be used. #if defined(__GNUC__) && !defined(COMPILER_ICC) # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) #elif defined(__clang__) # if __has_attribute(unused) # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) # endif #endif #ifndef GTEST_ATTRIBUTE_UNUSED_ # define GTEST_ATTRIBUTE_UNUSED_ #endif #if GTEST_LANG_CXX11 # define GTEST_CXX11_EQUALS_DELETE_ = delete #else // GTEST_LANG_CXX11 # define GTEST_CXX11_EQUALS_DELETE_ #endif // GTEST_LANG_CXX11 // Use this annotation before a function that takes a printf format string. #if (defined(__GNUC__) || defined(__clang__)) && !defined(COMPILER_ICC) # if defined(__MINGW_PRINTF_FORMAT) // MinGW has two different printf implementations. Ensure the format macro // matches the selected implementation. See // https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/. # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ __attribute__((__format__(__MINGW_PRINTF_FORMAT, string_index, \ first_to_check))) # else # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ __attribute__((__format__(__printf__, string_index, first_to_check))) # endif #else # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) #endif // A macro to disallow operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_ASSIGN_(type) \ void operator=(type const &) GTEST_CXX11_EQUALS_DELETE_ // A macro to disallow copy constructor and operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type) \ type(type const &) GTEST_CXX11_EQUALS_DELETE_; \ GTEST_DISALLOW_ASSIGN_(type) // Tell the compiler to warn about unused return values for functions declared // with this macro. The macro should be used on function declarations // following the argument list: // // Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; #if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC) # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) #else # define GTEST_MUST_USE_RESULT_ #endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC // MS C++ compiler emits warning when a conditional expression is compile time // constant. In some contexts this warning is false positive and needs to be // suppressed. Use the following two macros in such cases: // // GTEST_INTENTIONAL_CONST_COND_PUSH_() // while (true) { // GTEST_INTENTIONAL_CONST_COND_POP_() // } # define GTEST_INTENTIONAL_CONST_COND_PUSH_() \ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4127) # define GTEST_INTENTIONAL_CONST_COND_POP_() \ GTEST_DISABLE_MSC_WARNINGS_POP_() // Determine whether the compiler supports Microsoft's Structured Exception // Handling. This is supported by several Windows compilers but generally // does not exist on any other system. #ifndef GTEST_HAS_SEH // The user didn't tell us, so we need to figure it out. # if defined(_MSC_VER) || defined(__BORLANDC__) // These two compilers are known to support SEH. # define GTEST_HAS_SEH 1 # else // Assume no SEH. # define GTEST_HAS_SEH 0 # endif #define GTEST_IS_THREADSAFE \ (GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ \ || (GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT) \ || GTEST_HAS_PTHREAD) #endif // GTEST_HAS_SEH // GTEST_API_ qualifies all symbols that must be exported. The definitions below // are guarded by #ifndef to give embedders a chance to define GTEST_API_ in // gtest/internal/custom/gtest-port.h #ifndef GTEST_API_ #ifdef _MSC_VER # if GTEST_LINKED_AS_SHARED_LIBRARY # define GTEST_API_ __declspec(dllimport) # elif GTEST_CREATE_SHARED_LIBRARY # define GTEST_API_ __declspec(dllexport) # endif #elif __GNUC__ >= 4 || defined(__clang__) # define GTEST_API_ __attribute__((visibility ("default"))) #endif // _MSC_VER #endif // GTEST_API_ #ifndef GTEST_API_ # define GTEST_API_ #endif // GTEST_API_ #ifndef GTEST_DEFAULT_DEATH_TEST_STYLE # define GTEST_DEFAULT_DEATH_TEST_STYLE "fast" #endif // GTEST_DEFAULT_DEATH_TEST_STYLE #ifdef __GNUC__ // Ask the compiler to never inline a given function. # define GTEST_NO_INLINE_ __attribute__((noinline)) #else # define GTEST_NO_INLINE_ #endif // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project. #if !defined(GTEST_HAS_CXXABI_H_) # if defined(__GLIBCXX__) || (defined(_LIBCPP_VERSION) && !defined(_MSC_VER)) # define GTEST_HAS_CXXABI_H_ 1 # else # define GTEST_HAS_CXXABI_H_ 0 # endif #endif // A function level attribute to disable checking for use of uninitialized // memory when built with MemorySanitizer. #if defined(__clang__) # if __has_feature(memory_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ \ __attribute__((no_sanitize_memory)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ # endif // __has_feature(memory_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ #endif // __clang__ // A function level attribute to disable AddressSanitizer instrumentation. #if defined(__clang__) # if __has_feature(address_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ \ __attribute__((no_sanitize_address)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ # endif // __has_feature(address_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ #endif // __clang__ // A function level attribute to disable ThreadSanitizer instrumentation. #if defined(__clang__) # if __has_feature(thread_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ \ __attribute__((no_sanitize_thread)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ # endif // __has_feature(thread_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ #endif // __clang__ namespace testing { class Message; #if defined(GTEST_TUPLE_NAMESPACE_) // Import tuple and friends into the ::testing namespace. // It is part of our interface, having them in ::testing allows us to change // their types as needed. using GTEST_TUPLE_NAMESPACE_::get; using GTEST_TUPLE_NAMESPACE_::make_tuple; using GTEST_TUPLE_NAMESPACE_::tuple; using GTEST_TUPLE_NAMESPACE_::tuple_size; using GTEST_TUPLE_NAMESPACE_::tuple_element; #endif // defined(GTEST_TUPLE_NAMESPACE_) namespace internal { // A secret type that Google Test users don't know about. It has no // definition on purpose. Therefore it's impossible to create a // Secret object, which is what we want. class Secret; // The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time // expression is true. For example, you could use it to verify the // size of a static array: // // GTEST_COMPILE_ASSERT_(GTEST_ARRAY_SIZE_(names) == NUM_NAMES, // names_incorrect_size); // // or to make sure a struct is smaller than a certain size: // // GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large); // // The second argument to the macro is the name of the variable. If // the expression is false, most compilers will issue a warning/error // containing the name of the variable. #if GTEST_LANG_CXX11 # define GTEST_COMPILE_ASSERT_(expr, msg) static_assert(expr, #msg) #else // !GTEST_LANG_CXX11 template struct CompileAssert { }; # define GTEST_COMPILE_ASSERT_(expr, msg) \ typedef ::testing::internal::CompileAssert<(static_cast(expr))> \ msg[static_cast(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_ #endif // !GTEST_LANG_CXX11 // Implementation details of GTEST_COMPILE_ASSERT_: // // (In C++11, we simply use static_assert instead of the following) // // - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1 // elements (and thus is invalid) when the expression is false. // // - The simpler definition // // #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1] // // does not work, as gcc supports variable-length arrays whose sizes // are determined at run-time (this is gcc's extension and not part // of the C++ standard). As a result, gcc fails to reject the // following code with the simple definition: // // int foo; // GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is // // not a compile-time constant. // // - By using the type CompileAssert<(bool(expr))>, we ensures that // expr is a compile-time constant. (Template arguments must be // determined at compile-time.) // // - The outter parentheses in CompileAssert<(bool(expr))> are necessary // to work around a bug in gcc 3.4.4 and 4.0.1. If we had written // // CompileAssert // // instead, these compilers will refuse to compile // // GTEST_COMPILE_ASSERT_(5 > 0, some_message); // // (They seem to think the ">" in "5 > 0" marks the end of the // template argument list.) // // - The array size is (bool(expr) ? 1 : -1), instead of simply // // ((expr) ? 1 : -1). // // This is to avoid running into a bug in MS VC 7.1, which // causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1. // StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h. // // This template is declared, but intentionally undefined. template struct StaticAssertTypeEqHelper; template struct StaticAssertTypeEqHelper { enum { value = true }; }; // Same as std::is_same<>. template struct IsSame { enum { value = false }; }; template struct IsSame { enum { value = true }; }; // Evaluates to the number of elements in 'array'. #define GTEST_ARRAY_SIZE_(array) (sizeof(array) / sizeof(array[0])) #if GTEST_HAS_GLOBAL_STRING typedef ::string string; #else typedef ::std::string string; #endif // GTEST_HAS_GLOBAL_STRING #if GTEST_HAS_GLOBAL_WSTRING typedef ::wstring wstring; #elif GTEST_HAS_STD_WSTRING typedef ::std::wstring wstring; #endif // GTEST_HAS_GLOBAL_WSTRING // A helper for suppressing warnings on constant condition. It just // returns 'condition'. GTEST_API_ bool IsTrue(bool condition); // Defines scoped_ptr. // This implementation of scoped_ptr is PARTIAL - it only contains // enough stuff to satisfy Google Test's need. template class scoped_ptr { public: typedef T element_type; explicit scoped_ptr(T* p = NULL) : ptr_(p) {} ~scoped_ptr() { reset(); } T& operator*() const { return *ptr_; } T* operator->() const { return ptr_; } T* get() const { return ptr_; } T* release() { T* const ptr = ptr_; ptr_ = NULL; return ptr; } void reset(T* p = NULL) { if (p != ptr_) { if (IsTrue(sizeof(T) > 0)) { // Makes sure T is a complete type. delete ptr_; } ptr_ = p; } } friend void swap(scoped_ptr& a, scoped_ptr& b) { using std::swap; swap(a.ptr_, b.ptr_); } private: T* ptr_; GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr); }; // Defines RE. #if GTEST_USES_PCRE // if used, PCRE is injected by custom/gtest-port.h #elif GTEST_USES_POSIX_RE || GTEST_USES_SIMPLE_RE // A simple C++ wrapper for . It uses the POSIX Extended // Regular Expression syntax. class GTEST_API_ RE { public: // A copy constructor is required by the Standard to initialize object // references from r-values. RE(const RE& other) { Init(other.pattern()); } // Constructs an RE from a string. RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT # if GTEST_HAS_GLOBAL_STRING RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT # endif // GTEST_HAS_GLOBAL_STRING RE(const char* regex) { Init(regex); } // NOLINT ~RE(); // Returns the string representation of the regex. const char* pattern() const { return pattern_; } // FullMatch(str, re) returns true iff regular expression re matches // the entire str. // PartialMatch(str, re) returns true iff regular expression re // matches a substring of str (including str itself). // // FIXME: make FullMatch() and PartialMatch() work // when str contains NUL characters. static bool FullMatch(const ::std::string& str, const RE& re) { return FullMatch(str.c_str(), re); } static bool PartialMatch(const ::std::string& str, const RE& re) { return PartialMatch(str.c_str(), re); } # if GTEST_HAS_GLOBAL_STRING static bool FullMatch(const ::string& str, const RE& re) { return FullMatch(str.c_str(), re); } static bool PartialMatch(const ::string& str, const RE& re) { return PartialMatch(str.c_str(), re); } # endif // GTEST_HAS_GLOBAL_STRING static bool FullMatch(const char* str, const RE& re); static bool PartialMatch(const char* str, const RE& re); private: void Init(const char* regex); // We use a const char* instead of an std::string, as Google Test used to be // used where std::string is not available. FIXME: change to // std::string. const char* pattern_; bool is_valid_; # if GTEST_USES_POSIX_RE regex_t full_regex_; // For FullMatch(). regex_t partial_regex_; // For PartialMatch(). # else // GTEST_USES_SIMPLE_RE const char* full_pattern_; // For FullMatch(); # endif GTEST_DISALLOW_ASSIGN_(RE); }; #endif // GTEST_USES_PCRE // Formats a source file path and a line number as they would appear // in an error message from the compiler used to compile this code. GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); // Formats a file location for compiler-independent XML output. // Although this function is not platform dependent, we put it next to // FormatFileLocation in order to contrast the two functions. GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file, int line); // Defines logging utilities: // GTEST_LOG_(severity) - logs messages at the specified severity level. The // message itself is streamed into the macro. // LogToStderr() - directs all log messages to stderr. // FlushInfoLog() - flushes informational log messages. enum GTestLogSeverity { GTEST_INFO, GTEST_WARNING, GTEST_ERROR, GTEST_FATAL }; // Formats log entry severity, provides a stream object for streaming the // log message, and terminates the message with a newline when going out of // scope. class GTEST_API_ GTestLog { public: GTestLog(GTestLogSeverity severity, const char* file, int line); // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. ~GTestLog(); ::std::ostream& GetStream() { return ::std::cerr; } private: const GTestLogSeverity severity_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); }; #if !defined(GTEST_LOG_) # define GTEST_LOG_(severity) \ ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ __FILE__, __LINE__).GetStream() inline void LogToStderr() {} inline void FlushInfoLog() { fflush(NULL); } #endif // !defined(GTEST_LOG_) #if !defined(GTEST_CHECK_) // INTERNAL IMPLEMENTATION - DO NOT USE. // // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition // is not satisfied. // Synopsys: // GTEST_CHECK_(boolean_condition); // or // GTEST_CHECK_(boolean_condition) << "Additional message"; // // This checks the condition and if the condition is not satisfied // it prints message about the condition violation, including the // condition itself, plus additional message streamed into it, if any, // and then it aborts the program. It aborts the program irrespective of // whether it is built in the debug mode or not. # define GTEST_CHECK_(condition) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::IsTrue(condition)) \ ; \ else \ GTEST_LOG_(FATAL) << "Condition " #condition " failed. " #endif // !defined(GTEST_CHECK_) // An all-mode assert to verify that the given POSIX-style function // call returns 0 (indicating success). Known limitation: this // doesn't expand to a balanced 'if' statement, so enclose the macro // in {} if you need to use it as the only statement in an 'if' // branch. #define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ if (const int gtest_error = (posix_call)) \ GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ << gtest_error // Adds reference to a type if it is not a reference type, // otherwise leaves it unchanged. This is the same as // tr1::add_reference, which is not widely available yet. template struct AddReference { typedef T& type; }; // NOLINT template struct AddReference { typedef T& type; }; // NOLINT // A handy wrapper around AddReference that works when the argument T // depends on template parameters. #define GTEST_ADD_REFERENCE_(T) \ typename ::testing::internal::AddReference::type // Transforms "T" into "const T&" according to standard reference collapsing // rules (this is only needed as a backport for C++98 compilers that do not // support reference collapsing). Specifically, it transforms: // // char ==> const char& // const char ==> const char& // char& ==> char& // const char& ==> const char& // // Note that the non-const reference will not have "const" added. This is // standard, and necessary so that "T" can always bind to "const T&". template struct ConstRef { typedef const T& type; }; template struct ConstRef { typedef T& type; }; // The argument T must depend on some template parameters. #define GTEST_REFERENCE_TO_CONST_(T) \ typename ::testing::internal::ConstRef::type #if GTEST_HAS_STD_MOVE_ using std::forward; using std::move; template struct RvalueRef { typedef T&& type; }; #else // GTEST_HAS_STD_MOVE_ template const T& move(const T& t) { return t; } template GTEST_ADD_REFERENCE_(T) forward(GTEST_ADD_REFERENCE_(T) t) { return t; } template struct RvalueRef { typedef const T& type; }; #endif // GTEST_HAS_STD_MOVE_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Use ImplicitCast_ as a safe version of static_cast for upcasting in // the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a // const Foo*). When you use ImplicitCast_, the compiler checks that // the cast is safe. Such explicit ImplicitCast_s are necessary in // surprisingly many situations where C++ demands an exact type match // instead of an argument type convertable to a target type. // // The syntax for using ImplicitCast_ is the same as for static_cast: // // ImplicitCast_(expr) // // ImplicitCast_ would have been part of the C++ standard library, // but the proposal was submitted too late. It will probably make // its way into the language in the future. // // This relatively ugly name is intentional. It prevents clashes with // similar functions users may have (e.g., implicit_cast). The internal // namespace alone is not enough because the function can be found by ADL. template inline To ImplicitCast_(To x) { return x; } // When you upcast (that is, cast a pointer from type Foo to type // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts // always succeed. When you downcast (that is, cast a pointer from // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because // how do you know the pointer is really of type SubclassOfFoo? It // could be a bare Foo, or of type DifferentSubclassOfFoo. Thus, // when you downcast, you should use this macro. In debug mode, we // use dynamic_cast<> to double-check the downcast is legal (we die // if it's not). In normal mode, we do the efficient static_cast<> // instead. Thus, it's important to test in debug mode to make sure // the cast is legal! // This is the only place in the code we should use dynamic_cast<>. // In particular, you SHOULDN'T be using dynamic_cast<> in order to // do RTTI (eg code like this: // if (dynamic_cast(foo)) HandleASubclass1Object(foo); // if (dynamic_cast(foo)) HandleASubclass2Object(foo); // You should design the code some other way not to need this. // // This relatively ugly name is intentional. It prevents clashes with // similar functions users may have (e.g., down_cast). The internal // namespace alone is not enough because the function can be found by ADL. template // use like this: DownCast_(foo); inline To DownCast_(From* f) { // so we only accept pointers // Ensures that To is a sub-type of From *. This test is here only // for compile-time type checking, and has no overhead in an // optimized build at run-time, as it will be optimized away // completely. GTEST_INTENTIONAL_CONST_COND_PUSH_() if (false) { GTEST_INTENTIONAL_CONST_COND_POP_() const To to = NULL; ::testing::internal::ImplicitCast_(to); } #if GTEST_HAS_RTTI // RTTI: debug mode only! GTEST_CHECK_(f == NULL || dynamic_cast(f) != NULL); #endif return static_cast(f); } // Downcasts the pointer of type Base to Derived. // Derived must be a subclass of Base. The parameter MUST // point to a class of type Derived, not any subclass of it. // When RTTI is available, the function performs a runtime // check to enforce this. template Derived* CheckedDowncastToActualType(Base* base) { #if GTEST_HAS_RTTI GTEST_CHECK_(typeid(*base) == typeid(Derived)); #endif #if GTEST_HAS_DOWNCAST_ return ::down_cast(base); #elif GTEST_HAS_RTTI return dynamic_cast(base); // NOLINT #else return static_cast(base); // Poor man's downcast. #endif } #if GTEST_HAS_STREAM_REDIRECTION // Defines the stderr capturer: // CaptureStdout - starts capturing stdout. // GetCapturedStdout - stops capturing stdout and returns the captured string. // CaptureStderr - starts capturing stderr. // GetCapturedStderr - stops capturing stderr and returns the captured string. // GTEST_API_ void CaptureStdout(); GTEST_API_ std::string GetCapturedStdout(); GTEST_API_ void CaptureStderr(); GTEST_API_ std::string GetCapturedStderr(); #endif // GTEST_HAS_STREAM_REDIRECTION // Returns the size (in bytes) of a file. GTEST_API_ size_t GetFileSize(FILE* file); // Reads the entire content of a file as a string. GTEST_API_ std::string ReadEntireFile(FILE* file); // All command line arguments. GTEST_API_ std::vector GetArgvs(); #if GTEST_HAS_DEATH_TEST std::vector GetInjectableArgvs(); // Deprecated: pass the args vector by value instead. void SetInjectableArgvs(const std::vector* new_argvs); void SetInjectableArgvs(const std::vector& new_argvs); #if GTEST_HAS_GLOBAL_STRING void SetInjectableArgvs(const std::vector< ::string>& new_argvs); #endif // GTEST_HAS_GLOBAL_STRING void ClearInjectableArgvs(); #endif // GTEST_HAS_DEATH_TEST // Defines synchronization primitives. #if GTEST_IS_THREADSAFE # if GTEST_HAS_PTHREAD // Sleeps for (roughly) n milliseconds. This function is only for testing // Google Test's own constructs. Don't use it in user tests, either // directly or indirectly. inline void SleepMilliseconds(int n) { const timespec time = { 0, // 0 seconds. n * 1000L * 1000L, // And n ms. }; nanosleep(&time, NULL); } # endif // GTEST_HAS_PTHREAD # if GTEST_HAS_NOTIFICATION_ // Notification has already been imported into the namespace. // Nothing to do here. # elif GTEST_HAS_PTHREAD // Allows a controller thread to pause execution of newly created // threads until notified. Instances of this class must be created // and destroyed in the controller thread. // // This class is only for testing Google Test's own constructs. Do not // use it in user tests, either directly or indirectly. class Notification { public: Notification() : notified_(false) { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); } ~Notification() { pthread_mutex_destroy(&mutex_); } // Notifies all threads created with this notification to start. Must // be called from the controller thread. void Notify() { pthread_mutex_lock(&mutex_); notified_ = true; pthread_mutex_unlock(&mutex_); } // Blocks until the controller thread notifies. Must be called from a test // thread. void WaitForNotification() { for (;;) { pthread_mutex_lock(&mutex_); const bool notified = notified_; pthread_mutex_unlock(&mutex_); if (notified) break; SleepMilliseconds(10); } } private: pthread_mutex_t mutex_; bool notified_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); }; # elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT GTEST_API_ void SleepMilliseconds(int n); // Provides leak-safe Windows kernel handle ownership. // Used in death tests and in threading support. class GTEST_API_ AutoHandle { public: // Assume that Win32 HANDLE type is equivalent to void*. Doing so allows us to // avoid including in this header file. Including is // undesirable because it defines a lot of symbols and macros that tend to // conflict with client code. This assumption is verified by // WindowsTypesTest.HANDLEIsVoidStar. typedef void* Handle; AutoHandle(); explicit AutoHandle(Handle handle); ~AutoHandle(); Handle Get() const; void Reset(); void Reset(Handle handle); private: // Returns true iff the handle is a valid handle object that can be closed. bool IsCloseable() const; Handle handle_; GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); }; // Allows a controller thread to pause execution of newly created // threads until notified. Instances of this class must be created // and destroyed in the controller thread. // // This class is only for testing Google Test's own constructs. Do not // use it in user tests, either directly or indirectly. class GTEST_API_ Notification { public: Notification(); void Notify(); void WaitForNotification(); private: AutoHandle event_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); }; # endif // GTEST_HAS_NOTIFICATION_ // On MinGW, we can have both GTEST_OS_WINDOWS and GTEST_HAS_PTHREAD // defined, but we don't want to use MinGW's pthreads implementation, which // has conformance problems with some versions of the POSIX standard. # if GTEST_HAS_PTHREAD && !GTEST_OS_WINDOWS_MINGW // As a C-function, ThreadFuncWithCLinkage cannot be templated itself. // Consequently, it cannot select a correct instantiation of ThreadWithParam // in order to call its Run(). Introducing ThreadWithParamBase as a // non-templated base class for ThreadWithParam allows us to bypass this // problem. class ThreadWithParamBase { public: virtual ~ThreadWithParamBase() {} virtual void Run() = 0; }; // pthread_create() accepts a pointer to a function type with the C linkage. // According to the Standard (7.5/1), function types with different linkages // are different even if they are otherwise identical. Some compilers (for // example, SunStudio) treat them as different types. Since class methods // cannot be defined with C-linkage we need to define a free C-function to // pass into pthread_create(). extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { static_cast(thread)->Run(); return NULL; } // Helper class for testing Google Test's multi-threading constructs. // To use it, write: // // void ThreadFunc(int param) { /* Do things with param */ } // Notification thread_can_start; // ... // // The thread_can_start parameter is optional; you can supply NULL. // ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); // thread_can_start.Notify(); // // These classes are only for testing Google Test's own constructs. Do // not use them in user tests, either directly or indirectly. template class ThreadWithParam : public ThreadWithParamBase { public: typedef void UserThreadFunc(T); ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) : func_(func), param_(param), thread_can_start_(thread_can_start), finished_(false) { ThreadWithParamBase* const base = this; // The thread can be created only after all fields except thread_ // have been initialized. GTEST_CHECK_POSIX_SUCCESS_( pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base)); } ~ThreadWithParam() { Join(); } void Join() { if (!finished_) { GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0)); finished_ = true; } } virtual void Run() { if (thread_can_start_ != NULL) thread_can_start_->WaitForNotification(); func_(param_); } private: UserThreadFunc* const func_; // User-supplied thread function. const T param_; // User-supplied parameter to the thread function. // When non-NULL, used to block execution until the controller thread // notifies. Notification* const thread_can_start_; bool finished_; // true iff we know that the thread function has finished. pthread_t thread_; // The native thread object. GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); }; # endif // !GTEST_OS_WINDOWS && GTEST_HAS_PTHREAD || // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ # if GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ // Mutex and ThreadLocal have already been imported into the namespace. // Nothing to do here. # elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // Mutex implements mutex on Windows platforms. It is used in conjunction // with class MutexLock: // // Mutex mutex; // ... // MutexLock lock(&mutex); // Acquires the mutex and releases it at the // // end of the current scope. // // A static Mutex *must* be defined or declared using one of the following // macros: // GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); // GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); // // (A non-static Mutex is defined/declared in the usual way). class GTEST_API_ Mutex { public: enum MutexType { kStatic = 0, kDynamic = 1 }; // We rely on kStaticMutex being 0 as it is to what the linker initializes // type_ in static mutexes. critical_section_ will be initialized lazily // in ThreadSafeLazyInit(). enum StaticConstructorSelector { kStaticMutex = 0 }; // This constructor intentionally does nothing. It relies on type_ being // statically initialized to 0 (effectively setting it to kStatic) and on // ThreadSafeLazyInit() to lazily initialize the rest of the members. explicit Mutex(StaticConstructorSelector /*dummy*/) {} Mutex(); ~Mutex(); void Lock(); void Unlock(); // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void AssertHeld(); private: // Initializes owner_thread_id_ and critical_section_ in static mutexes. void ThreadSafeLazyInit(); // Per https://blogs.msdn.microsoft.com/oldnewthing/20040223-00/?p=40503, // we assume that 0 is an invalid value for thread IDs. unsigned int owner_thread_id_; // For static mutexes, we rely on these members being initialized to zeros // by the linker. MutexType type_; long critical_section_init_phase_; // NOLINT GTEST_CRITICAL_SECTION* critical_section_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); }; # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::Mutex mutex # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ ::testing::internal::Mutex mutex(::testing::internal::Mutex::kStaticMutex) // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); } ~GTestMutexLock() { mutex_->Unlock(); } private: Mutex* const mutex_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); }; typedef GTestMutexLock MutexLock; // Base class for ValueHolder. Allows a caller to hold and delete a value // without knowing its type. class ThreadLocalValueHolderBase { public: virtual ~ThreadLocalValueHolderBase() {} }; // Provides a way for a thread to send notifications to a ThreadLocal // regardless of its parameter type. class ThreadLocalBase { public: // Creates a new ValueHolder object holding a default value passed to // this ThreadLocal's constructor and returns it. It is the caller's // responsibility not to call this when the ThreadLocal instance already // has a value on the current thread. virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const = 0; protected: ThreadLocalBase() {} virtual ~ThreadLocalBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocalBase); }; // Maps a thread to a set of ThreadLocals that have values instantiated on that // thread and notifies them when the thread exits. A ThreadLocal instance is // expected to persist until all threads it has values on have terminated. class GTEST_API_ ThreadLocalRegistry { public: // Registers thread_local_instance as having value on the current thread. // Returns a value that can be used to identify the thread from other threads. static ThreadLocalValueHolderBase* GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance); // Invoked when a ThreadLocal instance is destroyed. static void OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance); }; class GTEST_API_ ThreadWithParamBase { public: void Join(); protected: class Runnable { public: virtual ~Runnable() {} virtual void Run() = 0; }; ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start); virtual ~ThreadWithParamBase(); private: AutoHandle thread_; }; // Helper class for testing Google Test's multi-threading constructs. template class ThreadWithParam : public ThreadWithParamBase { public: typedef void UserThreadFunc(T); ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) : ThreadWithParamBase(new RunnableImpl(func, param), thread_can_start) { } virtual ~ThreadWithParam() {} private: class RunnableImpl : public Runnable { public: RunnableImpl(UserThreadFunc* func, T param) : func_(func), param_(param) { } virtual ~RunnableImpl() {} virtual void Run() { func_(param_); } private: UserThreadFunc* const func_; const T param_; GTEST_DISALLOW_COPY_AND_ASSIGN_(RunnableImpl); }; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); }; // Implements thread-local storage on Windows systems. // // // Thread 1 // ThreadLocal tl(100); // 100 is the default value for each thread. // // // Thread 2 // tl.set(150); // Changes the value for thread 2 only. // EXPECT_EQ(150, tl.get()); // // // Thread 1 // EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. // tl.set(200); // EXPECT_EQ(200, tl.get()); // // The template type argument T must have a public copy constructor. // In addition, the default ThreadLocal constructor requires T to have // a public default constructor. // // The users of a TheadLocal instance have to make sure that all but one // threads (including the main one) using that instance have exited before // destroying it. Otherwise, the per-thread objects managed for them by the // ThreadLocal instance are not guaranteed to be destroyed on all platforms. // // Google Test only uses global ThreadLocal objects. That means they // will die after main() has returned. Therefore, no per-thread // object managed by Google Test will be leaked as long as all threads // using Google Test have exited when main() returns. template class ThreadLocal : public ThreadLocalBase { public: ThreadLocal() : default_factory_(new DefaultValueHolderFactory()) {} explicit ThreadLocal(const T& value) : default_factory_(new InstanceValueHolderFactory(value)) {} ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); } T* pointer() { return GetOrCreateValue(); } const T* pointer() const { return GetOrCreateValue(); } const T& get() const { return *pointer(); } void set(const T& value) { *pointer() = value; } private: // Holds a value of T. Can be deleted via its base class without the caller // knowing the type of T. class ValueHolder : public ThreadLocalValueHolderBase { public: ValueHolder() : value_() {} explicit ValueHolder(const T& value) : value_(value) {} T* pointer() { return &value_; } private: T value_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); }; T* GetOrCreateValue() const { return static_cast( ThreadLocalRegistry::GetValueOnCurrentThread(this))->pointer(); } virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const { return default_factory_->MakeNewHolder(); } class ValueHolderFactory { public: ValueHolderFactory() {} virtual ~ValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const = 0; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory); }; class DefaultValueHolderFactory : public ValueHolderFactory { public: DefaultValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const { return new ValueHolder(); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory); }; class InstanceValueHolderFactory : public ValueHolderFactory { public: explicit InstanceValueHolderFactory(const T& value) : value_(value) {} virtual ValueHolder* MakeNewHolder() const { return new ValueHolder(value_); } private: const T value_; // The value for each thread. GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory); }; scoped_ptr default_factory_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); }; # elif GTEST_HAS_PTHREAD // MutexBase and Mutex implement mutex on pthreads-based platforms. class MutexBase { public: // Acquires this mutex. void Lock() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); owner_ = pthread_self(); has_owner_ = true; } // Releases this mutex. void Unlock() { // Since the lock is being released the owner_ field should no longer be // considered valid. We don't protect writing to has_owner_ here, as it's // the caller's responsibility to ensure that the current thread holds the // mutex when this is called. has_owner_ = false; GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); } // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void AssertHeld() const { GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) << "The current thread is not holding the mutex @" << this; } // A static mutex may be used before main() is entered. It may even // be used before the dynamic initialization stage. Therefore we // must be able to initialize a static mutex object at link time. // This means MutexBase has to be a POD and its member variables // have to be public. public: pthread_mutex_t mutex_; // The underlying pthread mutex. // has_owner_ indicates whether the owner_ field below contains a valid thread // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All // accesses to the owner_ field should be protected by a check of this field. // An alternative might be to memset() owner_ to all zeros, but there's no // guarantee that a zero'd pthread_t is necessarily invalid or even different // from pthread_self(). bool has_owner_; pthread_t owner_; // The thread holding the mutex. }; // Forward-declares a static mutex. # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::MutexBase mutex // Defines and statically (i.e. at link time) initializes a static mutex. // The initialization list here does not explicitly initialize each field, // instead relying on default initialization for the unspecified fields. In // particular, the owner_ field (a pthread_t) is not explicitly initialized. // This allows initialization to work whether pthread_t is a scalar or struct. // The flag -Wmissing-field-initializers must not be specified for this to work. #define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ ::testing::internal::MutexBase mutex = {PTHREAD_MUTEX_INITIALIZER, false, 0} // The Mutex class can only be used for mutexes created at runtime. It // shares its API with MutexBase otherwise. class Mutex : public MutexBase { public: Mutex() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); has_owner_ = false; } ~Mutex() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); }; // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(MutexBase* mutex) : mutex_(mutex) { mutex_->Lock(); } ~GTestMutexLock() { mutex_->Unlock(); } private: MutexBase* const mutex_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); }; typedef GTestMutexLock MutexLock; // Helpers for ThreadLocal. // pthread_key_create() requires DeleteThreadLocalValue() to have // C-linkage. Therefore it cannot be templatized to access // ThreadLocal. Hence the need for class // ThreadLocalValueHolderBase. class ThreadLocalValueHolderBase { public: virtual ~ThreadLocalValueHolderBase() {} }; // Called by pthread to delete thread-local data stored by // pthread_setspecific(). extern "C" inline void DeleteThreadLocalValue(void* value_holder) { delete static_cast(value_holder); } // Implements thread-local storage on pthreads-based systems. template class GTEST_API_ ThreadLocal { public: ThreadLocal() : key_(CreateKey()), default_factory_(new DefaultValueHolderFactory()) {} explicit ThreadLocal(const T& value) : key_(CreateKey()), default_factory_(new InstanceValueHolderFactory(value)) {} ~ThreadLocal() { // Destroys the managed object for the current thread, if any. DeleteThreadLocalValue(pthread_getspecific(key_)); // Releases resources associated with the key. This will *not* // delete managed objects for other threads. GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); } T* pointer() { return GetOrCreateValue(); } const T* pointer() const { return GetOrCreateValue(); } const T& get() const { return *pointer(); } void set(const T& value) { *pointer() = value; } private: // Holds a value of type T. class ValueHolder : public ThreadLocalValueHolderBase { public: ValueHolder() : value_() {} explicit ValueHolder(const T& value) : value_(value) {} T* pointer() { return &value_; } private: T value_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); }; static pthread_key_t CreateKey() { pthread_key_t key; // When a thread exits, DeleteThreadLocalValue() will be called on // the object managed for that thread. GTEST_CHECK_POSIX_SUCCESS_( pthread_key_create(&key, &DeleteThreadLocalValue)); return key; } T* GetOrCreateValue() const { ThreadLocalValueHolderBase* const holder = static_cast(pthread_getspecific(key_)); if (holder != NULL) { return CheckedDowncastToActualType(holder)->pointer(); } ValueHolder* const new_holder = default_factory_->MakeNewHolder(); ThreadLocalValueHolderBase* const holder_base = new_holder; GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); return new_holder->pointer(); } class ValueHolderFactory { public: ValueHolderFactory() {} virtual ~ValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const = 0; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory); }; class DefaultValueHolderFactory : public ValueHolderFactory { public: DefaultValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const { return new ValueHolder(); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory); }; class InstanceValueHolderFactory : public ValueHolderFactory { public: explicit InstanceValueHolderFactory(const T& value) : value_(value) {} virtual ValueHolder* MakeNewHolder() const { return new ValueHolder(value_); } private: const T value_; // The value for each thread. GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory); }; // A key pthreads uses for looking up per-thread values. const pthread_key_t key_; scoped_ptr default_factory_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); }; # endif // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ #else // GTEST_IS_THREADSAFE // A dummy implementation of synchronization primitives (mutex, lock, // and thread-local variable). Necessary for compiling Google Test where // mutex is not supported - using Google Test in multiple threads is not // supported on such platforms. class Mutex { public: Mutex() {} void Lock() {} void Unlock() {} void AssertHeld() const {} }; # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::Mutex mutex # define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(Mutex*) {} // NOLINT }; typedef GTestMutexLock MutexLock; template class GTEST_API_ ThreadLocal { public: ThreadLocal() : value_() {} explicit ThreadLocal(const T& value) : value_(value) {} T* pointer() { return &value_; } const T* pointer() const { return &value_; } const T& get() const { return value_; } void set(const T& value) { value_ = value; } private: T value_; }; #endif // GTEST_IS_THREADSAFE // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. GTEST_API_ size_t GetThreadCount(); // Passing non-POD classes through ellipsis (...) crashes the ARM // compiler and generates a warning in Sun Studio before 12u4. The Nokia Symbian // and the IBM XL C/C++ compiler try to instantiate a copy constructor // for objects passed through ellipsis (...), failing for uncopyable // objects. We define this to ensure that only POD is passed through // ellipsis on these systems. #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || \ (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5130) // We lose support for NULL detection where the compiler doesn't like // passing non-POD classes through ellipsis (...). # define GTEST_ELLIPSIS_NEEDS_POD_ 1 #else # define GTEST_CAN_COMPARE_NULL 1 #endif // The Nokia Symbian and IBM XL C/C++ compilers cannot decide between // const T& and const T* in a function template. These compilers // _can_ decide between class template specializations for T and T*, // so a tr1::type_traits-like is_pointer works. #if defined(__SYMBIAN32__) || defined(__IBMCPP__) # define GTEST_NEEDS_IS_POINTER_ 1 #endif template struct bool_constant { typedef bool_constant type; static const bool value = bool_value; }; template const bool bool_constant::value; typedef bool_constant false_type; typedef bool_constant true_type; template struct is_same : public false_type {}; template struct is_same : public true_type {}; template struct is_pointer : public false_type {}; template struct is_pointer : public true_type {}; template struct IteratorTraits { typedef typename Iterator::value_type value_type; }; template struct IteratorTraits { typedef T value_type; }; template struct IteratorTraits { typedef T value_type; }; #if GTEST_OS_WINDOWS # define GTEST_PATH_SEP_ "\\" # define GTEST_HAS_ALT_PATH_SEP_ 1 // The biggest signed integer type the compiler supports. typedef __int64 BiggestInt; #else # define GTEST_PATH_SEP_ "/" # define GTEST_HAS_ALT_PATH_SEP_ 0 typedef long long BiggestInt; // NOLINT #endif // GTEST_OS_WINDOWS // Utilities for char. // isspace(int ch) and friends accept an unsigned char or EOF. char // may be signed, depending on the compiler (or compiler flags). // Therefore we need to cast a char to unsigned char before calling // isspace(), etc. inline bool IsAlpha(char ch) { return isalpha(static_cast(ch)) != 0; } inline bool IsAlNum(char ch) { return isalnum(static_cast(ch)) != 0; } inline bool IsDigit(char ch) { return isdigit(static_cast(ch)) != 0; } inline bool IsLower(char ch) { return islower(static_cast(ch)) != 0; } inline bool IsSpace(char ch) { return isspace(static_cast(ch)) != 0; } inline bool IsUpper(char ch) { return isupper(static_cast(ch)) != 0; } inline bool IsXDigit(char ch) { return isxdigit(static_cast(ch)) != 0; } inline bool IsXDigit(wchar_t ch) { const unsigned char low_byte = static_cast(ch); return ch == low_byte && isxdigit(low_byte) != 0; } inline char ToLower(char ch) { return static_cast(tolower(static_cast(ch))); } inline char ToUpper(char ch) { return static_cast(toupper(static_cast(ch))); } inline std::string StripTrailingSpaces(std::string str) { std::string::iterator it = str.end(); while (it != str.begin() && IsSpace(*--it)) it = str.erase(it); return str; } // The testing::internal::posix namespace holds wrappers for common // POSIX functions. These wrappers hide the differences between // Windows/MSVC and POSIX systems. Since some compilers define these // standard functions as macros, the wrapper cannot have the same name // as the wrapped function. namespace posix { // Functions with a different name on Windows. #if GTEST_OS_WINDOWS typedef struct _stat StatStruct; # ifdef __BORLANDC__ inline int IsATTY(int fd) { return isatty(fd); } inline int StrCaseCmp(const char* s1, const char* s2) { return stricmp(s1, s2); } inline char* StrDup(const char* src) { return strdup(src); } # else // !__BORLANDC__ # if GTEST_OS_WINDOWS_MOBILE inline int IsATTY(int /* fd */) { return 0; } # else inline int IsATTY(int fd) { return _isatty(fd); } # endif // GTEST_OS_WINDOWS_MOBILE inline int StrCaseCmp(const char* s1, const char* s2) { return _stricmp(s1, s2); } inline char* StrDup(const char* src) { return _strdup(src); } # endif // __BORLANDC__ # if GTEST_OS_WINDOWS_MOBILE inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this // time and thus not defined there. # else inline int FileNo(FILE* file) { return _fileno(file); } inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } inline int RmDir(const char* dir) { return _rmdir(dir); } inline bool IsDir(const StatStruct& st) { return (_S_IFDIR & st.st_mode) != 0; } # endif // GTEST_OS_WINDOWS_MOBILE #else typedef struct stat StatStruct; inline int FileNo(FILE* file) { return fileno(file); } inline int IsATTY(int fd) { return isatty(fd); } inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } inline int StrCaseCmp(const char* s1, const char* s2) { return strcasecmp(s1, s2); } inline char* StrDup(const char* src) { return strdup(src); } inline int RmDir(const char* dir) { return rmdir(dir); } inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } #endif // GTEST_OS_WINDOWS // Functions deprecated by MSVC 8.0. GTEST_DISABLE_MSC_DEPRECATED_PUSH_() inline const char* StrNCpy(char* dest, const char* src, size_t n) { return strncpy(dest, src, n); } // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and // StrError() aren't needed on Windows CE at this time and thus not // defined there. #if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT inline int ChDir(const char* dir) { return chdir(dir); } #endif inline FILE* FOpen(const char* path, const char* mode) { return fopen(path, mode); } #if !GTEST_OS_WINDOWS_MOBILE inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { return freopen(path, mode, stream); } inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } #endif inline int FClose(FILE* fp) { return fclose(fp); } #if !GTEST_OS_WINDOWS_MOBILE inline int Read(int fd, void* buf, unsigned int count) { return static_cast(read(fd, buf, count)); } inline int Write(int fd, const void* buf, unsigned int count) { return static_cast(write(fd, buf, count)); } inline int Close(int fd) { return close(fd); } inline const char* StrError(int errnum) { return strerror(errnum); } #endif inline const char* GetEnv(const char* name) { #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT // We are on Windows CE, which has no environment variables. static_cast(name); // To prevent 'unused argument' warning. return NULL; #elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) // Environment variables which we programmatically clear will be set to the // empty string rather than unset (NULL). Handle that case. const char* const env = getenv(name); return (env != NULL && env[0] != '\0') ? env : NULL; #else return getenv(name); #endif } GTEST_DISABLE_MSC_DEPRECATED_POP_() #if GTEST_OS_WINDOWS_MOBILE // Windows CE has no C library. The abort() function is used in // several places in Google Test. This implementation provides a reasonable // imitation of standard behaviour. void Abort(); #else inline void Abort() { abort(); } #endif // GTEST_OS_WINDOWS_MOBILE } // namespace posix // MSVC "deprecates" snprintf and issues warnings wherever it is used. In // order to avoid these warnings, we need to use _snprintf or _snprintf_s on // MSVC-based platforms. We map the GTEST_SNPRINTF_ macro to the appropriate // function in order to achieve that. We use macro definition here because // snprintf is a variadic function. #if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE // MSVC 2005 and above support variadic macros. # define GTEST_SNPRINTF_(buffer, size, format, ...) \ _snprintf_s(buffer, size, size, format, __VA_ARGS__) #elif defined(_MSC_VER) // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't // complain about _snprintf. # define GTEST_SNPRINTF_ _snprintf #else # define GTEST_SNPRINTF_ snprintf #endif // The maximum number a BiggestInt can represent. This definition // works no matter BiggestInt is represented in one's complement or // two's complement. // // We cannot rely on numeric_limits in STL, as __int64 and long long // are not part of standard C++ and numeric_limits doesn't need to be // defined for them. const BiggestInt kMaxBiggestInt = ~(static_cast(1) << (8*sizeof(BiggestInt) - 1)); // This template class serves as a compile-time function from size to // type. It maps a size in bytes to a primitive type with that // size. e.g. // // TypeWithSize<4>::UInt // // is typedef-ed to be unsigned int (unsigned integer made up of 4 // bytes). // // Such functionality should belong to STL, but I cannot find it // there. // // Google Test uses this class in the implementation of floating-point // comparison. // // For now it only handles UInt (unsigned int) as that's all Google Test // needs. Other types can be easily added in the future if need // arises. template class TypeWithSize { public: // This prevents the user from using TypeWithSize with incorrect // values of N. typedef void UInt; }; // The specialization for size 4. template <> class TypeWithSize<4> { public: // unsigned int has size 4 in both gcc and MSVC. // // As base/basictypes.h doesn't compile on Windows, we cannot use // uint32, uint64, and etc here. typedef int Int; typedef unsigned int UInt; }; // The specialization for size 8. template <> class TypeWithSize<8> { public: #if GTEST_OS_WINDOWS typedef __int64 Int; typedef unsigned __int64 UInt; #else typedef long long Int; // NOLINT typedef unsigned long long UInt; // NOLINT #endif // GTEST_OS_WINDOWS }; // Integer types of known sizes. typedef TypeWithSize<4>::Int Int32; typedef TypeWithSize<4>::UInt UInt32; typedef TypeWithSize<8>::Int Int64; typedef TypeWithSize<8>::UInt UInt64; typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds. // Utilities for command line flags and environment variables. // Macro for referencing flags. #if !defined(GTEST_FLAG) # define GTEST_FLAG(name) FLAGS_gtest_##name #endif // !defined(GTEST_FLAG) #if !defined(GTEST_USE_OWN_FLAGFILE_FLAG_) # define GTEST_USE_OWN_FLAGFILE_FLAG_ 1 #endif // !defined(GTEST_USE_OWN_FLAGFILE_FLAG_) #if !defined(GTEST_DECLARE_bool_) # define GTEST_FLAG_SAVER_ ::testing::internal::GTestFlagSaver // Macros for declaring flags. # define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) # define GTEST_DECLARE_int32_(name) \ GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name) # define GTEST_DECLARE_string_(name) \ GTEST_API_ extern ::std::string GTEST_FLAG(name) // Macros for defining flags. # define GTEST_DEFINE_bool_(name, default_val, doc) \ GTEST_API_ bool GTEST_FLAG(name) = (default_val) # define GTEST_DEFINE_int32_(name, default_val, doc) \ GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val) # define GTEST_DEFINE_string_(name, default_val, doc) \ GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val) #endif // !defined(GTEST_DECLARE_bool_) // Thread annotations #if !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_) # define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks) # define GTEST_LOCK_EXCLUDED_(locks) #endif // !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_) // Parses 'str' for a 32-bit signed integer. If successful, writes the result // to *value and returns true; otherwise leaves *value unchanged and returns // false. // FIXME: Find a better way to refactor flag and environment parsing // out of both gtest-port.cc and gtest.cc to avoid exporting this utility // function. bool ParseInt32(const Message& src_text, const char* str, Int32* value); // Parses a bool/Int32/string from the environment variable // corresponding to the given Google Test flag. bool BoolFromGTestEnv(const char* flag, bool default_val); GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val); std::string OutputFlagAlsoCheckEnvVar(); const char* StringFromGTestEnv(const char* flag, const char* default_val); } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ #if GTEST_OS_LINUX # include # include # include # include #endif // GTEST_OS_LINUX #if GTEST_HAS_EXCEPTIONS # include #endif #include #include #include #include #include #include #include #include #include // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the Message class. // // IMPORTANT NOTE: Due to limitation of the C++ language, we have to // leave some internal implementation details in this header file. // They are clearly marked by comments like this: // // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // // Such code is NOT meant to be used by a user directly, and is subject // to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user // program! // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ #define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ #include GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // Ensures that there is at least one operator<< in the global namespace. // See Message& operator<<(...) below for why. void operator<<(const testing::internal::Secret&, int); namespace testing { // The Message class works like an ostream repeater. // // Typical usage: // // 1. You stream a bunch of values to a Message object. // It will remember the text in a stringstream. // 2. Then you stream the Message object to an ostream. // This causes the text in the Message to be streamed // to the ostream. // // For example; // // testing::Message foo; // foo << 1 << " != " << 2; // std::cout << foo; // // will print "1 != 2". // // Message is not intended to be inherited from. In particular, its // destructor is not virtual. // // Note that stringstream behaves differently in gcc and in MSVC. You // can stream a NULL char pointer to it in the former, but not in the // latter (it causes an access violation if you do). The Message // class hides this difference by treating a NULL char pointer as // "(null)". class GTEST_API_ Message { private: // The type of basic IO manipulators (endl, ends, and flush) for // narrow streams. typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); public: // Constructs an empty Message. Message(); // Copy constructor. Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT *ss_ << msg.GetString(); } // Constructs a Message from a C-string. explicit Message(const char* str) : ss_(new ::std::stringstream) { *ss_ << str; } #if GTEST_OS_SYMBIAN // Streams a value (either a pointer or not) to this object. template inline Message& operator <<(const T& value) { StreamHelper(typename internal::is_pointer::type(), value); return *this; } #else // Streams a non-pointer value to this object. template inline Message& operator <<(const T& val) { // Some libraries overload << for STL containers. These // overloads are defined in the global namespace instead of ::std. // // C++'s symbol lookup rule (i.e. Koenig lookup) says that these // overloads are visible in either the std namespace or the global // namespace, but not other namespaces, including the testing // namespace which Google Test's Message class is in. // // To allow STL containers (and other types that has a << operator // defined in the global namespace) to be used in Google Test // assertions, testing::Message must access the custom << operator // from the global namespace. With this using declaration, // overloads of << defined in the global namespace and those // visible via Koenig lookup are both exposed in this function. using ::operator <<; *ss_ << val; return *this; } // Streams a pointer value to this object. // // This function is an overload of the previous one. When you // stream a pointer to a Message, this definition will be used as it // is more specialized. (The C++ Standard, section // [temp.func.order].) If you stream a non-pointer, then the // previous definition will be used. // // The reason for this overload is that streaming a NULL pointer to // ostream is undefined behavior. Depending on the compiler, you // may get "0", "(nil)", "(null)", or an access violation. To // ensure consistent result across compilers, we always treat NULL // as "(null)". template inline Message& operator <<(T* const& pointer) { // NOLINT if (pointer == NULL) { *ss_ << "(null)"; } else { *ss_ << pointer; } return *this; } #endif // GTEST_OS_SYMBIAN // Since the basic IO manipulators are overloaded for both narrow // and wide streams, we have to provide this specialized definition // of operator <<, even though its body is the same as the // templatized version above. Without this definition, streaming // endl or other basic IO manipulators to Message will confuse the // compiler. Message& operator <<(BasicNarrowIoManip val) { *ss_ << val; return *this; } // Instead of 1/0, we want to see true/false for bool values. Message& operator <<(bool b) { return *this << (b ? "true" : "false"); } // These two overloads allow streaming a wide C string to a Message // using the UTF-8 encoding. Message& operator <<(const wchar_t* wide_c_str); Message& operator <<(wchar_t* wide_c_str); #if GTEST_HAS_STD_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& operator <<(const ::std::wstring& wstr); #endif // GTEST_HAS_STD_WSTRING #if GTEST_HAS_GLOBAL_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& operator <<(const ::wstring& wstr); #endif // GTEST_HAS_GLOBAL_WSTRING // Gets the text streamed to this object so far as an std::string. // Each '\0' character in the buffer is replaced with "\\0". // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. std::string GetString() const; private: #if GTEST_OS_SYMBIAN // These are needed as the Nokia Symbian Compiler cannot decide between // const T& and const T* in a function template. The Nokia compiler _can_ // decide between class template specializations for T and T*, so a // tr1::type_traits-like is_pointer works, and we can overload on that. template inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) { if (pointer == NULL) { *ss_ << "(null)"; } else { *ss_ << pointer; } } template inline void StreamHelper(internal::false_type /*is_pointer*/, const T& value) { // See the comments in Message& operator <<(const T&) above for why // we need this using statement. using ::operator <<; *ss_ << value; } #endif // GTEST_OS_SYMBIAN // We'll hold the text streamed to this object here. const internal::scoped_ptr< ::std::stringstream> ss_; // We declare (but don't implement) this to prevent the compiler // from implementing the assignment operator. void operator=(const Message&); }; // Streams a Message to an ostream. inline std::ostream& operator <<(std::ostream& os, const Message& sb) { return os << sb.GetString(); } namespace internal { // Converts a streamable value to an std::string. A NULL pointer is // converted to "(null)". When the input value is a ::string, // ::std::string, ::wstring, or ::std::wstring object, each NUL // character in it is replaced with "\\0". template std::string StreamableToString(const T& streamable) { return (Message() << streamable).GetString(); } } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google Test filepath utilities // // This header file declares classes and functions used internally by // Google Test. They are subject to change without notice. // // This file is #included in gtest/internal/gtest-internal.h. // Do not include this header file separately! // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file declares the String class and functions used internally by // Google Test. They are subject to change without notice. They should not used // by code external to Google Test. // // This header file is #included by gtest-internal.h. // It should not be #included by other files. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ #ifdef __BORLANDC__ // string.h is not guaranteed to provide strcpy on C++ Builder. # include #endif #include #include namespace testing { namespace internal { // String - an abstract class holding static string utilities. class GTEST_API_ String { public: // Static utility methods // Clones a 0-terminated C string, allocating memory using new. The // caller is responsible for deleting the return value using // delete[]. Returns the cloned string, or NULL if the input is // NULL. // // This is different from strdup() in string.h, which allocates // memory using malloc(). static const char* CloneCString(const char* c_str); #if GTEST_OS_WINDOWS_MOBILE // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be // able to pass strings to Win32 APIs on CE we need to convert them // to 'Unicode', UTF-16. // Creates a UTF-16 wide string from the given ANSI string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the wide string, or NULL if the // input is NULL. // // The wide string is created using the ANSI codepage (CP_ACP) to // match the behaviour of the ANSI versions of Win32 calls and the // C runtime. static LPCWSTR AnsiToUtf16(const char* c_str); // Creates an ANSI string from the given wide string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the ANSI string, or NULL if the // input is NULL. // // The returned string is created using the ANSI codepage (CP_ACP) to // match the behaviour of the ANSI versions of Win32 calls and the // C runtime. static const char* Utf16ToAnsi(LPCWSTR utf16_str); #endif // Compares two C strings. Returns true iff they have the same content. // // Unlike strcmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. static bool CStringEquals(const char* lhs, const char* rhs); // Converts a wide C string to a String using the UTF-8 encoding. // NULL will be converted to "(null)". If an error occurred during // the conversion, "(failed to convert from wide string)" is // returned. static std::string ShowWideCString(const wchar_t* wide_c_str); // Compares two wide C strings. Returns true iff they have the same // content. // // Unlike wcscmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); // Compares two C strings, ignoring case. Returns true iff they // have the same content. // // Unlike strcasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL C string, // including the empty string. static bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs); // Compares two wide C strings, ignoring case. Returns true iff they // have the same content. // // Unlike wcscasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL wide C string, // including the empty string. // NB: The implementations on different platforms slightly differ. // On windows, this method uses _wcsicmp which compares according to LC_CTYPE // environment variable. On GNU platform this method uses wcscasecmp // which compares according to LC_CTYPE category of the current locale. // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the // current locale. static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); // Returns true iff the given string ends with the given suffix, ignoring // case. Any string is considered to end with an empty suffix. static bool EndsWithCaseInsensitive( const std::string& str, const std::string& suffix); // Formats an int value as "%02d". static std::string FormatIntWidth2(int value); // "%02d" for width == 2 // Formats an int value as "%X". static std::string FormatHexInt(int value); // Formats a byte as "%02X". static std::string FormatByte(unsigned char value); private: String(); // Not meant to be instantiated. }; // class String // Gets the content of the stringstream's buffer as an std::string. Each '\0' // character in the buffer is replaced with "\\0". GTEST_API_ std::string StringStreamToString(::std::stringstream* stream); } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { namespace internal { // FilePath - a class for file and directory pathname manipulation which // handles platform-specific conventions (like the pathname separator). // Used for helper functions for naming files in a directory for xml output. // Except for Set methods, all methods are const or static, which provides an // "immutable value object" -- useful for peace of mind. // A FilePath with a value ending in a path separator ("like/this/") represents // a directory, otherwise it is assumed to represent a file. In either case, // it may or may not represent an actual file or directory in the file system. // Names are NOT checked for syntax correctness -- no checking for illegal // characters, malformed paths, etc. class GTEST_API_ FilePath { public: FilePath() : pathname_("") { } FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } explicit FilePath(const std::string& pathname) : pathname_(pathname) { Normalize(); } FilePath& operator=(const FilePath& rhs) { Set(rhs); return *this; } void Set(const FilePath& rhs) { pathname_ = rhs.pathname_; } const std::string& string() const { return pathname_; } const char* c_str() const { return pathname_.c_str(); } // Returns the current working directory, or "" if unsuccessful. static FilePath GetCurrentDir(); // Given directory = "dir", base_name = "test", number = 0, // extension = "xml", returns "dir/test.xml". If number is greater // than zero (e.g., 12), returns "dir/test_12.xml". // On Windows platform, uses \ as the separator rather than /. static FilePath MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension); // Given directory = "dir", relative_path = "test.xml", // returns "dir/test.xml". // On Windows, uses \ as the separator rather than /. static FilePath ConcatPaths(const FilePath& directory, const FilePath& relative_path); // Returns a pathname for a file that does not currently exist. The pathname // will be directory/base_name.extension or // directory/base_name_.extension if directory/base_name.extension // already exists. The number will be incremented until a pathname is found // that does not already exist. // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. // There could be a race condition if two or more processes are calling this // function at the same time -- they could both pick the same filename. static FilePath GenerateUniqueFileName(const FilePath& directory, const FilePath& base_name, const char* extension); // Returns true iff the path is "". bool IsEmpty() const { return pathname_.empty(); } // If input name has a trailing separator character, removes it and returns // the name, otherwise return the name string unmodified. // On Windows platform, uses \ as the separator, other platforms use /. FilePath RemoveTrailingPathSeparator() const; // Returns a copy of the FilePath with the directory part removed. // Example: FilePath("path/to/file").RemoveDirectoryName() returns // FilePath("file"). If there is no directory part ("just_a_file"), it returns // the FilePath unmodified. If there is no file part ("just_a_dir/") it // returns an empty FilePath (""). // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath RemoveDirectoryName() const; // RemoveFileName returns the directory path with the filename removed. // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". // If the FilePath is "a_file" or "/a_file", RemoveFileName returns // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does // not have a file, like "just/a/dir/", it returns the FilePath unmodified. // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath RemoveFileName() const; // Returns a copy of the FilePath with the case-insensitive extension removed. // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns // FilePath("dir/file"). If a case-insensitive extension is not // found, returns a copy of the original FilePath. FilePath RemoveExtension(const char* extension) const; // Creates directories so that path exists. Returns true if successful or if // the directories already exist; returns false if unable to create // directories for any reason. Will also return false if the FilePath does // not represent a directory (that is, it doesn't end with a path separator). bool CreateDirectoriesRecursively() const; // Create the directory so that path exists. Returns true if successful or // if the directory already exists; returns false if unable to create the // directory for any reason, including if the parent directory does not // exist. Not named "CreateDirectory" because that's a macro on Windows. bool CreateFolder() const; // Returns true if FilePath describes something in the file-system, // either a file, directory, or whatever, and that something exists. bool FileOrDirectoryExists() const; // Returns true if pathname describes a directory in the file-system // that exists. bool DirectoryExists() const; // Returns true if FilePath ends with a path separator, which indicates that // it is intended to represent a directory. Returns false otherwise. // This does NOT check that a directory (or file) actually exists. bool IsDirectory() const; // Returns true if pathname describes a root directory. (Windows has one // root directory per disk drive.) bool IsRootDirectory() const; // Returns true if pathname describes an absolute path. bool IsAbsolutePath() const; private: // Replaces multiple consecutive separators with a single separator. // For example, "bar///foo" becomes "bar/foo". Does not eliminate other // redundancies that might be in a pathname involving "." or "..". // // A pathname with multiple consecutive separators may occur either through // user error or as a result of some scripts or APIs that generate a pathname // with a trailing separator. On other platforms the same API or script // may NOT generate a pathname with a trailing "/". Then elsewhere that // pathname may have another "/" and pathname components added to it, // without checking for the separator already being there. // The script language and operating system may allow paths like "foo//bar" // but some of the functions in FilePath will not handle that correctly. In // particular, RemoveTrailingPathSeparator() only removes one separator, and // it is called in CreateDirectoriesRecursively() assuming that it will change // a pathname from directory syntax (trailing separator) to filename syntax. // // On Windows this method also replaces the alternate path separator '/' with // the primary path separator '\\', so that for example "bar\\/\\foo" becomes // "bar\\foo". void Normalize(); // Returns a pointer to the last occurence of a valid path separator in // the FilePath. On Windows, for example, both '/' and '\' are valid path // separators. Returns NULL if no path separator was found. const char* FindLastPathSeparator() const; std::string pathname_; }; // class FilePath } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ // This file was GENERATED by command: // pump.py gtest-type-util.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Type utilities needed for implementing typed and type-parameterized // tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // Currently we support at most 50 types in a list, and at most 50 // type-parameterized tests in one type-parameterized test case. // Please contact googletestframework@googlegroups.com if you need // more. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ // #ifdef __GNUC__ is too general here. It is possible to use gcc without using // libstdc++ (which is where cxxabi.h comes from). # if GTEST_HAS_CXXABI_H_ # include # elif defined(__HP_aCC) # include # endif // GTEST_HASH_CXXABI_H_ namespace testing { namespace internal { // Canonicalizes a given name with respect to the Standard C++ Library. // This handles removing the inline namespace within `std` that is // used by various standard libraries (e.g., `std::__1`). Names outside // of namespace std are returned unmodified. inline std::string CanonicalizeForStdLibVersioning(std::string s) { static const char prefix[] = "std::__"; if (s.compare(0, strlen(prefix), prefix) == 0) { std::string::size_type end = s.find("::", strlen(prefix)); if (end != s.npos) { // Erase everything between the initial `std` and the second `::`. s.erase(strlen("std"), end - strlen("std")); } } return s; } // GetTypeName() returns a human-readable name of type T. // NB: This function is also used in Google Mock, so don't move it inside of // the typed-test-only section below. template std::string GetTypeName() { # if GTEST_HAS_RTTI const char* const name = typeid(T).name(); # if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) int status = 0; // gcc's implementation of typeid(T).name() mangles the type name, // so we have to demangle it. # if GTEST_HAS_CXXABI_H_ using abi::__cxa_demangle; # endif // GTEST_HAS_CXXABI_H_ char* const readable_name = __cxa_demangle(name, 0, 0, &status); const std::string name_str(status == 0 ? readable_name : name); free(readable_name); return CanonicalizeForStdLibVersioning(name_str); # else return name; # endif // GTEST_HAS_CXXABI_H_ || __HP_aCC # else return ""; # endif // GTEST_HAS_RTTI } #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P // AssertyTypeEq::type is defined iff T1 and T2 are the same // type. This can be used as a compile-time assertion to ensure that // two types are equal. template struct AssertTypeEq; template struct AssertTypeEq { typedef bool type; }; // A unique type used as the default value for the arguments of class // template Types. This allows us to simulate variadic templates // (e.g. Types, Type, and etc), which C++ doesn't // support directly. struct None {}; // The following family of struct and struct templates are used to // represent type lists. In particular, TypesN // represents a type list with N types (T1, T2, ..., and TN) in it. // Except for Types0, every struct in the family has two member types: // Head for the first type in the list, and Tail for the rest of the // list. // The empty type list. struct Types0 {}; // Type lists of length 1, 2, 3, and so on. template struct Types1 { typedef T1 Head; typedef Types0 Tail; }; template struct Types2 { typedef T1 Head; typedef Types1 Tail; }; template struct Types3 { typedef T1 Head; typedef Types2 Tail; }; template struct Types4 { typedef T1 Head; typedef Types3 Tail; }; template struct Types5 { typedef T1 Head; typedef Types4 Tail; }; template struct Types6 { typedef T1 Head; typedef Types5 Tail; }; template struct Types7 { typedef T1 Head; typedef Types6 Tail; }; template struct Types8 { typedef T1 Head; typedef Types7 Tail; }; template struct Types9 { typedef T1 Head; typedef Types8 Tail; }; template struct Types10 { typedef T1 Head; typedef Types9 Tail; }; template struct Types11 { typedef T1 Head; typedef Types10 Tail; }; template struct Types12 { typedef T1 Head; typedef Types11 Tail; }; template struct Types13 { typedef T1 Head; typedef Types12 Tail; }; template struct Types14 { typedef T1 Head; typedef Types13 Tail; }; template struct Types15 { typedef T1 Head; typedef Types14 Tail; }; template struct Types16 { typedef T1 Head; typedef Types15 Tail; }; template struct Types17 { typedef T1 Head; typedef Types16 Tail; }; template struct Types18 { typedef T1 Head; typedef Types17 Tail; }; template struct Types19 { typedef T1 Head; typedef Types18 Tail; }; template struct Types20 { typedef T1 Head; typedef Types19 Tail; }; template struct Types21 { typedef T1 Head; typedef Types20 Tail; }; template struct Types22 { typedef T1 Head; typedef Types21 Tail; }; template struct Types23 { typedef T1 Head; typedef Types22 Tail; }; template struct Types24 { typedef T1 Head; typedef Types23 Tail; }; template struct Types25 { typedef T1 Head; typedef Types24 Tail; }; template struct Types26 { typedef T1 Head; typedef Types25 Tail; }; template struct Types27 { typedef T1 Head; typedef Types26 Tail; }; template struct Types28 { typedef T1 Head; typedef Types27 Tail; }; template struct Types29 { typedef T1 Head; typedef Types28 Tail; }; template struct Types30 { typedef T1 Head; typedef Types29 Tail; }; template struct Types31 { typedef T1 Head; typedef Types30 Tail; }; template struct Types32 { typedef T1 Head; typedef Types31 Tail; }; template struct Types33 { typedef T1 Head; typedef Types32 Tail; }; template struct Types34 { typedef T1 Head; typedef Types33 Tail; }; template struct Types35 { typedef T1 Head; typedef Types34 Tail; }; template struct Types36 { typedef T1 Head; typedef Types35 Tail; }; template struct Types37 { typedef T1 Head; typedef Types36 Tail; }; template struct Types38 { typedef T1 Head; typedef Types37 Tail; }; template struct Types39 { typedef T1 Head; typedef Types38 Tail; }; template struct Types40 { typedef T1 Head; typedef Types39 Tail; }; template struct Types41 { typedef T1 Head; typedef Types40 Tail; }; template struct Types42 { typedef T1 Head; typedef Types41 Tail; }; template struct Types43 { typedef T1 Head; typedef Types42 Tail; }; template struct Types44 { typedef T1 Head; typedef Types43 Tail; }; template struct Types45 { typedef T1 Head; typedef Types44 Tail; }; template struct Types46 { typedef T1 Head; typedef Types45 Tail; }; template struct Types47 { typedef T1 Head; typedef Types46 Tail; }; template struct Types48 { typedef T1 Head; typedef Types47 Tail; }; template struct Types49 { typedef T1 Head; typedef Types48 Tail; }; template struct Types50 { typedef T1 Head; typedef Types49 Tail; }; } // namespace internal // We don't want to require the users to write TypesN<...> directly, // as that would require them to count the length. Types<...> is much // easier to write, but generates horrible messages when there is a // compiler error, as gcc insists on printing out each template // argument, even if it has the default value (this means Types // will appear as Types in the compiler // errors). // // Our solution is to combine the best part of the two approaches: a // user would write Types, and Google Test will translate // that to TypesN internally to make error messages // readable. The translation is done by the 'type' member of the // Types template. template struct Types { typedef internal::Types50 type; }; template <> struct Types { typedef internal::Types0 type; }; template struct Types { typedef internal::Types1 type; }; template struct Types { typedef internal::Types2 type; }; template struct Types { typedef internal::Types3 type; }; template struct Types { typedef internal::Types4 type; }; template struct Types { typedef internal::Types5 type; }; template struct Types { typedef internal::Types6 type; }; template struct Types { typedef internal::Types7 type; }; template struct Types { typedef internal::Types8 type; }; template struct Types { typedef internal::Types9 type; }; template struct Types { typedef internal::Types10 type; }; template struct Types { typedef internal::Types11 type; }; template struct Types { typedef internal::Types12 type; }; template struct Types { typedef internal::Types13 type; }; template struct Types { typedef internal::Types14 type; }; template struct Types { typedef internal::Types15 type; }; template struct Types { typedef internal::Types16 type; }; template struct Types { typedef internal::Types17 type; }; template struct Types { typedef internal::Types18 type; }; template struct Types { typedef internal::Types19 type; }; template struct Types { typedef internal::Types20 type; }; template struct Types { typedef internal::Types21 type; }; template struct Types { typedef internal::Types22 type; }; template struct Types { typedef internal::Types23 type; }; template struct Types { typedef internal::Types24 type; }; template struct Types { typedef internal::Types25 type; }; template struct Types { typedef internal::Types26 type; }; template struct Types { typedef internal::Types27 type; }; template struct Types { typedef internal::Types28 type; }; template struct Types { typedef internal::Types29 type; }; template struct Types { typedef internal::Types30 type; }; template struct Types { typedef internal::Types31 type; }; template struct Types { typedef internal::Types32 type; }; template struct Types { typedef internal::Types33 type; }; template struct Types { typedef internal::Types34 type; }; template struct Types { typedef internal::Types35 type; }; template struct Types { typedef internal::Types36 type; }; template struct Types { typedef internal::Types37 type; }; template struct Types { typedef internal::Types38 type; }; template struct Types { typedef internal::Types39 type; }; template struct Types { typedef internal::Types40 type; }; template struct Types { typedef internal::Types41 type; }; template struct Types { typedef internal::Types42 type; }; template struct Types { typedef internal::Types43 type; }; template struct Types { typedef internal::Types44 type; }; template struct Types { typedef internal::Types45 type; }; template struct Types { typedef internal::Types46 type; }; template struct Types { typedef internal::Types47 type; }; template struct Types { typedef internal::Types48 type; }; template struct Types { typedef internal::Types49 type; }; namespace internal { # define GTEST_TEMPLATE_ template class // The template "selector" struct TemplateSel is used to // represent Tmpl, which must be a class template with one type // parameter, as a type. TemplateSel::Bind::type is defined // as the type Tmpl. This allows us to actually instantiate the // template "selected" by TemplateSel. // // This trick is necessary for simulating typedef for class templates, // which C++ doesn't support directly. template struct TemplateSel { template struct Bind { typedef Tmpl type; }; }; # define GTEST_BIND_(TmplSel, T) \ TmplSel::template Bind::type // A unique struct template used as the default value for the // arguments of class template Templates. This allows us to simulate // variadic templates (e.g. Templates, Templates, // and etc), which C++ doesn't support directly. template struct NoneT {}; // The following family of struct and struct templates are used to // represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except // for Templates0, every struct in the family has two member types: // Head for the selector of the first template in the list, and Tail // for the rest of the list. // The empty template list. struct Templates0 {}; // Template lists of length 1, 2, 3, and so on. template struct Templates1 { typedef TemplateSel Head; typedef Templates0 Tail; }; template struct Templates2 { typedef TemplateSel Head; typedef Templates1 Tail; }; template struct Templates3 { typedef TemplateSel Head; typedef Templates2 Tail; }; template struct Templates4 { typedef TemplateSel Head; typedef Templates3 Tail; }; template struct Templates5 { typedef TemplateSel Head; typedef Templates4 Tail; }; template struct Templates6 { typedef TemplateSel Head; typedef Templates5 Tail; }; template struct Templates7 { typedef TemplateSel Head; typedef Templates6 Tail; }; template struct Templates8 { typedef TemplateSel Head; typedef Templates7 Tail; }; template struct Templates9 { typedef TemplateSel Head; typedef Templates8 Tail; }; template struct Templates10 { typedef TemplateSel Head; typedef Templates9 Tail; }; template struct Templates11 { typedef TemplateSel Head; typedef Templates10 Tail; }; template struct Templates12 { typedef TemplateSel Head; typedef Templates11 Tail; }; template struct Templates13 { typedef TemplateSel Head; typedef Templates12 Tail; }; template struct Templates14 { typedef TemplateSel Head; typedef Templates13 Tail; }; template struct Templates15 { typedef TemplateSel Head; typedef Templates14 Tail; }; template struct Templates16 { typedef TemplateSel Head; typedef Templates15 Tail; }; template struct Templates17 { typedef TemplateSel Head; typedef Templates16 Tail; }; template struct Templates18 { typedef TemplateSel Head; typedef Templates17 Tail; }; template struct Templates19 { typedef TemplateSel Head; typedef Templates18 Tail; }; template struct Templates20 { typedef TemplateSel Head; typedef Templates19 Tail; }; template struct Templates21 { typedef TemplateSel Head; typedef Templates20 Tail; }; template struct Templates22 { typedef TemplateSel Head; typedef Templates21 Tail; }; template struct Templates23 { typedef TemplateSel Head; typedef Templates22 Tail; }; template struct Templates24 { typedef TemplateSel Head; typedef Templates23 Tail; }; template struct Templates25 { typedef TemplateSel Head; typedef Templates24 Tail; }; template struct Templates26 { typedef TemplateSel Head; typedef Templates25 Tail; }; template struct Templates27 { typedef TemplateSel Head; typedef Templates26 Tail; }; template struct Templates28 { typedef TemplateSel Head; typedef Templates27 Tail; }; template struct Templates29 { typedef TemplateSel Head; typedef Templates28 Tail; }; template struct Templates30 { typedef TemplateSel Head; typedef Templates29 Tail; }; template struct Templates31 { typedef TemplateSel Head; typedef Templates30 Tail; }; template struct Templates32 { typedef TemplateSel Head; typedef Templates31 Tail; }; template struct Templates33 { typedef TemplateSel Head; typedef Templates32 Tail; }; template struct Templates34 { typedef TemplateSel Head; typedef Templates33 Tail; }; template struct Templates35 { typedef TemplateSel Head; typedef Templates34 Tail; }; template struct Templates36 { typedef TemplateSel Head; typedef Templates35 Tail; }; template struct Templates37 { typedef TemplateSel Head; typedef Templates36 Tail; }; template struct Templates38 { typedef TemplateSel Head; typedef Templates37 Tail; }; template struct Templates39 { typedef TemplateSel Head; typedef Templates38 Tail; }; template struct Templates40 { typedef TemplateSel Head; typedef Templates39 Tail; }; template struct Templates41 { typedef TemplateSel Head; typedef Templates40 Tail; }; template struct Templates42 { typedef TemplateSel Head; typedef Templates41 Tail; }; template struct Templates43 { typedef TemplateSel Head; typedef Templates42 Tail; }; template struct Templates44 { typedef TemplateSel Head; typedef Templates43 Tail; }; template struct Templates45 { typedef TemplateSel Head; typedef Templates44 Tail; }; template struct Templates46 { typedef TemplateSel Head; typedef Templates45 Tail; }; template struct Templates47 { typedef TemplateSel Head; typedef Templates46 Tail; }; template struct Templates48 { typedef TemplateSel Head; typedef Templates47 Tail; }; template struct Templates49 { typedef TemplateSel Head; typedef Templates48 Tail; }; template struct Templates50 { typedef TemplateSel Head; typedef Templates49 Tail; }; // We don't want to require the users to write TemplatesN<...> directly, // as that would require them to count the length. Templates<...> is much // easier to write, but generates horrible messages when there is a // compiler error, as gcc insists on printing out each template // argument, even if it has the default value (this means Templates // will appear as Templates in the compiler // errors). // // Our solution is to combine the best part of the two approaches: a // user would write Templates, and Google Test will translate // that to TemplatesN internally to make error messages // readable. The translation is done by the 'type' member of the // Templates template. template struct Templates { typedef Templates50 type; }; template <> struct Templates { typedef Templates0 type; }; template struct Templates { typedef Templates1 type; }; template struct Templates { typedef Templates2 type; }; template struct Templates { typedef Templates3 type; }; template struct Templates { typedef Templates4 type; }; template struct Templates { typedef Templates5 type; }; template struct Templates { typedef Templates6 type; }; template struct Templates { typedef Templates7 type; }; template struct Templates { typedef Templates8 type; }; template struct Templates { typedef Templates9 type; }; template struct Templates { typedef Templates10 type; }; template struct Templates { typedef Templates11 type; }; template struct Templates { typedef Templates12 type; }; template struct Templates { typedef Templates13 type; }; template struct Templates { typedef Templates14 type; }; template struct Templates { typedef Templates15 type; }; template struct Templates { typedef Templates16 type; }; template struct Templates { typedef Templates17 type; }; template struct Templates { typedef Templates18 type; }; template struct Templates { typedef Templates19 type; }; template struct Templates { typedef Templates20 type; }; template struct Templates { typedef Templates21 type; }; template struct Templates { typedef Templates22 type; }; template struct Templates { typedef Templates23 type; }; template struct Templates { typedef Templates24 type; }; template struct Templates { typedef Templates25 type; }; template struct Templates { typedef Templates26 type; }; template struct Templates { typedef Templates27 type; }; template struct Templates { typedef Templates28 type; }; template struct Templates { typedef Templates29 type; }; template struct Templates { typedef Templates30 type; }; template struct Templates { typedef Templates31 type; }; template struct Templates { typedef Templates32 type; }; template struct Templates { typedef Templates33 type; }; template struct Templates { typedef Templates34 type; }; template struct Templates { typedef Templates35 type; }; template struct Templates { typedef Templates36 type; }; template struct Templates { typedef Templates37 type; }; template struct Templates { typedef Templates38 type; }; template struct Templates { typedef Templates39 type; }; template struct Templates { typedef Templates40 type; }; template struct Templates { typedef Templates41 type; }; template struct Templates { typedef Templates42 type; }; template struct Templates { typedef Templates43 type; }; template struct Templates { typedef Templates44 type; }; template struct Templates { typedef Templates45 type; }; template struct Templates { typedef Templates46 type; }; template struct Templates { typedef Templates47 type; }; template struct Templates { typedef Templates48 type; }; template struct Templates { typedef Templates49 type; }; // The TypeList template makes it possible to use either a single type // or a Types<...> list in TYPED_TEST_CASE() and // INSTANTIATE_TYPED_TEST_CASE_P(). template struct TypeList { typedef Types1 type; }; template struct TypeList > { typedef typename Types::type type; }; #endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ // Due to C++ preprocessor weirdness, we need double indirection to // concatenate two tokens when one of them is __LINE__. Writing // // foo ## __LINE__ // // will result in the token foo__LINE__, instead of foo followed by // the current line number. For more details, see // http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar // Stringifies its argument. #define GTEST_STRINGIFY_(name) #name class ProtocolMessage; namespace proto2 { class Message; } namespace testing { // Forward declarations. class AssertionResult; // Result of an assertion. class Message; // Represents a failure message. class Test; // Represents a test. class TestInfo; // Information about a test. class TestPartResult; // Result of a test part. class UnitTest; // A collection of test cases. template ::std::string PrintToString(const T& value); namespace internal { struct TraceInfo; // Information about a trace point. class TestInfoImpl; // Opaque implementation of TestInfo class UnitTestImpl; // Opaque implementation of UnitTest // The text used in failure messages to indicate the start of the // stack trace. GTEST_API_ extern const char kStackTraceMarker[]; // Two overloaded helpers for checking at compile time whether an // expression is a null pointer literal (i.e. NULL or any 0-valued // compile-time integral constant). Their return values have // different sizes, so we can use sizeof() to test which version is // picked by the compiler. These helpers have no implementations, as // we only need their signatures. // // Given IsNullLiteralHelper(x), the compiler will pick the first // version if x can be implicitly converted to Secret*, and pick the // second version otherwise. Since Secret is a secret and incomplete // type, the only expression a user can write that has type Secret* is // a null pointer literal. Therefore, we know that x is a null // pointer literal if and only if the first version is picked by the // compiler. char IsNullLiteralHelper(Secret* p); char (&IsNullLiteralHelper(...))[2]; // NOLINT // A compile-time bool constant that is true if and only if x is a // null pointer literal (i.e. NULL or any 0-valued compile-time // integral constant). #ifdef GTEST_ELLIPSIS_NEEDS_POD_ // We lose support for NULL detection where the compiler doesn't like // passing non-POD classes through ellipsis (...). # define GTEST_IS_NULL_LITERAL_(x) false #else # define GTEST_IS_NULL_LITERAL_(x) \ (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1) #endif // GTEST_ELLIPSIS_NEEDS_POD_ // Appends the user-supplied message to the Google-Test-generated message. GTEST_API_ std::string AppendUserMessage( const std::string& gtest_msg, const Message& user_msg); #if GTEST_HAS_EXCEPTIONS GTEST_DISABLE_MSC_WARNINGS_PUSH_(4275 \ /* an exported class was derived from a class that was not exported */) // This exception is thrown by (and only by) a failed Google Test // assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions // are enabled). We derive it from std::runtime_error, which is for // errors presumably detectable only at run time. Since // std::runtime_error inherits from std::exception, many testing // frameworks know how to extract and print the message inside it. class GTEST_API_ GoogleTestFailureException : public ::std::runtime_error { public: explicit GoogleTestFailureException(const TestPartResult& failure); }; GTEST_DISABLE_MSC_WARNINGS_POP_() // 4275 #endif // GTEST_HAS_EXCEPTIONS namespace edit_distance { // Returns the optimal edits to go from 'left' to 'right'. // All edits cost the same, with replace having lower priority than // add/remove. // Simple implementation of the Wagner-Fischer algorithm. // See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm enum EditType { kMatch, kAdd, kRemove, kReplace }; GTEST_API_ std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right); // Same as above, but the input is represented as strings. GTEST_API_ std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right); // Create a diff of the input strings in Unified diff format. GTEST_API_ std::string CreateUnifiedDiff(const std::vector& left, const std::vector& right, size_t context = 2); } // namespace edit_distance // Calculate the diff between 'left' and 'right' and return it in unified diff // format. // If not null, stores in 'total_line_count' the total number of lines found // in left + right. GTEST_API_ std::string DiffStrings(const std::string& left, const std::string& right, size_t* total_line_count); // Constructs and returns the message for an equality assertion // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. // // The first four parameters are the expressions used in the assertion // and their values, as strings. For example, for ASSERT_EQ(foo, bar) // where foo is 5 and bar is 6, we have: // // expected_expression: "foo" // actual_expression: "bar" // expected_value: "5" // actual_value: "6" // // The ignoring_case parameter is true iff the assertion is a // *_STRCASEEQ*. When it's true, the string " (ignoring case)" will // be inserted into the message. GTEST_API_ AssertionResult EqFailure(const char* expected_expression, const char* actual_expression, const std::string& expected_value, const std::string& actual_value, bool ignoring_case); // Constructs a failure message for Boolean assertions such as EXPECT_TRUE. GTEST_API_ std::string GetBoolAssertionFailureMessage( const AssertionResult& assertion_result, const char* expression_text, const char* actual_predicate_value, const char* expected_predicate_value); // This template class represents an IEEE floating-point number // (either single-precision or double-precision, depending on the // template parameters). // // The purpose of this class is to do more sophisticated number // comparison. (Due to round-off error, etc, it's very unlikely that // two floating-points will be equal exactly. Hence a naive // comparison by the == operation often doesn't work.) // // Format of IEEE floating-point: // // The most-significant bit being the leftmost, an IEEE // floating-point looks like // // sign_bit exponent_bits fraction_bits // // Here, sign_bit is a single bit that designates the sign of the // number. // // For float, there are 8 exponent bits and 23 fraction bits. // // For double, there are 11 exponent bits and 52 fraction bits. // // More details can be found at // http://en.wikipedia.org/wiki/IEEE_floating-point_standard. // // Template parameter: // // RawType: the raw floating-point type (either float or double) template class FloatingPoint { public: // Defines the unsigned integer type that has the same size as the // floating point number. typedef typename TypeWithSize::UInt Bits; // Constants. // # of bits in a number. static const size_t kBitCount = 8*sizeof(RawType); // # of fraction bits in a number. static const size_t kFractionBitCount = std::numeric_limits::digits - 1; // # of exponent bits in a number. static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; // The mask for the sign bit. static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); // The mask for the fraction bits. static const Bits kFractionBitMask = ~static_cast(0) >> (kExponentBitCount + 1); // The mask for the exponent bits. static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); // How many ULP's (Units in the Last Place) we want to tolerate when // comparing two numbers. The larger the value, the more error we // allow. A 0 value means that two numbers must be exactly the same // to be considered equal. // // The maximum error of a single floating-point operation is 0.5 // units in the last place. On Intel CPU's, all floating-point // calculations are done with 80-bit precision, while double has 64 // bits. Therefore, 4 should be enough for ordinary use. // // See the following article for more details on ULP: // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ static const size_t kMaxUlps = 4; // Constructs a FloatingPoint from a raw floating-point number. // // On an Intel CPU, passing a non-normalized NAN (Not a Number) // around may change its bits, although the new value is guaranteed // to be also a NAN. Therefore, don't expect this constructor to // preserve the bits in x when x is a NAN. explicit FloatingPoint(const RawType& x) { u_.value_ = x; } // Static methods // Reinterprets a bit pattern as a floating-point number. // // This function is needed to test the AlmostEquals() method. static RawType ReinterpretBits(const Bits bits) { FloatingPoint fp(0); fp.u_.bits_ = bits; return fp.u_.value_; } // Returns the floating-point number that represent positive infinity. static RawType Infinity() { return ReinterpretBits(kExponentBitMask); } // Returns the maximum representable finite floating-point number. static RawType Max(); // Non-static methods // Returns the bits that represents this number. const Bits &bits() const { return u_.bits_; } // Returns the exponent bits of this number. Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } // Returns the fraction bits of this number. Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } // Returns the sign bit of this number. Bits sign_bit() const { return kSignBitMask & u_.bits_; } // Returns true iff this is NAN (not a number). bool is_nan() const { // It's a NAN if the exponent bits are all ones and the fraction // bits are not entirely zeros. return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); } // Returns true iff this number is at most kMaxUlps ULP's away from // rhs. In particular, this function: // // - returns false if either number is (or both are) NAN. // - treats really large numbers as almost equal to infinity. // - thinks +0.0 and -0.0 are 0 DLP's apart. bool AlmostEquals(const FloatingPoint& rhs) const { // The IEEE standard says that any comparison operation involving // a NAN must return false. if (is_nan() || rhs.is_nan()) return false; return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) <= kMaxUlps; } private: // The data type used to store the actual floating-point number. union FloatingPointUnion { RawType value_; // The raw floating-point number. Bits bits_; // The bits that represent the number. }; // Converts an integer from the sign-and-magnitude representation to // the biased representation. More precisely, let N be 2 to the // power of (kBitCount - 1), an integer x is represented by the // unsigned number x + N. // // For instance, // // -N + 1 (the most negative number representable using // sign-and-magnitude) is represented by 1; // 0 is represented by N; and // N - 1 (the biggest number representable using // sign-and-magnitude) is represented by 2N - 1. // // Read http://en.wikipedia.org/wiki/Signed_number_representations // for more details on signed number representations. static Bits SignAndMagnitudeToBiased(const Bits &sam) { if (kSignBitMask & sam) { // sam represents a negative number. return ~sam + 1; } else { // sam represents a positive number. return kSignBitMask | sam; } } // Given two numbers in the sign-and-magnitude representation, // returns the distance between them as an unsigned number. static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, const Bits &sam2) { const Bits biased1 = SignAndMagnitudeToBiased(sam1); const Bits biased2 = SignAndMagnitudeToBiased(sam2); return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); } FloatingPointUnion u_; }; // We cannot use std::numeric_limits::max() as it clashes with the max() // macro defined by . template <> inline float FloatingPoint::Max() { return FLT_MAX; } template <> inline double FloatingPoint::Max() { return DBL_MAX; } // Typedefs the instances of the FloatingPoint template class that we // care to use. typedef FloatingPoint Float; typedef FloatingPoint Double; // In order to catch the mistake of putting tests that use different // test fixture classes in the same test case, we need to assign // unique IDs to fixture classes and compare them. The TypeId type is // used to hold such IDs. The user should treat TypeId as an opaque // type: the only operation allowed on TypeId values is to compare // them for equality using the == operator. typedef const void* TypeId; template class TypeIdHelper { public: // dummy_ must not have a const type. Otherwise an overly eager // compiler (e.g. MSVC 7.1 & 8.0) may try to merge // TypeIdHelper::dummy_ for different Ts as an "optimization". static bool dummy_; }; template bool TypeIdHelper::dummy_ = false; // GetTypeId() returns the ID of type T. Different values will be // returned for different types. Calling the function twice with the // same type argument is guaranteed to return the same ID. template TypeId GetTypeId() { // The compiler is required to allocate a different // TypeIdHelper::dummy_ variable for each T used to instantiate // the template. Therefore, the address of dummy_ is guaranteed to // be unique. return &(TypeIdHelper::dummy_); } // Returns the type ID of ::testing::Test. Always call this instead // of GetTypeId< ::testing::Test>() to get the type ID of // ::testing::Test, as the latter may give the wrong result due to a // suspected linker bug when compiling Google Test as a Mac OS X // framework. GTEST_API_ TypeId GetTestTypeId(); // Defines the abstract factory interface that creates instances // of a Test object. class TestFactoryBase { public: virtual ~TestFactoryBase() {} // Creates a test instance to run. The instance is both created and destroyed // within TestInfoImpl::Run() virtual Test* CreateTest() = 0; protected: TestFactoryBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); }; // This class provides implementation of TeastFactoryBase interface. // It is used in TEST and TEST_F macros. template class TestFactoryImpl : public TestFactoryBase { public: virtual Test* CreateTest() { return new TestClass; } }; #if GTEST_OS_WINDOWS // Predicate-formatters for implementing the HRESULT checking macros // {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} // We pass a long instead of HRESULT to avoid causing an // include dependency for the HRESULT type. GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, long hr); // NOLINT GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, long hr); // NOLINT #endif // GTEST_OS_WINDOWS // Types of SetUpTestCase() and TearDownTestCase() functions. typedef void (*SetUpTestCaseFunc)(); typedef void (*TearDownTestCaseFunc)(); struct CodeLocation { CodeLocation(const std::string& a_file, int a_line) : file(a_file), line(a_line) {} std::string file; int line; }; // Creates a new TestInfo object and registers it with Google Test; // returns the created object. // // Arguments: // // test_case_name: name of the test case // name: name of the test // type_param the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // value_param text representation of the test's value parameter, // or NULL if this is not a type-parameterized test. // code_location: code location where the test is defined // fixture_class_id: ID of the test fixture class // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case // factory: pointer to the factory that creates a test object. // The newly created TestInfo instance will assume // ownership of the factory object. GTEST_API_ TestInfo* MakeAndRegisterTestInfo( const char* test_case_name, const char* name, const char* type_param, const char* value_param, CodeLocation code_location, TypeId fixture_class_id, SetUpTestCaseFunc set_up_tc, TearDownTestCaseFunc tear_down_tc, TestFactoryBase* factory); // If *pstr starts with the given prefix, modifies *pstr to be right // past the prefix and returns true; otherwise leaves *pstr unchanged // and returns false. None of pstr, *pstr, and prefix can be NULL. GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr); #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // State of the definition of a type-parameterized test case. class GTEST_API_ TypedTestCasePState { public: TypedTestCasePState() : registered_(false) {} // Adds the given test name to defined_test_names_ and return true // if the test case hasn't been registered; otherwise aborts the // program. bool AddTestName(const char* file, int line, const char* case_name, const char* test_name) { if (registered_) { fprintf(stderr, "%s Test %s must be defined before " "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n", FormatFileLocation(file, line).c_str(), test_name, case_name); fflush(stderr); posix::Abort(); } registered_tests_.insert( ::std::make_pair(test_name, CodeLocation(file, line))); return true; } bool TestExists(const std::string& test_name) const { return registered_tests_.count(test_name) > 0; } const CodeLocation& GetCodeLocation(const std::string& test_name) const { RegisteredTestsMap::const_iterator it = registered_tests_.find(test_name); GTEST_CHECK_(it != registered_tests_.end()); return it->second; } // Verifies that registered_tests match the test names in // defined_test_names_; returns registered_tests if successful, or // aborts the program otherwise. const char* VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests); private: typedef ::std::map RegisteredTestsMap; bool registered_; RegisteredTestsMap registered_tests_; }; GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // Skips to the first non-space char after the first comma in 'str'; // returns NULL if no comma is found in 'str'. inline const char* SkipComma(const char* str) { const char* comma = strchr(str, ','); if (comma == NULL) { return NULL; } while (IsSpace(*(++comma))) {} return comma; } // Returns the prefix of 'str' before the first comma in it; returns // the entire string if it contains no comma. inline std::string GetPrefixUntilComma(const char* str) { const char* comma = strchr(str, ','); return comma == NULL ? str : std::string(str, comma); } // Splits a given string on a given delimiter, populating a given // vector with the fields. void SplitString(const ::std::string& str, char delimiter, ::std::vector< ::std::string>* dest); // The default argument to the template below for the case when the user does // not provide a name generator. struct DefaultNameGenerator { template static std::string GetName(int i) { return StreamableToString(i); } }; template struct NameGeneratorSelector { typedef Provided type; }; template void GenerateNamesRecursively(Types0, std::vector*, int) {} template void GenerateNamesRecursively(Types, std::vector* result, int i) { result->push_back(NameGenerator::template GetName(i)); GenerateNamesRecursively(typename Types::Tail(), result, i + 1); } template std::vector GenerateNames() { std::vector result; GenerateNamesRecursively(Types(), &result, 0); return result; } // TypeParameterizedTest::Register() // registers a list of type-parameterized tests with Google Test. The // return value is insignificant - we just need to return something // such that we can call this function in a namespace scope. // // Implementation note: The GTEST_TEMPLATE_ macro declares a template // template parameter. It's defined in gtest-type-util.h. template class TypeParameterizedTest { public: // 'index' is the index of the test in the type list 'Types' // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase, // Types). Valid values for 'index' are [0, N - 1] where N is the // length of Types. static bool Register(const char* prefix, const char* case_name, const char* test_names, int index) { typedef typename Types::Head Type; typedef Fixture FixtureClass; typedef typename GTEST_BIND_(TestSel, Type) TestClass; // First, registers the first type-parameterized test in the type // list. MakeAndRegisterTestInfo( (std::string(prefix) + (prefix[0] == '\0' ? "" : "/") + case_name + "/" + StreamableToString(index)).c_str(), GetPrefixUntilComma(test_names).c_str(), GetTypeName().c_str(), NULL, // No value parameter. GetTypeId(), TestClass::SetUpTestCase, TestClass::TearDownTestCase, new TestFactoryImpl); // Next, recurses (at compile time) with the tail of the type list. return TypeParameterizedTest ::Register(prefix, case_name, test_names, index + 1); } }; // The base case for the compile time recursion. template class TypeParameterizedTest { public: static bool Register(const char* /*prefix*/, const CodeLocation&, const char* /*case_name*/, const char* /*test_names*/, int /*index*/, const std::vector& = std::vector() /*type_names*/) { return true; } }; // TypeParameterizedTestCase::Register() // registers *all combinations* of 'Tests' and 'Types' with Google // Test. The return value is insignificant - we just need to return // something such that we can call this function in a namespace scope. template class TypeParameterizedTestCase { public: static bool Register(const char* prefix, const char* case_name, const char* test_names) { typedef typename Tests::Head Head; // First, register the first test in 'Test' for each type in 'Types'. TypeParameterizedTest::Register( prefix, case_name, test_names, 0); // Next, recurses (at compile time) with the tail of the test list. return TypeParameterizedTestCase ::Register(prefix, case_name, SkipComma(test_names)); } }; // The base case for the compile time recursion. template class TypeParameterizedTestCase { public: static bool Register(const char* /*prefix*/, const CodeLocation&, const TypedTestCasePState* /*state*/, const char* /*case_name*/, const char* /*test_names*/, const std::vector& = std::vector() /*type_names*/) { return true; } }; #endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. GTEST_API_ std::string GetCurrentOsStackTraceExceptTop( UnitTest* unit_test, int skip_count); // Helpers for suppressing warnings on unreachable code or constant // condition. // Always returns true. GTEST_API_ bool AlwaysTrue(); // Always returns false. inline bool AlwaysFalse() { return !AlwaysTrue(); } // Helper for suppressing false warning from Clang on a const char* // variable declared in a conditional expression always being NULL in // the else branch. struct GTEST_API_ ConstCharPtr { ConstCharPtr(const char* str) : value(str) {} operator bool() const { return true; } const char* value; }; // A simple Linear Congruential Generator for generating random // numbers with a uniform distribution. Unlike rand() and srand(), it // doesn't use global state (and therefore can't interfere with user // code). Unlike rand_r(), it's portable. An LCG isn't very random, // but it's good enough for our purposes. class GTEST_API_ Random { public: static const UInt32 kMaxRange = 1u << 31; explicit Random(UInt32 seed) : state_(seed) {} void Reseed(UInt32 seed) { state_ = seed; } // Generates a random number from [0, range). Crashes if 'range' is // 0 or greater than kMaxRange. UInt32 Generate(UInt32 range); private: UInt32 state_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); }; // Defining a variable of type CompileAssertTypesEqual will cause a // compiler error iff T1 and T2 are different types. template struct CompileAssertTypesEqual; template struct CompileAssertTypesEqual { }; // Removes the reference from a type if it is a reference type, // otherwise leaves it unchanged. This is the same as // tr1::remove_reference, which is not widely available yet. template struct RemoveReference { typedef T type; }; // NOLINT template struct RemoveReference { typedef T type; }; // NOLINT // A handy wrapper around RemoveReference that works when the argument // T depends on template parameters. #define GTEST_REMOVE_REFERENCE_(T) \ typename ::testing::internal::RemoveReference::type // Removes const from a type if it is a const type, otherwise leaves // it unchanged. This is the same as tr1::remove_const, which is not // widely available yet. template struct RemoveConst { typedef T type; }; // NOLINT template struct RemoveConst { typedef T type; }; // NOLINT // MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above // definition to fail to remove the const in 'const int[3]' and 'const // char[3][4]'. The following specialization works around the bug. template struct RemoveConst { typedef typename RemoveConst::type type[N]; }; #if defined(_MSC_VER) && _MSC_VER < 1400 // This is the only specialization that allows VC++ 7.1 to remove const in // 'const int[3] and 'const int[3][4]'. However, it causes trouble with GCC // and thus needs to be conditionally compiled. template struct RemoveConst { typedef typename RemoveConst::type type[N]; }; #endif // A handy wrapper around RemoveConst that works when the argument // T depends on template parameters. #define GTEST_REMOVE_CONST_(T) \ typename ::testing::internal::RemoveConst::type // Turns const U&, U&, const U, and U all into U. #define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \ GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T)) // ImplicitlyConvertible::value is a compile-time bool // constant that's true iff type From can be implicitly converted to // type To. template class ImplicitlyConvertible { private: // We need the following helper functions only for their types. // They have no implementations. // MakeFrom() is an expression whose type is From. We cannot simply // use From(), as the type From may not have a public default // constructor. static typename AddReference::type MakeFrom(); // These two functions are overloaded. Given an expression // Helper(x), the compiler will pick the first version if x can be // implicitly converted to type To; otherwise it will pick the // second version. // // The first version returns a value of size 1, and the second // version returns a value of size 2. Therefore, by checking the // size of Helper(x), which can be done at compile time, we can tell // which version of Helper() is used, and hence whether x can be // implicitly converted to type To. static char Helper(To); static char (&Helper(...))[2]; // NOLINT // We have to put the 'public' section after the 'private' section, // or MSVC refuses to compile the code. public: #if defined(__BORLANDC__) // C++Builder cannot use member overload resolution during template // instantiation. The simplest workaround is to use its C++0x type traits // functions (C++Builder 2009 and above only). static const bool value = __is_convertible(From, To); #else // MSVC warns about implicitly converting from double to int for // possible loss of data, so we need to temporarily disable the // warning. GTEST_DISABLE_MSC_WARNINGS_PUSH_(4244) static const bool value = sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1; GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // __BORLANDC__ }; template const bool ImplicitlyConvertible::value; // IsAProtocolMessage::value is a compile-time bool constant that's // true iff T is type ProtocolMessage, proto2::Message, or a subclass // of those. template struct IsAProtocolMessage : public bool_constant< ImplicitlyConvertible::value || ImplicitlyConvertible::value> { }; // When the compiler sees expression IsContainerTest(0), if C is an // STL-style container class, the first overload of IsContainerTest // will be viable (since both C::iterator* and C::const_iterator* are // valid types and NULL can be implicitly converted to them). It will // be picked over the second overload as 'int' is a perfect match for // the type of argument 0. If C::iterator or C::const_iterator is not // a valid type, the first overload is not viable, and the second // overload will be picked. Therefore, we can determine whether C is // a container class by checking the type of IsContainerTest(0). // The value of the expression is insignificant. // // In C++11 mode we check the existence of a const_iterator and that an // iterator is properly implemented for the container. // // For pre-C++11 that we look for both C::iterator and C::const_iterator. // The reason is that C++ injects the name of a class as a member of the // class itself (e.g. you can refer to class iterator as either // 'iterator' or 'iterator::iterator'). If we look for C::iterator // only, for example, we would mistakenly think that a class named // iterator is an STL container. // // Also note that the simpler approach of overloading // IsContainerTest(typename C::const_iterator*) and // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++. typedef int IsContainer; #if GTEST_LANG_CXX11 template ().begin()), class = decltype(::std::declval().end()), class = decltype(++::std::declval()), class = decltype(*::std::declval()), class = typename C::const_iterator> IsContainer IsContainerTest(int /* dummy */) { return 0; } #else template IsContainer IsContainerTest(int /* dummy */, typename C::iterator* /* it */ = NULL, typename C::const_iterator* /* const_it */ = NULL) { return 0; } #endif // GTEST_LANG_CXX11 typedef char IsNotContainer; template IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } // Trait to detect whether a type T is a hash table. // The heuristic used is that the type contains an inner type `hasher` and does // not contain an inner type `reverse_iterator`. // If the container is iterable in reverse, then order might actually matter. template struct IsHashTable { private: template static char test(typename U::hasher*, typename U::reverse_iterator*); template static int test(typename U::hasher*, ...); template static char test(...); public: static const bool value = sizeof(test(0, 0)) == sizeof(int); }; template const bool IsHashTable::value; template struct VoidT { typedef void value_type; }; template struct HasValueType : false_type {}; template struct HasValueType > : true_type { }; template (0)) == sizeof(IsContainer), bool = HasValueType::value> struct IsRecursiveContainerImpl; template struct IsRecursiveContainerImpl : public false_type {}; // Since the IsRecursiveContainerImpl depends on the IsContainerTest we need to // obey the same inconsistencies as the IsContainerTest, namely check if // something is a container is relying on only const_iterator in C++11 and // is relying on both const_iterator and iterator otherwise template struct IsRecursiveContainerImpl : public false_type {}; template struct IsRecursiveContainerImpl { #if GTEST_LANG_CXX11 typedef typename IteratorTraits::value_type value_type; #else typedef typename IteratorTraits::value_type value_type; #endif typedef is_same type; }; // IsRecursiveContainer is a unary compile-time predicate that // evaluates whether C is a recursive container type. A recursive container // type is a container type whose value_type is equal to the container type // itself. An example for a recursive container type is // boost::filesystem::path, whose iterator has a value_type that is equal to // boost::filesystem::path. template struct IsRecursiveContainer : public IsRecursiveContainerImpl::type {}; // EnableIf::type is void when 'Cond' is true, and // undefined when 'Cond' is false. To use SFINAE to make a function // overload only apply when a particular expression is true, add // "typename EnableIf::type* = 0" as the last parameter. template struct EnableIf; template<> struct EnableIf { typedef void type; }; // NOLINT // Utilities for native arrays. // ArrayEq() compares two k-dimensional native arrays using the // elements' operator==, where k can be any integer >= 0. When k is // 0, ArrayEq() degenerates into comparing a single pair of values. template bool ArrayEq(const T* lhs, size_t size, const U* rhs); // This generic version is used when k is 0. template inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } // This overload is used when k >= 1. template inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { return internal::ArrayEq(lhs, N, rhs); } // This helper reduces code bloat. If we instead put its logic inside // the previous ArrayEq() function, arrays with different sizes would // lead to different copies of the template code. template bool ArrayEq(const T* lhs, size_t size, const U* rhs) { for (size_t i = 0; i != size; i++) { if (!internal::ArrayEq(lhs[i], rhs[i])) return false; } return true; } // Finds the first element in the iterator range [begin, end) that // equals elem. Element may be a native array type itself. template Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { for (Iter it = begin; it != end; ++it) { if (internal::ArrayEq(*it, elem)) return it; } return end; } // CopyArray() copies a k-dimensional native array using the elements' // operator=, where k can be any integer >= 0. When k is 0, // CopyArray() degenerates into copying a single value. template void CopyArray(const T* from, size_t size, U* to); // This generic version is used when k is 0. template inline void CopyArray(const T& from, U* to) { *to = from; } // This overload is used when k >= 1. template inline void CopyArray(const T(&from)[N], U(*to)[N]) { internal::CopyArray(from, N, *to); } // This helper reduces code bloat. If we instead put its logic inside // the previous CopyArray() function, arrays with different sizes // would lead to different copies of the template code. template void CopyArray(const T* from, size_t size, U* to) { for (size_t i = 0; i != size; i++) { internal::CopyArray(from[i], to + i); } } // The relation between an NativeArray object (see below) and the // native array it represents. // We use 2 different structs to allow non-copyable types to be used, as long // as RelationToSourceReference() is passed. struct RelationToSourceReference {}; struct RelationToSourceCopy {}; // Adapts a native array to a read-only STL-style container. Instead // of the complete STL container concept, this adaptor only implements // members useful for Google Mock's container matchers. New members // should be added as needed. To simplify the implementation, we only // support Element being a raw type (i.e. having no top-level const or // reference modifier). It's the client's responsibility to satisfy // this requirement. Element can be an array type itself (hence // multi-dimensional arrays are supported). template class NativeArray { public: // STL-style container typedefs. typedef Element value_type; typedef Element* iterator; typedef const Element* const_iterator; // Constructs from a native array. References the source. NativeArray(const Element* array, size_t count, RelationToSourceReference) { InitRef(array, count); } // Constructs from a native array. Copies the source. NativeArray(const Element* array, size_t count, RelationToSourceCopy) { InitCopy(array, count); } // Copy constructor. NativeArray(const NativeArray& rhs) { (this->*rhs.clone_)(rhs.array_, rhs.size_); } ~NativeArray() { if (clone_ != &NativeArray::InitRef) delete[] array_; } // STL-style container methods. size_t size() const { return size_; } const_iterator begin() const { return array_; } const_iterator end() const { return array_ + size_; } bool operator==(const NativeArray& rhs) const { return size() == rhs.size() && ArrayEq(begin(), size(), rhs.begin()); } private: enum { kCheckTypeIsNotConstOrAReference = StaticAssertTypeEqHelper< Element, GTEST_REMOVE_REFERENCE_AND_CONST_(Element)>::value }; // Initializes this object with a copy of the input. void InitCopy(const Element* array, size_t a_size) { Element* const copy = new Element[a_size]; CopyArray(array, a_size, copy); array_ = copy; size_ = a_size; clone_ = &NativeArray::InitCopy; } // Initializes this object with a reference of the input. void InitRef(const Element* array, size_t a_size) { array_ = array; size_ = a_size; clone_ = &NativeArray::InitRef; } const Element* array_; size_t size_; void (NativeArray::*clone_)(const Element*, size_t); GTEST_DISALLOW_ASSIGN_(NativeArray); }; } // namespace internal } // namespace testing #define GTEST_MESSAGE_AT_(file, line, message, result_type) \ ::testing::internal::AssertHelper(result_type, file, line, message) \ = ::testing::Message() #define GTEST_MESSAGE_(message, result_type) \ GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type) #define GTEST_FATAL_FAILURE_(message) \ return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) #define GTEST_NONFATAL_FAILURE_(message) \ GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) #define GTEST_SUCCESS_(message) \ GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) // Suppress MSVC warning 4702 (unreachable code) for the code following // statement if it returns or throws (or doesn't return or throw in some // situations). #define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ if (::testing::internal::AlwaysTrue()) { statement; } #define GTEST_TEST_THROW_(statement, expected_exception, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::ConstCharPtr gtest_msg = "") { \ bool gtest_caught_expected = false; \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } \ catch (expected_exception const&) { \ gtest_caught_expected = true; \ } \ catch (...) { \ gtest_msg.value = \ "Expected: " #statement " throws an exception of type " \ #expected_exception ".\n Actual: it throws a different type."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ } \ if (!gtest_caught_expected) { \ gtest_msg.value = \ "Expected: " #statement " throws an exception of type " \ #expected_exception ".\n Actual: it throws nothing."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \ fail(gtest_msg.value) #define GTEST_TEST_NO_THROW_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } \ catch (...) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ fail("Expected: " #statement " doesn't throw an exception.\n" \ " Actual: it throws.") #define GTEST_TEST_ANY_THROW_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ bool gtest_caught_any = false; \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } \ catch (...) { \ gtest_caught_any = true; \ } \ if (!gtest_caught_any) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ fail("Expected: " #statement " throws an exception.\n" \ " Actual: it doesn't.") // Implements Boolean test assertions such as EXPECT_TRUE. expression can be // either a boolean expression or an AssertionResult. text is a textual // represenation of expression as it was passed into the EXPECT_TRUE. #define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (const ::testing::AssertionResult gtest_ar_ = \ ::testing::AssertionResult(expression)) \ ; \ else \ fail(::testing::internal::GetBoolAssertionFailureMessage(\ gtest_ar_, text, #actual, #expected).c_str()) #define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ fail("Expected: " #statement " doesn't generate new fatal " \ "failures in the current thread.\n" \ " Actual: it does.") // Expands to the name of the class that implements the given test. #define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ test_case_name##_##test_name##_Test // Helper macro for defining tests. #define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\ class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ public:\ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ private:\ virtual void TestBody();\ static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\ GTEST_DISALLOW_COPY_AND_ASSIGN_(\ GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\ };\ \ ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\ ::test_info_ =\ ::testing::internal::MakeAndRegisterTestInfo(\ #test_case_name, #test_name, NULL, NULL, \ ::testing::internal::CodeLocation(__FILE__, __LINE__), \ (parent_id), \ parent_class::SetUpTestCase, \ parent_class::TearDownTestCase, \ new ::testing::internal::TestFactoryImpl<\ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\ void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the public API for death tests. It is // #included by gtest.h so a user doesn't need to include this // directly. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines internal utilities needed for implementing // death tests. They are subject to change without notice. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ #include namespace testing { namespace internal { GTEST_DECLARE_string_(internal_run_death_test); // Names of the flags (needed for parsing Google Test flags). const char kDeathTestStyleFlag[] = "death_test_style"; const char kDeathTestUseFork[] = "death_test_use_fork"; const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; #if GTEST_HAS_DEATH_TEST GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // DeathTest is a class that hides much of the complexity of the // GTEST_DEATH_TEST_ macro. It is abstract; its static Create method // returns a concrete class that depends on the prevailing death test // style, as defined by the --gtest_death_test_style and/or // --gtest_internal_run_death_test flags. // In describing the results of death tests, these terms are used with // the corresponding definitions: // // exit status: The integer exit information in the format specified // by wait(2) // exit code: The integer code passed to exit(3), _exit(2), or // returned from main() class GTEST_API_ DeathTest { public: // Create returns false if there was an error determining the // appropriate action to take for the current death test; for example, // if the gtest_death_test_style flag is set to an invalid value. // The LastMessage method will return a more detailed message in that // case. Otherwise, the DeathTest pointer pointed to by the "test" // argument is set. If the death test should be skipped, the pointer // is set to NULL; otherwise, it is set to the address of a new concrete // DeathTest object that controls the execution of the current test. static bool Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test); DeathTest(); virtual ~DeathTest() { } // A helper class that aborts a death test when it's deleted. class ReturnSentinel { public: explicit ReturnSentinel(DeathTest* test) : test_(test) { } ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } private: DeathTest* const test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); } GTEST_ATTRIBUTE_UNUSED_; // An enumeration of possible roles that may be taken when a death // test is encountered. EXECUTE means that the death test logic should // be executed immediately. OVERSEE means that the program should prepare // the appropriate environment for a child process to execute the death // test, then wait for it to complete. enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; // An enumeration of the three reasons that a test might be aborted. enum AbortReason { TEST_ENCOUNTERED_RETURN_STATEMENT, TEST_THREW_EXCEPTION, TEST_DID_NOT_DIE }; // Assumes one of the above roles. virtual TestRole AssumeRole() = 0; // Waits for the death test to finish and returns its status. virtual int Wait() = 0; // Returns true if the death test passed; that is, the test process // exited during the test, its exit status matches a user-supplied // predicate, and its stderr output matches a user-supplied regular // expression. // The user-supplied predicate may be a macro expression rather // than a function pointer or functor, or else Wait and Passed could // be combined. virtual bool Passed(bool exit_status_ok) = 0; // Signals that the death test did not die as expected. virtual void Abort(AbortReason reason) = 0; // Returns a human-readable outcome message regarding the outcome of // the last death test. static const char* LastMessage(); static void set_last_death_test_message(const std::string& message); private: // A string containing a description of the outcome of the last death test. static std::string last_death_test_message_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); }; GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // Factory interface for death tests. May be mocked out for testing. class DeathTestFactory { public: virtual ~DeathTestFactory() { } virtual bool Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) = 0; }; // A concrete DeathTestFactory implementation for normal use. class DefaultDeathTestFactory : public DeathTestFactory { public: virtual bool Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test); }; // Returns true if exit_status describes a process that was terminated // by a signal, or exited normally with a nonzero exit code. GTEST_API_ bool ExitedUnsuccessfully(int exit_status); // Traps C++ exceptions escaping statement and reports them as test // failures. Note that trapping SEH exceptions is not implemented here. # if GTEST_HAS_EXCEPTIONS # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } catch (const ::std::exception& gtest_exception) { \ fprintf(\ stderr, \ "\n%s: Caught std::exception-derived exception escaping the " \ "death test statement. Exception message: %s\n", \ ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \ gtest_exception.what()); \ fflush(stderr); \ death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ } catch (...) { \ death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ } # else # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) # endif // This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, // ASSERT_EXIT*, and EXPECT_EXIT*. # define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ const ::testing::internal::RE& gtest_regex = (regex); \ ::testing::internal::DeathTest* gtest_dt; \ if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ __FILE__, __LINE__, >est_dt)) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ } \ if (gtest_dt != NULL) { \ ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \ gtest_dt_ptr(gtest_dt); \ switch (gtest_dt->AssumeRole()) { \ case ::testing::internal::DeathTest::OVERSEE_TEST: \ if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ } \ break; \ case ::testing::internal::DeathTest::EXECUTE_TEST: { \ ::testing::internal::DeathTest::ReturnSentinel \ gtest_sentinel(gtest_dt); \ GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \ gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ break; \ } \ default: \ break; \ } \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \ fail(::testing::internal::DeathTest::LastMessage()) // The symbol "fail" here expands to something into which a message // can be streamed. // This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in // NDEBUG mode. In this case we need the statements to be executed and the macro // must accept a streamed message even though the message is never printed. // The regex object is not evaluated, but it is used to prevent "unused" // warnings and to avoid an expression that doesn't compile in debug mode. #define GTEST_EXECUTE_STATEMENT_(statement, regex) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } else if (!::testing::internal::AlwaysTrue()) { \ const ::testing::internal::RE& gtest_regex = (regex); \ static_cast(gtest_regex); \ } else \ ::testing::Message() // A class representing the parsed contents of the // --gtest_internal_run_death_test flag, as it existed when // RUN_ALL_TESTS was called. class InternalRunDeathTestFlag { public: InternalRunDeathTestFlag(const std::string& a_file, int a_line, int an_index, int a_write_fd) : file_(a_file), line_(a_line), index_(an_index), write_fd_(a_write_fd) {} ~InternalRunDeathTestFlag() { if (write_fd_ >= 0) posix::Close(write_fd_); } const std::string& file() const { return file_; } int line() const { return line_; } int index() const { return index_; } int write_fd() const { return write_fd_; } private: std::string file_; int line_; int index_; int write_fd_; GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); }; // Returns a newly created InternalRunDeathTestFlag object with fields // initialized from the GTEST_FLAG(internal_run_death_test) flag if // the flag is specified; otherwise returns NULL. InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); #endif // GTEST_HAS_DEATH_TEST } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ namespace testing { // This flag controls the style of death tests. Valid values are "threadsafe", // meaning that the death test child process will re-execute the test binary // from the start, running only a single death test, or "fast", // meaning that the child process will execute the test logic immediately // after forking. GTEST_DECLARE_string_(death_test_style); #if GTEST_HAS_DEATH_TEST namespace internal { // Returns a Boolean value indicating whether the caller is currently // executing in the context of the death test child process. Tools such as // Valgrind heap checkers may need this to modify their behavior in death // tests. IMPORTANT: This is an internal utility. Using it may break the // implementation of death tests. User code MUST NOT use it. GTEST_API_ bool InDeathTestChild(); } // namespace internal // The following macros are useful for writing death tests. // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is // executed: // // 1. It generates a warning if there is more than one active // thread. This is because it's safe to fork() or clone() only // when there is a single thread. // // 2. The parent process clone()s a sub-process and runs the death // test in it; the sub-process exits with code 0 at the end of the // death test, if it hasn't exited already. // // 3. The parent process waits for the sub-process to terminate. // // 4. The parent process checks the exit code and error message of // the sub-process. // // Examples: // // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); // for (int i = 0; i < 5; i++) { // EXPECT_DEATH(server.ProcessRequest(i), // "Invalid request .* in ProcessRequest()") // << "Failed to die on request " << i; // } // // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); // // bool KilledBySIGHUP(int exit_code) { // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; // } // // ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); // // On the regular expressions used in death tests: // // GOOGLETEST_CM0005 DO NOT DELETE // On POSIX-compliant systems (*nix), we use the library, // which uses the POSIX extended regex syntax. // // On other platforms (e.g. Windows or Mac), we only support a simple regex // syntax implemented as part of Google Test. This limited // implementation should be enough most of the time when writing // death tests; though it lacks many features you can find in PCRE // or POSIX extended regex syntax. For example, we don't support // union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and // repetition count ("x{5,7}"), among others. // // Below is the syntax that we do support. We chose it to be a // subset of both PCRE and POSIX extended regex, so it's easy to // learn wherever you come from. In the following: 'A' denotes a // literal character, period (.), or a single \\ escape sequence; // 'x' and 'y' denote regular expressions; 'm' and 'n' are for // natural numbers. // // c matches any literal character c // \\d matches any decimal digit // \\D matches any character that's not a decimal digit // \\f matches \f // \\n matches \n // \\r matches \r // \\s matches any ASCII whitespace, including \n // \\S matches any character that's not a whitespace // \\t matches \t // \\v matches \v // \\w matches any letter, _, or decimal digit // \\W matches any character that \\w doesn't match // \\c matches any literal character c, which must be a punctuation // . matches any single character except \n // A? matches 0 or 1 occurrences of A // A* matches 0 or many occurrences of A // A+ matches 1 or many occurrences of A // ^ matches the beginning of a string (not that of each line) // $ matches the end of a string (not that of each line) // xy matches x followed by y // // If you accidentally use PCRE or POSIX extended regex features // not implemented by us, you will get a run-time failure. In that // case, please try to rewrite your regular expression within the // above syntax. // // This implementation is *not* meant to be as highly tuned or robust // as a compiled regex library, but should perform well enough for a // death test, which already incurs significant overhead by launching // a child process. // // Known caveats: // // A "threadsafe" style death test obtains the path to the test // program from argv[0] and re-executes it in the sub-process. For // simplicity, the current implementation doesn't search the PATH // when launching the sub-process. This means that the user must // invoke the test program via a path that contains at least one // path separator (e.g. path/to/foo_test and // /absolute/path/to/bar_test are fine, but foo_test is not). This // is rarely a problem as people usually don't put the test binary // directory in PATH. // // FIXME: make thread-safe death tests search the PATH. // Asserts that a given statement causes the program to exit, with an // integer exit status that satisfies predicate, and emitting error output // that matches regex. # define ASSERT_EXIT(statement, predicate, regex) \ GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) // Like ASSERT_EXIT, but continues on to successive tests in the // test case, if any: # define EXPECT_EXIT(statement, predicate, regex) \ GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) // Asserts that a given statement causes the program to exit, either by // explicitly exiting with a nonzero exit code or being killed by a // signal, and emitting error output that matches regex. # define ASSERT_DEATH(statement, regex) \ ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) // Like ASSERT_DEATH, but continues on to successive tests in the // test case, if any: # define EXPECT_DEATH(statement, regex) \ EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: // Tests that an exit code describes a normal exit with a given exit code. class GTEST_API_ ExitedWithCode { public: explicit ExitedWithCode(int exit_code); bool operator()(int exit_status) const; private: // No implementation - assignment is unsupported. void operator=(const ExitedWithCode& other); const int exit_code_; }; # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Tests that an exit code describes an exit due to termination by a // given signal. // GOOGLETEST_CM0006 DO NOT DELETE class GTEST_API_ KilledBySignal { public: explicit KilledBySignal(int signum); bool operator()(int exit_status) const; private: const int signum_; }; # endif // !GTEST_OS_WINDOWS // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. // The death testing framework causes this to have interesting semantics, // since the sideeffects of the call are only visible in opt mode, and not // in debug mode. // // In practice, this can be used to test functions that utilize the // LOG(DFATAL) macro using the following style: // // int DieInDebugOr12(int* sideeffect) { // if (sideeffect) { // *sideeffect = 12; // } // LOG(DFATAL) << "death"; // return 12; // } // // TEST(TestCase, TestDieOr12WorksInDgbAndOpt) { // int sideeffect = 0; // // Only asserts in dbg. // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); // // #ifdef NDEBUG // // opt-mode has sideeffect visible. // EXPECT_EQ(12, sideeffect); // #else // // dbg-mode no visible sideeffect. // EXPECT_EQ(0, sideeffect); // #endif // } // // This will assert that DieInDebugReturn12InOpt() crashes in debug // mode, usually due to a DCHECK or LOG(DFATAL), but returns the // appropriate fallback value (12 in this case) in opt mode. If you // need to test that a function has appropriate side-effects in opt // mode, include assertions against the side-effects. A general // pattern for this is: // // EXPECT_DEBUG_DEATH({ // // Side-effects here will have an effect after this statement in // // opt mode, but none in debug mode. // EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); // }, "death"); // # ifdef NDEBUG # define EXPECT_DEBUG_DEATH(statement, regex) \ GTEST_EXECUTE_STATEMENT_(statement, regex) # define ASSERT_DEBUG_DEATH(statement, regex) \ GTEST_EXECUTE_STATEMENT_(statement, regex) # else # define EXPECT_DEBUG_DEATH(statement, regex) \ EXPECT_DEATH(statement, regex) # define ASSERT_DEBUG_DEATH(statement, regex) \ ASSERT_DEATH(statement, regex) # endif // NDEBUG for EXPECT_DEBUG_DEATH #endif // GTEST_HAS_DEATH_TEST // This macro is used for implementing macros such as // EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where // death tests are not supported. Those macros must compile on such systems // iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on // systems that support death tests. This allows one to write such a macro // on a system that does not support death tests and be sure that it will // compile on a death-test supporting system. It is exposed publicly so that // systems that have death-tests with stricter requirements than // GTEST_HAS_DEATH_TEST can write their own equivalent of // EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED. // // Parameters: // statement - A statement that a macro such as EXPECT_DEATH would test // for program termination. This macro has to make sure this // statement is compiled but not executed, to ensure that // EXPECT_DEATH_IF_SUPPORTED compiles with a certain // parameter iff EXPECT_DEATH compiles with it. // regex - A regex that a macro such as EXPECT_DEATH would use to test // the output of statement. This parameter has to be // compiled but not evaluated by this macro, to ensure that // this macro only accepts expressions that a macro such as // EXPECT_DEATH would accept. // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED // and a return statement for ASSERT_DEATH_IF_SUPPORTED. // This ensures that ASSERT_DEATH_IF_SUPPORTED will not // compile inside functions where ASSERT_DEATH doesn't // compile. // // The branch that has an always false condition is used to ensure that // statement and regex are compiled (and thus syntactically correct) but // never executed. The unreachable code macro protects the terminator // statement from generating an 'unreachable code' warning in case // statement unconditionally returns or throws. The Message constructor at // the end allows the syntax of streaming additional messages into the // macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ GTEST_LOG_(WARNING) \ << "Death tests are not supported on this platform.\n" \ << "Statement '" #statement "' cannot be verified."; \ } else if (::testing::internal::AlwaysFalse()) { \ ::testing::internal::RE::PartialMatch(".*", (regex)); \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ terminator; \ } else \ ::testing::Message() // EXPECT_DEATH_IF_SUPPORTED(statement, regex) and // ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if // death tests are supported; otherwise they just issue a warning. This is // useful when you are combining death test assertions with normal test // assertions in one test. #if GTEST_HAS_DEATH_TEST # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ EXPECT_DEATH(statement, regex) # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ ASSERT_DEATH(statement, regex) #else # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, ) # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, return) #endif } // namespace testing #endif // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ // This file was GENERATED by command: // pump.py gtest-param-test.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Macros and functions for implementing parameterized tests // in Google C++ Testing and Mocking Framework (Google Test) // // This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ #define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ // Value-parameterized tests allow you to test your code with different // parameters without writing multiple copies of the same test. // // Here is how you use value-parameterized tests: #if 0 // To write value-parameterized tests, first you should define a fixture // class. It is usually derived from testing::TestWithParam (see below for // another inheritance scheme that's sometimes useful in more complicated // class hierarchies), where the type of your parameter values. // TestWithParam is itself derived from testing::Test. T can be any // copyable type. If it's a raw pointer, you are responsible for managing the // lifespan of the pointed values. class FooTest : public ::testing::TestWithParam { // You can implement all the usual class fixture members here. }; // Then, use the TEST_P macro to define as many parameterized tests // for this fixture as you want. The _P suffix is for "parameterized" // or "pattern", whichever you prefer to think. TEST_P(FooTest, DoesBlah) { // Inside a test, access the test parameter with the GetParam() method // of the TestWithParam class: EXPECT_TRUE(foo.Blah(GetParam())); ... } TEST_P(FooTest, HasBlahBlah) { ... } // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test // case with any set of parameters you want. Google Test defines a number // of functions for generating test parameters. They return what we call // (surprise!) parameter generators. Here is a summary of them, which // are all in the testing namespace: // // // Range(begin, end [, step]) - Yields values {begin, begin+step, // begin+step+step, ...}. The values do not // include end. step defaults to 1. // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. // ValuesIn(container) - Yields values from a C-style array, an STL // ValuesIn(begin,end) container, or an iterator range [begin, end). // Bool() - Yields sequence {false, true}. // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product // for the math savvy) of the values generated // by the N generators. // // For more details, see comments at the definitions of these functions below // in this file. // // The following statement will instantiate tests from the FooTest test case // each with parameter values "meeny", "miny", and "moe". INSTANTIATE_TEST_CASE_P(InstantiationName, FooTest, Values("meeny", "miny", "moe")); // To distinguish different instances of the pattern, (yes, you // can instantiate it more then once) the first argument to the // INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the // actual test case name. Remember to pick unique prefixes for different // instantiations. The tests from the instantiation above will have // these names: // // * InstantiationName/FooTest.DoesBlah/0 for "meeny" // * InstantiationName/FooTest.DoesBlah/1 for "miny" // * InstantiationName/FooTest.DoesBlah/2 for "moe" // * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" // * InstantiationName/FooTest.HasBlahBlah/1 for "miny" // * InstantiationName/FooTest.HasBlahBlah/2 for "moe" // // You can use these names in --gtest_filter. // // This statement will instantiate all tests from FooTest again, each // with parameter values "cat" and "dog": const char* pets[] = {"cat", "dog"}; INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); // The tests from the instantiation above will have these names: // // * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" // * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" // * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" // * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" // // Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests // in the given test case, whether their definitions come before or // AFTER the INSTANTIATE_TEST_CASE_P statement. // // Please also note that generator expressions (including parameters to the // generators) are evaluated in InitGoogleTest(), after main() has started. // This allows the user on one hand, to adjust generator parameters in order // to dynamically determine a set of tests to run and on the other hand, // give the user a chance to inspect the generated tests with Google Test // reflection API before RUN_ALL_TESTS() is executed. // // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc // for more examples. // // In the future, we plan to publish the API for defining new parameter // generators. But for now this interface remains part of the internal // implementation and is subject to change. // // // A parameterized test fixture must be derived from testing::Test and from // testing::WithParamInterface, where T is the type of the parameter // values. Inheriting from TestWithParam satisfies that requirement because // TestWithParam inherits from both Test and WithParamInterface. In more // complicated hierarchies, however, it is occasionally useful to inherit // separately from Test and WithParamInterface. For example: class BaseTest : public ::testing::Test { // You can inherit all the usual members for a non-parameterized test // fixture here. }; class DerivedTest : public BaseTest, public ::testing::WithParamInterface { // The usual test fixture members go here too. }; TEST_F(BaseTest, HasFoo) { // This is an ordinary non-parameterized test. } TEST_P(DerivedTest, DoesBlah) { // GetParam works just the same here as if you inherit from TestWithParam. EXPECT_TRUE(foo.Blah(GetParam())); } #endif // 0 #if !GTEST_OS_SYMBIAN # include #endif // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Type and function utilities for implementing parameterized tests. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ #include #include #include #include #include // Copyright 2003 Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // A "smart" pointer type with reference tracking. Every pointer to a // particular object is kept on a circular linked list. When the last pointer // to an object is destroyed or reassigned, the object is deleted. // // Used properly, this deletes the object when the last reference goes away. // There are several caveats: // - Like all reference counting schemes, cycles lead to leaks. // - Each smart pointer is actually two pointers (8 bytes instead of 4). // - Every time a pointer is assigned, the entire list of pointers to that // object is traversed. This class is therefore NOT SUITABLE when there // will often be more than two or three pointers to a particular object. // - References are only tracked as long as linked_ptr<> objects are copied. // If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS // will happen (double deletion). // // A good use of this class is storing object references in STL containers. // You can safely put linked_ptr<> in a vector<>. // Other uses may not be as good. // // Note: If you use an incomplete type with linked_ptr<>, the class // *containing* linked_ptr<> must have a constructor and destructor (even // if they do nothing!). // // Bill Gibbons suggested we use something like this. // // Thread Safety: // Unlike other linked_ptr implementations, in this implementation // a linked_ptr object is thread-safe in the sense that: // - it's safe to copy linked_ptr objects concurrently, // - it's safe to copy *from* a linked_ptr and read its underlying // raw pointer (e.g. via get()) concurrently, and // - it's safe to write to two linked_ptrs that point to the same // shared object concurrently. // FIXME: rename this to safe_linked_ptr to avoid // confusion with normal linked_ptr. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ #include #include namespace testing { namespace internal { // Protects copying of all linked_ptr objects. GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); // This is used internally by all instances of linked_ptr<>. It needs to be // a non-template class because different types of linked_ptr<> can refer to // the same object (linked_ptr(obj) vs linked_ptr(obj)). // So, it needs to be possible for different types of linked_ptr to participate // in the same circular linked list, so we need a single class type here. // // DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. class linked_ptr_internal { public: // Create a new circle that includes only this instance. void join_new() { next_ = this; } // Many linked_ptr operations may change p.link_ for some linked_ptr // variable p in the same circle as this object. Therefore we need // to prevent two such operations from occurring concurrently. // // Note that different types of linked_ptr objects can coexist in a // circle (e.g. linked_ptr, linked_ptr, and // linked_ptr). Therefore we must use a single mutex to // protect all linked_ptr objects. This can create serious // contention in production code, but is acceptable in a testing // framework. // Join an existing circle. void join(linked_ptr_internal const* ptr) GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { MutexLock lock(&g_linked_ptr_mutex); linked_ptr_internal const* p = ptr; while (p->next_ != ptr) { assert(p->next_ != this && "Trying to join() a linked ring we are already in. " "Is GMock thread safety enabled?"); p = p->next_; } p->next_ = this; next_ = ptr; } // Leave whatever circle we're part of. Returns true if we were the // last member of the circle. Once this is done, you can join() another. bool depart() GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { MutexLock lock(&g_linked_ptr_mutex); if (next_ == this) return true; linked_ptr_internal const* p = next_; while (p->next_ != this) { assert(p->next_ != next_ && "Trying to depart() a linked ring we are not in. " "Is GMock thread safety enabled?"); p = p->next_; } p->next_ = next_; return false; } private: mutable linked_ptr_internal const* next_; }; template class linked_ptr { public: typedef T element_type; // Take over ownership of a raw pointer. This should happen as soon as // possible after the object is created. explicit linked_ptr(T* ptr = NULL) { capture(ptr); } ~linked_ptr() { depart(); } // Copy an existing linked_ptr<>, adding ourselves to the list of references. template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } linked_ptr(linked_ptr const& ptr) { // NOLINT assert(&ptr != this); copy(&ptr); } // Assignment releases the old value and acquires the new. template linked_ptr& operator=(linked_ptr const& ptr) { depart(); copy(&ptr); return *this; } linked_ptr& operator=(linked_ptr const& ptr) { if (&ptr != this) { depart(); copy(&ptr); } return *this; } // Smart pointer members. void reset(T* ptr = NULL) { depart(); capture(ptr); } T* get() const { return value_; } T* operator->() const { return value_; } T& operator*() const { return *value_; } bool operator==(T* p) const { return value_ == p; } bool operator!=(T* p) const { return value_ != p; } template bool operator==(linked_ptr const& ptr) const { return value_ == ptr.get(); } template bool operator!=(linked_ptr const& ptr) const { return value_ != ptr.get(); } private: template friend class linked_ptr; T* value_; linked_ptr_internal link_; void depart() { if (link_.depart()) delete value_; } void capture(T* ptr) { value_ = ptr; link_.join_new(); } template void copy(linked_ptr const* ptr) { value_ = ptr->get(); if (value_) link_.join(&ptr->link_); else link_.join_new(); } }; template inline bool operator==(T* ptr, const linked_ptr& x) { return ptr == x.get(); } template inline bool operator!=(T* ptr, const linked_ptr& x) { return ptr != x.get(); } // A function to convert T* into linked_ptr // Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation // for linked_ptr >(new FooBarBaz(arg)) template linked_ptr make_linked_ptr(T* ptr) { return linked_ptr(ptr); } } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Google Test - The Google C++ Testing and Mocking Framework // // This file implements a universal value printer that can print a // value of any type T: // // void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); // // A user can teach this function how to print a class type T by // defining either operator<<() or PrintTo() in the namespace that // defines T. More specifically, the FIRST defined function in the // following list will be used (assuming T is defined in namespace // foo): // // 1. foo::PrintTo(const T&, ostream*) // 2. operator<<(ostream&, const T&) defined in either foo or the // global namespace. // // However if T is an STL-style container then it is printed element-wise // unless foo::PrintTo(const T&, ostream*) is defined. Note that // operator<<() is ignored for container types. // // If none of the above is defined, it will print the debug string of // the value if it is a protocol buffer, or print the raw bytes in the // value otherwise. // // To aid debugging: when T is a reference type, the address of the // value is also printed; when T is a (const) char pointer, both the // pointer value and the NUL-terminated string it points to are // printed. // // We also provide some convenient wrappers: // // // Prints a value to a string. For a (const or not) char // // pointer, the NUL-terminated string (but not the pointer) is // // printed. // std::string ::testing::PrintToString(const T& value); // // // Prints a value tersely: for a reference type, the referenced // // value (but not the address) is printed; for a (const or not) char // // pointer, the NUL-terminated string (but not the pointer) is // // printed. // void ::testing::internal::UniversalTersePrint(const T& value, ostream*); // // // Prints value using the type inferred by the compiler. The difference // // from UniversalTersePrint() is that this function prints both the // // pointer and the NUL-terminated string for a (const or not) char pointer. // void ::testing::internal::UniversalPrint(const T& value, ostream*); // // // Prints the fields of a tuple tersely to a string vector, one // // element for each field. Tuple support must be enabled in // // gtest-port.h. // std::vector UniversalTersePrintTupleFieldsToStrings( // const Tuple& value); // // Known limitation: // // The print primitives print the elements of an STL-style container // using the compiler-inferred type of *iter where iter is a // const_iterator of the container. When const_iterator is an input // iterator but not a forward iterator, this inferred type may not // match value_type, and the print output may be incorrect. In // practice, this is rarely a problem as for most containers // const_iterator is a forward iterator. We'll fix this if there's an // actual need for it. Note that this fix cannot rely on value_type // being defined as many user-defined container types don't have // value_type. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ #define GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ #include // NOLINT #include #include #include #include #if GTEST_HAS_STD_TUPLE_ # include #endif #if GTEST_HAS_ABSL #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "absl/types/variant.h" #endif // GTEST_HAS_ABSL namespace testing { // Definitions in the 'internal' and 'internal2' name spaces are // subject to change without notice. DO NOT USE THEM IN USER CODE! namespace internal2 { // Prints the given number of bytes in the given object to the given // ostream. GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ::std::ostream* os); // For selecting which printer to use when a given type has neither << // nor PrintTo(). enum TypeKind { kProtobuf, // a protobuf type kConvertibleToInteger, // a type implicitly convertible to BiggestInt // (e.g. a named or unnamed enum type) #if GTEST_HAS_ABSL kConvertibleToStringView, // a type implicitly convertible to // absl::string_view #endif kOtherType // anything else }; // TypeWithoutFormatter::PrintValue(value, os) is called // by the universal printer to print a value of type T when neither // operator<< nor PrintTo() is defined for T, where kTypeKind is the // "kind" of T as defined by enum TypeKind. template class TypeWithoutFormatter { public: // This default version is called when kTypeKind is kOtherType. static void PrintValue(const T& value, ::std::ostream* os) { PrintBytesInObjectTo(static_cast( reinterpret_cast(&value)), sizeof(value), os); } }; // We print a protobuf using its ShortDebugString() when the string // doesn't exceed this many characters; otherwise we print it using // DebugString() for better readability. const size_t kProtobufOneLinerMaxLength = 50; template class TypeWithoutFormatter { public: static void PrintValue(const T& value, ::std::ostream* os) { std::string pretty_str = value.ShortDebugString(); if (pretty_str.length() > kProtobufOneLinerMaxLength) { pretty_str = "\n" + value.DebugString(); } *os << ("<" + pretty_str + ">"); } }; template class TypeWithoutFormatter { public: // Since T has no << operator or PrintTo() but can be implicitly // converted to BiggestInt, we print it as a BiggestInt. // // Most likely T is an enum type (either named or unnamed), in which // case printing it as an integer is the desired behavior. In case // T is not an enum, printing it as an integer is the best we can do // given that it has no user-defined printer. static void PrintValue(const T& value, ::std::ostream* os) { const internal::BiggestInt kBigInt = value; *os << kBigInt; } }; #if GTEST_HAS_ABSL template class TypeWithoutFormatter { public: // Since T has neither operator<< nor PrintTo() but can be implicitly // converted to absl::string_view, we print it as a absl::string_view. // // Note: the implementation is further below, as it depends on // internal::PrintTo symbol which is defined later in the file. static void PrintValue(const T& value, ::std::ostream* os); }; #endif // Prints the given value to the given ostream. If the value is a // protocol message, its debug string is printed; if it's an enum or // of a type implicitly convertible to BiggestInt, it's printed as an // integer; otherwise the bytes in the value are printed. This is // what UniversalPrinter::Print() does when it knows nothing about // type T and T has neither << operator nor PrintTo(). // // A user can override this behavior for a class type Foo by defining // a << operator in the namespace where Foo is defined. // // We put this operator in namespace 'internal2' instead of 'internal' // to simplify the implementation, as much code in 'internal' needs to // use << in STL, which would conflict with our own << were it defined // in 'internal'. // // Note that this operator<< takes a generic std::basic_ostream type instead of the more restricted std::ostream. If // we define it to take an std::ostream instead, we'll get an // "ambiguous overloads" compiler error when trying to print a type // Foo that supports streaming to std::basic_ostream, as the compiler cannot tell whether // operator<<(std::ostream&, const T&) or // operator<<(std::basic_stream, const Foo&) is more // specific. template ::std::basic_ostream& operator<<( ::std::basic_ostream& os, const T& x) { TypeWithoutFormatter::value ? kProtobuf : internal::ImplicitlyConvertible< const T&, internal::BiggestInt>::value ? kConvertibleToInteger : #if GTEST_HAS_ABSL internal::ImplicitlyConvertible< const T&, absl::string_view>::value ? kConvertibleToStringView : #endif kOtherType)>::PrintValue(x, &os); return os; } } // namespace internal2 } // namespace testing // This namespace MUST NOT BE NESTED IN ::testing, or the name look-up // magic needed for implementing UniversalPrinter won't work. namespace testing_internal { // Used to print a value that is not an STL-style container when the // user doesn't define PrintTo() for it. template void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) { // With the following statement, during unqualified name lookup, // testing::internal2::operator<< appears as if it was declared in // the nearest enclosing namespace that contains both // ::testing_internal and ::testing::internal2, i.e. the global // namespace. For more details, refer to the C++ Standard section // 7.3.4-1 [namespace.udir]. This allows us to fall back onto // testing::internal2::operator<< in case T doesn't come with a << // operator. // // We cannot write 'using ::testing::internal2::operator<<;', which // gcc 3.3 fails to compile due to a compiler bug. using namespace ::testing::internal2; // NOLINT // Assuming T is defined in namespace foo, in the next statement, // the compiler will consider all of: // // 1. foo::operator<< (thanks to Koenig look-up), // 2. ::operator<< (as the current namespace is enclosed in ::), // 3. testing::internal2::operator<< (thanks to the using statement above). // // The operator<< whose type matches T best will be picked. // // We deliberately allow #2 to be a candidate, as sometimes it's // impossible to define #1 (e.g. when foo is ::std, defining // anything in it is undefined behavior unless you are a compiler // vendor.). *os << value; } } // namespace testing_internal namespace testing { namespace internal { // FormatForComparison::Format(value) formats a // value of type ToPrint that is an operand of a comparison assertion // (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in // the comparison, and is used to help determine the best way to // format the value. In particular, when the value is a C string // (char pointer) and the other operand is an STL string object, we // want to format the C string as a string, since we know it is // compared by value with the string object. If the value is a char // pointer but the other operand is not an STL string object, we don't // know whether the pointer is supposed to point to a NUL-terminated // string, and thus want to print it as a pointer to be safe. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // The default case. template class FormatForComparison { public: static ::std::string Format(const ToPrint& value) { return ::testing::PrintToString(value); } }; // Array. template class FormatForComparison { public: static ::std::string Format(const ToPrint* value) { return FormatForComparison::Format(value); } }; // By default, print C string as pointers to be safe, as we don't know // whether they actually point to a NUL-terminated string. #define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType) \ template \ class FormatForComparison { \ public: \ static ::std::string Format(CharType* value) { \ return ::testing::PrintToString(static_cast(value)); \ } \ } GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(wchar_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const wchar_t); #undef GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ // If a C string is compared with an STL string object, we know it's meant // to point to a NUL-terminated string, and thus can print it as a string. #define GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(CharType, OtherStringType) \ template <> \ class FormatForComparison { \ public: \ static ::std::string Format(CharType* value) { \ return ::testing::PrintToString(value); \ } \ } GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::std::string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::std::string); #if GTEST_HAS_GLOBAL_STRING GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::string); #endif #if GTEST_HAS_GLOBAL_WSTRING GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::wstring); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::wstring); #endif #if GTEST_HAS_STD_WSTRING GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::std::wstring); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::std::wstring); #endif #undef GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) // operand to be used in a failure message. The type (but not value) // of the other operand may affect the format. This allows us to // print a char* as a raw pointer when it is compared against another // char* or void*, and print it as a C string when it is compared // against an std::string object, for example. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. template std::string FormatForComparisonFailureMessage( const T1& value, const T2& /* other_operand */) { return FormatForComparison::Format(value); } // UniversalPrinter::Print(value, ostream_ptr) prints the given // value to the given ostream. The caller must ensure that // 'ostream_ptr' is not NULL, or the behavior is undefined. // // We define UniversalPrinter as a class template (as opposed to a // function template), as we need to partially specialize it for // reference types, which cannot be done with function templates. template class UniversalPrinter; template void UniversalPrint(const T& value, ::std::ostream* os); enum DefaultPrinterType { kPrintContainer, kPrintPointer, kPrintFunctionPointer, kPrintOther, }; template struct WrapPrinterType {}; // Used to print an STL-style container when the user doesn't define // a PrintTo() for it. template void DefaultPrintTo(WrapPrinterType /* dummy */, const C& container, ::std::ostream* os) { const size_t kMaxCount = 32; // The maximum number of elements to print. *os << '{'; size_t count = 0; for (typename C::const_iterator it = container.begin(); it != container.end(); ++it, ++count) { if (count > 0) { *os << ','; if (count == kMaxCount) { // Enough has been printed. *os << " ..."; break; } } *os << ' '; // We cannot call PrintTo(*it, os) here as PrintTo() doesn't // handle *it being a native array. internal::UniversalPrint(*it, os); } if (count > 0) { *os << ' '; } *os << '}'; } // Used to print a pointer that is neither a char pointer nor a member // pointer, when the user doesn't define PrintTo() for it. (A member // variable pointer or member function pointer doesn't really point to // a location in the address space. Their representation is // implementation-defined. Therefore they will be printed as raw // bytes.) template void DefaultPrintTo(WrapPrinterType /* dummy */, T* p, ::std::ostream* os) { if (p == NULL) { *os << "NULL"; } else { // T is not a function type. We just call << to print p, // relying on ADL to pick up user-defined << for their pointer // types, if any. *os << p; } } template void DefaultPrintTo(WrapPrinterType /* dummy */, T* p, ::std::ostream* os) { if (p == NULL) { *os << "NULL"; } else { // T is a function type, so '*os << p' doesn't do what we want // (it just prints p as bool). We want to print p as a const // void*. *os << reinterpret_cast(p); } } // Used to print a non-container, non-pointer value when the user // doesn't define PrintTo() for it. template void DefaultPrintTo(WrapPrinterType /* dummy */, const T& value, ::std::ostream* os) { ::testing_internal::DefaultPrintNonContainerTo(value, os); } // Prints the given value using the << operator if it has one; // otherwise prints the bytes in it. This is what // UniversalPrinter::Print() does when PrintTo() is not specialized // or overloaded for type T. // // A user can override this behavior for a class type Foo by defining // an overload of PrintTo() in the namespace where Foo is defined. We // give the user this option as sometimes defining a << operator for // Foo is not desirable (e.g. the coding style may prevent doing it, // or there is already a << operator but it doesn't do what the user // wants). template void PrintTo(const T& value, ::std::ostream* os) { // DefaultPrintTo() is overloaded. The type of its first argument // determines which version will be picked. // // Note that we check for container types here, prior to we check // for protocol message types in our operator<<. The rationale is: // // For protocol messages, we want to give people a chance to // override Google Mock's format by defining a PrintTo() or // operator<<. For STL containers, other formats can be // incompatible with Google Mock's format for the container // elements; therefore we check for container types here to ensure // that our format is used. // // Note that MSVC and clang-cl do allow an implicit conversion from // pointer-to-function to pointer-to-object, but clang-cl warns on it. // So don't use ImplicitlyConvertible if it can be helped since it will // cause this warning, and use a separate overload of DefaultPrintTo for // function pointers so that the `*os << p` in the object pointer overload // doesn't cause that warning either. DefaultPrintTo( WrapPrinterType < (sizeof(IsContainerTest(0)) == sizeof(IsContainer)) && !IsRecursiveContainer::value ? kPrintContainer : !is_pointer::value ? kPrintOther #if GTEST_LANG_CXX11 : std::is_function::type>::value #else : !internal::ImplicitlyConvertible::value #endif ? kPrintFunctionPointer : kPrintPointer > (), value, os); } // The following list of PrintTo() overloads tells // UniversalPrinter::Print() how to print standard types (built-in // types, strings, plain arrays, and pointers). // Overloads for various char types. GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); inline void PrintTo(char c, ::std::ostream* os) { // When printing a plain char, we always treat it as unsigned. This // way, the output won't be affected by whether the compiler thinks // char is signed or not. PrintTo(static_cast(c), os); } // Overloads for other simple built-in types. inline void PrintTo(bool x, ::std::ostream* os) { *os << (x ? "true" : "false"); } // Overload for wchar_t type. // Prints a wchar_t as a symbol if it is printable or as its internal // code otherwise and also as its decimal code (except for L'\0'). // The L'\0' char is printed as "L'\\0'". The decimal code is printed // as signed integer when wchar_t is implemented by the compiler // as a signed type and is printed as an unsigned integer when wchar_t // is implemented as an unsigned type. GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); // Overloads for C strings. GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); inline void PrintTo(char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } // signed/unsigned char is often used for representing binary data, so // we print pointers to it as void* to be safe. inline void PrintTo(const signed char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(signed char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(const unsigned char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(unsigned char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } // MSVC can be configured to define wchar_t as a typedef of unsigned // short. It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native // type. When wchar_t is a typedef, defining an overload for const // wchar_t* would cause unsigned short* be printed as a wide string, // possibly causing invalid memory accesses. #if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) // Overloads for wide C strings GTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os); inline void PrintTo(wchar_t* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } #endif // Overload for C arrays. Multi-dimensional arrays are printed // properly. // Prints the given number of elements in an array, without printing // the curly braces. template void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { UniversalPrint(a[0], os); for (size_t i = 1; i != count; i++) { *os << ", "; UniversalPrint(a[i], os); } } // Overloads for ::string and ::std::string. #if GTEST_HAS_GLOBAL_STRING GTEST_API_ void PrintStringTo(const ::string&s, ::std::ostream* os); inline void PrintTo(const ::string& s, ::std::ostream* os) { PrintStringTo(s, os); } #endif // GTEST_HAS_GLOBAL_STRING GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os); inline void PrintTo(const ::std::string& s, ::std::ostream* os) { PrintStringTo(s, os); } // Overloads for ::wstring and ::std::wstring. #if GTEST_HAS_GLOBAL_WSTRING GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os); inline void PrintTo(const ::wstring& s, ::std::ostream* os) { PrintWideStringTo(s, os); } #endif // GTEST_HAS_GLOBAL_WSTRING #if GTEST_HAS_STD_WSTRING GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os); inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { PrintWideStringTo(s, os); } #endif // GTEST_HAS_STD_WSTRING #if GTEST_HAS_ABSL // Overload for absl::string_view. inline void PrintTo(absl::string_view sp, ::std::ostream* os) { PrintTo(::std::string(sp), os); } #endif // GTEST_HAS_ABSL #if GTEST_LANG_CXX11 inline void PrintTo(std::nullptr_t, ::std::ostream* os) { *os << "(nullptr)"; } #endif // GTEST_LANG_CXX11 #if GTEST_HAS_TR1_TUPLE || GTEST_HAS_STD_TUPLE_ // Helper function for printing a tuple. T must be instantiated with // a tuple type. template void PrintTupleTo(const T& t, ::std::ostream* os); #endif // GTEST_HAS_TR1_TUPLE || GTEST_HAS_STD_TUPLE_ #if GTEST_HAS_TR1_TUPLE // Overload for ::std::tr1::tuple. Needed for printing function arguments, // which are packed as tuples. // Overloaded PrintTo() for tuples of various arities. We support // tuples of up-to 10 fields. The following implementation works // regardless of whether tr1::tuple is implemented using the // non-standard variadic template feature or not. inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } template void PrintTo( const ::std::tr1::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } #endif // GTEST_HAS_TR1_TUPLE #if GTEST_HAS_STD_TUPLE_ template void PrintTo(const ::std::tuple& t, ::std::ostream* os) { PrintTupleTo(t, os); } #endif // GTEST_HAS_STD_TUPLE_ // Overload for std::pair. template void PrintTo(const ::std::pair& value, ::std::ostream* os) { *os << '('; // We cannot use UniversalPrint(value.first, os) here, as T1 may be // a reference type. The same for printing value.second. UniversalPrinter::Print(value.first, os); *os << ", "; UniversalPrinter::Print(value.second, os); *os << ')'; } // Implements printing a non-reference type T by letting the compiler // pick the right overload of PrintTo() for T. template class UniversalPrinter { public: // MSVC warns about adding const to a function type, so we want to // disable the warning. GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180) // Note: we deliberately don't call this PrintTo(), as that name // conflicts with ::testing::internal::PrintTo in the body of the // function. static void Print(const T& value, ::std::ostream* os) { // By default, ::testing::internal::PrintTo() is used for printing // the value. // // Thanks to Koenig look-up, if T is a class and has its own // PrintTo() function defined in its namespace, that function will // be visible here. Since it is more specific than the generic ones // in ::testing::internal, it will be picked by the compiler in the // following statement - exactly what we want. PrintTo(value, os); } GTEST_DISABLE_MSC_WARNINGS_POP_() }; #if GTEST_HAS_ABSL // Printer for absl::optional template class UniversalPrinter<::absl::optional> { public: static void Print(const ::absl::optional& value, ::std::ostream* os) { *os << '('; if (!value) { *os << "nullopt"; } else { UniversalPrint(*value, os); } *os << ')'; } }; // Printer for absl::variant template class UniversalPrinter<::absl::variant> { public: static void Print(const ::absl::variant& value, ::std::ostream* os) { *os << '('; absl::visit(Visitor{os}, value); *os << ')'; } private: struct Visitor { template void operator()(const U& u) const { *os << "'" << GetTypeName() << "' with value "; UniversalPrint(u, os); } ::std::ostream* os; }; }; #endif // GTEST_HAS_ABSL // UniversalPrintArray(begin, len, os) prints an array of 'len' // elements, starting at address 'begin'. template void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { if (len == 0) { *os << "{}"; } else { *os << "{ "; const size_t kThreshold = 18; const size_t kChunkSize = 8; // If the array has more than kThreshold elements, we'll have to // omit some details by printing only the first and the last // kChunkSize elements. // FIXME: let the user control the threshold using a flag. if (len <= kThreshold) { PrintRawArrayTo(begin, len, os); } else { PrintRawArrayTo(begin, kChunkSize, os); *os << ", ..., "; PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os); } *os << " }"; } } // This overload prints a (const) char array compactly. GTEST_API_ void UniversalPrintArray( const char* begin, size_t len, ::std::ostream* os); // This overload prints a (const) wchar_t array compactly. GTEST_API_ void UniversalPrintArray( const wchar_t* begin, size_t len, ::std::ostream* os); // Implements printing an array type T[N]. template class UniversalPrinter { public: // Prints the given array, omitting some elements when there are too // many. static void Print(const T (&a)[N], ::std::ostream* os) { UniversalPrintArray(a, N, os); } }; // Implements printing a reference type T&. template class UniversalPrinter { public: // MSVC warns about adding const to a function type, so we want to // disable the warning. GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180) static void Print(const T& value, ::std::ostream* os) { // Prints the address of the value. We use reinterpret_cast here // as static_cast doesn't compile when T is a function type. *os << "@" << reinterpret_cast(&value) << " "; // Then prints the value itself. UniversalPrint(value, os); } GTEST_DISABLE_MSC_WARNINGS_POP_() }; // Prints a value tersely: for a reference type, the referenced value // (but not the address) is printed; for a (const) char pointer, the // NUL-terminated string (but not the pointer) is printed. template class UniversalTersePrinter { public: static void Print(const T& value, ::std::ostream* os) { UniversalPrint(value, os); } }; template class UniversalTersePrinter { public: static void Print(const T& value, ::std::ostream* os) { UniversalPrint(value, os); } }; template class UniversalTersePrinter { public: static void Print(const T (&value)[N], ::std::ostream* os) { UniversalPrinter::Print(value, os); } }; template <> class UniversalTersePrinter { public: static void Print(const char* str, ::std::ostream* os) { if (str == NULL) { *os << "NULL"; } else { UniversalPrint(std::string(str), os); } } }; template <> class UniversalTersePrinter { public: static void Print(char* str, ::std::ostream* os) { UniversalTersePrinter::Print(str, os); } }; #if GTEST_HAS_STD_WSTRING template <> class UniversalTersePrinter { public: static void Print(const wchar_t* str, ::std::ostream* os) { if (str == NULL) { *os << "NULL"; } else { UniversalPrint(::std::wstring(str), os); } } }; #endif template <> class UniversalTersePrinter { public: static void Print(wchar_t* str, ::std::ostream* os) { UniversalTersePrinter::Print(str, os); } }; template void UniversalTersePrint(const T& value, ::std::ostream* os) { UniversalTersePrinter::Print(value, os); } // Prints a value using the type inferred by the compiler. The // difference between this and UniversalTersePrint() is that for a // (const) char pointer, this prints both the pointer and the // NUL-terminated string. template void UniversalPrint(const T& value, ::std::ostream* os) { // A workarond for the bug in VC++ 7.1 that prevents us from instantiating // UniversalPrinter with T directly. typedef T T1; UniversalPrinter::Print(value, os); } typedef ::std::vector< ::std::string> Strings; // TuplePolicy must provide: // - tuple_size // size of tuple TupleT. // - get(const TupleT& t) // static function extracting element I of tuple TupleT. // - tuple_element::type // type of element I of tuple TupleT. template struct TuplePolicy; #if GTEST_HAS_TR1_TUPLE template struct TuplePolicy { typedef TupleT Tuple; static const size_t tuple_size = ::std::tr1::tuple_size::value; template struct tuple_element : ::std::tr1::tuple_element(I), Tuple> { }; template static typename AddReference(I), Tuple>::type>::type get(const Tuple& tuple) { return ::std::tr1::get(tuple); } }; template const size_t TuplePolicy::tuple_size; #endif // GTEST_HAS_TR1_TUPLE #if GTEST_HAS_STD_TUPLE_ template struct TuplePolicy< ::std::tuple > { typedef ::std::tuple Tuple; static const size_t tuple_size = ::std::tuple_size::value; template struct tuple_element : ::std::tuple_element {}; template static const typename ::std::tuple_element::type& get( const Tuple& tuple) { return ::std::get(tuple); } }; template const size_t TuplePolicy< ::std::tuple >::tuple_size; #endif // GTEST_HAS_STD_TUPLE_ #if GTEST_HAS_TR1_TUPLE || GTEST_HAS_STD_TUPLE_ // This helper template allows PrintTo() for tuples and // UniversalTersePrintTupleFieldsToStrings() to be defined by // induction on the number of tuple fields. The idea is that // TuplePrefixPrinter::PrintPrefixTo(t, os) prints the first N // fields in tuple t, and can be defined in terms of // TuplePrefixPrinter. // // The inductive case. template struct TuplePrefixPrinter { // Prints the first N fields of a tuple. template static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { TuplePrefixPrinter::PrintPrefixTo(t, os); GTEST_INTENTIONAL_CONST_COND_PUSH_() if (N > 1) { GTEST_INTENTIONAL_CONST_COND_POP_() *os << ", "; } UniversalPrinter< typename TuplePolicy::template tuple_element::type> ::Print(TuplePolicy::template get(t), os); } // Tersely prints the first N fields of a tuple to a string vector, // one element for each field. template static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { TuplePrefixPrinter::TersePrintPrefixToStrings(t, strings); ::std::stringstream ss; UniversalTersePrint(TuplePolicy::template get(t), &ss); strings->push_back(ss.str()); } }; // Base case. template <> struct TuplePrefixPrinter<0> { template static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} template static void TersePrintPrefixToStrings(const Tuple&, Strings*) {} }; // Helper function for printing a tuple. // Tuple must be either std::tr1::tuple or std::tuple type. template void PrintTupleTo(const Tuple& t, ::std::ostream* os) { *os << "("; TuplePrefixPrinter::tuple_size>::PrintPrefixTo(t, os); *os << ")"; } // Prints the fields of a tuple tersely to a string vector, one // element for each field. See the comment before // UniversalTersePrint() for how we define "tersely". template Strings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) { Strings result; TuplePrefixPrinter::tuple_size>:: TersePrintPrefixToStrings(value, &result); return result; } #endif // GTEST_HAS_TR1_TUPLE || GTEST_HAS_STD_TUPLE_ } // namespace internal #if GTEST_HAS_ABSL namespace internal2 { template void TypeWithoutFormatter::PrintValue( const T& value, ::std::ostream* os) { internal::PrintTo(absl::string_view(value), os); } } // namespace internal2 #endif template ::std::string PrintToString(const T& value) { ::std::stringstream ss; internal::UniversalTersePrinter::Print(value, &ss); return ss.str(); } } // namespace testing // Include any custom printer added by the local installation. // We must include this header at the end to make sure it can use the // declarations from this file. // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // This file provides an injection point for custom printers in a local // installation of gTest. // It will be included from gtest-printers.h and the overrides in this file // will be visible to everyone. // // Injection point for custom user configurations. See README for details // // ** Custom implementation starts here ** #ifndef GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ #endif // GTEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ #endif // GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ namespace testing { // Input to a parameterized test name generator, describing a test parameter. // Consists of the parameter value and the integer parameter index. template struct TestParamInfo { TestParamInfo(const ParamType& a_param, size_t an_index) : param(a_param), index(an_index) {} ParamType param; size_t index; }; // A builtin parameterized test name generator which returns the result of // testing::PrintToString. struct PrintToStringParamName { template std::string operator()(const TestParamInfo& info) const { return PrintToString(info.param); } }; namespace internal { // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Outputs a message explaining invalid registration of different // fixture class for the same test case. This may happen when // TEST_P macro is used to define two tests with the same name // but in different namespaces. GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name, CodeLocation code_location); template class ParamGeneratorInterface; template class ParamGenerator; // Interface for iterating over elements provided by an implementation // of ParamGeneratorInterface. template class ParamIteratorInterface { public: virtual ~ParamIteratorInterface() {} // A pointer to the base generator instance. // Used only for the purposes of iterator comparison // to make sure that two iterators belong to the same generator. virtual const ParamGeneratorInterface* BaseGenerator() const = 0; // Advances iterator to point to the next element // provided by the generator. The caller is responsible // for not calling Advance() on an iterator equal to // BaseGenerator()->End(). virtual void Advance() = 0; // Clones the iterator object. Used for implementing copy semantics // of ParamIterator. virtual ParamIteratorInterface* Clone() const = 0; // Dereferences the current iterator and provides (read-only) access // to the pointed value. It is the caller's responsibility not to call // Current() on an iterator equal to BaseGenerator()->End(). // Used for implementing ParamGenerator::operator*(). virtual const T* Current() const = 0; // Determines whether the given iterator and other point to the same // element in the sequence generated by the generator. // Used for implementing ParamGenerator::operator==(). virtual bool Equals(const ParamIteratorInterface& other) const = 0; }; // Class iterating over elements provided by an implementation of // ParamGeneratorInterface. It wraps ParamIteratorInterface // and implements the const forward iterator concept. template class ParamIterator { public: typedef T value_type; typedef const T& reference; typedef ptrdiff_t difference_type; // ParamIterator assumes ownership of the impl_ pointer. ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} ParamIterator& operator=(const ParamIterator& other) { if (this != &other) impl_.reset(other.impl_->Clone()); return *this; } const T& operator*() const { return *impl_->Current(); } const T* operator->() const { return impl_->Current(); } // Prefix version of operator++. ParamIterator& operator++() { impl_->Advance(); return *this; } // Postfix version of operator++. ParamIterator operator++(int /*unused*/) { ParamIteratorInterface* clone = impl_->Clone(); impl_->Advance(); return ParamIterator(clone); } bool operator==(const ParamIterator& other) const { return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); } bool operator!=(const ParamIterator& other) const { return !(*this == other); } private: friend class ParamGenerator; explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} scoped_ptr > impl_; }; // ParamGeneratorInterface is the binary interface to access generators // defined in other translation units. template class ParamGeneratorInterface { public: typedef T ParamType; virtual ~ParamGeneratorInterface() {} // Generator interface definition virtual ParamIteratorInterface* Begin() const = 0; virtual ParamIteratorInterface* End() const = 0; }; // Wraps ParamGeneratorInterface and provides general generator syntax // compatible with the STL Container concept. // This class implements copy initialization semantics and the contained // ParamGeneratorInterface instance is shared among all copies // of the original object. This is possible because that instance is immutable. template class ParamGenerator { public: typedef ParamIterator iterator; explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} ParamGenerator& operator=(const ParamGenerator& other) { impl_ = other.impl_; return *this; } iterator begin() const { return iterator(impl_->Begin()); } iterator end() const { return iterator(impl_->End()); } private: linked_ptr > impl_; }; // Generates values from a range of two comparable values. Can be used to // generate sequences of user-defined types that implement operator+() and // operator<(). // This class is used in the Range() function. template class RangeGenerator : public ParamGeneratorInterface { public: RangeGenerator(T begin, T end, IncrementT step) : begin_(begin), end_(end), step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} virtual ~RangeGenerator() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, begin_, 0, step_); } virtual ParamIteratorInterface* End() const { return new Iterator(this, end_, end_index_, step_); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, T value, int index, IncrementT step) : base_(base), value_(value), index_(index), step_(step) {} virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } virtual void Advance() { value_ = static_cast(value_ + step_); index_++; } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const T* Current() const { return &value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const int other_index = CheckedDowncastToActualType(&other)->index_; return index_ == other_index; } private: Iterator(const Iterator& other) : ParamIteratorInterface(), base_(other.base_), value_(other.value_), index_(other.index_), step_(other.step_) {} // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; T value_; int index_; const IncrementT step_; }; // class RangeGenerator::Iterator static int CalculateEndIndex(const T& begin, const T& end, const IncrementT& step) { int end_index = 0; for (T i = begin; i < end; i = static_cast(i + step)) end_index++; return end_index; } // No implementation - assignment is unsupported. void operator=(const RangeGenerator& other); const T begin_; const T end_; const IncrementT step_; // The index for the end() iterator. All the elements in the generated // sequence are indexed (0-based) to aid iterator comparison. const int end_index_; }; // class RangeGenerator // Generates values from a pair of STL-style iterators. Used in the // ValuesIn() function. The elements are copied from the source range // since the source can be located on the stack, and the generator // is likely to persist beyond that stack frame. template class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { public: template ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) : container_(begin, end) {} virtual ~ValuesInIteratorRangeGenerator() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, container_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, container_.end()); } private: typedef typename ::std::vector ContainerType; class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, typename ContainerType::const_iterator iterator) : base_(base), iterator_(iterator) {} virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } virtual void Advance() { ++iterator_; value_.reset(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } // We need to use cached value referenced by iterator_ because *iterator_ // can return a temporary object (and of type other then T), so just // having "return &*iterator_;" doesn't work. // value_ is updated here and not in Advance() because Advance() // can advance iterator_ beyond the end of the range, and we cannot // detect that fact. The client code, on the other hand, is // responsible for not calling Current() on an out-of-range iterator. virtual const T* Current() const { if (value_.get() == NULL) value_.reset(new T(*iterator_)); return value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; return iterator_ == CheckedDowncastToActualType(&other)->iterator_; } private: Iterator(const Iterator& other) // The explicit constructor call suppresses a false warning // emitted by gcc when supplied with the -Wextra option. : ParamIteratorInterface(), base_(other.base_), iterator_(other.iterator_) {} const ParamGeneratorInterface* const base_; typename ContainerType::const_iterator iterator_; // A cached value of *iterator_. We keep it here to allow access by // pointer in the wrapping iterator's operator->(). // value_ needs to be mutable to be accessed in Current(). // Use of scoped_ptr helps manage cached value's lifetime, // which is bound by the lifespan of the iterator itself. mutable scoped_ptr value_; }; // class ValuesInIteratorRangeGenerator::Iterator // No implementation - assignment is unsupported. void operator=(const ValuesInIteratorRangeGenerator& other); const ContainerType container_; }; // class ValuesInIteratorRangeGenerator // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Default parameterized test name generator, returns a string containing the // integer test parameter index. template std::string DefaultParamName(const TestParamInfo& info) { Message name_stream; name_stream << info.index; return name_stream.GetString(); } // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Parameterized test name overload helpers, which help the // INSTANTIATE_TEST_CASE_P macro choose between the default parameterized // test name generator and user param name generator. template ParamNameGenFunctor GetParamNameGen(ParamNameGenFunctor func) { return func; } template struct ParamNameGenFunc { typedef std::string Type(const TestParamInfo&); }; template typename ParamNameGenFunc::Type *GetParamNameGen() { return DefaultParamName; } // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Stores a parameter value and later creates tests parameterized with that // value. template class ParameterizedTestFactory : public TestFactoryBase { public: typedef typename TestClass::ParamType ParamType; explicit ParameterizedTestFactory(ParamType parameter) : parameter_(parameter) {} virtual Test* CreateTest() { TestClass::SetParam(¶meter_); return new TestClass(); } private: const ParamType parameter_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // TestMetaFactoryBase is a base class for meta-factories that create // test factories for passing into MakeAndRegisterTestInfo function. template class TestMetaFactoryBase { public: virtual ~TestMetaFactoryBase() {} virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // TestMetaFactory creates test factories for passing into // MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives // ownership of test factory pointer, same factory object cannot be passed // into that method twice. But ParameterizedTestCaseInfo is going to call // it for each Test/Parameter value combination. Thus it needs meta factory // creator class. template class TestMetaFactory : public TestMetaFactoryBase { public: typedef typename TestCase::ParamType ParamType; TestMetaFactory() {} virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { return new ParameterizedTestFactory(parameter); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestCaseInfoBase is a generic interface // to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase // accumulates test information provided by TEST_P macro invocations // and generators provided by INSTANTIATE_TEST_CASE_P macro invocations // and uses that information to register all resulting test instances // in RegisterTests method. The ParameterizeTestCaseRegistry class holds // a collection of pointers to the ParameterizedTestCaseInfo objects // and calls RegisterTests() on each of them when asked. class ParameterizedTestCaseInfoBase { public: virtual ~ParameterizedTestCaseInfoBase() {} // Base part of test case name for display purposes. virtual const std::string& GetTestCaseName() const = 0; // Test case id to verify identity. virtual TypeId GetTestCaseTypeId() const = 0; // UnitTest class invokes this method to register tests in this // test case right before running them in RUN_ALL_TESTS macro. // This method should not be called more then once on any single // instance of a ParameterizedTestCaseInfoBase derived class. virtual void RegisterTests() = 0; protected: ParameterizedTestCaseInfoBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestCaseInfo accumulates tests obtained from TEST_P // macro invocations for a particular test case and generators // obtained from INSTANTIATE_TEST_CASE_P macro invocations for that // test case. It registers tests with all values generated by all // generators when asked. template class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase { public: // ParamType and GeneratorCreationFunc are private types but are required // for declarations of public methods AddTestPattern() and // AddTestCaseInstantiation(). typedef typename TestCase::ParamType ParamType; // A function that returns an instance of appropriate generator type. typedef ParamGenerator(GeneratorCreationFunc)(); typedef typename ParamNameGenFunc::Type ParamNameGeneratorFunc; explicit ParameterizedTestCaseInfo( const char* name, CodeLocation code_location) : test_case_name_(name), code_location_(code_location) {} // Test case base name for display purposes. virtual const std::string& GetTestCaseName() const { return test_case_name_; } // Test case id to verify identity. virtual TypeId GetTestCaseTypeId() const { return GetTypeId(); } // TEST_P macro uses AddTestPattern() to record information // about a single test in a LocalTestInfo structure. // test_case_name is the base name of the test case (without invocation // prefix). test_base_name is the name of an individual test without // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is // test case base name and DoBar is test base name. void AddTestPattern(const char* test_case_name, const char* test_base_name, TestMetaFactoryBase* meta_factory) { tests_.push_back(linked_ptr(new TestInfo(test_case_name, test_base_name, meta_factory))); } // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information // about a generator. int AddTestCaseInstantiation(const std::string& instantiation_name, GeneratorCreationFunc* func, ParamNameGeneratorFunc* name_func, const char* file, int line) { instantiations_.push_back( InstantiationInfo(instantiation_name, func, name_func, file, line)); return 0; // Return value used only to run this method in namespace scope. } // UnitTest class invokes this method to register tests in this test case // test cases right before running tests in RUN_ALL_TESTS macro. // This method should not be called more then once on any single // instance of a ParameterizedTestCaseInfoBase derived class. // UnitTest has a guard to prevent from calling this method more then once. virtual void RegisterTests() { for (typename TestInfoContainer::iterator test_it = tests_.begin(); test_it != tests_.end(); ++test_it) { linked_ptr test_info = *test_it; for (typename InstantiationContainer::iterator gen_it = instantiations_.begin(); gen_it != instantiations_.end(); ++gen_it) { const std::string& instantiation_name = gen_it->name; ParamGenerator generator((*gen_it->generator)()); ParamNameGeneratorFunc* name_func = gen_it->name_func; const char* file = gen_it->file; int line = gen_it->line; std::string test_case_name; if ( !instantiation_name.empty() ) test_case_name = instantiation_name + "/"; test_case_name += test_info->test_case_base_name; size_t i = 0; std::set test_param_names; for (typename ParamGenerator::iterator param_it = generator.begin(); param_it != generator.end(); ++param_it, ++i) { Message test_name_stream; std::string param_name = name_func( TestParamInfo(*param_it, i)); GTEST_CHECK_(IsValidParamName(param_name)) << "Parameterized test name '" << param_name << "' is invalid, in " << file << " line " << line << std::endl; GTEST_CHECK_(test_param_names.count(param_name) == 0) << "Duplicate parameterized test name '" << param_name << "', in " << file << " line " << line << std::endl; test_param_names.insert(param_name); test_name_stream << test_info->test_base_name << "/" << param_name; MakeAndRegisterTestInfo( test_case_name.c_str(), test_name_stream.GetString().c_str(), NULL, // No type parameter. PrintToString(*param_it).c_str(), code_location_, GetTestCaseTypeId(), TestCase::SetUpTestCase, TestCase::TearDownTestCase, test_info->test_meta_factory->CreateTestFactory(*param_it)); } // for param_it } // for gen_it } // for test_it } // RegisterTests private: // LocalTestInfo structure keeps information about a single test registered // with TEST_P macro. struct TestInfo { TestInfo(const char* a_test_case_base_name, const char* a_test_base_name, TestMetaFactoryBase* a_test_meta_factory) : test_case_base_name(a_test_case_base_name), test_base_name(a_test_base_name), test_meta_factory(a_test_meta_factory) {} const std::string test_case_base_name; const std::string test_base_name; const scoped_ptr > test_meta_factory; }; typedef ::std::vector > TestInfoContainer; // Records data received from INSTANTIATE_TEST_CASE_P macros: // struct InstantiationInfo { InstantiationInfo(const std::string &name_in, GeneratorCreationFunc* generator_in, ParamNameGeneratorFunc* name_func_in, const char* file_in, int line_in) : name(name_in), generator(generator_in), name_func(name_func_in), file(file_in), line(line_in) {} std::string name; GeneratorCreationFunc* generator; ParamNameGeneratorFunc* name_func; const char* file; int line; }; typedef ::std::vector InstantiationContainer; static bool IsValidParamName(const std::string& name) { // Check for empty string if (name.empty()) return false; // Check for invalid characters for (std::string::size_type index = 0; index < name.size(); ++index) { if (!isalnum(name[index]) && name[index] != '_') return false; } return true; } const std::string test_case_name_; CodeLocation code_location_; TestInfoContainer tests_; InstantiationContainer instantiations_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo); }; // class ParameterizedTestCaseInfo // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase // classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P // macros use it to locate their corresponding ParameterizedTestCaseInfo // descriptors. class ParameterizedTestCaseRegistry { public: ParameterizedTestCaseRegistry() {} ~ParameterizedTestCaseRegistry() { for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); it != test_case_infos_.end(); ++it) { delete *it; } } // Looks up or creates and returns a structure containing information about // tests and instantiations of a particular test case. template ParameterizedTestCaseInfo* GetTestCasePatternHolder( const char* test_case_name, CodeLocation code_location) { ParameterizedTestCaseInfo* typed_test_info = NULL; for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); it != test_case_infos_.end(); ++it) { if ((*it)->GetTestCaseName() == test_case_name) { if ((*it)->GetTestCaseTypeId() != GetTypeId()) { // Complain about incorrect usage of Google Test facilities // and terminate the program since we cannot guaranty correct // test case setup and tear-down in this case. ReportInvalidTestCaseType(test_case_name, code_location); posix::Abort(); } else { // At this point we are sure that the object we found is of the same // type we are looking for, so we downcast it to that type // without further checks. typed_test_info = CheckedDowncastToActualType< ParameterizedTestCaseInfo >(*it); } break; } } if (typed_test_info == NULL) { typed_test_info = new ParameterizedTestCaseInfo( test_case_name, code_location); test_case_infos_.push_back(typed_test_info); } return typed_test_info; } void RegisterTests() { for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); it != test_case_infos_.end(); ++it) { (*it)->RegisterTests(); } } private: typedef ::std::vector TestCaseInfoContainer; TestCaseInfoContainer test_case_infos_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry); }; } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ // This file was GENERATED by command: // pump.py gtest-param-util-generated.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Type and function utilities for implementing parameterized tests. // This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // Currently Google Test supports at most 50 arguments in Values, // and at most 10 arguments in Combine. Please contact // googletestframework@googlegroups.com if you need more. // Please note that the number of arguments to Combine is limited // by the maximum arity of the implementation of tuple which is // currently set at 10. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ namespace testing { // Forward declarations of ValuesIn(), which is implemented in // include/gtest/gtest-param-test.h. template internal::ParamGenerator< typename ::testing::internal::IteratorTraits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end); template internal::ParamGenerator ValuesIn(const T (&array)[N]); template internal::ParamGenerator ValuesIn( const Container& container); namespace internal { // Used in the Values() function to provide polymorphic capabilities. template class ValueArray1 { public: explicit ValueArray1(T1 v1) : v1_(v1) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_)}; return ValuesIn(array); } ValueArray1(const ValueArray1& other) : v1_(other.v1_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray1& other); const T1 v1_; }; template class ValueArray2 { public: ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_)}; return ValuesIn(array); } ValueArray2(const ValueArray2& other) : v1_(other.v1_), v2_(other.v2_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray2& other); const T1 v1_; const T2 v2_; }; template class ValueArray3 { public: ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_)}; return ValuesIn(array); } ValueArray3(const ValueArray3& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray3& other); const T1 v1_; const T2 v2_; const T3 v3_; }; template class ValueArray4 { public: ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), v4_(v4) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_)}; return ValuesIn(array); } ValueArray4(const ValueArray4& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray4& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; }; template class ValueArray5 { public: ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_)}; return ValuesIn(array); } ValueArray5(const ValueArray5& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray5& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; }; template class ValueArray6 { public: ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_)}; return ValuesIn(array); } ValueArray6(const ValueArray6& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray6& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; }; template class ValueArray7 { public: ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_)}; return ValuesIn(array); } ValueArray7(const ValueArray7& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray7& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; }; template class ValueArray8 { public: ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_)}; return ValuesIn(array); } ValueArray8(const ValueArray8& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray8& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; }; template class ValueArray9 { public: ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_)}; return ValuesIn(array); } ValueArray9(const ValueArray9& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray9& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; }; template class ValueArray10 { public: ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_)}; return ValuesIn(array); } ValueArray10(const ValueArray10& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray10& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; }; template class ValueArray11 { public: ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_)}; return ValuesIn(array); } ValueArray11(const ValueArray11& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray11& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; }; template class ValueArray12 { public: ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_)}; return ValuesIn(array); } ValueArray12(const ValueArray12& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray12& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; }; template class ValueArray13 { public: ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_)}; return ValuesIn(array); } ValueArray13(const ValueArray13& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray13& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; }; template class ValueArray14 { public: ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_)}; return ValuesIn(array); } ValueArray14(const ValueArray14& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray14& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; }; template class ValueArray15 { public: ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_)}; return ValuesIn(array); } ValueArray15(const ValueArray15& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray15& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; }; template class ValueArray16 { public: ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_)}; return ValuesIn(array); } ValueArray16(const ValueArray16& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray16& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; }; template class ValueArray17 { public: ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_)}; return ValuesIn(array); } ValueArray17(const ValueArray17& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray17& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; }; template class ValueArray18 { public: ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_)}; return ValuesIn(array); } ValueArray18(const ValueArray18& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray18& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; }; template class ValueArray19 { public: ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_)}; return ValuesIn(array); } ValueArray19(const ValueArray19& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray19& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; }; template class ValueArray20 { public: ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_)}; return ValuesIn(array); } ValueArray20(const ValueArray20& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray20& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; }; template class ValueArray21 { public: ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_)}; return ValuesIn(array); } ValueArray21(const ValueArray21& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray21& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; }; template class ValueArray22 { public: ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_)}; return ValuesIn(array); } ValueArray22(const ValueArray22& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray22& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; }; template class ValueArray23 { public: ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_)}; return ValuesIn(array); } ValueArray23(const ValueArray23& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray23& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; }; template class ValueArray24 { public: ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_)}; return ValuesIn(array); } ValueArray24(const ValueArray24& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray24& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; }; template class ValueArray25 { public: ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_)}; return ValuesIn(array); } ValueArray25(const ValueArray25& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray25& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; }; template class ValueArray26 { public: ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_)}; return ValuesIn(array); } ValueArray26(const ValueArray26& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray26& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; }; template class ValueArray27 { public: ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_)}; return ValuesIn(array); } ValueArray27(const ValueArray27& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray27& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; }; template class ValueArray28 { public: ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_)}; return ValuesIn(array); } ValueArray28(const ValueArray28& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray28& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; }; template class ValueArray29 { public: ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_)}; return ValuesIn(array); } ValueArray29(const ValueArray29& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray29& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; }; template class ValueArray30 { public: ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_)}; return ValuesIn(array); } ValueArray30(const ValueArray30& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray30& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; }; template class ValueArray31 { public: ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_)}; return ValuesIn(array); } ValueArray31(const ValueArray31& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray31& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; }; template class ValueArray32 { public: ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_)}; return ValuesIn(array); } ValueArray32(const ValueArray32& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray32& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; }; template class ValueArray33 { public: ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_)}; return ValuesIn(array); } ValueArray33(const ValueArray33& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray33& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; }; template class ValueArray34 { public: ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_)}; return ValuesIn(array); } ValueArray34(const ValueArray34& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray34& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; }; template class ValueArray35 { public: ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_)}; return ValuesIn(array); } ValueArray35(const ValueArray35& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray35& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; }; template class ValueArray36 { public: ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_)}; return ValuesIn(array); } ValueArray36(const ValueArray36& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray36& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; }; template class ValueArray37 { public: ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_)}; return ValuesIn(array); } ValueArray37(const ValueArray37& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray37& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; }; template class ValueArray38 { public: ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_)}; return ValuesIn(array); } ValueArray38(const ValueArray38& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray38& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; }; template class ValueArray39 { public: ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_)}; return ValuesIn(array); } ValueArray39(const ValueArray39& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray39& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; }; template class ValueArray40 { public: ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_)}; return ValuesIn(array); } ValueArray40(const ValueArray40& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray40& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; }; template class ValueArray41 { public: ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_)}; return ValuesIn(array); } ValueArray41(const ValueArray41& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray41& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; }; template class ValueArray42 { public: ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_)}; return ValuesIn(array); } ValueArray42(const ValueArray42& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray42& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; }; template class ValueArray43 { public: ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_)}; return ValuesIn(array); } ValueArray43(const ValueArray43& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray43& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; }; template class ValueArray44 { public: ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_)}; return ValuesIn(array); } ValueArray44(const ValueArray44& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray44& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; }; template class ValueArray45 { public: ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_)}; return ValuesIn(array); } ValueArray45(const ValueArray45& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray45& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; }; template class ValueArray46 { public: ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_)}; return ValuesIn(array); } ValueArray46(const ValueArray46& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_), v46_(other.v46_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray46& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; }; template class ValueArray47 { public: ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_)}; return ValuesIn(array); } ValueArray47(const ValueArray47& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_), v46_(other.v46_), v47_(other.v47_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray47& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; }; template class ValueArray48 { public: ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_)}; return ValuesIn(array); } ValueArray48(const ValueArray48& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_), v46_(other.v46_), v47_(other.v47_), v48_(other.v48_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray48& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; }; template class ValueArray49 { public: ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_), static_cast(v49_)}; return ValuesIn(array); } ValueArray49(const ValueArray49& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_), v46_(other.v46_), v47_(other.v47_), v48_(other.v48_), v49_(other.v49_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray49& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; const T49 v49_; }; template class ValueArray50 { public: ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_), static_cast(v49_), static_cast(v50_)}; return ValuesIn(array); } ValueArray50(const ValueArray50& other) : v1_(other.v1_), v2_(other.v2_), v3_(other.v3_), v4_(other.v4_), v5_(other.v5_), v6_(other.v6_), v7_(other.v7_), v8_(other.v8_), v9_(other.v9_), v10_(other.v10_), v11_(other.v11_), v12_(other.v12_), v13_(other.v13_), v14_(other.v14_), v15_(other.v15_), v16_(other.v16_), v17_(other.v17_), v18_(other.v18_), v19_(other.v19_), v20_(other.v20_), v21_(other.v21_), v22_(other.v22_), v23_(other.v23_), v24_(other.v24_), v25_(other.v25_), v26_(other.v26_), v27_(other.v27_), v28_(other.v28_), v29_(other.v29_), v30_(other.v30_), v31_(other.v31_), v32_(other.v32_), v33_(other.v33_), v34_(other.v34_), v35_(other.v35_), v36_(other.v36_), v37_(other.v37_), v38_(other.v38_), v39_(other.v39_), v40_(other.v40_), v41_(other.v41_), v42_(other.v42_), v43_(other.v43_), v44_(other.v44_), v45_(other.v45_), v46_(other.v46_), v47_(other.v47_), v48_(other.v48_), v49_(other.v49_), v50_(other.v50_) {} private: // No implementation - assignment is unsupported. void operator=(const ValueArray50& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; const T49 v49_; const T50 v50_; }; # if GTEST_HAS_COMBINE // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Generates values from the Cartesian product of values produced // by the argument generators. // template class CartesianProductGenerator2 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator2(const ParamGenerator& g1, const ParamGenerator& g2) : g1_(g1), g2_(g2) {} virtual ~CartesianProductGenerator2() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current2_; if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; linked_ptr current_value_; }; // class CartesianProductGenerator2::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator2& other); const ParamGenerator g1_; const ParamGenerator g2_; }; // class CartesianProductGenerator2 template class CartesianProductGenerator3 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator3(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3) : g1_(g1), g2_(g2), g3_(g3) {} virtual ~CartesianProductGenerator3() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current3_; if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; linked_ptr current_value_; }; // class CartesianProductGenerator3::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator3& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; }; // class CartesianProductGenerator3 template class CartesianProductGenerator4 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator4(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4) : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} virtual ~CartesianProductGenerator4() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current4_; if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; linked_ptr current_value_; }; // class CartesianProductGenerator4::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator4& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; }; // class CartesianProductGenerator4 template class CartesianProductGenerator5 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator5(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} virtual ~CartesianProductGenerator5() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current5_; if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; linked_ptr current_value_; }; // class CartesianProductGenerator5::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator5& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; }; // class CartesianProductGenerator5 template class CartesianProductGenerator6 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator6(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} virtual ~CartesianProductGenerator6() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current6_; if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; linked_ptr current_value_; }; // class CartesianProductGenerator6::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator6& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; }; // class CartesianProductGenerator6 template class CartesianProductGenerator7 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator7(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} virtual ~CartesianProductGenerator7() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current7_; if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; linked_ptr current_value_; }; // class CartesianProductGenerator7::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator7& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; }; // class CartesianProductGenerator7 template class CartesianProductGenerator8 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator8(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8) {} virtual ~CartesianProductGenerator8() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current8_; if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; linked_ptr current_value_; }; // class CartesianProductGenerator8::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator8& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; }; // class CartesianProductGenerator8 template class CartesianProductGenerator9 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator9(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8, const ParamGenerator& g9) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9) {} virtual ~CartesianProductGenerator9() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end(), g9_, g9_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8, const ParamGenerator& g9, const typename ParamGenerator::iterator& current9) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8), begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current9_; if (current9_ == end9_) { current9_ = begin9_; ++current8_; } if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_ && current9_ == typed_other->current9_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_), begin9_(other.begin9_), end9_(other.end9_), current9_(other.current9_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_, *current9_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_ || current9_ == end9_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; const typename ParamGenerator::iterator begin9_; const typename ParamGenerator::iterator end9_; typename ParamGenerator::iterator current9_; linked_ptr current_value_; }; // class CartesianProductGenerator9::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator9& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; const ParamGenerator g9_; }; // class CartesianProductGenerator9 template class CartesianProductGenerator10 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator10(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8, const ParamGenerator& g9, const ParamGenerator& g10) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9), g10_(g10) {} virtual ~CartesianProductGenerator10() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end(), g9_, g9_.end(), g10_, g10_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8, const ParamGenerator& g9, const typename ParamGenerator::iterator& current9, const ParamGenerator& g10, const typename ParamGenerator::iterator& current10) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8), begin9_(g9.begin()), end9_(g9.end()), current9_(current9), begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current10_; if (current10_ == end10_) { current10_ = begin10_; ++current9_; } if (current9_ == end9_) { current9_ = begin9_; ++current8_; } if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return current_value_.get(); } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_ && current9_ == typed_other->current9_ && current10_ == typed_other->current10_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_), begin9_(other.begin9_), end9_(other.end9_), current9_(other.current9_), begin10_(other.begin10_), end10_(other.end10_), current10_(other.current10_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_.reset(new ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_, *current9_, *current10_)); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_ || current9_ == end9_ || current10_ == end10_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; const typename ParamGenerator::iterator begin9_; const typename ParamGenerator::iterator end9_; typename ParamGenerator::iterator current9_; const typename ParamGenerator::iterator begin10_; const typename ParamGenerator::iterator end10_; typename ParamGenerator::iterator current10_; linked_ptr current_value_; }; // class CartesianProductGenerator10::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator10& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; const ParamGenerator g9_; const ParamGenerator g10_; }; // class CartesianProductGenerator10 // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Helper classes providing Combine() with polymorphic features. They allow // casting CartesianProductGeneratorN to ParamGenerator if T is // convertible to U. // template class CartesianProductHolder2 { public: CartesianProductHolder2(const Generator1& g1, const Generator2& g2) : g1_(g1), g2_(g2) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator2( static_cast >(g1_), static_cast >(g2_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder2& other); const Generator1 g1_; const Generator2 g2_; }; // class CartesianProductHolder2 template class CartesianProductHolder3 { public: CartesianProductHolder3(const Generator1& g1, const Generator2& g2, const Generator3& g3) : g1_(g1), g2_(g2), g3_(g3) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator3( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder3& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; }; // class CartesianProductHolder3 template class CartesianProductHolder4 { public: CartesianProductHolder4(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4) : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator4( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder4& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; }; // class CartesianProductHolder4 template class CartesianProductHolder5 { public: CartesianProductHolder5(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator5( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder5& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; }; // class CartesianProductHolder5 template class CartesianProductHolder6 { public: CartesianProductHolder6(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator6( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder6& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; }; // class CartesianProductHolder6 template class CartesianProductHolder7 { public: CartesianProductHolder7(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator7( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder7& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; }; // class CartesianProductHolder7 template class CartesianProductHolder8 { public: CartesianProductHolder8(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator8( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder8& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; }; // class CartesianProductHolder8 template class CartesianProductHolder9 { public: CartesianProductHolder9(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator9( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_), static_cast >(g9_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder9& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; const Generator9 g9_; }; // class CartesianProductHolder9 template class CartesianProductHolder10 { public: CartesianProductHolder10(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9, const Generator10& g10) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9), g10_(g10) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator10( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_), static_cast >(g9_), static_cast >(g10_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder10& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; const Generator9 g9_; const Generator10 g10_; }; // class CartesianProductHolder10 # endif // GTEST_HAS_COMBINE } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ namespace testing { // Functions producing parameter generators. // // Google Test uses these generators to produce parameters for value- // parameterized tests. When a parameterized test case is instantiated // with a particular generator, Google Test creates and runs tests // for each element in the sequence produced by the generator. // // In the following sample, tests from test case FooTest are instantiated // each three times with parameter values 3, 5, and 8: // // class FooTest : public TestWithParam { ... }; // // TEST_P(FooTest, TestThis) { // } // TEST_P(FooTest, TestThat) { // } // INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); // // Range() returns generators providing sequences of values in a range. // // Synopsis: // Range(start, end) // - returns a generator producing a sequence of values {start, start+1, // start+2, ..., }. // Range(start, end, step) // - returns a generator producing a sequence of values {start, start+step, // start+step+step, ..., }. // Notes: // * The generated sequences never include end. For example, Range(1, 5) // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) // returns a generator producing {1, 3, 5, 7}. // * start and end must have the same type. That type may be any integral or // floating-point type or a user defined type satisfying these conditions: // * It must be assignable (have operator=() defined). // * It must have operator+() (operator+(int-compatible type) for // two-operand version). // * It must have operator<() defined. // Elements in the resulting sequences will also have that type. // * Condition start < end must be satisfied in order for resulting sequences // to contain any elements. // template internal::ParamGenerator Range(T start, T end, IncrementT step) { return internal::ParamGenerator( new internal::RangeGenerator(start, end, step)); } template internal::ParamGenerator Range(T start, T end) { return Range(start, end, 1); } // ValuesIn() function allows generation of tests with parameters coming from // a container. // // Synopsis: // ValuesIn(const T (&array)[N]) // - returns a generator producing sequences with elements from // a C-style array. // ValuesIn(const Container& container) // - returns a generator producing sequences with elements from // an STL-style container. // ValuesIn(Iterator begin, Iterator end) // - returns a generator producing sequences with elements from // a range [begin, end) defined by a pair of STL-style iterators. These // iterators can also be plain C pointers. // // Please note that ValuesIn copies the values from the containers // passed in and keeps them to generate tests in RUN_ALL_TESTS(). // // Examples: // // This instantiates tests from test case StringTest // each with C-string values of "foo", "bar", and "baz": // // const char* strings[] = {"foo", "bar", "baz"}; // INSTANTIATE_TEST_CASE_P(StringSequence, StringTest, ValuesIn(strings)); // // This instantiates tests from test case StlStringTest // each with STL strings with values "a" and "b": // // ::std::vector< ::std::string> GetParameterStrings() { // ::std::vector< ::std::string> v; // v.push_back("a"); // v.push_back("b"); // return v; // } // // INSTANTIATE_TEST_CASE_P(CharSequence, // StlStringTest, // ValuesIn(GetParameterStrings())); // // // This will also instantiate tests from CharTest // each with parameter values 'a' and 'b': // // ::std::list GetParameterChars() { // ::std::list list; // list.push_back('a'); // list.push_back('b'); // return list; // } // ::std::list l = GetParameterChars(); // INSTANTIATE_TEST_CASE_P(CharSequence2, // CharTest, // ValuesIn(l.begin(), l.end())); // template internal::ParamGenerator< typename ::testing::internal::IteratorTraits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end) { typedef typename ::testing::internal::IteratorTraits ::value_type ParamType; return internal::ParamGenerator( new internal::ValuesInIteratorRangeGenerator(begin, end)); } template internal::ParamGenerator ValuesIn(const T (&array)[N]) { return ValuesIn(array, array + N); } template internal::ParamGenerator ValuesIn( const Container& container) { return ValuesIn(container.begin(), container.end()); } // Values() allows generating tests from explicitly specified list of // parameters. // // Synopsis: // Values(T v1, T v2, ..., T vN) // - returns a generator producing sequences with elements v1, v2, ..., vN. // // For example, this instantiates tests from test case BarTest each // with values "one", "two", and "three": // // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); // // This instantiates tests from test case BazTest each with values 1, 2, 3.5. // The exact type of values will depend on the type of parameter in BazTest. // // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); // // Currently, Values() supports from 1 to 50 parameters. // template internal::ValueArray1 Values(T1 v1) { return internal::ValueArray1(v1); } template internal::ValueArray2 Values(T1 v1, T2 v2) { return internal::ValueArray2(v1, v2); } template internal::ValueArray3 Values(T1 v1, T2 v2, T3 v3) { return internal::ValueArray3(v1, v2, v3); } template internal::ValueArray4 Values(T1 v1, T2 v2, T3 v3, T4 v4) { return internal::ValueArray4(v1, v2, v3, v4); } template internal::ValueArray5 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) { return internal::ValueArray5(v1, v2, v3, v4, v5); } template internal::ValueArray6 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) { return internal::ValueArray6(v1, v2, v3, v4, v5, v6); } template internal::ValueArray7 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) { return internal::ValueArray7(v1, v2, v3, v4, v5, v6, v7); } template internal::ValueArray8 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) { return internal::ValueArray8(v1, v2, v3, v4, v5, v6, v7, v8); } template internal::ValueArray9 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) { return internal::ValueArray9(v1, v2, v3, v4, v5, v6, v7, v8, v9); } template internal::ValueArray10 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) { return internal::ValueArray10(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10); } template internal::ValueArray11 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11) { return internal::ValueArray11(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11); } template internal::ValueArray12 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12) { return internal::ValueArray12(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12); } template internal::ValueArray13 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13) { return internal::ValueArray13(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13); } template internal::ValueArray14 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) { return internal::ValueArray14(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14); } template internal::ValueArray15 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) { return internal::ValueArray15(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } template internal::ValueArray16 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) { return internal::ValueArray16(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16); } template internal::ValueArray17 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17) { return internal::ValueArray17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17); } template internal::ValueArray18 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18) { return internal::ValueArray18(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18); } template internal::ValueArray19 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) { return internal::ValueArray19(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19); } template internal::ValueArray20 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) { return internal::ValueArray20(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20); } template internal::ValueArray21 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) { return internal::ValueArray21(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21); } template internal::ValueArray22 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) { return internal::ValueArray22(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22); } template internal::ValueArray23 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) { return internal::ValueArray23(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23); } template internal::ValueArray24 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) { return internal::ValueArray24(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24); } template internal::ValueArray25 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) { return internal::ValueArray25(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25); } template internal::ValueArray26 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26) { return internal::ValueArray26(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26); } template internal::ValueArray27 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27) { return internal::ValueArray27(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27); } template internal::ValueArray28 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28) { return internal::ValueArray28(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28); } template internal::ValueArray29 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29) { return internal::ValueArray29(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29); } template internal::ValueArray30 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) { return internal::ValueArray30(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30); } template internal::ValueArray31 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) { return internal::ValueArray31(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31); } template internal::ValueArray32 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) { return internal::ValueArray32(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32); } template internal::ValueArray33 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33) { return internal::ValueArray33(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33); } template internal::ValueArray34 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34) { return internal::ValueArray34(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34); } template internal::ValueArray35 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) { return internal::ValueArray35(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35); } template internal::ValueArray36 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) { return internal::ValueArray36(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36); } template internal::ValueArray37 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37) { return internal::ValueArray37(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37); } template internal::ValueArray38 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) { return internal::ValueArray38(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38); } template internal::ValueArray39 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) { return internal::ValueArray39(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39); } template internal::ValueArray40 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) { return internal::ValueArray40(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40); } template internal::ValueArray41 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) { return internal::ValueArray41(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41); } template internal::ValueArray42 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42) { return internal::ValueArray42(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42); } template internal::ValueArray43 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43) { return internal::ValueArray43(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43); } template internal::ValueArray44 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44) { return internal::ValueArray44(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44); } template internal::ValueArray45 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) { return internal::ValueArray45(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45); } template internal::ValueArray46 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) { return internal::ValueArray46(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46); } template internal::ValueArray47 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) { return internal::ValueArray47(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47); } template internal::ValueArray48 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) { return internal::ValueArray48(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48); } template internal::ValueArray49 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49) { return internal::ValueArray49(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49); } template internal::ValueArray50 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) { return internal::ValueArray50(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50); } // Bool() allows generating tests with parameters in a set of (false, true). // // Synopsis: // Bool() // - returns a generator producing sequences with elements {false, true}. // // It is useful when testing code that depends on Boolean flags. Combinations // of multiple flags can be tested when several Bool()'s are combined using // Combine() function. // // In the following example all tests in the test case FlagDependentTest // will be instantiated twice with parameters false and true. // // class FlagDependentTest : public testing::TestWithParam { // virtual void SetUp() { // external_flag = GetParam(); // } // } // INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); // inline internal::ParamGenerator Bool() { return Values(false, true); } # if GTEST_HAS_COMBINE // Combine() allows the user to combine two or more sequences to produce // values of a Cartesian product of those sequences' elements. // // Synopsis: // Combine(gen1, gen2, ..., genN) // - returns a generator producing sequences with elements coming from // the Cartesian product of elements from the sequences generated by // gen1, gen2, ..., genN. The sequence elements will have a type of // tuple where T1, T2, ..., TN are the types // of elements from sequences produces by gen1, gen2, ..., genN. // // Combine can have up to 10 arguments. This number is currently limited // by the maximum number of elements in the tuple implementation used by Google // Test. // // Example: // // This will instantiate tests in test case AnimalTest each one with // the parameter values tuple("cat", BLACK), tuple("cat", WHITE), // tuple("dog", BLACK), and tuple("dog", WHITE): // // enum Color { BLACK, GRAY, WHITE }; // class AnimalTest // : public testing::TestWithParam > {...}; // // TEST_P(AnimalTest, AnimalLooksNice) {...} // // INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, // Combine(Values("cat", "dog"), // Values(BLACK, WHITE))); // // This will instantiate tests in FlagDependentTest with all variations of two // Boolean flags: // // class FlagDependentTest // : public testing::TestWithParam > { // virtual void SetUp() { // // Assigns external_flag_1 and external_flag_2 values from the tuple. // tie(external_flag_1, external_flag_2) = GetParam(); // } // }; // // TEST_P(FlagDependentTest, TestFeature1) { // // Test your code using external_flag_1 and external_flag_2 here. // } // INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, // Combine(Bool(), Bool())); // template internal::CartesianProductHolder2 Combine( const Generator1& g1, const Generator2& g2) { return internal::CartesianProductHolder2( g1, g2); } template internal::CartesianProductHolder3 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3) { return internal::CartesianProductHolder3( g1, g2, g3); } template internal::CartesianProductHolder4 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4) { return internal::CartesianProductHolder4( g1, g2, g3, g4); } template internal::CartesianProductHolder5 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5) { return internal::CartesianProductHolder5( g1, g2, g3, g4, g5); } template internal::CartesianProductHolder6 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6) { return internal::CartesianProductHolder6( g1, g2, g3, g4, g5, g6); } template internal::CartesianProductHolder7 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7) { return internal::CartesianProductHolder7( g1, g2, g3, g4, g5, g6, g7); } template internal::CartesianProductHolder8 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8) { return internal::CartesianProductHolder8( g1, g2, g3, g4, g5, g6, g7, g8); } template internal::CartesianProductHolder9 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9) { return internal::CartesianProductHolder9( g1, g2, g3, g4, g5, g6, g7, g8, g9); } template internal::CartesianProductHolder10 Combine( const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9, const Generator10& g10) { return internal::CartesianProductHolder10( g1, g2, g3, g4, g5, g6, g7, g8, g9, g10); } # endif // GTEST_HAS_COMBINE # define TEST_P(test_case_name, test_name) \ class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ : public test_case_name { \ public: \ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ virtual void TestBody(); \ private: \ static int AddToRegistry() { \ ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ GetTestCasePatternHolder(\ #test_case_name, \ ::testing::internal::CodeLocation(\ __FILE__, __LINE__))->AddTestPattern(\ GTEST_STRINGIFY_(test_case_name), \ GTEST_STRINGIFY_(test_name), \ new ::testing::internal::TestMetaFactory< \ GTEST_TEST_CLASS_NAME_(\ test_case_name, test_name)>()); \ return 0; \ } \ static int gtest_registering_dummy_ GTEST_ATTRIBUTE_UNUSED_; \ GTEST_DISALLOW_COPY_AND_ASSIGN_(\ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ }; \ int GTEST_TEST_CLASS_NAME_(test_case_name, \ test_name)::gtest_registering_dummy_ = \ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() // The optional last argument to INSTANTIATE_TEST_CASE_P allows the user // to specify a function or functor that generates custom test name suffixes // based on the test parameters. The function should accept one argument of // type testing::TestParamInfo, and return std::string. // // testing::PrintToStringParamName is a builtin test suffix generator that // returns the value of testing::PrintToString(GetParam()). // // Note: test names must be non-empty, unique, and may only contain ASCII // alphanumeric characters or underscore. Because PrintToString adds quotes // to std::string and C strings, it won't work for these types. # define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator, ...) \ static ::testing::internal::ParamGenerator \ gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ static ::std::string gtest_##prefix##test_case_name##_EvalGenerateName_( \ const ::testing::TestParamInfo& info) { \ return ::testing::internal::GetParamNameGen \ (__VA_ARGS__)(info); \ } \ static int gtest_##prefix##test_case_name##_dummy_ GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ GetTestCasePatternHolder(\ #test_case_name, \ ::testing::internal::CodeLocation(\ __FILE__, __LINE__))->AddTestCaseInstantiation(\ #prefix, \ >est_##prefix##test_case_name##_EvalGenerator_, \ >est_##prefix##test_case_name##_EvalGenerateName_, \ __FILE__, __LINE__) } // namespace testing #endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ // Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google C++ Testing and Mocking Framework definitions useful in production code. // GOOGLETEST_CM0003 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_ #define GTEST_INCLUDE_GTEST_GTEST_PROD_H_ // When you need to test the private or protected members of a class, // use the FRIEND_TEST macro to declare your tests as friends of the // class. For example: // // class MyClass { // private: // void PrivateMethod(); // FRIEND_TEST(MyClassTest, PrivateMethodWorks); // }; // // class MyClassTest : public testing::Test { // // ... // }; // // TEST_F(MyClassTest, PrivateMethodWorks) { // // Can call MyClass::PrivateMethod() here. // } // // Note: The test class must be in the same namespace as the class being tested. // For example, putting MyClassTest in an anonymous namespace will not work. #define FRIEND_TEST(test_case_name, test_name)\ friend class test_case_name##_##test_name##_Test #endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ #define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ #include #include GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // A copyable object representing the result of a test part (i.e. an // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). // // Don't inherit from TestPartResult as its destructor is not virtual. class GTEST_API_ TestPartResult { public: // The possible outcomes of a test part (i.e. an assertion or an // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). enum Type { kSuccess, // Succeeded. kNonFatalFailure, // Failed but the test can continue. kFatalFailure // Failed and the test should be terminated. }; // C'tor. TestPartResult does NOT have a default constructor. // Always use this constructor (with parameters) to create a // TestPartResult object. TestPartResult(Type a_type, const char* a_file_name, int a_line_number, const char* a_message) : type_(a_type), file_name_(a_file_name == NULL ? "" : a_file_name), line_number_(a_line_number), summary_(ExtractSummary(a_message)), message_(a_message) { } // Gets the outcome of the test part. Type type() const { return type_; } // Gets the name of the source file where the test part took place, or // NULL if it's unknown. const char* file_name() const { return file_name_.empty() ? NULL : file_name_.c_str(); } // Gets the line in the source file where the test part took place, // or -1 if it's unknown. int line_number() const { return line_number_; } // Gets the summary of the failure message. const char* summary() const { return summary_.c_str(); } // Gets the message associated with the test part. const char* message() const { return message_.c_str(); } // Returns true iff the test part passed. bool passed() const { return type_ == kSuccess; } // Returns true iff the test part failed. bool failed() const { return type_ != kSuccess; } // Returns true iff the test part non-fatally failed. bool nonfatally_failed() const { return type_ == kNonFatalFailure; } // Returns true iff the test part fatally failed. bool fatally_failed() const { return type_ == kFatalFailure; } private: Type type_; // Gets the summary of the failure message by omitting the stack // trace in it. static std::string ExtractSummary(const char* message); // The name of the source file where the test part took place, or // "" if the source file is unknown. std::string file_name_; // The line in the source file where the test part took place, or -1 // if the line number is unknown. int line_number_; std::string summary_; // The test failure summary. std::string message_; // The test failure message. }; // Prints a TestPartResult object. std::ostream& operator<<(std::ostream& os, const TestPartResult& result); // An array of TestPartResult objects. // // Don't inherit from TestPartResultArray as its destructor is not // virtual. class GTEST_API_ TestPartResultArray { public: TestPartResultArray() {} // Appends the given TestPartResult to the array. void Append(const TestPartResult& result); // Returns the TestPartResult at the given index (0-based). const TestPartResult& GetTestPartResult(int index) const; // Returns the number of TestPartResult objects in the array. int size() const; private: std::vector array_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); }; // This interface knows how to report a test part result. class GTEST_API_ TestPartResultReporterInterface { public: virtual ~TestPartResultReporterInterface() {} virtual void ReportTestPartResult(const TestPartResult& result) = 0; }; namespace internal { // This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a // statement generates new fatal failures. To do so it registers itself as the // current test part result reporter. Besides checking if fatal failures were // reported, it only delegates the reporting to the former result reporter. // The original result reporter is restored in the destructor. // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. class GTEST_API_ HasNewFatalFailureHelper : public TestPartResultReporterInterface { public: HasNewFatalFailureHelper(); virtual ~HasNewFatalFailureHelper(); virtual void ReportTestPartResult(const TestPartResult& result); bool has_new_fatal_failure() const { return has_new_fatal_failure_; } private: bool has_new_fatal_failure_; TestPartResultReporterInterface* original_reporter_; GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); }; } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ #define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ // This header implements typed tests and type-parameterized tests. // Typed (aka type-driven) tests repeat the same test for types in a // list. You must know which types you want to test with when writing // typed tests. Here's how you do it: #if 0 // First, define a fixture class template. It should be parameterized // by a type. Remember to derive it from testing::Test. template class FooTest : public testing::Test { public: ... typedef std::list List; static T shared_; T value_; }; // Next, associate a list of types with the test case, which will be // repeated for each type in the list. The typedef is necessary for // the macro to parse correctly. typedef testing::Types MyTypes; TYPED_TEST_CASE(FooTest, MyTypes); // If the type list contains only one type, you can write that type // directly without Types<...>: // TYPED_TEST_CASE(FooTest, int); // Then, use TYPED_TEST() instead of TEST_F() to define as many typed // tests for this test case as you want. TYPED_TEST(FooTest, DoesBlah) { // Inside a test, refer to TypeParam to get the type parameter. // Since we are inside a derived class template, C++ requires use to // visit the members of FooTest via 'this'. TypeParam n = this->value_; // To visit static members of the fixture, add the TestFixture:: // prefix. n += TestFixture::shared_; // To refer to typedefs in the fixture, add the "typename // TestFixture::" prefix. typename TestFixture::List values; values.push_back(n); ... } TYPED_TEST(FooTest, HasPropertyA) { ... } // TYPED_TEST_CASE takes an optional third argument which allows to specify a // class that generates custom test name suffixes based on the type. This should // be a class which has a static template function GetName(int index) returning // a string for each type. The provided integer index equals the index of the // type in the provided type list. In many cases the index can be ignored. // // For example: // class MyTypeNames { // public: // template // static std::string GetName(int) { // if (std::is_same()) return "char"; // if (std::is_same()) return "int"; // if (std::is_same()) return "unsignedInt"; // } // }; // TYPED_TEST_CASE(FooTest, MyTypes, MyTypeNames); #endif // 0 // Type-parameterized tests are abstract test patterns parameterized // by a type. Compared with typed tests, type-parameterized tests // allow you to define the test pattern without knowing what the type // parameters are. The defined pattern can be instantiated with // different types any number of times, in any number of translation // units. // // If you are designing an interface or concept, you can define a // suite of type-parameterized tests to verify properties that any // valid implementation of the interface/concept should have. Then, // each implementation can easily instantiate the test suite to verify // that it conforms to the requirements, without having to write // similar tests repeatedly. Here's an example: #if 0 // First, define a fixture class template. It should be parameterized // by a type. Remember to derive it from testing::Test. template class FooTest : public testing::Test { ... }; // Next, declare that you will define a type-parameterized test case // (the _P suffix is for "parameterized" or "pattern", whichever you // prefer): TYPED_TEST_CASE_P(FooTest); // Then, use TYPED_TEST_P() to define as many type-parameterized tests // for this type-parameterized test case as you want. TYPED_TEST_P(FooTest, DoesBlah) { // Inside a test, refer to TypeParam to get the type parameter. TypeParam n = 0; ... } TYPED_TEST_P(FooTest, HasPropertyA) { ... } // Now the tricky part: you need to register all test patterns before // you can instantiate them. The first argument of the macro is the // test case name; the rest are the names of the tests in this test // case. REGISTER_TYPED_TEST_CASE_P(FooTest, DoesBlah, HasPropertyA); // Finally, you are free to instantiate the pattern with the types you // want. If you put the above code in a header file, you can #include // it in multiple C++ source files and instantiate it multiple times. // // To distinguish different instances of the pattern, the first // argument to the INSTANTIATE_* macro is a prefix that will be added // to the actual test case name. Remember to pick unique prefixes for // different instances. typedef testing::Types MyTypes; INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); // If the type list contains only one type, you can write that type // directly without Types<...>: // INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); // // Similar to the optional argument of TYPED_TEST_CASE above, // INSTANTIATE_TEST_CASE_P takes an optional fourth argument which allows to // generate custom names. // INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes, MyTypeNames); #endif // 0 // Implements typed tests. #if GTEST_HAS_TYPED_TEST // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the name of the typedef for the type parameters of the // given test case. # define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_ // Expands to the name of the typedef for the NameGenerator, responsible for // creating the suffixes of the name. #define GTEST_NAME_GENERATOR_(TestCaseName) \ gtest_type_params_##TestCaseName##_NameGenerator // The 'Types' template argument below must have spaces around it // since some compilers may choke on '>>' when passing a template // instance (e.g. Types) # define TYPED_TEST_CASE(CaseName, Types, ...) \ typedef ::testing::internal::TypeList< Types >::type GTEST_TYPE_PARAMS_( \ CaseName); \ typedef ::testing::internal::NameGeneratorSelector<__VA_ARGS__>::type \ GTEST_NAME_GENERATOR_(CaseName) # define TYPED_TEST(CaseName, TestName) \ template \ class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ : public CaseName { \ private: \ typedef CaseName TestFixture; \ typedef gtest_TypeParam_ TypeParam; \ virtual void TestBody(); \ }; \ static bool gtest_##CaseName##_##TestName##_registered_ \ GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::internal::TypeParameterizedTest< \ CaseName, \ ::testing::internal::TemplateSel, \ GTEST_TYPE_PARAMS_( \ CaseName)>::Register("", \ ::testing::internal::CodeLocation( \ __FILE__, __LINE__), \ #CaseName, #TestName, 0, \ ::testing::internal::GenerateNames< \ GTEST_NAME_GENERATOR_(CaseName), \ GTEST_TYPE_PARAMS_(CaseName)>()); \ template \ void GTEST_TEST_CLASS_NAME_(CaseName, \ TestName)::TestBody() #endif // GTEST_HAS_TYPED_TEST // Implements type-parameterized tests. #if GTEST_HAS_TYPED_TEST_P // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the namespace name that the type-parameterized tests for // the given type-parameterized test case are defined in. The exact // name of the namespace is subject to change without notice. # define GTEST_CASE_NAMESPACE_(TestCaseName) \ gtest_case_##TestCaseName##_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the name of the variable used to remember the names of // the defined tests in the given test case. # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \ gtest_typed_test_case_p_state_##TestCaseName##_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. // // Expands to the name of the variable used to remember the names of // the registered tests in the given test case. # define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \ gtest_registered_test_names_##TestCaseName##_ // The variables defined in the type-parameterized test macros are // static as typically these macros are used in a .h file that can be // #included in multiple translation units linked together. # define TYPED_TEST_CASE_P(CaseName) \ static ::testing::internal::TypedTestCasePState \ GTEST_TYPED_TEST_CASE_P_STATE_(CaseName) # define TYPED_TEST_P(CaseName, TestName) \ namespace GTEST_CASE_NAMESPACE_(CaseName) { \ template \ class TestName : public CaseName { \ private: \ typedef CaseName TestFixture; \ typedef gtest_TypeParam_ TypeParam; \ virtual void TestBody(); \ }; \ static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \ GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\ __FILE__, __LINE__, #CaseName, #TestName); \ } \ template \ void GTEST_CASE_NAMESPACE_(CaseName)::TestName::TestBody() # define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \ namespace GTEST_CASE_NAMESPACE_(CaseName) { \ typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \ } \ static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) \ GTEST_ATTRIBUTE_UNUSED_ = \ GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames( \ __FILE__, __LINE__, #__VA_ARGS__) // The 'Types' template argument below must have spaces around it // since some compilers may choke on '>>' when passing a template // instance (e.g. Types) # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types, ...) \ static bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::internal::TypeParameterizedTestCase< \ CaseName, GTEST_CASE_NAMESPACE_(CaseName)::gtest_AllTests_, \ ::testing::internal::TypeList< Types >::type>:: \ Register(#Prefix, \ ::testing::internal::CodeLocation(__FILE__, __LINE__), \ >EST_TYPED_TEST_CASE_P_STATE_(CaseName), #CaseName, \ GTEST_REGISTERED_TEST_NAMES_(CaseName), \ ::testing::internal::GenerateNames< \ ::testing::internal::NameGeneratorSelector< \ __VA_ARGS__>::type, \ ::testing::internal::TypeList< Types >::type>()) #endif // GTEST_HAS_TYPED_TEST_P #endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // Depending on the platform, different string classes are available. // On Linux, in addition to ::std::string, Google also makes use of // class ::string, which has the same interface as ::std::string, but // has a different implementation. // // You can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that // ::string is available AND is a distinct type to ::std::string, or // define it to 0 to indicate otherwise. // // If ::std::string and ::string are the same class on your platform // due to aliasing, you should define GTEST_HAS_GLOBAL_STRING to 0. // // If you do not define GTEST_HAS_GLOBAL_STRING, it is defined // heuristically. namespace testing { // Silence C4100 (unreferenced formal parameter) and 4805 // unsafe mix of type 'const int' and type 'const bool' #ifdef _MSC_VER # pragma warning(push) # pragma warning(disable:4805) # pragma warning(disable:4100) #endif // Declares the flags. // This flag temporary enables the disabled tests. GTEST_DECLARE_bool_(also_run_disabled_tests); // This flag brings the debugger on an assertion failure. GTEST_DECLARE_bool_(break_on_failure); // This flag controls whether Google Test catches all test-thrown exceptions // and logs them as failures. GTEST_DECLARE_bool_(catch_exceptions); // This flag enables using colors in terminal output. Available values are // "yes" to enable colors, "no" (disable colors), or "auto" (the default) // to let Google Test decide. GTEST_DECLARE_string_(color); // This flag sets up the filter to select by name using a glob pattern // the tests to run. If the filter is not given all tests are executed. GTEST_DECLARE_string_(filter); // This flag controls whether Google Test installs a signal handler that dumps // debugging information when fatal signals are raised. GTEST_DECLARE_bool_(install_failure_signal_handler); // This flag causes the Google Test to list tests. None of the tests listed // are actually run if the flag is provided. GTEST_DECLARE_bool_(list_tests); // This flag controls whether Google Test emits a detailed XML report to a file // in addition to its normal textual output. GTEST_DECLARE_string_(output); // This flags control whether Google Test prints the elapsed time for each // test. GTEST_DECLARE_bool_(print_time); // This flags control whether Google Test prints UTF8 characters as text. GTEST_DECLARE_bool_(print_utf8); // This flag specifies the random number seed. GTEST_DECLARE_int32_(random_seed); // This flag sets how many times the tests are repeated. The default value // is 1. If the value is -1 the tests are repeating forever. GTEST_DECLARE_int32_(repeat); // This flag controls whether Google Test includes Google Test internal // stack frames in failure stack traces. GTEST_DECLARE_bool_(show_internal_stack_frames); // When this flag is specified, tests' order is randomized on every iteration. GTEST_DECLARE_bool_(shuffle); // This flag specifies the maximum number of stack frames to be // printed in a failure message. GTEST_DECLARE_int32_(stack_trace_depth); // When this flag is specified, a failed assertion will throw an // exception if exceptions are enabled, or exit the program with a // non-zero code otherwise. For use with an external test framework. GTEST_DECLARE_bool_(throw_on_failure); // When this flag is set with a "host:port" string, on supported // platforms test results are streamed to the specified port on // the specified host machine. GTEST_DECLARE_string_(stream_result_to); #if GTEST_USE_OWN_FLAGFILE_FLAG_ GTEST_DECLARE_string_(flagfile); #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ // The upper limit for valid stack trace depths. const int kMaxStackTraceDepth = 100; namespace internal { class AssertHelper; class DefaultGlobalTestPartResultReporter; class ExecDeathTest; class NoExecDeathTest; class FinalSuccessChecker; class GTestFlagSaver; class StreamingListenerTest; class TestResultAccessor; class TestEventListenersAccessor; class TestEventRepeater; class UnitTestRecordPropertyTestHelper; class WindowsDeathTest; class FuchsiaDeathTest; class UnitTestImpl* GetUnitTestImpl(); void ReportFailureInUnknownLocation(TestPartResult::Type result_type, const std::string& message); } // namespace internal // The friend relationship of some of these classes is cyclic. // If we don't forward declare them the compiler might confuse the classes // in friendship clauses with same named classes on the scope. class Test; class TestCase; class TestInfo; class UnitTest; // A class for indicating whether an assertion was successful. When // the assertion wasn't successful, the AssertionResult object // remembers a non-empty message that describes how it failed. // // To create an instance of this class, use one of the factory functions // (AssertionSuccess() and AssertionFailure()). // // This class is useful for two purposes: // 1. Defining predicate functions to be used with Boolean test assertions // EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts // 2. Defining predicate-format functions to be // used with predicate assertions (ASSERT_PRED_FORMAT*, etc). // // For example, if you define IsEven predicate: // // testing::AssertionResult IsEven(int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess(); // else // return testing::AssertionFailure() << n << " is odd"; // } // // Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) // will print the message // // Value of: IsEven(Fib(5)) // Actual: false (5 is odd) // Expected: true // // instead of a more opaque // // Value of: IsEven(Fib(5)) // Actual: false // Expected: true // // in case IsEven is a simple Boolean predicate. // // If you expect your predicate to be reused and want to support informative // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up // about half as often as positive ones in our tests), supply messages for // both success and failure cases: // // testing::AssertionResult IsEven(int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess() << n << " is even"; // else // return testing::AssertionFailure() << n << " is odd"; // } // // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print // // Value of: IsEven(Fib(6)) // Actual: true (8 is even) // Expected: false // // NB: Predicates that support negative Boolean assertions have reduced // performance in positive ones so be careful not to use them in tests // that have lots (tens of thousands) of positive Boolean assertions. // // To use this class with EXPECT_PRED_FORMAT assertions such as: // // // Verifies that Foo() returns an even number. // EXPECT_PRED_FORMAT1(IsEven, Foo()); // // you need to define: // // testing::AssertionResult IsEven(const char* expr, int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess(); // else // return testing::AssertionFailure() // << "Expected: " << expr << " is even\n Actual: it's " << n; // } // // If Foo() returns 5, you will see the following message: // // Expected: Foo() is even // Actual: it's 5 // class GTEST_API_ AssertionResult { public: // Copy constructor. // Used in EXPECT_TRUE/FALSE(assertion_result). AssertionResult(const AssertionResult& other); #if defined(_MSC_VER) && _MSC_VER < 1910 GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 /* forcing value to bool */) #endif // Used in the EXPECT_TRUE/FALSE(bool_expression). // // T must be contextually convertible to bool. // // The second parameter prevents this overload from being considered if // the argument is implicitly convertible to AssertionResult. In that case // we want AssertionResult's copy constructor to be used. template explicit AssertionResult( const T& success, typename internal::EnableIf< !internal::ImplicitlyConvertible::value>::type* /*enabler*/ = NULL) : success_(success) {} #if defined(_MSC_VER) && _MSC_VER < 1910 GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // Assignment operator. AssertionResult& operator=(AssertionResult other) { swap(other); return *this; } // Returns true iff the assertion succeeded. operator bool() const { return success_; } // NOLINT // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. AssertionResult operator!() const; // Returns the text streamed into this AssertionResult. Test assertions // use it when they fail (i.e., the predicate's outcome doesn't match the // assertion's expectation). When nothing has been streamed into the // object, returns an empty string. const char* message() const { return message_.get() != NULL ? message_->c_str() : ""; } // FIXME: Remove this after making sure no clients use it. // Deprecated; please use message() instead. const char* failure_message() const { return message(); } // Streams a custom failure message into this object. template AssertionResult& operator<<(const T& value) { AppendMessage(Message() << value); return *this; } // Allows streaming basic output manipulators such as endl or flush into // this object. AssertionResult& operator<<( ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) { AppendMessage(Message() << basic_manipulator); return *this; } private: // Appends the contents of message to message_. void AppendMessage(const Message& a_message) { if (message_.get() == NULL) message_.reset(new ::std::string); message_->append(a_message.GetString().c_str()); } // Swap the contents of this AssertionResult with other. void swap(AssertionResult& other); // Stores result of the assertion predicate. bool success_; // Stores the message describing the condition in case the expectation // construct is not satisfied with the predicate's outcome. // Referenced via a pointer to avoid taking too much stack frame space // with test assertions. internal::scoped_ptr< ::std::string> message_; }; // Makes a successful assertion result. GTEST_API_ AssertionResult AssertionSuccess(); // Makes a failed assertion result. GTEST_API_ AssertionResult AssertionFailure(); // Makes a failed assertion result with the given failure message. // Deprecated; use AssertionFailure() << msg. GTEST_API_ AssertionResult AssertionFailure(const Message& msg); } // namespace testing // Includes the auto-generated header that implements a family of generic // predicate assertion macros. This include comes late because it relies on // APIs declared above. // Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // This file is AUTOMATICALLY GENERATED on 01/02/2018 by command // 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! // // Implements a family of generic predicate assertion macros. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ #define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ namespace testing { // This header implements a family of generic predicate assertion // macros: // // ASSERT_PRED_FORMAT1(pred_format, v1) // ASSERT_PRED_FORMAT2(pred_format, v1, v2) // ... // // where pred_format is a function or functor that takes n (in the // case of ASSERT_PRED_FORMATn) values and their source expression // text, and returns a testing::AssertionResult. See the definition // of ASSERT_EQ in gtest.h for an example. // // If you don't care about formatting, you can use the more // restrictive version: // // ASSERT_PRED1(pred, v1) // ASSERT_PRED2(pred, v1, v2) // ... // // where pred is an n-ary function or functor that returns bool, // and the values v1, v2, ..., must support the << operator for // streaming to std::ostream. // // We also define the EXPECT_* variations. // // For now we only support predicates whose arity is at most 5. // GTEST_ASSERT_ is the basic statement to which all of the assertions // in this file reduce. Don't use this in your code. #define GTEST_ASSERT_(expression, on_failure) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (const ::testing::AssertionResult gtest_ar = (expression)) \ ; \ else \ on_failure(gtest_ar.failure_message()) // Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use // this in your code. template AssertionResult AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) { if (pred(v1)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << v1; } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. // Don't use this in your code. #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ GTEST_ASSERT_(pred_format(#v1, v1), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use // this in your code. #define GTEST_PRED1_(pred, v1, on_failure)\ GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ #v1, \ pred, \ v1), on_failure) // Unary predicate assertion macros. #define EXPECT_PRED_FORMAT1(pred_format, v1) \ GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED1(pred, v1) \ GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT1(pred_format, v1) \ GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) #define ASSERT_PRED1(pred, v1) \ GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use // this in your code. template AssertionResult AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) { if (pred(v1, v2)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << v1 << "\n" << e2 << " evaluates to " << v2; } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. // Don't use this in your code. #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use // this in your code. #define GTEST_PRED2_(pred, v1, v2, on_failure)\ GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ #v1, \ #v2, \ pred, \ v1, \ v2), on_failure) // Binary predicate assertion macros. #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED2(pred, v1, v2) \ GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) #define ASSERT_PRED2(pred, v1, v2) \ GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use // this in your code. template AssertionResult AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) { if (pred(v1, v2, v3)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << v1 << "\n" << e2 << " evaluates to " << v2 << "\n" << e3 << " evaluates to " << v3; } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. // Don't use this in your code. #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use // this in your code. #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ #v1, \ #v2, \ #v3, \ pred, \ v1, \ v2, \ v3), on_failure) // Ternary predicate assertion macros. #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED3(pred, v1, v2, v3) \ GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) #define ASSERT_PRED3(pred, v1, v2, v3) \ GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use // this in your code. template AssertionResult AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) { if (pred(v1, v2, v3, v4)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << v1 << "\n" << e2 << " evaluates to " << v2 << "\n" << e3 << " evaluates to " << v3 << "\n" << e4 << " evaluates to " << v4; } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. // Don't use this in your code. #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use // this in your code. #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ #v1, \ #v2, \ #v3, \ #v4, \ pred, \ v1, \ v2, \ v3, \ v4), on_failure) // 4-ary predicate assertion macros. #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED4(pred, v1, v2, v3, v4) \ GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) #define ASSERT_PRED4(pred, v1, v2, v3, v4) \ GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use // this in your code. template AssertionResult AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) { if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 << ", " << e5 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << v1 << "\n" << e2 << " evaluates to " << v2 << "\n" << e3 << " evaluates to " << v3 << "\n" << e4 << " evaluates to " << v4 << "\n" << e5 << " evaluates to " << v5; } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. // Don't use this in your code. #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use // this in your code. #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ #v1, \ #v2, \ #v3, \ #v4, \ #v5, \ pred, \ v1, \ v2, \ v3, \ v4, \ v5), on_failure) // 5-ary predicate assertion macros. #define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) #define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) } // namespace testing #endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ namespace testing { // The abstract class that all tests inherit from. // // In Google Test, a unit test program contains one or many TestCases, and // each TestCase contains one or many Tests. // // When you define a test using the TEST macro, you don't need to // explicitly derive from Test - the TEST macro automatically does // this for you. // // The only time you derive from Test is when defining a test fixture // to be used in a TEST_F. For example: // // class FooTest : public testing::Test { // protected: // void SetUp() override { ... } // void TearDown() override { ... } // ... // }; // // TEST_F(FooTest, Bar) { ... } // TEST_F(FooTest, Baz) { ... } // // Test is not copyable. class GTEST_API_ Test { public: friend class TestInfo; // Defines types for pointers to functions that set up and tear down // a test case. typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc; typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc; // The d'tor is virtual as we intend to inherit from Test. virtual ~Test(); // Sets up the stuff shared by all tests in this test case. // // Google Test will call Foo::SetUpTestCase() before running the first // test in test case Foo. Hence a sub-class can define its own // SetUpTestCase() method to shadow the one defined in the super // class. static void SetUpTestCase() {} // Tears down the stuff shared by all tests in this test case. // // Google Test will call Foo::TearDownTestCase() after running the last // test in test case Foo. Hence a sub-class can define its own // TearDownTestCase() method to shadow the one defined in the super // class. static void TearDownTestCase() {} // Returns true iff the current test has a fatal failure. static bool HasFatalFailure(); // Returns true iff the current test has a non-fatal failure. static bool HasNonfatalFailure(); // Returns true iff the current test has a (either fatal or // non-fatal) failure. static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } // Logs a property for the current test, test case, or for the entire // invocation of the test program when used outside of the context of a // test case. Only the last value for a given key is remembered. These // are public static so they can be called from utility functions that are // not members of the test fixture. Calls to RecordProperty made during // lifespan of the test (from the moment its constructor starts to the // moment its destructor finishes) will be output in XML as attributes of // the element. Properties recorded from fixture's // SetUpTestCase or TearDownTestCase are logged as attributes of the // corresponding element. Calls to RecordProperty made in the // global context (before or after invocation of RUN_ALL_TESTS and from // SetUp/TearDown method of Environment objects registered with Google // Test) will be output as attributes of the element. static void RecordProperty(const std::string& key, const std::string& value); static void RecordProperty(const std::string& key, int value); protected: // Creates a Test object. Test(); // Sets up the test fixture. virtual void SetUp(); // Tears down the test fixture. virtual void TearDown(); private: // Returns true iff the current test has the same fixture class as // the first test in the current test case. static bool HasSameFixtureClass(); // Runs the test after the test fixture has been set up. // // A sub-class must implement this to define the test logic. // // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. // Instead, use the TEST or TEST_F macro. virtual void TestBody() = 0; // Sets up, executes, and tears down the test. void Run(); // Deletes self. We deliberately pick an unusual name for this // internal method to avoid clashing with names used in user TESTs. void DeleteSelf_() { delete this; } const internal::scoped_ptr< GTEST_FLAG_SAVER_ > gtest_flag_saver_; // Often a user misspells SetUp() as Setup() and spends a long time // wondering why it is never called by Google Test. The declaration of // the following method is solely for catching such an error at // compile time: // // - The return type is deliberately chosen to be not void, so it // will be a conflict if void Setup() is declared in the user's // test fixture. // // - This method is private, so it will be another compiler error // if the method is called from the user's test fixture. // // DO NOT OVERRIDE THIS FUNCTION. // // If you see an error about overriding the following function or // about it being private, you have mis-spelled SetUp() as Setup(). struct Setup_should_be_spelled_SetUp {}; virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } // We disallow copying Tests. GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); }; typedef internal::TimeInMillis TimeInMillis; // A copyable object representing a user specified test property which can be // output as a key/value string pair. // // Don't inherit from TestProperty as its destructor is not virtual. class TestProperty { public: // C'tor. TestProperty does NOT have a default constructor. // Always use this constructor (with parameters) to create a // TestProperty object. TestProperty(const std::string& a_key, const std::string& a_value) : key_(a_key), value_(a_value) { } // Gets the user supplied key. const char* key() const { return key_.c_str(); } // Gets the user supplied value. const char* value() const { return value_.c_str(); } // Sets a new value, overriding the one supplied in the constructor. void SetValue(const std::string& new_value) { value_ = new_value; } private: // The key supplied by the user. std::string key_; // The value supplied by the user. std::string value_; }; // The result of a single Test. This includes a list of // TestPartResults, a list of TestProperties, a count of how many // death tests there are in the Test, and how much time it took to run // the Test. // // TestResult is not copyable. class GTEST_API_ TestResult { public: // Creates an empty TestResult. TestResult(); // D'tor. Do not inherit from TestResult. ~TestResult(); // Gets the number of all test parts. This is the sum of the number // of successful test parts and the number of failed test parts. int total_part_count() const; // Returns the number of the test properties. int test_property_count() const; // Returns true iff the test passed (i.e. no test part failed). bool Passed() const { return !Failed(); } // Returns true iff the test failed. bool Failed() const; // Returns true iff the test fatally failed. bool HasFatalFailure() const; // Returns true iff the test has a non-fatal failure. bool HasNonfatalFailure() const; // Returns the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Returns the i-th test part result among all the results. i can range from 0 // to total_part_count() - 1. If i is not in that range, aborts the program. const TestPartResult& GetTestPartResult(int i) const; // Returns the i-th test property. i can range from 0 to // test_property_count() - 1. If i is not in that range, aborts the // program. const TestProperty& GetTestProperty(int i) const; private: friend class TestInfo; friend class TestCase; friend class UnitTest; friend class internal::DefaultGlobalTestPartResultReporter; friend class internal::ExecDeathTest; friend class internal::TestResultAccessor; friend class internal::UnitTestImpl; friend class internal::WindowsDeathTest; friend class internal::FuchsiaDeathTest; // Gets the vector of TestPartResults. const std::vector& test_part_results() const { return test_part_results_; } // Gets the vector of TestProperties. const std::vector& test_properties() const { return test_properties_; } // Sets the elapsed time. void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } // Adds a test property to the list. The property is validated and may add // a non-fatal failure if invalid (e.g., if it conflicts with reserved // key names). If a property is already recorded for the same key, the // value will be updated, rather than storing multiple values for the same // key. xml_element specifies the element for which the property is being // recorded and is used for validation. void RecordProperty(const std::string& xml_element, const TestProperty& test_property); // Adds a failure if the key is a reserved attribute of Google Test // testcase tags. Returns true if the property is valid. // FIXME: Validate attribute names are legal and human readable. static bool ValidateTestProperty(const std::string& xml_element, const TestProperty& test_property); // Adds a test part result to the list. void AddTestPartResult(const TestPartResult& test_part_result); // Returns the death test count. int death_test_count() const { return death_test_count_; } // Increments the death test count, returning the new count. int increment_death_test_count() { return ++death_test_count_; } // Clears the test part results. void ClearTestPartResults(); // Clears the object. void Clear(); // Protects mutable state of the property vector and of owned // properties, whose values may be updated. internal::Mutex test_properites_mutex_; // The vector of TestPartResults std::vector test_part_results_; // The vector of TestProperties std::vector test_properties_; // Running count of death tests. int death_test_count_; // The elapsed time, in milliseconds. TimeInMillis elapsed_time_; // We disallow copying TestResult. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); }; // class TestResult // A TestInfo object stores the following information about a test: // // Test case name // Test name // Whether the test should be run // A function pointer that creates the test object when invoked // Test result // // The constructor of TestInfo registers itself with the UnitTest // singleton such that the RUN_ALL_TESTS() macro knows which tests to // run. class GTEST_API_ TestInfo { public: // Destructs a TestInfo object. This function is not virtual, so // don't inherit from TestInfo. ~TestInfo(); // Returns the test case name. const char* test_case_name() const { return test_case_name_.c_str(); } // Returns the test name. const char* name() const { return name_.c_str(); } // Returns the name of the parameter type, or NULL if this is not a typed // or a type-parameterized test. const char* type_param() const { if (type_param_.get() != NULL) return type_param_->c_str(); return NULL; } // Returns the text representation of the value parameter, or NULL if this // is not a value-parameterized test. const char* value_param() const { if (value_param_.get() != NULL) return value_param_->c_str(); return NULL; } // Returns the file name where this test is defined. const char* file() const { return location_.file.c_str(); } // Returns the line where this test is defined. int line() const { return location_.line; } // Return true if this test should not be run because it's in another shard. bool is_in_another_shard() const { return is_in_another_shard_; } // Returns true if this test should run, that is if the test is not // disabled (or it is disabled but the also_run_disabled_tests flag has // been specified) and its full name matches the user-specified filter. // // Google Test allows the user to filter the tests by their full names. // The full name of a test Bar in test case Foo is defined as // "Foo.Bar". Only the tests that match the filter will run. // // A filter is a colon-separated list of glob (not regex) patterns, // optionally followed by a '-' and a colon-separated list of // negative patterns (tests to exclude). A test is run if it // matches one of the positive patterns and does not match any of // the negative patterns. // // For example, *A*:Foo.* is a filter that matches any string that // contains the character 'A' or starts with "Foo.". bool should_run() const { return should_run_; } // Returns true iff this test will appear in the XML report. bool is_reportable() const { // The XML report includes tests matching the filter, excluding those // run in other shards. return matches_filter_ && !is_in_another_shard_; } // Returns the result of the test. const TestResult* result() const { return &result_; } private: #if GTEST_HAS_DEATH_TEST friend class internal::DefaultDeathTestFactory; #endif // GTEST_HAS_DEATH_TEST friend class Test; friend class TestCase; friend class internal::UnitTestImpl; friend class internal::StreamingListenerTest; friend TestInfo* internal::MakeAndRegisterTestInfo( const char* test_case_name, const char* name, const char* type_param, const char* value_param, internal::CodeLocation code_location, internal::TypeId fixture_class_id, Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc, internal::TestFactoryBase* factory); // Constructs a TestInfo object. The newly constructed instance assumes // ownership of the factory object. TestInfo(const std::string& test_case_name, const std::string& name, const char* a_type_param, // NULL if not a type-parameterized test const char* a_value_param, // NULL if not a value-parameterized test internal::CodeLocation a_code_location, internal::TypeId fixture_class_id, internal::TestFactoryBase* factory); // Increments the number of death tests encountered in this test so // far. int increment_death_test_count() { return result_.increment_death_test_count(); } // Creates the test object, runs it, records its result, and then // deletes it. void Run(); static void ClearTestResult(TestInfo* test_info) { test_info->result_.Clear(); } // These fields are immutable properties of the test. const std::string test_case_name_; // Test case name const std::string name_; // Test name // Name of the parameter type, or NULL if this is not a typed or a // type-parameterized test. const internal::scoped_ptr type_param_; // Text representation of the value parameter, or NULL if this is not a // value-parameterized test. const internal::scoped_ptr value_param_; internal::CodeLocation location_; const internal::TypeId fixture_class_id_; // ID of the test fixture class bool should_run_; // True iff this test should run bool is_disabled_; // True iff this test is disabled bool matches_filter_; // True if this test matches the // user-specified filter. bool is_in_another_shard_; // Will be run in another shard. internal::TestFactoryBase* const factory_; // The factory that creates // the test object // This field is mutable and needs to be reset before running the // test for the second time. TestResult result_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); }; // A test case, which consists of a vector of TestInfos. // // TestCase is not copyable. class GTEST_API_ TestCase { public: // Creates a TestCase with the given name. // // TestCase does NOT have a default constructor. Always use this // constructor to create a TestCase object. // // Arguments: // // name: name of the test case // a_type_param: the name of the test's type parameter, or NULL if // this is not a type-parameterized test. // set_up_tc: pointer to the function that sets up the test case // tear_down_tc: pointer to the function that tears down the test case TestCase(const char* name, const char* a_type_param, Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc); // Destructor of TestCase. virtual ~TestCase(); // Gets the name of the TestCase. const char* name() const { return name_.c_str(); } // Returns the name of the parameter type, or NULL if this is not a // type-parameterized test case. const char* type_param() const { if (type_param_.get() != NULL) return type_param_->c_str(); return NULL; } // Returns true if any test in this test case should run. bool should_run() const { return should_run_; } // Gets the number of successful tests in this test case. int successful_test_count() const; // Gets the number of failed tests in this test case. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests in this test case. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Get the number of tests in this test case that should run. int test_to_run_count() const; // Gets the number of all tests in this test case. int total_test_count() const; // Returns true iff the test case passed. bool Passed() const { return !Failed(); } // Returns true iff the test case failed. bool Failed() const { return failed_test_count() > 0; } // Returns the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. const TestInfo* GetTestInfo(int i) const; // Returns the TestResult that holds test properties recorded during // execution of SetUpTestCase and TearDownTestCase. const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; } private: friend class Test; friend class internal::UnitTestImpl; // Gets the (mutable) vector of TestInfos in this TestCase. std::vector& test_info_list() { return test_info_list_; } // Gets the (immutable) vector of TestInfos in this TestCase. const std::vector& test_info_list() const { return test_info_list_; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. TestInfo* GetMutableTestInfo(int i); // Sets the should_run member. void set_should_run(bool should) { should_run_ = should; } // Adds a TestInfo to this test case. Will delete the TestInfo upon // destruction of the TestCase object. void AddTestInfo(TestInfo * test_info); // Clears the results of all tests in this test case. void ClearResult(); // Clears the results of all tests in the given test case. static void ClearTestCaseResult(TestCase* test_case) { test_case->ClearResult(); } // Runs every test in this TestCase. void Run(); // Runs SetUpTestCase() for this TestCase. This wrapper is needed // for catching exceptions thrown from SetUpTestCase(). void RunSetUpTestCase() { (*set_up_tc_)(); } // Runs TearDownTestCase() for this TestCase. This wrapper is // needed for catching exceptions thrown from TearDownTestCase(). void RunTearDownTestCase() { (*tear_down_tc_)(); } // Returns true iff test passed. static bool TestPassed(const TestInfo* test_info) { return test_info->should_run() && test_info->result()->Passed(); } // Returns true iff test failed. static bool TestFailed(const TestInfo* test_info) { return test_info->should_run() && test_info->result()->Failed(); } // Returns true iff the test is disabled and will be reported in the XML // report. static bool TestReportableDisabled(const TestInfo* test_info) { return test_info->is_reportable() && test_info->is_disabled_; } // Returns true iff test is disabled. static bool TestDisabled(const TestInfo* test_info) { return test_info->is_disabled_; } // Returns true iff this test will appear in the XML report. static bool TestReportable(const TestInfo* test_info) { return test_info->is_reportable(); } // Returns true if the given test should run. static bool ShouldRunTest(const TestInfo* test_info) { return test_info->should_run(); } // Shuffles the tests in this test case. void ShuffleTests(internal::Random* random); // Restores the test order to before the first shuffle. void UnshuffleTests(); // Name of the test case. std::string name_; // Name of the parameter type, or NULL if this is not a typed or a // type-parameterized test. const internal::scoped_ptr type_param_; // The vector of TestInfos in their original order. It owns the // elements in the vector. std::vector test_info_list_; // Provides a level of indirection for the test list to allow easy // shuffling and restoring the test order. The i-th element in this // vector is the index of the i-th test in the shuffled test list. std::vector test_indices_; // Pointer to the function that sets up the test case. Test::SetUpTestCaseFunc set_up_tc_; // Pointer to the function that tears down the test case. Test::TearDownTestCaseFunc tear_down_tc_; // True iff any test in this test case should run. bool should_run_; // Elapsed time, in milliseconds. TimeInMillis elapsed_time_; // Holds test properties recorded during execution of SetUpTestCase and // TearDownTestCase. TestResult ad_hoc_test_result_; // We disallow copying TestCases. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase); }; // An Environment object is capable of setting up and tearing down an // environment. You should subclass this to define your own // environment(s). // // An Environment object does the set-up and tear-down in virtual // methods SetUp() and TearDown() instead of the constructor and the // destructor, as: // // 1. You cannot safely throw from a destructor. This is a problem // as in some cases Google Test is used where exceptions are enabled, and // we may want to implement ASSERT_* using exceptions where they are // available. // 2. You cannot use ASSERT_* directly in a constructor or // destructor. class Environment { public: // The d'tor is virtual as we need to subclass Environment. virtual ~Environment() {} // Override this to define how to set up the environment. virtual void SetUp() {} // Override this to define how to tear down the environment. virtual void TearDown() {} private: // If you see an error about overriding the following function or // about it being private, you have mis-spelled SetUp() as Setup(). struct Setup_should_be_spelled_SetUp {}; virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } }; #if GTEST_HAS_EXCEPTIONS // Exception which can be thrown from TestEventListener::OnTestPartResult. class GTEST_API_ AssertionException : public internal::GoogleTestFailureException { public: explicit AssertionException(const TestPartResult& result) : GoogleTestFailureException(result) {} }; #endif // GTEST_HAS_EXCEPTIONS // The interface for tracing execution of tests. The methods are organized in // the order the corresponding events are fired. class TestEventListener { public: virtual ~TestEventListener() {} // Fired before any test activity starts. virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; // Fired before each iteration of tests starts. There may be more than // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration // index, starting from 0. virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration) = 0; // Fired before environment set-up for each iteration of tests starts. virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; // Fired after environment set-up for each iteration of tests ends. virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; // Fired before the test case starts. virtual void OnTestCaseStart(const TestCase& test_case) = 0; // Fired before the test starts. virtual void OnTestStart(const TestInfo& test_info) = 0; // Fired after a failed assertion or a SUCCEED() invocation. // If you want to throw an exception from this function to skip to the next // TEST, it must be AssertionException defined above, or inherited from it. virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; // Fired after the test ends. virtual void OnTestEnd(const TestInfo& test_info) = 0; // Fired after the test case ends. virtual void OnTestCaseEnd(const TestCase& test_case) = 0; // Fired before environment tear-down for each iteration of tests starts. virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; // Fired after environment tear-down for each iteration of tests ends. virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; // Fired after each iteration of tests finishes. virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration) = 0; // Fired after all test activities have ended. virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; }; // The convenience class for users who need to override just one or two // methods and are not concerned that a possible change to a signature of // the methods they override will not be caught during the build. For // comments about each method please see the definition of TestEventListener // above. class EmptyTestEventListener : public TestEventListener { public: virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, int /*iteration*/) {} virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {} virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} virtual void OnTestStart(const TestInfo& /*test_info*/) {} virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {} virtual void OnTestEnd(const TestInfo& /*test_info*/) {} virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {} virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, int /*iteration*/) {} virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} }; // TestEventListeners lets users add listeners to track events in Google Test. class GTEST_API_ TestEventListeners { public: TestEventListeners(); ~TestEventListeners(); // Appends an event listener to the end of the list. Google Test assumes // the ownership of the listener (i.e. it will delete the listener when // the test program finishes). void Append(TestEventListener* listener); // Removes the given event listener from the list and returns it. It then // becomes the caller's responsibility to delete the listener. Returns // NULL if the listener is not found in the list. TestEventListener* Release(TestEventListener* listener); // Returns the standard listener responsible for the default console // output. Can be removed from the listeners list to shut down default // console output. Note that removing this object from the listener list // with Release transfers its ownership to the caller and makes this // function return NULL the next time. TestEventListener* default_result_printer() const { return default_result_printer_; } // Returns the standard listener responsible for the default XML output // controlled by the --gtest_output=xml flag. Can be removed from the // listeners list by users who want to shut down the default XML output // controlled by this flag and substitute it with custom one. Note that // removing this object from the listener list with Release transfers its // ownership to the caller and makes this function return NULL the next // time. TestEventListener* default_xml_generator() const { return default_xml_generator_; } private: friend class TestCase; friend class TestInfo; friend class internal::DefaultGlobalTestPartResultReporter; friend class internal::NoExecDeathTest; friend class internal::TestEventListenersAccessor; friend class internal::UnitTestImpl; // Returns repeater that broadcasts the TestEventListener events to all // subscribers. TestEventListener* repeater(); // Sets the default_result_printer attribute to the provided listener. // The listener is also added to the listener list and previous // default_result_printer is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void SetDefaultResultPrinter(TestEventListener* listener); // Sets the default_xml_generator attribute to the provided listener. The // listener is also added to the listener list and previous // default_xml_generator is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void SetDefaultXmlGenerator(TestEventListener* listener); // Controls whether events will be forwarded by the repeater to the // listeners in the list. bool EventForwardingEnabled() const; void SuppressEventForwarding(); // The actual list of listeners. internal::TestEventRepeater* repeater_; // Listener responsible for the standard result output. TestEventListener* default_result_printer_; // Listener responsible for the creation of the XML output file. TestEventListener* default_xml_generator_; // We disallow copying TestEventListeners. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); }; // A UnitTest consists of a vector of TestCases. // // This is a singleton class. The only instance of UnitTest is // created when UnitTest::GetInstance() is first called. This // instance is never deleted. // // UnitTest is not copyable. // // This class is thread-safe as long as the methods are called // according to their specification. class GTEST_API_ UnitTest { public: // Gets the singleton UnitTest object. The first time this method // is called, a UnitTest object is constructed and returned. // Consecutive calls will return the same object. static UnitTest* GetInstance(); // Runs all tests in this UnitTest object and prints the result. // Returns 0 if successful, or 1 otherwise. // // This method can only be called from the main thread. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. int Run() GTEST_MUST_USE_RESULT_; // Returns the working directory when the first TEST() or TEST_F() // was executed. The UnitTest object owns the string. const char* original_working_dir() const; // Returns the TestCase object for the test that's currently running, // or NULL if no test is running. const TestCase* current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_); // Returns the TestInfo object for the test that's currently running, // or NULL if no test is running. const TestInfo* current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_); // Returns the random seed used at the start of the current test run. int random_seed() const; // Returns the ParameterizedTestCaseRegistry object used to keep track of // value-parameterized tests and instantiate and register them. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. internal::ParameterizedTestCaseRegistry& parameterized_test_registry() GTEST_LOCK_EXCLUDED_(mutex_); // Gets the number of successful test cases. int successful_test_case_count() const; // Gets the number of failed test cases. int failed_test_case_count() const; // Gets the number of all test cases. int total_test_case_count() const; // Gets the number of all test cases that contain at least one test // that should run. int test_case_to_run_count() const; // Gets the number of successful tests. int successful_test_count() const; // Gets the number of failed tests. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Gets the number of all tests. int total_test_count() const; // Gets the number of tests that should run. int test_to_run_count() const; // Gets the time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const; // Gets the elapsed time, in milliseconds. TimeInMillis elapsed_time() const; // Returns true iff the unit test passed (i.e. all test cases passed). bool Passed() const; // Returns true iff the unit test failed (i.e. some test case failed // or something outside of all tests failed). bool Failed() const; // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. const TestCase* GetTestCase(int i) const; // Returns the TestResult containing information on test failures and // properties logged outside of individual test cases. const TestResult& ad_hoc_test_result() const; // Returns the list of event listeners that can be used to track events // inside Google Test. TestEventListeners& listeners(); private: // Registers and returns a global test environment. When a test // program is run, all global test environments will be set-up in // the order they were registered. After all tests in the program // have finished, all global test environments will be torn-down in // the *reverse* order they were registered. // // The UnitTest object takes ownership of the given environment. // // This method can only be called from the main thread. Environment* AddEnvironment(Environment* env); // Adds a TestPartResult to the current TestResult object. All // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) // eventually call this to report their results. The user code // should use the assertion macros instead of calling this directly. void AddTestPartResult(TestPartResult::Type result_type, const char* file_name, int line_number, const std::string& message, const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_); // Adds a TestProperty to the current TestResult object when invoked from // inside a test, to current TestCase's ad_hoc_test_result_ when invoked // from SetUpTestCase or TearDownTestCase, or to the global property set // when invoked elsewhere. If the result already contains a property with // the same key, the value will be updated. void RecordProperty(const std::string& key, const std::string& value); // Gets the i-th test case among all the test cases. i can range from 0 to // total_test_case_count() - 1. If i is not in that range, returns NULL. TestCase* GetMutableTestCase(int i); // Accessors for the implementation object. internal::UnitTestImpl* impl() { return impl_; } const internal::UnitTestImpl* impl() const { return impl_; } // These classes and functions are friends as they need to access private // members of UnitTest. friend class ScopedTrace; friend class Test; friend class internal::AssertHelper; friend class internal::StreamingListenerTest; friend class internal::UnitTestRecordPropertyTestHelper; friend Environment* AddGlobalTestEnvironment(Environment* env); friend internal::UnitTestImpl* internal::GetUnitTestImpl(); friend void internal::ReportFailureInUnknownLocation( TestPartResult::Type result_type, const std::string& message); // Creates an empty UnitTest. UnitTest(); // D'tor virtual ~UnitTest(); // Pushes a trace defined by SCOPED_TRACE() on to the per-thread // Google Test trace stack. void PushGTestTrace(const internal::TraceInfo& trace) GTEST_LOCK_EXCLUDED_(mutex_); // Pops a trace from the per-thread Google Test trace stack. void PopGTestTrace() GTEST_LOCK_EXCLUDED_(mutex_); // Protects mutable state in *impl_. This is mutable as some const // methods need to lock it too. mutable internal::Mutex mutex_; // Opaque implementation object. This field is never changed once // the object is constructed. We don't mark it as const here, as // doing so will cause a warning in the constructor of UnitTest. // Mutable state in *impl_ is protected by mutex_. internal::UnitTestImpl* impl_; // We disallow copying UnitTest. GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); }; // A convenient wrapper for adding an environment for the test // program. // // You should call this before RUN_ALL_TESTS() is called, probably in // main(). If you use gtest_main, you need to call this before main() // starts for it to take effect. For example, you can define a global // variable like this: // // testing::Environment* const foo_env = // testing::AddGlobalTestEnvironment(new FooEnvironment); // // However, we strongly recommend you to write your own main() and // call AddGlobalTestEnvironment() there, as relying on initialization // of global variables makes the code harder to read and may cause // problems when you register multiple environments from different // translation units and the environments have dependencies among them // (remember that the compiler doesn't guarantee the order in which // global variables from different translation units are initialized). inline Environment* AddGlobalTestEnvironment(Environment* env) { return UnitTest::GetInstance()->AddEnvironment(env); } // Initializes Google Test. This must be called before calling // RUN_ALL_TESTS(). In particular, it parses a command line for the // flags that Google Test recognizes. Whenever a Google Test flag is // seen, it is removed from argv, and *argc is decremented. // // No value is returned. Instead, the Google Test flag variables are // updated. // // Calling the function for the second time has no user-visible effect. GTEST_API_ void InitGoogleTest(int* argc, char** argv); // This overloaded version can be used in Windows programs compiled in // UNICODE mode. GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); namespace internal { // Separate the error generating code from the code path to reduce the stack // frame size of CmpHelperEQ. This helps reduce the overhead of some sanitizers // when calling EXPECT_* in a tight loop. template AssertionResult CmpHelperEQFailure(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { return EqFailure(lhs_expression, rhs_expression, FormatForComparisonFailureMessage(lhs, rhs), FormatForComparisonFailureMessage(rhs, lhs), false); } // The helper function for {ASSERT|EXPECT}_EQ. template AssertionResult CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { if (lhs == rhs) { return AssertionSuccess(); } return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs); } // With this overloaded version, we allow anonymous enums to be used // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums // can be implicitly cast to BiggestInt. GTEST_API_ AssertionResult CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs); // The helper class for {ASSERT|EXPECT}_EQ. The template argument // lhs_is_null_literal is true iff the first argument to ASSERT_EQ() // is a null pointer literal. The following default implementation is // for lhs_is_null_literal being false. template class EqHelper { public: // This templatized version is for the general case. template static AssertionResult Compare(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); } // With this overloaded version, we allow anonymous enums to be used // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous // enums can be implicitly cast to BiggestInt. // // Even though its body looks the same as the above version, we // cannot merge the two, as it will make anonymous enums unhappy. static AssertionResult Compare(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs) { return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); } }; // This specialization is used when the first argument to ASSERT_EQ() // is a null pointer literal, like NULL, false, or 0. template <> class EqHelper { public: // We define two overloaded versions of Compare(). The first // version will be picked when the second argument to ASSERT_EQ() is // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or // EXPECT_EQ(false, a_bool). template static AssertionResult Compare( const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs, // The following line prevents this overload from being considered if T2 // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr) // expands to Compare("", "", NULL, my_ptr), which requires a conversion // to match the Secret* in the other overload, which would otherwise make // this template match better. typename EnableIf::value>::type* = 0) { return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); } // This version will be picked when the second argument to ASSERT_EQ() is a // pointer, e.g. ASSERT_EQ(NULL, a_pointer). template static AssertionResult Compare( const char* lhs_expression, const char* rhs_expression, // We used to have a second template parameter instead of Secret*. That // template parameter would deduce to 'long', making this a better match // than the first overload even without the first overload's EnableIf. // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to // non-pointer argument" (even a deduced integral argument), so the old // implementation caused warnings in user code. Secret* /* lhs (NULL) */, T* rhs) { // We already know that 'lhs' is a null pointer. return CmpHelperEQ(lhs_expression, rhs_expression, static_cast(NULL), rhs); } }; // Separate the error generating code from the code path to reduce the stack // frame size of CmpHelperOP. This helps reduce the overhead of some sanitizers // when calling EXPECT_OP in a tight loop. template AssertionResult CmpHelperOpFailure(const char* expr1, const char* expr2, const T1& val1, const T2& val2, const char* op) { return AssertionFailure() << "Expected: (" << expr1 << ") " << op << " (" << expr2 << "), actual: " << FormatForComparisonFailureMessage(val1, val2) << " vs " << FormatForComparisonFailureMessage(val2, val1); } // A macro for implementing the helper functions needed to implement // ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste // of similar code. // // For each templatized helper function, we also define an overloaded // version for BiggestInt in order to reduce code bloat and allow // anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled // with gcc 4. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. #define GTEST_IMPL_CMP_HELPER_(op_name, op)\ template \ AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ const T1& val1, const T2& val2) {\ if (val1 op val2) {\ return AssertionSuccess();\ } else {\ return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\ }\ }\ GTEST_API_ AssertionResult CmpHelper##op_name(\ const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // Implements the helper function for {ASSERT|EXPECT}_NE GTEST_IMPL_CMP_HELPER_(NE, !=); // Implements the helper function for {ASSERT|EXPECT}_LE GTEST_IMPL_CMP_HELPER_(LE, <=); // Implements the helper function for {ASSERT|EXPECT}_LT GTEST_IMPL_CMP_HELPER_(LT, <); // Implements the helper function for {ASSERT|EXPECT}_GE GTEST_IMPL_CMP_HELPER_(GE, >=); // Implements the helper function for {ASSERT|EXPECT}_GT GTEST_IMPL_CMP_HELPER_(GT, >); #undef GTEST_IMPL_CMP_HELPER_ // The helper function for {ASSERT|EXPECT}_STREQ. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRCASEEQ. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRNE. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRCASENE. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // Helper function for *_STREQ on wide strings. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2); // Helper function for *_STRNE on wide strings. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2); } // namespace internal // IsSubstring() and IsNotSubstring() are intended to be used as the // first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by // themselves. They check whether needle is a substring of haystack // (NULL is considered a substring of itself only), and return an // appropriate error message when they fail. // // The {needle,haystack}_expr arguments are the stringified // expressions that generated the two real arguments. GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack); GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack); GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack); #if GTEST_HAS_STD_WSTRING GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack); #endif // GTEST_HAS_STD_WSTRING namespace internal { // Helper template function for comparing floating-points. // // Template parameter: // // RawType: the raw floating-point type (either float or double) // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. template AssertionResult CmpHelperFloatingPointEQ(const char* lhs_expression, const char* rhs_expression, RawType lhs_value, RawType rhs_value) { const FloatingPoint lhs(lhs_value), rhs(rhs_value); if (lhs.AlmostEquals(rhs)) { return AssertionSuccess(); } ::std::stringstream lhs_ss; lhs_ss << std::setprecision(std::numeric_limits::digits10 + 2) << lhs_value; ::std::stringstream rhs_ss; rhs_ss << std::setprecision(std::numeric_limits::digits10 + 2) << rhs_value; return EqFailure(lhs_expression, rhs_expression, StringStreamToString(&lhs_ss), StringStreamToString(&rhs_ss), false); } // Helper function for implementing ASSERT_NEAR. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, const char* expr2, const char* abs_error_expr, double val1, double val2, double abs_error); // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // A class that enables one to stream messages to assertion macros class GTEST_API_ AssertHelper { public: // Constructor. AssertHelper(TestPartResult::Type type, const char* file, int line, const char* message); ~AssertHelper(); // Message assignment is a semantic trick to enable assertion // streaming; see the GTEST_MESSAGE_ macro below. void operator=(const Message& message) const; private: // We put our data in a struct so that the size of the AssertHelper class can // be as small as possible. This is important because gcc is incapable of // re-using stack space even for temporary variables, so every EXPECT_EQ // reserves stack space for another AssertHelper. struct AssertHelperData { AssertHelperData(TestPartResult::Type t, const char* srcfile, int line_num, const char* msg) : type(t), file(srcfile), line(line_num), message(msg) { } TestPartResult::Type const type; const char* const file; int const line; std::string const message; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); }; AssertHelperData* const data_; GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); }; } // namespace internal // The pure interface class that all value-parameterized tests inherit from. // A value-parameterized class must inherit from both ::testing::Test and // ::testing::WithParamInterface. In most cases that just means inheriting // from ::testing::TestWithParam, but more complicated test hierarchies // may need to inherit from Test and WithParamInterface at different levels. // // This interface has support for accessing the test parameter value via // the GetParam() method. // // Use it with one of the parameter generator defining functions, like Range(), // Values(), ValuesIn(), Bool(), and Combine(). // // class FooTest : public ::testing::TestWithParam { // protected: // FooTest() { // // Can use GetParam() here. // } // virtual ~FooTest() { // // Can use GetParam() here. // } // virtual void SetUp() { // // Can use GetParam() here. // } // virtual void TearDown { // // Can use GetParam() here. // } // }; // TEST_P(FooTest, DoesBar) { // // Can use GetParam() method here. // Foo foo; // ASSERT_TRUE(foo.DoesBar(GetParam())); // } // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); template class WithParamInterface { public: typedef T ParamType; virtual ~WithParamInterface() {} // The current parameter value. Is also available in the test fixture's // constructor. This member function is non-static, even though it only // references static data, to reduce the opportunity for incorrect uses // like writing 'WithParamInterface::GetParam()' for a test that // uses a fixture whose parameter type is int. const ParamType& GetParam() const { GTEST_CHECK_(parameter_ != NULL) << "GetParam() can only be called inside a value-parameterized test " << "-- did you intend to write TEST_P instead of TEST_F?"; return *parameter_; } private: // Sets parameter value. The caller is responsible for making sure the value // remains alive and unchanged throughout the current test. static void SetParam(const ParamType* parameter) { parameter_ = parameter; } // Static value used for accessing parameter during a test lifetime. static const ParamType* parameter_; // TestClass must be a subclass of WithParamInterface and Test. template friend class internal::ParameterizedTestFactory; }; template const T* WithParamInterface::parameter_ = NULL; // Most value-parameterized classes can ignore the existence of // WithParamInterface, and can just inherit from ::testing::TestWithParam. template class TestWithParam : public Test, public WithParamInterface { }; // Macros for indicating success/failure in test code. // ADD_FAILURE unconditionally adds a failure to the current test. // SUCCEED generates a success - it doesn't automatically make the // current test successful, as a test is only successful when it has // no failure. // // EXPECT_* verifies that a certain condition is satisfied. If not, // it behaves like ADD_FAILURE. In particular: // // EXPECT_TRUE verifies that a Boolean condition is true. // EXPECT_FALSE verifies that a Boolean condition is false. // // FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except // that they will also abort the current function on failure. People // usually want the fail-fast behavior of FAIL and ASSERT_*, but those // writing data-driven tests often find themselves using ADD_FAILURE // and EXPECT_* more. // Generates a nonfatal failure with a generic message. #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") // Generates a nonfatal failure at the given source file location with // a generic message. #define ADD_FAILURE_AT(file, line) \ GTEST_MESSAGE_AT_(file, line, "Failed", \ ::testing::TestPartResult::kNonFatalFailure) // Generates a fatal failure with a generic message. #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") // Define this macro to 1 to omit the definition of FAIL(), which is a // generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_FAIL # define FAIL() GTEST_FAIL() #endif // Generates a success with a generic message. #define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") // Define this macro to 1 to omit the definition of SUCCEED(), which // is a generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_SUCCEED # define SUCCEED() GTEST_SUCCEED() #endif // Macros for testing exceptions. // // * {ASSERT|EXPECT}_THROW(statement, expected_exception): // Tests that the statement throws the expected exception. // * {ASSERT|EXPECT}_NO_THROW(statement): // Tests that the statement doesn't throw any exception. // * {ASSERT|EXPECT}_ANY_THROW(statement): // Tests that the statement throws an exception. #define EXPECT_THROW(statement, expected_exception) \ GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) #define EXPECT_NO_THROW(statement) \ GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) #define EXPECT_ANY_THROW(statement) \ GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) #define ASSERT_THROW(statement, expected_exception) \ GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) #define ASSERT_NO_THROW(statement) \ GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) #define ASSERT_ANY_THROW(statement) \ GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) // Boolean assertions. Condition can be either a Boolean expression or an // AssertionResult. For more information on how to use AssertionResult with // these macros see comments on that class. #define EXPECT_TRUE(condition) \ GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ GTEST_NONFATAL_FAILURE_) #define EXPECT_FALSE(condition) \ GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ GTEST_NONFATAL_FAILURE_) #define ASSERT_TRUE(condition) \ GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ GTEST_FATAL_FAILURE_) #define ASSERT_FALSE(condition) \ GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ GTEST_FATAL_FAILURE_) // Macros for testing equalities and inequalities. // // * {ASSERT|EXPECT}_EQ(v1, v2): Tests that v1 == v2 // * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 // * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 // * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 // * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 // * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 // // When they are not, Google Test prints both the tested expressions and // their actual values. The values must be compatible built-in types, // or you will get a compiler error. By "compatible" we mean that the // values can be compared by the respective operator. // // Note: // // 1. It is possible to make a user-defined type work with // {ASSERT|EXPECT}_??(), but that requires overloading the // comparison operators and is thus discouraged by the Google C++ // Usage Guide. Therefore, you are advised to use the // {ASSERT|EXPECT}_TRUE() macro to assert that two objects are // equal. // // 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on // pointers (in particular, C strings). Therefore, if you use it // with two C strings, you are testing how their locations in memory // are related, not how their content is related. To compare two C // strings by content, use {ASSERT|EXPECT}_STR*(). // // 3. {ASSERT|EXPECT}_EQ(v1, v2) is preferred to // {ASSERT|EXPECT}_TRUE(v1 == v2), as the former tells you // what the actual value is when it fails, and similarly for the // other comparisons. // // 4. Do not depend on the order in which {ASSERT|EXPECT}_??() // evaluate their arguments, which is undefined. // // 5. These macros evaluate their arguments exactly once. // // Examples: // // EXPECT_NE(Foo(), 5); // EXPECT_EQ(a_pointer, NULL); // ASSERT_LT(i, array_size); // ASSERT_GT(records.size(), 0) << "There is no record left."; #define EXPECT_EQ(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal:: \ EqHelper::Compare, \ val1, val2) #define EXPECT_NE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) #define EXPECT_LE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) #define EXPECT_LT(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) #define EXPECT_GE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) #define EXPECT_GT(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) #define GTEST_ASSERT_EQ(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal:: \ EqHelper::Compare, \ val1, val2) #define GTEST_ASSERT_NE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) #define GTEST_ASSERT_LE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) #define GTEST_ASSERT_LT(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) #define GTEST_ASSERT_GE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) #define GTEST_ASSERT_GT(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) // Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of // ASSERT_XY(), which clashes with some users' own code. #if !GTEST_DONT_DEFINE_ASSERT_EQ # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_NE # define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_LE # define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_LT # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_GE # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_GT # define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2) #endif // C-string Comparisons. All tests treat NULL and any non-NULL string // as different. Two NULLs are equal. // // * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 // * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 // * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case // * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case // // For wide or narrow string objects, you can use the // {ASSERT|EXPECT}_??() macros. // // Don't depend on the order in which the arguments are evaluated, // which is undefined. // // These macros evaluate their arguments exactly once. #define EXPECT_STREQ(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2) #define EXPECT_STRNE(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) #define EXPECT_STRCASEEQ(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2) #define EXPECT_STRCASENE(s1, s2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) #define ASSERT_STREQ(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2) #define ASSERT_STRNE(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) #define ASSERT_STRCASEEQ(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2) #define ASSERT_STRCASENE(s1, s2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) // Macros for comparing floating-point numbers. // // * {ASSERT|EXPECT}_FLOAT_EQ(val1, val2): // Tests that two float values are almost equal. // * {ASSERT|EXPECT}_DOUBLE_EQ(val1, val2): // Tests that two double values are almost equal. // * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): // Tests that v1 and v2 are within the given distance to each other. // // Google Test uses ULP-based comparison to automatically pick a default // error bound that is appropriate for the operands. See the // FloatingPoint template class in gtest-internal.h if you are // interested in the implementation details. #define EXPECT_FLOAT_EQ(val1, val2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define EXPECT_DOUBLE_EQ(val1, val2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define ASSERT_FLOAT_EQ(val1, val2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define ASSERT_DOUBLE_EQ(val1, val2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define EXPECT_NEAR(val1, val2, abs_error)\ EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ val1, val2, abs_error) #define ASSERT_NEAR(val1, val2, abs_error)\ ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ val1, val2, abs_error) // These predicate format functions work on floating-point values, and // can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. // // EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, float val1, float val2); GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, double val1, double val2); #if GTEST_OS_WINDOWS // Macros that test for HRESULT failure and success, these are only useful // on Windows, and rely on Windows SDK macros and APIs to compile. // // * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) // // When expr unexpectedly fails or succeeds, Google Test prints the // expected result and the actual result with both a human-readable // string representation of the error, if available, as well as the // hex result code. # define EXPECT_HRESULT_SUCCEEDED(expr) \ EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) # define ASSERT_HRESULT_SUCCEEDED(expr) \ ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) # define EXPECT_HRESULT_FAILED(expr) \ EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) # define ASSERT_HRESULT_FAILED(expr) \ ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) #endif // GTEST_OS_WINDOWS // Macros that execute statement and check that it doesn't generate new fatal // failures in the current thread. // // * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); // // Examples: // // EXPECT_NO_FATAL_FAILURE(Process()); // ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; // #define ASSERT_NO_FATAL_FAILURE(statement) \ GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) #define EXPECT_NO_FATAL_FAILURE(statement) \ GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) // Causes a trace (including the given source file path and line number, // and the given message) to be included in every test failure message generated // by code in the scope of the lifetime of an instance of this class. The effect // is undone with the destruction of the instance. // // The message argument can be anything streamable to std::ostream. // // Example: // testing::ScopedTrace trace("file.cc", 123, "message"); // class GTEST_API_ ScopedTrace { public: // The c'tor pushes the given source file location and message onto // a trace stack maintained by Google Test. // Template version. Uses Message() to convert the values into strings. // Slow, but flexible. template ScopedTrace(const char* file, int line, const T& message) { PushTrace(file, line, (Message() << message).GetString()); } // Optimize for some known types. ScopedTrace(const char* file, int line, const char* message) { PushTrace(file, line, message ? message : "(null)"); } #if GTEST_HAS_GLOBAL_STRING ScopedTrace(const char* file, int line, const ::string& message) { PushTrace(file, line, message); } #endif ScopedTrace(const char* file, int line, const std::string& message) { PushTrace(file, line, message); } // The d'tor pops the info pushed by the c'tor. // // Note that the d'tor is not virtual in order to be efficient. // Don't inherit from ScopedTrace! ~ScopedTrace(); private: void PushTrace(const char* file, int line, std::string message); GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); } GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its // c'tor and d'tor. Therefore it doesn't // need to be used otherwise. // Causes a trace (including the source file path, the current line // number, and the given message) to be included in every test failure // message generated by code in the current scope. The effect is // undone when the control leaves the current scope. // // The message argument can be anything streamable to std::ostream. // // In the implementation, we include the current line number as part // of the dummy variable name, thus allowing multiple SCOPED_TRACE()s // to appear in the same block - as long as they are on different // lines. // // Assuming that each thread maintains its own stack of traces. // Therefore, a SCOPED_TRACE() would (correctly) only affect the // assertions in its own thread. #define SCOPED_TRACE(message) \ ::testing::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ __FILE__, __LINE__, (message)) // Compile-time assertion for type equality. // StaticAssertTypeEq() compiles iff type1 and type2 are // the same type. The value it returns is not interesting. // // Instead of making StaticAssertTypeEq a class template, we make it a // function template that invokes a helper class template. This // prevents a user from misusing StaticAssertTypeEq by // defining objects of that type. // // CAVEAT: // // When used inside a method of a class template, // StaticAssertTypeEq() is effective ONLY IF the method is // instantiated. For example, given: // // template class Foo { // public: // void Bar() { testing::StaticAssertTypeEq(); } // }; // // the code: // // void Test1() { Foo foo; } // // will NOT generate a compiler error, as Foo::Bar() is never // actually instantiated. Instead, you need: // // void Test2() { Foo foo; foo.Bar(); } // // to cause a compiler error. template bool StaticAssertTypeEq() { (void)internal::StaticAssertTypeEqHelper(); return true; } // Defines a test. // // The first parameter is the name of the test case, and the second // parameter is the name of the test within the test case. // // The convention is to end the test case name with "Test". For // example, a test case for the Foo class can be named FooTest. // // Test code should appear between braces after an invocation of // this macro. Example: // // TEST(FooTest, InitializesCorrectly) { // Foo foo; // EXPECT_TRUE(foo.StatusIsOK()); // } // Note that we call GetTestTypeId() instead of GetTypeId< // ::testing::Test>() here to get the type ID of testing::Test. This // is to work around a suspected linker bug when using Google Test as // a framework on Mac OS X. The bug causes GetTypeId< // ::testing::Test>() to return different values depending on whether // the call is from the Google Test framework itself or from user test // code. GetTestTypeId() is guaranteed to always return the same // value, as it always calls GetTypeId<>() from the Google Test // framework. #define GTEST_TEST(test_case_name, test_name)\ GTEST_TEST_(test_case_name, test_name, \ ::testing::Test, ::testing::internal::GetTestTypeId()) // Define this macro to 1 to omit the definition of TEST(), which // is a generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_TEST # define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name) #endif // Defines a test that uses a test fixture. // // The first parameter is the name of the test fixture class, which // also doubles as the test case name. The second parameter is the // name of the test within the test case. // // A test fixture class must be declared earlier. The user should put // the test code between braces after using this macro. Example: // // class FooTest : public testing::Test { // protected: // virtual void SetUp() { b_.AddElement(3); } // // Foo a_; // Foo b_; // }; // // TEST_F(FooTest, InitializesCorrectly) { // EXPECT_TRUE(a_.StatusIsOK()); // } // // TEST_F(FooTest, ReturnsElementCountCorrectly) { // EXPECT_EQ(a_.size(), 0); // EXPECT_EQ(b_.size(), 1); // } #define TEST_F(test_fixture, test_name)\ GTEST_TEST_(test_fixture, test_name, test_fixture, \ ::testing::internal::GetTypeId()) // Returns a path to temporary directory. // Tries to determine an appropriate directory for the platform. GTEST_API_ std::string TempDir(); #ifdef _MSC_VER # pragma warning(pop) #endif } // namespace testing // Use this function in main() to run all tests. It returns 0 if all // tests are successful, or 1 otherwise. // // RUN_ALL_TESTS() should be invoked after the command line has been // parsed by InitGoogleTest(). // // This function was formerly a macro; thus, it is in the global // namespace and has an all-caps name. int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_; inline int RUN_ALL_TESTS() { return ::testing::UnitTest::GetInstance()->Run(); } GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GTEST_INCLUDE_GTEST_GTEST_H_ ================================================ FILE: test/src/AccessKey/AccessKeyTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" namespace AlibabaCloud { namespace OSS { class AccessKeyTest : public ::testing::Test { protected: AccessKeyTest() { } ~AccessKeyTest() override { } void SetUp() override { } void TearDown() override { } }; TEST_F(AccessKeyTest, InvalidAccessKeyIdTest) { ClientConfiguration conf; std::shared_ptr client = std::make_shared(Config::Endpoint, "invalidAccessKeyId", Config::AccessKeySecret, conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "InvalidAccessKeyId"); } TEST_F(AccessKeyTest, InvalidAccessKeySecretTest) { ClientConfiguration conf; std::shared_ptr client = std::make_shared(Config::Endpoint, Config::AccessKeyId, "invalidAccessKeySecret", conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "SignatureDoesNotMatch"); } TEST_F(AccessKeyTest, InvalidSecurityTokenTest) { ClientConfiguration conf; std::shared_ptr client = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, "InvalidSecurityToken", conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "InvalidAccessKeyId"); } TEST_F(AccessKeyTest, ValidAccessKeyTest) { ClientConfiguration conf; std::shared_ptr client = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), true); } class MyCredentialsProvider : public CredentialsProvider { public: MyCredentialsProvider(const Credentials &credentials): CredentialsProvider(), credentials_(credentials) {} MyCredentialsProvider(const std::string &accessKeyId, const std::string &accessKeySecret, const std::string &securityToken = ""): CredentialsProvider(), credentials_(accessKeyId, accessKeySecret, securityToken) {} ~MyCredentialsProvider() {}; virtual Credentials getCredentials() override { return credentials_; } private: Credentials credentials_; }; TEST_F(AccessKeyTest, InValidCredentialsProviderTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared("", "", ""); credentialsProvider->getCredentials().setAccessKeyId(Config::AccessKeyId); credentialsProvider->getCredentials().setAccessKeySecret(Config::AccessKeySecret); credentialsProvider->getCredentials().setSessionToken("haha"); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider, conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(AccessKeyTest, ValidCredentialsProviderTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared(Config::AccessKeyId, Config::AccessKeySecret, ""); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider, conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(AccessKeyTest, InValidCredentialsTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared("", "", ""); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider->getCredentials(), conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(AccessKeyTest, ValidCredentialsTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared(Config::AccessKeyId, Config::AccessKeySecret, ""); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider->getCredentials(), conf); auto outcome = client->ListBuckets(ListBucketsRequest()); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(AccessKeyTest, GeneratePresignedUrlRequestCredentialsProviderTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared(Config::AccessKeyId, Config::AccessKeySecret, "haha"); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider, conf); auto outcome = client->GeneratePresignedUrl(GeneratePresignedUrlRequest("bucket","key")); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(AccessKeyTest, GenerateRTMPSignatureUrlCredentialsProviderTest) { ClientConfiguration conf; auto credentialsProvider = std::make_shared(Config::AccessKeyId, Config::AccessKeySecret, "haha"); std::shared_ptr client = std::make_shared(Config::Endpoint, credentialsProvider, conf); std::string channelName = "channel"; GenerateRTMPSignedUrlRequest request("bucket", channelName, "", 0); request.setPlayList("test.m3u8"); time_t tExpire = time(nullptr) + 15 * 60; request.setExpires(tExpire); auto generateOutcome = client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), true); auto outcome = generateOutcome; outcome = outcome; EXPECT_EQ(outcome.isSuccess(), generateOutcome.isSuccess()); EXPECT_EQ(outcome.result(), generateOutcome.result()); #ifndef __clang__ outcome = std::move(outcome); EXPECT_EQ(outcome.isSuccess(), generateOutcome.isSuccess()); EXPECT_EQ(outcome.result(), generateOutcome.result()); #endif } TEST_F(AccessKeyTest, EndpointTest) { ClientConfiguration conf; auto request = ListBucketsRequest(); request.setMaxKeys(1); auto endpoint = Config::Endpoint; auto client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); endpoint = "http://oss-cn-hangzhou.aliyuncs.com"; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); endpoint = "http://oss-cn-hangzhou.aliyuncs.com:80"; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); endpoint = "http://oss-cn-hangzhou.aliyuncs.com:80/?test=123"; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); endpoint = "www.test-inc.com\\oss-cn-hangzhou.aliyuncs.com"; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The endpoint is invalid."); endpoint = "www.test-inc*test.com"; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The endpoint is invalid."); endpoint = ""; client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); outcome = client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The endpoint is invalid."); } } } ================================================ FILE: test/src/Bucket/BucketAclSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketAclSettingsTest : public ::testing::Test { protected: BucketAclSettingsTest() { } ~BucketAclSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketaclsettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketAclSettingsTest::Client = nullptr; std::string BucketAclSettingsTest::BucketName = ""; TEST_F(BucketAclSettingsTest, SetBucketAclUseRequestTest) { Client->SetBucketAcl(SetBucketAclRequest(BucketName, CannedAccessControlList::PublicRead)); TestUtils::WaitForCacheExpire(5); auto aclOutcome = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicRead); //set to readwrite Client->SetBucketAcl(SetBucketAclRequest(BucketName, CannedAccessControlList::PublicReadWrite)); TestUtils::WaitForCacheExpire(5); aclOutcome = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); //set to private Client->SetBucketAcl(SetBucketAclRequest(BucketName, CannedAccessControlList::Private)); TestUtils::WaitForCacheExpire(5); aclOutcome = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Private); } TEST_F(BucketAclSettingsTest, SetBucketAclUseDefaultTest) { auto aclOutcome = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome.isSuccess(), true); //set to Default Client->SetBucketAcl(SetBucketAclRequest(BucketName, CannedAccessControlList::Default)); TestUtils::WaitForCacheExpire(5); auto aclOutcome1 = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome1.isSuccess(), true); EXPECT_EQ(aclOutcome1.result().Acl(), aclOutcome.result().Acl()); } TEST_F(BucketAclSettingsTest, SetBucketAclPublicReadTest) { auto aclOutcome = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome.isSuccess(), true); //set to Default SetBucketAclRequest request(BucketName, CannedAccessControlList::Default); request.setAcl(CannedAccessControlList::PublicRead); Client->SetBucketAcl(request); TestUtils::WaitForCacheExpire(5); auto aclOutcome1 = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); TestUtils::WaitForCacheExpire(5); aclOutcome1 = Client->GetBucketAcl(GetBucketAclRequest(BucketName)); EXPECT_EQ(aclOutcome1.isSuccess(), true); EXPECT_EQ(aclOutcome1.result().Acl(), CannedAccessControlList::PublicRead); } TEST_F(BucketAclSettingsTest, GetBucketAclNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-bucket-acl"); auto aclOutcome = Client->GetBucketAcl(name); EXPECT_EQ(aclOutcome.isSuccess(), false); EXPECT_EQ(aclOutcome.error().Code(), "NoSuchBucket"); } #if 0 //NG TEST_F(BucketAclSettingsTest, SetBucketAclNegativeTest) { auto aclOutcome = Client->SetBucketAcl("no-exist-bucket", CannedAccessControlList::PublicRead); EXPECT_EQ(aclOutcome.isSuccess(), false); EXPECT_EQ(aclOutcome.error().Code(), "NoSuchBucket"); } #endif #if 0 //NG TEST_F(BucketAclSettingsTest, SetBucketAclNegativeTest) { auto aclOutcome = Client->SetBucketAcl("no-exist-bucket", CannedAccessControlList::PublicRead); EXPECT_EQ(aclOutcome.isSuccess(), false); EXPECT_EQ(aclOutcome.error().code(), "NoSuchBucket"); } #endif TEST_F(BucketAclSettingsTest, GetBucketAclResult) { std::string xml = R"( 00220120222 user_example public-read )"; GetBucketAclResult result(xml); EXPECT_EQ(result.Acl(), CannedAccessControlList::PublicRead); EXPECT_EQ(result.Owner().DisplayName(), "user_example"); } TEST_F(BucketAclSettingsTest, SetBucketAclInvalidValidateTest) { auto aclOutcome = Client->SetBucketAcl("Invalid-bucket-test", CannedAccessControlList::PublicRead); EXPECT_EQ(aclOutcome.isSuccess(), false); EXPECT_EQ(aclOutcome.error().Code(), "ValidateError"); } TEST_F(BucketAclSettingsTest, OssBucketRequestSetBucketTest) { GetBucketAclRequest request(BucketName); request.setBucket(BucketName); auto aclOutcome = Client->GetBucketAcl(request); EXPECT_EQ(aclOutcome.isSuccess(), true); } TEST_F(BucketAclSettingsTest, BucketAclWithInvalidResponseBodyTest) { auto gbaRequest = GetBucketAclRequest(BucketName); gbaRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbaOutcome = Client->GetBucketAcl(gbaRequest); EXPECT_EQ(gbaOutcome.isSuccess(), false); EXPECT_EQ(gbaOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketAclSettingsTest, GetBucketAclResultBranchTest) { GetBucketAclResult result("test"); std::string xml = R"( )"; GetBucketAclResult result1(std::make_shared(xml)); xml = R"( 00220120222 user_example public-read )"; GetBucketAclResult result2(xml); xml = R"( )"; GetBucketAclResult result4(xml); xml = R"( )"; GetBucketAclResult result5(xml); xml = R"()"; GetBucketAclResult result6(xml); } } } ================================================ FILE: test/src/Bucket/BucketBasicOperationTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketBasicOperationTest : public ::testing::Test { protected: BucketBasicOperationTest() { } ~BucketBasicOperationTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketNamePrefix; }; std::shared_ptr BucketBasicOperationTest::Client = nullptr; std::string BucketBasicOperationTest::BucketNamePrefix = "cpp-sdk-bucketbasicoperation"; #define testPrefix BucketBasicOperationTest::BucketNamePrefix //testPrefix = "cpp-sdk-bucketbasicoperation"; TEST_F(BucketBasicOperationTest, CreateBucketInvalidNameTest) { for(auto const &name : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->CreateBucket(CreateBucketRequest(name)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketBasicOperationTest, DeleteBucketInvalidNameTest) { for (auto const &name : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->DeleteBucket(DeleteBucketRequest(name)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketBasicOperationTest, CreateBucketWithAclTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); EXPECT_EQ(Client->DoesBucketExist(bucketName), false); //create a new bucket Client->CreateBucket(bucketName, StorageClass::Archive, CannedAccessControlList::PublicReadWrite); //TestUtils::WaitForCacheExpire(8); EXPECT_EQ(Client->DoesBucketExist(bucketName), true); auto outcome = Client->GetBucketAcl(bucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), CannedAccessControlList::PublicReadWrite); Client->DeleteBucket(bucketName); } TEST_F(BucketBasicOperationTest, CreateAndDeleteArchiveBucketTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket auto outcome = Client->CreateBucket(CreateBucketRequest(bucketName, StorageClass::Archive)); //TestUtils::WaitForCacheExpire(8); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); auto objectName = bucketName; objectName.append("firstobject"); Client->PutObject(PutObjectRequest(bucketName, objectName, std::make_shared())); auto metaOutcome = Client->HeadObject(HeadObjectRequest(bucketName, objectName)); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().HttpMetaData().at("x-oss-storage-class").c_str(), "Archive"); Client->DeleteObject(DeleteObjectRequest(bucketName, objectName)); //delete the new created bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); } TEST_F(BucketBasicOperationTest, CreateAndDeleteBucketDefaultRegionTest) { //point to default region ClientConfiguration conf; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(client, bucketName), false); //create a new bucket client.CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(TestUtils::BucketExists(client, bucketName), true); //delete the bucket client.DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(TestUtils::BucketExists(client, bucketName), false); } TEST_F(BucketBasicOperationTest, CreateAndDeleteBucketTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); } TEST_F(BucketBasicOperationTest, CreateAndDeleteIABucketTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket auto outcome = Client->CreateBucket(CreateBucketRequest(bucketName, StorageClass::IA)); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); auto objectName = bucketName; objectName.append("firstobject"); Client->PutObject(PutObjectRequest(bucketName, objectName, std::make_shared())); auto metaOutcome = Client->HeadObject(HeadObjectRequest(bucketName, objectName)); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().HttpMetaData().at("x-oss-storage-class").c_str(), "IA"); Client->DeleteObject(DeleteObjectRequest(bucketName, objectName)); //delete the new created bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); TestUtils::BucketExists(*Client, bucketName); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); } TEST_F(BucketBasicOperationTest, GetBucketInfoTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName, StorageClass::IA)); GetBucketInfoRequest request(bucketName); auto bfOutcome = Client->GetBucketInfo(request); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().Acl(), CannedAccessControlList::Private); Client->SetBucketAcl(SetBucketAclRequest(bucketName, CannedAccessControlList::PublicRead)); TestUtils::WaitForCacheExpire(5); bfOutcome = Client->GetBucketInfo(request); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().Acl(), CannedAccessControlList::PublicRead); Client->SetBucketAcl(SetBucketAclRequest(bucketName, CannedAccessControlList::PublicReadWrite)); TestUtils::WaitForCacheExpire(5); bfOutcome = Client->GetBucketInfo(request); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); EXPECT_EQ(bfOutcome.result().Location().empty(), false); EXPECT_EQ(bfOutcome.result().ExtranetEndpoint().empty(), false); EXPECT_EQ(bfOutcome.result().IntranetEndpoint().empty(), false); EXPECT_EQ(bfOutcome.result().StorageClass(), StorageClass::IA); EXPECT_STREQ(bfOutcome.result().Name().c_str(), bucketName.c_str()); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); } TEST_F(BucketBasicOperationTest, GetBucketLocationTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); //get bucket location auto locOutcome = Client->GetBucketLocation(GetBucketLocationRequest(bucketName)); EXPECT_EQ(locOutcome.isSuccess(), true); EXPECT_EQ(locOutcome.result().Location().compare(0,4,"oss-", 4), 0); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); } TEST_F(BucketBasicOperationTest, GetBucketLocationNegativeTest) { auto outcome = Client->GetBucketLocation("no-exist-bucket-location"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketBasicOperationTest, GetBucketStatTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); //put object auto objectName = bucketName; objectName.append("firstobject"); Client->PutObject(PutObjectRequest(bucketName, objectName, std::make_shared("1234"))); auto bsOutcome = Client->GetBucketStat(GetBucketStatRequest(bucketName)); EXPECT_EQ(bsOutcome.isSuccess(), true); EXPECT_EQ(bsOutcome.result().Storage(), 4ULL); EXPECT_EQ(bsOutcome.result().ObjectCount(), 1ULL); EXPECT_EQ(bsOutcome.result().MultipartUploadCount(), 0ULL); //delete the bucket Client->DeleteObject(DeleteObjectRequest(bucketName, objectName)); Client->DeleteBucket(DeleteBucketRequest(bucketName)); } TEST_F(BucketBasicOperationTest, GetNonExistBucketInfoTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); auto outcome = Client->GetBucketInfo(GetBucketInfoRequest(bucketName)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "NoSuchBucket"); } TEST_F(BucketBasicOperationTest, GetNonExistBucketStatTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); auto outcome = Client->GetBucketStat(GetBucketStatRequest(bucketName)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "NoSuchBucket"); } TEST_F(BucketBasicOperationTest, ListBucketspagingTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); for (int i = 0; i < 5; i++) { auto name = bucketName; name.append("-").append(std::to_string(i)); Client->CreateBucket(CreateBucketRequest(name)); } //list all ListBucketsRequest request; request.setPrefix(bucketName); request.setMaxKeys(100); auto outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Buckets().size(), 5UL); outcome = Client->ListBuckets(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_TRUE(outcome.result().Buckets().size() > 5UL); //list by step request.setMaxKeys(2); bool IsTruncated = false; size_t total = 0; do { outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_LT(outcome.result().Buckets().size(), 3UL); total += outcome.result().Buckets().size(); request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); EXPECT_EQ(total, 5UL); //delete all //request.setMaxKeys(100); outcome = Client->ListBuckets(ListBucketsRequest(bucketName, "", 100)); EXPECT_EQ(outcome.isSuccess(), true); for (auto const &bucket : outcome.result().Buckets()) { Client->DeleteBucket(DeleteBucketRequest(bucket.Name())); } } TEST_F(BucketBasicOperationTest, GetBucketInfoResult) { std::string xml = R"( 2013-07-31T10:56:21.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou oss-example username 271834739143143 private test LRS )"; GetBucketInfoResult result(xml); EXPECT_EQ(result.CreationDate(), "2013-07-31T10:56:21.000Z"); EXPECT_EQ(result.Location(), "oss-cn-hangzhou"); EXPECT_EQ(result.ExtranetEndpoint(), "oss-cn-hangzhou.aliyuncs.com"); EXPECT_EQ(result.Acl(), CannedAccessControlList::Private); EXPECT_EQ(result.Comment(), "test"); EXPECT_EQ(result.DataRedundancyType(), DataRedundancyType::LRS); } TEST_F(BucketBasicOperationTest, ListBucketsResultTest) { std::string xml = R"( 1305433695277957 1305433695277957 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-0 Standard 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-1 Standard 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-2 Standard 2018-10-27T07:42:27.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-3 Standard )"; ListBucketsResult result(xml); EXPECT_EQ(result.Buckets().size(), 4UL); } TEST_F(BucketBasicOperationTest, ListBucketsResultWithEncodeTypeTest) { std::string xml = R"( 1305433695277957 1305433695277957 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-0 Standard 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-1 Standard 2018-10-27T07:42:26.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-2 Standard 2018-10-27T07:42:27.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou cpp-sdk-bucketbasicoperation-bucket-1540626145748-3 Standard )"; ListBucketsResult result(xml); EXPECT_EQ(result.Buckets().size(), 4UL); } TEST_F(BucketBasicOperationTest, GetBucketStatResult) { std::string xml = R"( 1024123 1000 20 )"; GetBucketStatResult result(xml); EXPECT_EQ(result.MultipartUploadCount(), 20ULL); EXPECT_EQ(result.ObjectCount(), 1000ULL); EXPECT_EQ(result.Storage(), 1024123ULL); } TEST_F(BucketBasicOperationTest, GetBucketStatResultEnhancedTest) { std::string xml = R"( 1600 230 40 4 153221331 430 66 2359296 54 2949120 74 2359296 36 )"; GetBucketStatResult result(xml); EXPECT_EQ(result.MultipartUploadCount(), 40ULL); EXPECT_EQ(result.ObjectCount(), 230ULL); EXPECT_EQ(result.Storage(), 1600ULL); EXPECT_EQ(result.LiveChannelCount(), 4ULL); EXPECT_EQ(result.LastModifiedTime(), 153221331ULL); EXPECT_EQ(result.StandardStorage(), 430ULL); EXPECT_EQ(result.StandardObjectCount(), 66ULL); EXPECT_EQ(result.InfrequentAccessStorage(), 2359296ULL); EXPECT_EQ(result.InfrequentAccessObjectCount(), 54ULL); EXPECT_EQ(result.ArchiveStorage(), 2949120ULL); EXPECT_EQ(result.ArchiveObjectCount(), 74ULL); EXPECT_EQ(result.ColdArchiveStorage(), 2359296ULL); EXPECT_EQ(result.ColdArchiveObjectCount(), 36ULL); } TEST_F(BucketBasicOperationTest, GetBucketLocationResult) { std::string xml = R"( oss-cn-hangzhou)"; GetBucketLocationResult result(xml); EXPECT_EQ(result.Location(), "oss-cn-hangzhou"); } TEST_F(BucketBasicOperationTest, CreateBucketDataRedundancyTypeTest) { auto bucketName = TestUtils::GetBucketName(testPrefix); //LRS CreateBucketRequest request(bucketName); request.setDataRedundancyType(DataRedundancyType::LRS); auto outcome = Client->CreateBucket(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); auto infoOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().DataRedundancyType(), DataRedundancyType::LRS); Client->DeleteBucket(bucketName); //ZRS bucketName = TestUtils::GetBucketName(testPrefix); request.setBucket(bucketName); request.setDataRedundancyType(DataRedundancyType::ZRS); outcome = Client->CreateBucket(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); infoOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().DataRedundancyType(), DataRedundancyType::ZRS); Client->DeleteBucket(bucketName); //NotSet bucketName = TestUtils::GetBucketName(testPrefix); request.setBucket(bucketName); request.setDataRedundancyType(DataRedundancyType::NotSet); outcome = Client->CreateBucket(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); infoOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().DataRedundancyType(), DataRedundancyType::LRS); Client->DeleteBucket(bucketName); } TEST_F(BucketBasicOperationTest, ObjectMetaDataFunctionTest) { ObjectMetaData meta; meta.addHeader("x-oss-object-type", "test"); meta.ObjectType(); meta.addUserHeader("value", "key"); meta.hasUserHeader("value"); meta.removeUserHeader("value"); } TEST_F(BucketBasicOperationTest, InvalidResponseBodyTest) { auto bucketName = TestUtils::GetBucketName("invalid-body"); Client->CreateBucket(bucketName); auto lsRequest = ListBucketsRequest(); lsRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto lsOutcome = Client->ListBuckets(lsRequest); EXPECT_EQ(lsOutcome.isSuccess(), false); EXPECT_EQ(lsOutcome.error().Code(), "ParseXMLError"); auto gbiRequest = GetBucketInfoRequest(bucketName); gbiRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbiOutcome = Client->GetBucketInfo(gbiRequest); EXPECT_EQ(gbiOutcome.isSuccess(), false); EXPECT_EQ(gbiOutcome.error().Code(), "ParseXMLError"); auto gbrRequest = GetBucketRefererRequest(bucketName); gbrRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbrOutcome = Client->GetBucketReferer(gbrRequest); EXPECT_EQ(gbrOutcome.isSuccess(), false); EXPECT_EQ(gbrOutcome.error().Code(), "ParseXMLError"); auto gbsRequest = GetBucketStatRequest(bucketName); gbsRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbsOutcome = Client->GetBucketStat(gbsRequest); EXPECT_EQ(gbsOutcome.isSuccess(), false); EXPECT_EQ(gbsOutcome.error().Code(), "ParseXMLError"); auto gblRequest = GetBucketLocationRequest(bucketName); gblRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gblOutcome = Client->GetBucketLocation(gblRequest); EXPECT_EQ(gblOutcome.isSuccess(), false); EXPECT_EQ(gblOutcome.error().Code(), "ParseXMLError"); Client->DeleteBucket(bucketName); } TEST_F(BucketBasicOperationTest, GetBucketInfoResultBranchTest) { GetBucketInfoResult result("test"); std::string xml = R"( )"; GetBucketInfoResult result1(xml); xml = R"( )"; GetBucketInfoResult result2(xml); xml = R"( )"; GetBucketInfoResult result3(xml); xml = R"( LRS )"; GetBucketInfoResult result4(xml); xml = R"( 2013-07-31T10:56:21.000Z oss-cn-hangzhou.aliyuncs.com oss-cn-hangzhou-internal.aliyuncs.com oss-cn-hangzhou oss-example test LRS )"; GetBucketInfoResult result10(xml); xml = R"( )"; result10 = GetBucketInfoResult(xml); xml = R"( )"; result10 = GetBucketInfoResult(xml); xml = R"( )"; result10 = GetBucketInfoResult(xml); xml = R"( )"; result10 = GetBucketInfoResult(xml); xml = R"()"; GetBucketInfoResult result13(xml); GetBucketLocationResult result5("test"); xml = R"( oss-cn-hangzhou)"; GetBucketLocationResult result6(xml); xml = R"( )"; GetBucketLocationResult result11(xml); xml = R"()"; GetBucketLocationResult result14(xml); GetBucketStatResult result7("test"); xml = R"( 1024123 1000 20 )"; GetBucketStatResult result8(xml); xml = R"( )"; GetBucketStatResult result9(xml); xml = R"( )"; GetBucketStatResult result12(xml); xml = R"()"; GetBucketStatResult result15(xml); xml = R"( )"; GetBucketStatResult result16(xml); } TEST_F(BucketBasicOperationTest, ListBucketsResultBranchTest) { ListBucketsResult result("test"); std::string xml = R"( )"; ListBucketsResult result1(xml); xml = R"( )"; ListBucketsResult result2(xml); xml = R"( )"; ListBucketsResult result3(xml); xml = R"( 1305433695277957 1305433695277957 )"; ListBucketsResult result4(xml); xml = R"( )"; ListBucketsResult result5(xml); xml = R"()"; ListBucketsResult result6(xml); } TEST_F(BucketBasicOperationTest, BucketColdArchiveTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName(testPrefix); //assert bucket does not exist EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName, StorageClass::ColdArchive)); EXPECT_EQ(TestUtils::BucketExists(*Client, bucketName), true); //get bucket info auto bfOutcome = Client->GetBucketInfo(GetBucketInfoRequest(bucketName)); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().Acl(), CannedAccessControlList::Private); EXPECT_EQ(bfOutcome.result().StorageClass(), StorageClass::ColdArchive); //list buckets auto lbOutcome = Client->ListBuckets(ListBucketsRequest(bucketName, "")); EXPECT_EQ(lbOutcome.isSuccess(), true); EXPECT_EQ(lbOutcome.result().Buckets().size(), 1U); EXPECT_EQ(lbOutcome.result().Buckets().at(0).StorageClass(), StorageClass::ColdArchive); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); } } } ================================================ FILE: test/src/Bucket/BucketCorsSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include #include #include namespace AlibabaCloud { namespace OSS { class BucketCorsSettingsTest : public ::testing::Test { protected: BucketCorsSettingsTest() { } ~BucketCorsSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketcorssettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketCorsSettingsTest::Client = nullptr; std::string BucketCorsSettingsTest::BucketName = ""; static std::string GenSeqId() { auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); return std::to_string(tp.time_since_epoch().count()); } static std::string GenOriginal() { std::string original("Original "); original.append(GenSeqId()); return original; } static CORSRule ConstructDummyCorsRule() { std::string original("Original "); original.append(GenSeqId()); CORSRule rule; rule.addAllowedOrigin(original); rule.addAllowedMethod("GET"); rule.addAllowedHeader("HTTP"); rule.addExposeHeader("HTTP"); return rule; } static CORSRule ConstructDummyCorsRuleWithMultiAllowedMethod() { std::string original("Original "); original.append(GenSeqId()); CORSRule rule; rule.addAllowedOrigin(original); rule.addAllowedMethod("GET"); rule.addAllowedMethod("PUT"); rule.addAllowedMethod("DELETE"); rule.addAllowedMethod("POST"); rule.addAllowedMethod("HEAD"); rule.setMaxAgeSeconds(120); return rule; } TEST_F(BucketCorsSettingsTest, GetBucketNotSetCorsTest) { auto dOutcome = Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); EXPECT_EQ(dOutcome.isSuccess(), true); auto gOutcome = Client->GetBucketCors(GetBucketCorsRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "NoSuchCORSConfiguration"); } TEST_F(BucketCorsSettingsTest, EnableBucketCorsEmptyTest) { SetBucketCorsRequest request(BucketName); request.addCORSRule(CORSRule()); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } TEST_F(BucketCorsSettingsTest, EnableBucketCorsAddAndDeleteSingleRuleTest) { //SetBucketCorsRequest request(BucketName); //request.addCORSRule(ConstructDummyCorsRule()); CORSRuleList ruleList; ruleList.push_back(ConstructDummyCorsRule()); auto outcome = Client->SetBucketCors(BucketName, ruleList);// (request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketCors(GetBucketCorsRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().CORSRules().size(), 1UL); auto dOutcome = Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); EXPECT_EQ(dOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); //gOutcome = Client->GetBucketCors(GetBucketCorsRequest(BucketName)); gOutcome = Client->GetBucketCors(BucketName); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "NoSuchCORSConfiguration"); } TEST_F(BucketCorsSettingsTest, EnableBucketCorsAddAndDeleteMultipleRulesTest) { SetBucketCorsRequest request(BucketName); request.addCORSRule(ConstructDummyCorsRule()); request.addCORSRule(ConstructDummyCorsRuleWithMultiAllowedMethod()); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketCors(GetBucketCorsRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().CORSRules().size(), 2UL); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, EnableBucketCorsSetAndDeleteMultipleRulesTest) { SetBucketCorsRequest request(BucketName); CORSRuleList ruleList; ruleList.push_back(ConstructDummyCorsRule()); ruleList.push_back(ConstructDummyCorsRuleWithMultiAllowedMethod()); request.setCORSRules(ruleList); request.addCORSRule(ConstructDummyCorsRule()); request.addCORSRule(ConstructDummyCorsRuleWithMultiAllowedMethod()); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketCors(GetBucketCorsRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().CORSRules().size(), 4UL); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, EnableBucketCorsAddInvalidSingleRuleTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GETGET"); request.addCORSRule(rule); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsRequestInvalidArgumentTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; //rules over 10 rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GET"); for (int i = 0; i < 12; i++) { request.addCORSRule(rule); } auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); //no method request.clearCORSRules(); rule.clear(); rule.addAllowedOrigin(GenOriginal()); request.addCORSRule(rule); outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); // request.clearCORSRules(); rule.clear(); rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GET"); for (int i = 0; i < 9; i++) { request.addCORSRule(rule); } outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), true); request.addCORSRule(rule); request.addCORSRule(rule); outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsRequestAllowedOriginAsteriskTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; rule.addAllowedOrigin("*"); rule.addAllowedOrigin("*"); rule.addAllowedMethod("GET"); request.addCORSRule(rule); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); request.clearCORSRules(); rule.clear(); rule.addAllowedOrigin("*"); rule.addAllowedMethod("GET"); request.addCORSRule(rule); outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsRequestAllowedHeaderAsteriskTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; rule.addAllowedOrigin(GenOriginal()); rule.addAllowedHeader("*"); rule.addAllowedHeader("*"); rule.addAllowedMethod("GET"); request.addCORSRule(rule); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); request.clearCORSRules(); rule.clear(); rule.addAllowedOrigin(GenOriginal()); rule.addAllowedHeader("*"); rule.addAllowedMethod("GET"); request.addCORSRule(rule); outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsRequestExposeHeaderAsteriskTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GET"); rule.addExposeHeader("*"); request.addCORSRule(rule); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsRequestMaxAgeSecondsTest) { SetBucketCorsRequest request(BucketName); CORSRule rule; //less -1 rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GET"); rule.addExposeHeader("x-oss-test"); rule.setMaxAgeSeconds(-10); request.addCORSRule(rule); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); request.clearCORSRules(); rule.clear(); rule.addAllowedOrigin(GenOriginal()); rule.addAllowedMethod("GET"); rule.addExposeHeader("x-oss-test"); rule.setMaxAgeSeconds(999999999 + 1); request.addCORSRule(rule); outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); Client->DeleteBucketCors(DeleteBucketCorsRequest(BucketName)); } TEST_F(BucketCorsSettingsTest, SetBucketCorsNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-bucket-cors"); SetBucketCorsRequest request(name); request.addCORSRule(ConstructDummyCorsRule()); auto outcome = Client->SetBucketCors(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketCorsSettingsTest, GetBucketCorsWithInvalidResponseBodyTest) { CORSRuleList ruleList; ruleList.push_back(ConstructDummyCorsRule()); Client->SetBucketCors(BucketName, ruleList); auto gbcRequest = GetBucketCorsRequest(BucketName); gbcRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbcOutcome = Client->GetBucketCors(gbcRequest); EXPECT_EQ(gbcOutcome.isSuccess(), false); EXPECT_EQ(gbcOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketCorsSettingsTest, GetBucketCorsResult) { std::string xml = R"( * GET * x-oss-test 100 www.test.com PUT * 100 )"; GetBucketCorsResult result(xml); EXPECT_EQ(result.CORSRules().size(), 2UL); EXPECT_EQ(*(result.CORSRules().begin()->AllowedMethods().begin()), "GET"); EXPECT_EQ(*(result.CORSRules().rbegin()->AllowedMethods().begin()), "PUT"); EXPECT_EQ(*(result.CORSRules().begin()->AllowedOrigins().begin()), "*"); EXPECT_EQ(*(result.CORSRules().rbegin()->AllowedOrigins().begin()), "www.test.com"); } TEST_F(BucketCorsSettingsTest, GetBucketCorsResultWithEmpty) { std::string xml = R"( )"; GetBucketCorsResult result(xml); EXPECT_EQ(result.CORSRules().size(), 2UL); } TEST_F(BucketCorsSettingsTest, DeleteBucketTest) { auto dOutcome = Client->DeleteBucketCors(BucketName); EXPECT_EQ(dOutcome.isSuccess(), true); } TEST_F(BucketCorsSettingsTest, DeleteBucketCorsInvalidValidateTest) { auto deloutcome = Client->DeleteBucketCors(DeleteBucketCorsRequest("Invalid-bucket-test")); EXPECT_EQ(deloutcome.isSuccess(), false); EXPECT_EQ(deloutcome.error().Code(), "ValidateError"); } TEST_F(BucketCorsSettingsTest, GetBucketCorsResultBranchTest) { GetBucketCorsResult result("test"); std::string xml = R"( )"; GetBucketCorsResult result1(xml); xml = R"()"; GetBucketCorsResult result2(xml); } } } ================================================ FILE: test/src/Bucket/BucketEncryptionTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketEncryptionTest : public ::testing::Test { protected: BucketEncryptionTest() { } ~BucketEncryptionTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketencryption"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketEncryptionTest::Client = nullptr; std::string BucketEncryptionTest::BucketName = ""; TEST_F(BucketEncryptionTest, SetAndDeleteBucketEncryptionTest) { SetBucketEncryptionRequest setrequest(BucketName); setrequest.setSSEAlgorithm(SSEAlgorithm::KMS); auto setoutcome = Client->SetBucketEncryption(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); DeleteBucketEncryptionRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketEncryption(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); auto infoOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().SSEAlgorithm(), SSEAlgorithm::NotSet); EXPECT_EQ(infoOutcome.result().KMSMasterKeyID(), ""); } TEST_F(BucketEncryptionTest, GetBucketEncryptionTest) { SetBucketEncryptionRequest setrequest(BucketName); setrequest.setSSEAlgorithm(SSEAlgorithm::KMS); setrequest.setKMSMasterKeyID("1234"); auto setoutcome = Client->SetBucketEncryption(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); GetBucketEncryptionRequest getrequest(BucketName); auto getoutcome = Client->GetBucketEncryption(getrequest); EXPECT_EQ(getoutcome.isSuccess(),true); EXPECT_EQ(getoutcome.result().SSEAlgorithm(), SSEAlgorithm::KMS); EXPECT_EQ(getoutcome.result().KMSMasterKeyID(), "1234"); auto infoOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().SSEAlgorithm(), SSEAlgorithm::KMS); EXPECT_EQ(infoOutcome.result().KMSMasterKeyID(), "1234"); setrequest.setSSEAlgorithm(SSEAlgorithm::AES256); setrequest.setKMSMasterKeyID(""); setoutcome = Client->SetBucketEncryption(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); getoutcome = Client->GetBucketEncryption(getrequest); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().SSEAlgorithm(), SSEAlgorithm::AES256); infoOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(infoOutcome.isSuccess(), true); EXPECT_EQ(infoOutcome.result().SSEAlgorithm(), SSEAlgorithm::AES256); EXPECT_EQ(infoOutcome.result().KMSMasterKeyID(), ""); } TEST_F(BucketEncryptionTest, BucketEncryptionNegativeTest) { SetBucketEncryptionRequest setrequest(BucketName); setrequest.setSSEAlgorithm(SSEAlgorithm::NotSet); auto setoutcome = Client->SetBucketEncryption(setrequest); EXPECT_EQ(setoutcome.isSuccess(), false); GetBucketEncryptionRequest getRequest("Invalid-bucket"); auto getOutcome = Client->GetBucketEncryption(getRequest); EXPECT_EQ(getOutcome.isSuccess(), false); DeleteBucketEncryptionRequest delRequest("Invalid-bucket"); auto delOutcome = Client->DeleteBucketEncryption(delRequest); EXPECT_EQ(delOutcome.isSuccess(), false); } TEST_F(BucketEncryptionTest, GetBucketVersioningWithInvalidResponseBodyTest) { SetBucketEncryptionRequest setrequest(BucketName); setrequest.setSSEAlgorithm(SSEAlgorithm::KMS); setrequest.setKMSMasterKeyID("1234"); auto setoutcome = Client->SetBucketEncryption(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); auto gbeRequest = GetBucketEncryptionRequest(BucketName); gbeRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbeOutcome = Client->GetBucketEncryption(gbeRequest); EXPECT_EQ(gbeOutcome.isSuccess(), false); EXPECT_EQ(gbeOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketEncryptionTest, GetBucketEncryptionResult) { std::string xml = R"( KMS 1234 )"; GetBucketEncryptionResult result(xml); EXPECT_EQ(result.SSEAlgorithm(), SSEAlgorithm::KMS); EXPECT_EQ(result.KMSMasterKeyID(), "1234"); } TEST_F(BucketEncryptionTest, GetBucketEncryptionResultBranchTest) { GetBucketEncryptionResult result("test"); std::string xml = R"( )"; GetBucketEncryptionResult result1(xml); xml = R"( )"; GetBucketEncryptionResult result2(xml); xml = R"( )"; GetBucketEncryptionResult result3(xml); xml = R"( )"; GetBucketEncryptionResult result4(xml); xml = R"()"; GetBucketEncryptionResult result5(xml); } } } ================================================ FILE: test/src/Bucket/BucketInventoryConfigurationTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketInventoryConfigurationTest : public ::testing::Test { protected: BucketInventoryConfigurationTest() { } ~BucketInventoryConfigurationTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-inventory"); DstBucketName = TestUtils::GetBucketName("cpp-sdk-inventory-dst"); Client->CreateBucket(CreateBucketRequest(BucketName)); Client->CreateBucket(CreateBucketRequest(DstBucketName)); auto content = TestUtils::GetRandomStream(10); PutObjectRequest request(BucketName, "kms-key", content); request.MetaData().addHeader("x-oss-server-side-encryption", "KMS"); auto outcome = Client->PutObject(request); auto metaOutcome = Client->HeadObject(BucketName, "kms-key"); KmsKeyId = metaOutcome.result().HttpMetaData()["x-oss-server-side-encryption-key-id"]; } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client->DeleteBucket(DeleteBucketRequest(DstBucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string DstBucketName; static std::string KmsKeyId; }; std::shared_ptr BucketInventoryConfigurationTest::Client = nullptr; std::string BucketInventoryConfigurationTest::BucketName = ""; std::string BucketInventoryConfigurationTest::DstBucketName = ""; std::string BucketInventoryConfigurationTest::KmsKeyId = ""; TEST_F(BucketInventoryConfigurationTest, BucketInventoryConfigurationAllTest) { InventoryConfiguration conf; conf.setId("report1"); conf.setIsEnabled(true); conf.setFilter(InventoryFilter("filterPrefix")); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket(DstBucketName); dest.setPrefix("prefix1"); dest.setEncryption(InventoryEncryption(InventorySSEKMS(KmsKeyId))); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); InventoryOptionalFields field { InventoryOptionalField::Size, InventoryOptionalField::LastModifiedDate, InventoryOptionalField::ETag, InventoryOptionalField::StorageClass, InventoryOptionalField::IsMultipartUploaded, InventoryOptionalField::EncryptionStatus }; conf.setOptionalFields(field); auto setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), true); auto getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Id(), "report1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IsEnabled(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Filter().Prefix(), "filterPrefix"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId(), KmsKeyId); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Schedule(), InventoryFrequency::Daily); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields().size(), 6U); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[5], InventoryOptionalField::EncryptionStatus); auto delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(delOutcome.isSuccess(), true); //report2 conf.setId("report2"); conf.setIsEnabled(false); conf.setFilter(InventoryFilter("filterPrefix2")); InventoryOSSBucketDestination dest1; dest1.setFormat(InventoryFormat::CSV); dest1.setAccountId(Config::RamUID); dest1.setRoleArn(Config::RamRoleArn); dest1.setBucket(DstBucketName); dest1.setPrefix("prefix2"); dest1.setEncryption(InventoryEncryption(InventorySSEOSS())); conf.setDestination(dest1); conf.setSchedule(InventoryFrequency::Weekly); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::Current); InventoryOptionalFields field2 { InventoryOptionalField::Size, InventoryOptionalField::LastModifiedDate, InventoryOptionalField::ETag, InventoryOptionalField::StorageClass }; conf.setOptionalFields(field2); setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), true); getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "report2")); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Id(), "report2"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IsEnabled(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Filter().Prefix(), "filterPrefix2"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix2"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEOSS(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Schedule(), InventoryFrequency::Weekly); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::Current); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields().size(), 4U); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[3], InventoryOptionalField::StorageClass); delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "report2")); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(BucketInventoryConfigurationTest, BucketInventoryConfigurationWithoutFilterTest) { InventoryConfiguration conf; conf.setId("report1"); conf.setIsEnabled(true); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket(DstBucketName); dest.setPrefix("prefix1"); dest.setEncryption(InventoryEncryption(InventorySSEKMS(KmsKeyId))); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); InventoryOptionalFields field{ InventoryOptionalField::Size, InventoryOptionalField::LastModifiedDate, InventoryOptionalField::ETag, InventoryOptionalField::StorageClass, InventoryOptionalField::IsMultipartUploaded, InventoryOptionalField::EncryptionStatus }; conf.setOptionalFields(field); auto setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), true); auto getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Id(), "report1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IsEnabled(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Filter().Prefix(), ""); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId(), KmsKeyId); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Schedule(), InventoryFrequency::Daily); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields().size(), 6U); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[5], InventoryOptionalField::EncryptionStatus); auto delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(BucketInventoryConfigurationTest, BucketInventoryConfigurationWithoutEncryptionTest) { InventoryConfiguration conf; conf.setId("report1"); conf.setIsEnabled(true); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket(DstBucketName); dest.setPrefix("prefix1"); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); InventoryOptionalFields field{ InventoryOptionalField::Size, InventoryOptionalField::LastModifiedDate, InventoryOptionalField::ETag, InventoryOptionalField::StorageClass, InventoryOptionalField::IsMultipartUploaded, InventoryOptionalField::EncryptionStatus }; conf.setOptionalFields(field); auto setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), true); auto getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Id(), "report1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IsEnabled(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Filter().Prefix(), ""); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEOSS(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Schedule(), InventoryFrequency::Daily); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields().size(), 6U); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields()[5], InventoryOptionalField::EncryptionStatus); auto delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(BucketInventoryConfigurationTest, BucketInventoryConfigurationWithoutOptionalFieldsTest) { InventoryConfiguration conf; conf.setId("report1"); conf.setIsEnabled(true); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket(DstBucketName); dest.setPrefix("prefix1"); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); auto setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), true); auto getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Id(), "report1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IsEnabled(), true); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Filter().Prefix(), ""); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEOSS(), false); EXPECT_EQ(getOutcome.result().InventoryConfiguration().Schedule(), InventoryFrequency::Daily); EXPECT_EQ(getOutcome.result().InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(getOutcome.result().InventoryConfiguration().OptionalFields().size(), 0U); auto delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "report1")); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(BucketInventoryConfigurationTest, ListBucketInventoryConfigurationTest) { int i; for (i = 1; i < 102; i++) { InventoryConfiguration conf; conf.setId(std::to_string(i)); conf.setIsEnabled( (i % 4)? true: false); conf.setFilter((i % 5) ? InventoryFilter("filterPrefix"): InventoryFilter()); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket(DstBucketName); dest.setPrefix("prefix1"); dest.setEncryption(InventoryEncryption(InventorySSEKMS(KmsKeyId))); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); InventoryOptionalFields field { InventoryOptionalField::Size, InventoryOptionalField::LastModifiedDate, InventoryOptionalField::ETag, InventoryOptionalField::StorageClass, InventoryOptionalField::IsMultipartUploaded, InventoryOptionalField::EncryptionStatus }; InventoryOptionalFields field1 { InventoryOptionalField::Size }; conf.setOptionalFields((i % 7) ? field: field1); SetBucketInventoryConfigurationRequest request(BucketName); request.setInventoryConfiguration(conf); auto setoutcome = Client->SetBucketInventoryConfiguration(request); EXPECT_EQ(setoutcome.isSuccess(), true); } ListBucketInventoryConfigurationsRequest listrequest(BucketName); auto listOutcome = Client->ListBucketInventoryConfigurations(listrequest); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().NextContinuationToken(), "98"); EXPECT_EQ(listOutcome.result().IsTruncated(), true); EXPECT_EQ(listOutcome.result().InventoryConfigurationList().size(), 100U); for (const auto& conf : listOutcome.result().InventoryConfigurationList()) { int j = std::strtol(conf.Id().c_str(), nullptr, 10); EXPECT_EQ(conf.IsEnabled(), ((j % 4) ? true : false)); EXPECT_EQ(conf.Filter().Prefix(), ((j % 5) ? "filterPrefix" : "")); EXPECT_EQ(conf.Destination().OSSBucketDestination().AccountId(), Config::RamUID); EXPECT_EQ(conf.Destination().OSSBucketDestination().RoleArn(), Config::RamRoleArn); EXPECT_EQ(conf.Destination().OSSBucketDestination().Bucket(), DstBucketName); EXPECT_EQ(conf.Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(conf.Destination().OSSBucketDestination().Encryption().hasSSEKMS(), true); EXPECT_EQ(conf.Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId(), KmsKeyId); EXPECT_EQ(conf.Schedule(), InventoryFrequency::Daily); EXPECT_EQ(conf.IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(conf.OptionalFields().size(), ((j % 7)? 6U : 1U)); EXPECT_EQ(conf.OptionalFields()[0], InventoryOptionalField::Size); if(conf.OptionalFields().size() > 1U) { EXPECT_EQ(conf.OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(conf.OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(conf.OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(conf.OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(conf.OptionalFields()[5], InventoryOptionalField::EncryptionStatus); } } listrequest.setContinuationToken(listOutcome.result().NextContinuationToken()); listOutcome = Client->ListBucketInventoryConfigurations(listrequest); EXPECT_EQ(listOutcome.result().NextContinuationToken(), ""); EXPECT_EQ(listOutcome.result().IsTruncated(), false); EXPECT_EQ(listOutcome.result().InventoryConfigurationList().size(), 1U); EXPECT_EQ(listOutcome.result().InventoryConfigurationList()[0].Id(), "99"); for (i = 1; i < 102; i++) { DeleteBucketInventoryConfigurationRequest delrequest(BucketName); delrequest.setId(std::to_string(i)); auto delOutcome = Client->DeleteBucketInventoryConfiguration(delrequest); EXPECT_EQ(delOutcome.isSuccess(), true); } } TEST_F(BucketInventoryConfigurationTest, BucketInventoryConfigurationNegativeTest) { InventoryConfiguration conf; conf.setId("report1"); conf.setIsEnabled(true); InventoryOSSBucketDestination dest; dest.setFormat(InventoryFormat::CSV); dest.setAccountId(Config::RamUID); dest.setRoleArn(Config::RamRoleArn); dest.setBucket("not-exist-bucket"); dest.setPrefix("prefix1"); conf.setDestination(dest); conf.setSchedule(InventoryFrequency::Daily); conf.setIncludedObjectVersions(InventoryIncludedObjectVersions::All); auto setOutcome = Client->SetBucketInventoryConfiguration(SetBucketInventoryConfigurationRequest(BucketName, conf)); EXPECT_EQ(setOutcome.isSuccess(), false); EXPECT_EQ(setOutcome.error().Code(), "InvalidArgument"); auto getOutcome = Client->GetBucketInventoryConfiguration(GetBucketInventoryConfigurationRequest(BucketName, "not-exist-report-id")); EXPECT_EQ(getOutcome.isSuccess(), false); EXPECT_EQ(getOutcome.error().Code(), "NoSuchInventory"); auto delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName + "-not-exist-bucket", "not-exist-report-id")); EXPECT_EQ(delOutcome.isSuccess(), false); EXPECT_EQ(delOutcome.error().Code(), "NoSuchBucket"); delOutcome = Client->DeleteBucketInventoryConfiguration(DeleteBucketInventoryConfigurationRequest(BucketName, "not-exist-report-id")); EXPECT_EQ(delOutcome.isSuccess(), true); auto listOutcome = Client->ListBucketInventoryConfigurations(ListBucketInventoryConfigurationsRequest(BucketName + "-not-exist-bucket")); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketInventoryConfigurationTest, InventoryFilter) { InventoryFilter filter; EXPECT_EQ(filter.Prefix(), ""); filter.setPrefix("filter"); EXPECT_EQ(filter.Prefix(), "filter"); InventoryFilter filter1("filter1"); EXPECT_EQ(filter1.Prefix(), "filter1"); } TEST_F(BucketInventoryConfigurationTest, InventorySSEKMS) { InventorySSEKMS ssekms; EXPECT_EQ(ssekms.KeyId(), ""); ssekms.setKeyId("Id"); EXPECT_EQ(ssekms.KeyId(), "Id"); InventorySSEKMS ssekms1("id1"); EXPECT_EQ(ssekms1.KeyId(), "id1"); } TEST_F(BucketInventoryConfigurationTest, InventoryEncryption) { InventorySSEOSS sseoss; InventorySSEKMS ssekms("keyId"); InventoryEncryption encryption; EXPECT_EQ(encryption.hasSSEOSS(), false); EXPECT_EQ(encryption.hasSSEKMS(), false); encryption = InventoryEncryption(); encryption.setSSEOSS(sseoss); EXPECT_EQ(encryption.hasSSEOSS(), true); EXPECT_EQ(encryption.hasSSEKMS(), false); encryption = InventoryEncryption(); encryption.setSSEKMS(ssekms); EXPECT_EQ(encryption.hasSSEOSS(), false); EXPECT_EQ(encryption.hasSSEKMS(), true); EXPECT_EQ(encryption.SSEKMS().KeyId(), "keyId"); InventoryEncryption encryption1(sseoss); EXPECT_EQ(encryption1.hasSSEOSS(), true); EXPECT_EQ(encryption1.hasSSEKMS(), false); InventoryEncryption encryption2(InventorySSEKMS("keyId")); EXPECT_EQ(encryption2.hasSSEOSS(), false); EXPECT_EQ(encryption2.hasSSEKMS(), true); EXPECT_EQ(encryption2.SSEKMS().KeyId(), "keyId"); } TEST_F(BucketInventoryConfigurationTest, InventoryOSSBucketDestination) { InventoryOSSBucketDestination ossBucket; EXPECT_EQ(ossBucket.Format(), InventoryFormat::NotSet); EXPECT_EQ(ossBucket.AccountId(), ""); EXPECT_EQ(ossBucket.RoleArn(), ""); EXPECT_EQ(ossBucket.Bucket(), ""); EXPECT_EQ(ossBucket.Prefix(), ""); EXPECT_EQ(ossBucket.Encryption().hasSSEKMS(), false); EXPECT_EQ(ossBucket.Encryption().hasSSEOSS(), false); ossBucket.setAccountId("AccountId"); ossBucket.setRoleArn("RoleArn"); ossBucket.setBucket("Bucket"); ossBucket.setPrefix("Prefix"); ossBucket.setEncryption(InventoryEncryption(InventorySSEKMS("keyId"))); EXPECT_EQ(ossBucket.AccountId(), "AccountId"); EXPECT_EQ(ossBucket.RoleArn(), "RoleArn"); EXPECT_EQ(ossBucket.Bucket(), "Bucket"); EXPECT_EQ(ossBucket.Prefix(), "Prefix"); EXPECT_EQ(ossBucket.Encryption().hasSSEKMS(), true); EXPECT_EQ(ossBucket.Encryption().SSEKMS().KeyId(), "keyId"); EXPECT_EQ(ossBucket.Encryption().hasSSEOSS(), false); } TEST_F(BucketInventoryConfigurationTest, InventoryDestination) { InventoryDestination destination; EXPECT_EQ(destination.OSSBucketDestination().Format(), InventoryFormat::NotSet); EXPECT_EQ(destination.OSSBucketDestination().AccountId(), ""); EXPECT_EQ(destination.OSSBucketDestination().RoleArn(), ""); EXPECT_EQ(destination.OSSBucketDestination().Bucket(), ""); EXPECT_EQ(destination.OSSBucketDestination().Prefix(), ""); EXPECT_EQ(destination.OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(destination.OSSBucketDestination().Encryption().hasSSEOSS(), false); InventoryOSSBucketDestination ossBucket; ossBucket.setFormat(InventoryFormat::CSV); ossBucket.setAccountId("AccountId"); destination.setOSSBucketDestination(ossBucket); EXPECT_EQ(destination.OSSBucketDestination().Format(), InventoryFormat::CSV); EXPECT_EQ(destination.OSSBucketDestination().AccountId(), "AccountId"); EXPECT_EQ(destination.OSSBucketDestination().RoleArn(), ""); EXPECT_EQ(destination.OSSBucketDestination().Bucket(), ""); EXPECT_EQ(destination.OSSBucketDestination().Prefix(), ""); EXPECT_EQ(destination.OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(destination.OSSBucketDestination().Encryption().hasSSEOSS(), false); } TEST_F(BucketInventoryConfigurationTest, InventoryConfiguration) { InventoryConfiguration configuration; EXPECT_EQ(configuration.Id(), ""); EXPECT_EQ(configuration.IsEnabled(), false); EXPECT_EQ(configuration.Schedule(), InventoryFrequency::NotSet); EXPECT_EQ(configuration.IncludedObjectVersions(), InventoryIncludedObjectVersions::NotSet); } TEST_F(BucketInventoryConfigurationTest, GetBucketInventoryConfigurationResult) { std::string xml = R"( report1 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 keyId Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus )"; GetBucketInventoryConfigurationResult result(xml); EXPECT_EQ(result.InventoryConfiguration().Id(), "report1"); EXPECT_EQ(result.InventoryConfiguration().IsEnabled(), true); EXPECT_EQ(result.InventoryConfiguration().Filter().Prefix(), "filterPrefix"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Format(), InventoryFormat::CSV); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), "123456789012"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), "xxx"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), "destination-bucket"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), true); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEOSS(), false); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId(), "keyId"); EXPECT_EQ(result.InventoryConfiguration().Schedule(), InventoryFrequency::Daily); EXPECT_EQ(result.InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(result.InventoryConfiguration().OptionalFields().size(), 6U); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[5], InventoryOptionalField::EncryptionStatus); xml = R"( report2 false CSV 123456789012 xxx acs:oss:::destination-bucket1 prefix1 Weekly Current Size LastModifiedDate ETag )"; result = GetBucketInventoryConfigurationResult(xml); EXPECT_EQ(result.InventoryConfiguration().Id(), "report2"); EXPECT_EQ(result.InventoryConfiguration().IsEnabled(), false); EXPECT_EQ(result.InventoryConfiguration().Filter().Prefix(), ""); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Format(), InventoryFormat::CSV); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().AccountId(), "123456789012"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().RoleArn(), "xxx"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Bucket(), "destination-bucket1"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(result.InventoryConfiguration().Destination().OSSBucketDestination().Encryption().hasSSEOSS(), true); EXPECT_EQ(result.InventoryConfiguration().Schedule(), InventoryFrequency::Weekly); EXPECT_EQ(result.InventoryConfiguration().IncludedObjectVersions(), InventoryIncludedObjectVersions::Current); EXPECT_EQ(result.InventoryConfiguration().OptionalFields().size(), 3U); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(result.InventoryConfiguration().OptionalFields()[2], InventoryOptionalField::ETag); } TEST_F(BucketInventoryConfigurationTest, ListBucketInventoryConfigurationsResult) { std::string xml = R"( report1 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 keyId Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus report2 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Weekly Current Size LastModifiedDate ETag StorageClass IsMultipartUploaded true test )"; ListBucketInventoryConfigurationsResult result(xml); EXPECT_EQ(result.InventoryConfigurationList()[0].Id(), "report1"); EXPECT_EQ(result.InventoryConfigurationList()[0].IsEnabled(), true); EXPECT_EQ(result.InventoryConfigurationList()[0].Filter().Prefix(), "filterPrefix"); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Format(), InventoryFormat::CSV); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().AccountId(), "123456789012"); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().RoleArn(), "xxx"); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Bucket(), "destination-bucket"); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Encryption().hasSSEKMS(), true); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Encryption().hasSSEOSS(), false); EXPECT_EQ(result.InventoryConfigurationList()[0].Destination().OSSBucketDestination().Encryption().SSEKMS().KeyId(), "keyId"); EXPECT_EQ(result.InventoryConfigurationList()[0].Schedule(), InventoryFrequency::Daily); EXPECT_EQ(result.InventoryConfigurationList()[0].IncludedObjectVersions(), InventoryIncludedObjectVersions::All); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields().size(), 6U); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(result.InventoryConfigurationList()[0].OptionalFields()[5], InventoryOptionalField::EncryptionStatus); EXPECT_EQ(result.InventoryConfigurationList()[1].Id(), "report2"); EXPECT_EQ(result.InventoryConfigurationList()[1].IsEnabled(), true); EXPECT_EQ(result.InventoryConfigurationList()[1].Filter().Prefix(), "filterPrefix"); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().Format(), InventoryFormat::CSV); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().AccountId(), "123456789012"); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().RoleArn(), "xxx"); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().Bucket(), "destination-bucket"); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().Prefix(), "prefix1"); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().Encryption().hasSSEKMS(), false); EXPECT_EQ(result.InventoryConfigurationList()[1].Destination().OSSBucketDestination().Encryption().hasSSEOSS(), true); EXPECT_EQ(result.InventoryConfigurationList()[1].Schedule(), InventoryFrequency::Weekly); EXPECT_EQ(result.InventoryConfigurationList()[1].IncludedObjectVersions(), InventoryIncludedObjectVersions::Current); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields().size(), 5U); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields()[0], InventoryOptionalField::Size); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields()[1], InventoryOptionalField::LastModifiedDate); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields()[2], InventoryOptionalField::ETag); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields()[3], InventoryOptionalField::StorageClass); EXPECT_EQ(result.InventoryConfigurationList()[1].OptionalFields()[4], InventoryOptionalField::IsMultipartUploaded); EXPECT_EQ(result.IsTruncated(), true); EXPECT_EQ(result.NextContinuationToken(), "test"); } TEST_F(BucketInventoryConfigurationTest, GetBucketInventoryConfigurationResultBranchTest) { std::string xml = R"()"; GetBucketInventoryConfigurationResult result(xml); GetBucketInventoryConfigurationResult result1("test"); xml = R"( )"; GetBucketInventoryConfigurationResult result2(xml); xml = R"( )"; GetBucketInventoryConfigurationResult result3(xml); xml = R"( )"; GetBucketInventoryConfigurationResult result4(xml); xml = R"( report1 true All )"; GetBucketInventoryConfigurationResult result5(xml); xml = R"( report1 true filterPrefix Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus )"; GetBucketInventoryConfigurationResult result6(xml); xml = R"( report1 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus )"; GetBucketInventoryConfigurationResult result7(xml); xml = R"( report1 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus )"; GetBucketInventoryConfigurationResult result8(xml); } TEST_F(BucketInventoryConfigurationTest, ListBucketInventoryConfigurationResultBranchtest) { std::string xml = R"()"; ListBucketInventoryConfigurationsResult result(xml); ListBucketInventoryConfigurationsResult result1("test"); xml = R"( )"; ListBucketInventoryConfigurationsResult result2(xml); xml = R"( )"; ListBucketInventoryConfigurationsResult result3(xml); xml = R"( )"; ListBucketInventoryConfigurationsResult result4(xml); xml = R"( true test )"; ListBucketInventoryConfigurationsResult result5(xml); xml = R"( report1 true All report2 true All true test )"; ListBucketInventoryConfigurationsResult result6(xml); xml = R"( report1 true filterPrefix Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus report2 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus true test )"; ListBucketInventoryConfigurationsResult result7(xml); xml = R"( report1 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus report2 true filterPrefix CSV 123456789012 xxx acs:oss:::destination-bucket prefix1 Daily All Size LastModifiedDate ETag StorageClass IsMultipartUploaded EncryptionStatus true test )"; ListBucketInventoryConfigurationsResult result8(xml); } } } ================================================ FILE: test/src/Bucket/BucketLifecycleSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include namespace AlibabaCloud { namespace OSS { class BucketLifecycleSettingsTest : public ::testing::Test { protected: BucketLifecycleSettingsTest() { } ~BucketLifecycleSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketlifecyclesettings"); Client->CreateBucket(BucketName); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static bool TestRule(LifecycleRule rule) { SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); if (!outcome.isSuccess()) return false; TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketLifecycle(BucketName); Client->DeleteBucketLifecycle(BucketName); TestUtils::WaitForCacheExpire(5); if (!gOutcome.isSuccess()) return false; if (gOutcome.result().LifecycleRules().size() == 1 && *(gOutcome.result().LifecycleRules().begin()) == rule) { return true; } return false; } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketLifecycleSettingsTest::Client = nullptr; std::string BucketLifecycleSettingsTest::BucketName = ""; TEST_F(BucketLifecycleSettingsTest, GetBucketLifecycleResult) { std::string xml = R"( 36e24c61-227f-4ea9-aee2-bc5af12dbc90 prefix1 Disabled 60 IA 180 Archive 240 30 6a7f02d9-97f0-4a58-8a55-f3fe604e2cd5 prefix2 Disabled 2018-05-05T00:00:00.000Z IA 2018-08-05T00:00:00.000Z Archive 2018-10-05T00:00:00.000Z 2018-11-05T00:00:00.000Z 11598635-ce8d-4a4f-991d-28b11e24e664 prefix3 Enabled 2018-05-05T00:00:00.000Z IA 2018-08-05T00:00:00.000Z Archive 2018-10-05T00:00:00.000Z 2018-11-05T00:00:00.000Z 1e267ae9-db1d-4396-bea1-4238e3d219c7 prefix4 Enabled 30 ac10167f-b4ba-489b-affc-112a5e581f71 prefix5 Enabled 60 IA 180 Archive 240 )"; GetBucketLifecycleResult result(xml); EXPECT_EQ(result.LifecycleRules().size(), 5UL); EXPECT_EQ(result.LifecycleRules().begin()->ID(), "36e24c61-227f-4ea9-aee2-bc5af12dbc90"); EXPECT_EQ(result.LifecycleRules().begin()->Prefix(), "prefix1"); EXPECT_EQ(result.LifecycleRules().begin()->Status(), RuleStatus::Disabled); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().size(), 2UL); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().begin()->StorageClass(), StorageClass::IA); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().begin()->Expiration().Days(), 60UL); EXPECT_EQ(result.LifecycleRules().begin()->Expiration().Days(), 240UL); EXPECT_EQ(result.LifecycleRules().begin()->AbortMultipartUpload().Days(), 30UL); EXPECT_EQ(result.LifecycleRules().rbegin()->ID(), "ac10167f-b4ba-489b-affc-112a5e581f71"); EXPECT_EQ(result.LifecycleRules().rbegin()->Prefix(), "prefix5"); EXPECT_EQ(result.LifecycleRules().rbegin()->Status(), RuleStatus::Enabled); EXPECT_EQ(result.LifecycleRules().rbegin()->TransitionList().size(), 2UL); EXPECT_EQ(result.LifecycleRules().rbegin()->TransitionList().rbegin()->StorageClass(), StorageClass::Archive); EXPECT_EQ(result.LifecycleRules().rbegin()->TransitionList().rbegin()->Expiration().Days(), 180UL); EXPECT_EQ(result.LifecycleRules().rbegin()->Expiration().Days(), 240UL); EXPECT_EQ(result.LifecycleRules().rbegin()->AbortMultipartUpload().Days(), 0UL); EXPECT_EQ(result.LifecycleRules().rbegin()->AbortMultipartUpload().CreatedBeforeDate(), ""); EXPECT_EQ(result.LifecycleRules().rbegin()->hasAbortMultipartUpload(), false); } TEST_F(BucketLifecycleSettingsTest, LifecycleSetGetDeleteRequestTest) { auto rule = LifecycleRule(); rule.setID("basic-test"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), true); GetBucketLifecycleRequest gRequest(BucketName); auto gOutcome = Client->GetBucketLifecycle(gRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().LifecycleRules().size(), 1UL); if (gOutcome.result().LifecycleRules().size() == 1UL) { EXPECT_TRUE(*(gOutcome.result().LifecycleRules().begin()) == rule); } DeleteBucketLifecycleRequest dRequest(BucketName); auto dOutcome = Client->DeleteBucketLifecycle(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); } TEST_F(BucketLifecycleSettingsTest, LifecycleBasicSettingTest) { auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-002"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setDays(365); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-003"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(200, true)); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-004"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(365, true)); EXPECT_TRUE(TestRule(rule)); } TEST_F(BucketLifecycleSettingsTest, LifecycleAdvancedSettingTest) { auto rule = LifecycleRule(); rule.setID("StandardExpireRule-101"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(400); rule.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(400, true)); auto transition = LifeCycleTransition(); transition.Expiration().setDays(180); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); transition.Expiration().setDays(365); transition.setStorageClass(StorageClass::Archive); rule.addTransition(transition); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-102"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setDays(365); rule.AbortMultipartUpload().setDays(200); transition.Expiration().setDays(250); transition.setStorageClass(StorageClass::Archive); rule.addTransition(transition); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-103"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(365, true)); rule.AbortMultipartUpload().setDays(200); EXPECT_TRUE(TestRule(rule)); rule = LifecycleRule(); rule.setID("StandardExpireRule-104"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(-400, true)); rule.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(400, true)); transition = LifeCycleTransition(); transition.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(-180, true)); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); transition.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(-365, true)); transition.setStorageClass(StorageClass::Archive); rule.addTransition(transition); EXPECT_TRUE(TestRule(rule)); } TEST_F(BucketLifecycleSettingsTest, SetLifecycleRequestLifecycleRuleEmptyTest) { SetBucketLifecycleRequest request(BucketName); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "LifecycleRule should not be null or empty") != nullptr); } TEST_F(BucketLifecycleSettingsTest, SetLifecycleRequestLifecycleRuleNoConfigTest) { SetBucketLifecycleRequest request(BucketName); auto rule = LifecycleRule(); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "Configure at least one of file and fragment lifecycle.") != nullptr); } TEST_F(BucketLifecycleSettingsTest, SetLifecycleRequestRuleForBucketPasitiveTest) { auto rule = LifecycleRule(); rule.setID("StandardExpireRule-301"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(365, true)); EXPECT_TRUE(TestRule(rule)); } TEST_F(BucketLifecycleSettingsTest, SetLifecycleRequestRuleForBucketNegativeTest) { SetBucketLifecycleRequest request(BucketName); auto rule = LifecycleRule(); rule.setID("StandardExpireRule-401"); rule.setStatus(RuleStatus::Disabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(365, true)); request.addLifecycleRule(rule); rule = LifecycleRule(); rule.setID("StandardExpireRule-402"); rule.setPrefix("object"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(365, true)); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "You have a rule for a prefix") != nullptr); } TEST_F(BucketLifecycleSettingsTest, SetLifecycleRequestInvalidBucketNameTest) { SetBucketLifecycleRequest request("InvalidBucketName"); auto rule = LifecycleRule(); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The bucket name is invalid") != nullptr); } TEST_F(BucketLifecycleSettingsTest, LifecycleRuleEqualOperationTest) { //ID NG auto rule = LifecycleRule(); auto rule1 = LifecycleRule(); rule.setID("id0"); rule1.setID("id1"); EXPECT_FALSE(rule == rule1); //Prefix NG rule = LifecycleRule(); rule1 = LifecycleRule(); rule.setID("id"); rule1.setID("id"); rule.setPrefix("prefix0"); rule.setPrefix("prefix1"); EXPECT_FALSE(rule == rule1); //RuleStatus NG rule = LifecycleRule(); rule1 = LifecycleRule(); rule.setID("id"); rule1.setID("id"); rule.setPrefix("prefix"); rule1.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1.setStatus(RuleStatus::Disabled); EXPECT_FALSE(rule == rule1); //Expiration CreatedBeforeDate NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; rule.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(10)); rule1.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(20)); EXPECT_FALSE(rule == rule1); //Expiration Days NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; rule.Expiration().setDays(10); rule1.Expiration().setDays(20); EXPECT_FALSE(rule == rule1); //AbortMultipartUpload CreatedBeforeDate NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; rule.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(10)); rule1.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(20)); EXPECT_FALSE(rule == rule1); //AbortMultipartUpload Days NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; rule.AbortMultipartUpload().setDays(20); rule1.AbortMultipartUpload().setDays(50); EXPECT_FALSE(rule == rule1); //TransitionList size NG rule = LifecycleRule(); rule1 = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; auto transition = LifeCycleTransition(); transition.Expiration().setDays(10); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); rule1.addTransition(transition); transition.Expiration().setDays(60); transition.setStorageClass(StorageClass::Archive); rule1.addTransition(transition); EXPECT_FALSE(rule == rule1); //Transition StorageClass NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; transition = LifeCycleTransition(); transition.Expiration().setDays(10); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); transition.Expiration().setDays(10); transition.setStorageClass(StorageClass::Archive); rule1.addTransition(transition); EXPECT_FALSE(rule == rule1); //Transition Days NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; transition = LifeCycleTransition(); transition.Expiration().setDays(10); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); transition.Expiration().setDays(20); transition.setStorageClass(StorageClass::IA); rule1.addTransition(transition); EXPECT_FALSE(rule == rule1); //Transition CreatedBeforeDate NG rule = LifecycleRule(); rule.setID("id"); rule.setPrefix("prefix"); rule.setStatus(RuleStatus::Enabled); rule1 = rule; transition = LifeCycleTransition(); transition.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(10)); transition.setStorageClass(StorageClass::IA); rule.addTransition(transition); transition.Expiration().setCreatedBeforeDate(TestUtils::GetUTCString(20)); transition.setStorageClass(StorageClass::IA); rule1.addTransition(transition); EXPECT_FALSE(rule == rule1); } TEST_F(BucketLifecycleSettingsTest, LifeCycleExpirationTest) { auto expiration = LifeCycleExpiration(30); auto expiration1 = LifeCycleExpiration(); expiration1.setDays(30); EXPECT_EQ(expiration.Days(), expiration1.Days()); expiration = LifeCycleExpiration(TestUtils::GetUTCString(10)); expiration1 = LifeCycleExpiration(); expiration1.setCreatedBeforeDate(TestUtils::GetUTCString(10)); EXPECT_EQ(expiration.CreatedBeforeDate(), expiration1.CreatedBeforeDate()); auto utcStr = TestUtils::GetUTCString(10); expiration = LifeCycleExpiration(utcStr); EXPECT_EQ(expiration.Days(), 0UL); EXPECT_EQ(expiration.CreatedBeforeDate(), utcStr); expiration.setDays(20); EXPECT_EQ(expiration.Days(), 20UL); EXPECT_EQ(expiration.CreatedBeforeDate(), ""); expiration.setCreatedBeforeDate(utcStr); EXPECT_EQ(expiration.Days(), 0UL); EXPECT_EQ(expiration.CreatedBeforeDate(), utcStr); } TEST_F(BucketLifecycleSettingsTest, LifeCycleTransitionTest) { auto expiration = LifeCycleExpiration(30); auto transition = LifeCycleTransition(expiration, StorageClass::IA); EXPECT_EQ(transition.Expiration().Days(), 30UL); EXPECT_EQ(transition.StorageClass(), StorageClass::IA); expiration = LifeCycleExpiration(60); transition = LifeCycleTransition(); transition.setExpiration(expiration); EXPECT_EQ(transition.Expiration().Days(), 60UL); } TEST_F(BucketLifecycleSettingsTest, LifeCycleRuleLimitTest) { SetBucketLifecycleRequest request(BucketName); for (int i = 0; i < LifecycleRuleLimit + 1; i++) { auto rule = LifecycleRule(); std::string prefix = "prefix"; prefix.append(std::to_string(i)); rule.setPrefix(prefix); rule.Expiration().setDays(10 + i); request.addLifecycleRule(rule); } auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "One bucket not allow exceed one thousand") != nullptr); } TEST_F(BucketLifecycleSettingsTest, DeleteBucketLifecycleNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-lifecycle"); auto outcome = Client->DeleteBucketLifecycle(name); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketLifecycleSettingsTest, GetBucketLifecycleNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-lifecycle"); auto outcome = Client->GetBucketLifecycle(name); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketLifecycleSettingsTest, GetBucketLifecycleResultBranchTest) { GetBucketLifecycleResult result("test"); std::string xml = R"( )"; GetBucketLifecycleResult result1(xml); xml = R"( 36e24c61-227f-4ea9-aee2-bc5af12dbc90 prefix1 Disabled 180 Archive )"; GetBucketLifecycleResult result2(xml); xml = R"( 180 Archive 240 30 )"; GetBucketLifecycleResult result3(xml); xml = R"( )"; GetBucketLifecycleResult result4(xml); xml = R"( )"; GetBucketLifecycleResult result5(xml); xml = R"()"; GetBucketLifecycleResult result6(xml); } TEST_F(BucketLifecycleSettingsTest, GetBucketLifecycleResultWithVersioningTest) { std::string xml = R"( 36e24c61-227f-4ea9-aee2-bc5af12dbc90 prefix1 Disabled 60 IA 180 Archive 240 30 6a7f02d9-97f0-4a58-8a55-f3fe604e2cd5 prefix2 Disabled 2018-05-05T00:00:00.000Z IA 2018-08-05T00:00:00.000Z Archive 2018-10-05T00:00:00.000Z 2018-11-05T00:00:00.000Z delete example logs/ Enabled true 5 1 transit example data/ Enabled 30 IA 130 Archive 10 IA 20 Archive )"; GetBucketLifecycleResult result(xml); EXPECT_EQ(result.LifecycleRules().size(), 4UL); //rule 36e24c61-227f-4ea9-aee2-bc5af12dbc90 EXPECT_EQ(result.LifecycleRules().begin()->ID(), "36e24c61-227f-4ea9-aee2-bc5af12dbc90"); EXPECT_EQ(result.LifecycleRules().begin()->Prefix(), "prefix1"); EXPECT_EQ(result.LifecycleRules().begin()->Status(), RuleStatus::Disabled); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().size(), 2UL); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().begin()->StorageClass(), StorageClass::IA); EXPECT_EQ(result.LifecycleRules().begin()->TransitionList().begin()->Expiration().Days(), 60U); EXPECT_EQ(result.LifecycleRules().begin()->Expiration().Days(), 240U); EXPECT_EQ(result.LifecycleRules().begin()->ExpiredObjectDeleteMarker(), false); EXPECT_EQ(result.LifecycleRules().begin()->AbortMultipartUpload().Days(), 30U); //rule delete example EXPECT_EQ(result.LifecycleRules().at(2).ID(), "delete example"); EXPECT_EQ(result.LifecycleRules().at(2).Prefix(), "logs/"); EXPECT_EQ(result.LifecycleRules().at(2).Status(), RuleStatus::Enabled); EXPECT_EQ(result.LifecycleRules().at(2).TransitionList().size(), 0UL); EXPECT_EQ(result.LifecycleRules().at(2).Expiration().Days(), 0U); EXPECT_EQ(result.LifecycleRules().at(2).ExpiredObjectDeleteMarker(), true); EXPECT_EQ(result.LifecycleRules().at(2).NoncurrentVersionExpiration().Days(), 5U); EXPECT_EQ(result.LifecycleRules().at(2).AbortMultipartUpload().Days(), 1U); EXPECT_EQ(result.LifecycleRules().at(2).hasAbortMultipartUpload(), true); EXPECT_EQ(result.LifecycleRules().at(2).hasTransitionList(), false); EXPECT_EQ(result.LifecycleRules().at(2).hasNoncurrentVersionTransitionList(), false); //rule transit example EXPECT_EQ(result.LifecycleRules().at(3).ID(), "transit example"); EXPECT_EQ(result.LifecycleRules().at(3).Prefix(), "data/"); EXPECT_EQ(result.LifecycleRules().at(3).Status(), RuleStatus::Enabled); EXPECT_EQ(result.LifecycleRules().at(3).TransitionList().size(), 2UL); EXPECT_EQ(result.LifecycleRules().at(3).TransitionList().at(0).StorageClass(), StorageClass::IA); EXPECT_EQ(result.LifecycleRules().at(3).TransitionList().at(0).Expiration().Days(), 30U); EXPECT_EQ(result.LifecycleRules().at(3).TransitionList().at(1).StorageClass(), StorageClass::Archive); EXPECT_EQ(result.LifecycleRules().at(3).TransitionList().at(1).Expiration().Days(), 130U); EXPECT_EQ(result.LifecycleRules().at(3).NoncurrentVersionTransitionList().size(), 2U); EXPECT_EQ(result.LifecycleRules().at(3).NoncurrentVersionTransitionList().at(0).StorageClass(), StorageClass::IA); EXPECT_EQ(result.LifecycleRules().at(3).NoncurrentVersionTransitionList().at(0).Expiration().Days(), 10U); EXPECT_EQ(result.LifecycleRules().at(3).NoncurrentVersionTransitionList().at(1).StorageClass(), StorageClass::Archive); EXPECT_EQ(result.LifecycleRules().at(3).NoncurrentVersionTransitionList().at(1).Expiration().Days(), 20U); EXPECT_EQ(result.LifecycleRules().at(3).hasAbortMultipartUpload(), false); EXPECT_EQ(result.LifecycleRules().at(3).hasExpiration(), false); xml = R"( delete example logs/ Enabled transit example data/ Enabled 30 IA 130 Archive )"; result = GetBucketLifecycleResult(xml); xml = R"( delete example logs/ Enabled transit example data/ Enabled 30 IA 130 Archive )"; result = GetBucketLifecycleResult(xml); xml = R"( )"; result = GetBucketLifecycleResult(xml); } TEST_F(BucketLifecycleSettingsTest, LifecycleRuleWithVersioningTest) { auto rule1 = LifecycleRule(); auto rule2 = LifecycleRule(); EXPECT_EQ(rule1 == rule2, true); //ExpiredObjectDeleteMarker rule1 = LifecycleRule(); rule1.setExpiredObjectDeleteMarker(true); rule2 = LifecycleRule(); rule2.setExpiredObjectDeleteMarker(true); EXPECT_EQ(rule1 == rule2, true); rule1 = LifecycleRule(); rule2 = LifecycleRule(); rule2.setExpiredObjectDeleteMarker(true); EXPECT_EQ(rule1 == rule2, false); //NoncurrentVersionExpiration rule1 = LifecycleRule(); rule1.setNoncurrentVersionExpiration(LifeCycleExpiration(30U)); rule2 = LifecycleRule(); rule2.setNoncurrentVersionExpiration(LifeCycleExpiration(30U)); EXPECT_EQ(rule1 == rule2, true); rule1 = LifecycleRule(); rule1.setNoncurrentVersionExpiration(LifeCycleExpiration(10U)); rule2 = LifecycleRule(); rule2.setNoncurrentVersionExpiration(LifeCycleExpiration(30U)); EXPECT_EQ(rule1 == rule2, false); rule1 = LifecycleRule(); rule2 = LifecycleRule(); rule2.setNoncurrentVersionExpiration(LifeCycleExpiration(30U)); EXPECT_EQ(rule1 == rule2, false); //NoncurrentVersionTransition rule1 = LifecycleRule(); rule1.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(10U), StorageClass::IA)); rule2 = LifecycleRule(); rule2.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(10U), StorageClass::IA)); EXPECT_EQ(rule1 == rule2, true); rule1 = LifecycleRule(); rule2 = LifecycleRule(); rule2.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(10U), StorageClass::IA)); EXPECT_EQ(rule1 == rule2, false); rule1 = LifecycleRule(); rule1.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(20U), StorageClass::IA)); rule2 = LifecycleRule(); rule2.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(10U), StorageClass::IA)); EXPECT_EQ(rule1 == rule2, false); rule1 = LifecycleRule(); rule1.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(20U), StorageClass::IA)); rule2 = LifecycleRule(); rule2.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(20U), StorageClass::Archive)); EXPECT_EQ(rule1 == rule2, false); rule1 = LifecycleRule(); rule1.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration("2018-05-05T00:00:00.000Z"), StorageClass::IA)); rule2 = LifecycleRule(); rule2.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration("2018-05-06T00:00:00.000Z"), StorageClass::IA)); EXPECT_EQ(rule1 == rule2, false); //LifecycleRule() get & set test auto rule = LifecycleRule(); LifeCycleExpiration expiration; expiration.setDays(30U); rule.setNoncurrentVersionExpiration(expiration); EXPECT_EQ(rule.NoncurrentVersionExpiration().Days(), expiration.Days()); EXPECT_EQ(rule.NoncurrentVersionExpiration().CreatedBeforeDate(), expiration.CreatedBeforeDate()); rule.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(20U), StorageClass::IA)); rule.addNoncurrentVersionTransition(LifeCycleTransition(LifeCycleExpiration(200U), StorageClass::Archive)); EXPECT_EQ(rule.hasNoncurrentVersionTransitionList(), true); EXPECT_EQ(rule.NoncurrentVersionTransitionList().size(), 2UL); EXPECT_EQ(rule.NoncurrentVersionTransitionList().at(0).StorageClass(), StorageClass::IA); EXPECT_EQ(rule.NoncurrentVersionTransitionList().at(1).StorageClass(), StorageClass::Archive); } TEST_F(BucketLifecycleSettingsTest, SetAndGetLifecycleRuleWithVersioningTest) { auto bucketName = BucketName; bucketName.append("-lc-version"); auto client = TestUtils::GetOssClientDefault(); auto cOutcome = client->CreateBucket(bucketName); EXPECT_EQ(cOutcome.isSuccess(), true); auto bsOutcome = client->SetBucketVersioning(SetBucketVersioningRequest(bucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = client->GetBucketInfo(bucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; SetBucketLifecycleRequest request(bucketName); //rule 1 auto rule1 = LifecycleRule(); rule1.setID("StandardExpireRule-101"); rule1.setPrefix("standard/"); rule1.setStatus(RuleStatus::Enabled); rule1.Expiration().setDays(400); rule1.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(400, true)); auto transition = LifeCycleTransition(); transition.Expiration().setDays(180); transition.setStorageClass(StorageClass::IA); rule1.addTransition(transition); transition.Expiration().setDays(365); transition.setStorageClass(StorageClass::Archive); rule1.addTransition(transition); request.addLifecycleRule(rule1); //rule 2 auto rule2 = LifecycleRule(); rule2.setID("transit example"); rule2.setPrefix("test"); rule2.setStatus(RuleStatus::Enabled); rule2.Expiration().setDays(100); rule2.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(400, true)); transition = LifeCycleTransition(); transition.Expiration().setDays(180); transition.setStorageClass(StorageClass::IA); rule2.addNoncurrentVersionTransition(transition); transition.Expiration().setDays(365); transition.setStorageClass(StorageClass::Archive); rule2.addNoncurrentVersionTransition(transition); request.addLifecycleRule(rule2); //rule 3 auto rule3 = LifecycleRule(); rule3.setID("delete example"); rule3.setPrefix("log/"); rule3.setStatus(RuleStatus::Enabled); rule3.setExpiredObjectDeleteMarker(true); rule3.AbortMultipartUpload().setCreatedBeforeDate(TestUtils::GetUTCString(300, true)); rule3.NoncurrentVersionExpiration().setDays(200U); request.addLifecycleRule(rule3); auto sOutcome = client->SetBucketLifecycle(request); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = client->GetBucketLifecycle(bucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().LifecycleRules().size(), 3UL); EXPECT_EQ(gOutcome.result().LifecycleRules().at(0), rule1); EXPECT_EQ(gOutcome.result().LifecycleRules().at(1), rule2); EXPECT_EQ(gOutcome.result().LifecycleRules().at(2), rule3); auto dOutcome = client->DeleteBucketLifecycle(bucketName); EXPECT_EQ(dOutcome.isSuccess(), true); //Only ExpiredObjectDeleteMarker auto rule4 = LifecycleRule(); rule4.setID("only delete marker"); rule4.setPrefix("log/"); rule4.setStatus(RuleStatus::Enabled); rule4.setExpiredObjectDeleteMarker(true); request.clearLifecycleRules(); request.addLifecycleRule(rule4); sOutcome = client->SetBucketLifecycle(request); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = client->GetBucketLifecycle(bucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().LifecycleRules().size(), 1UL); EXPECT_EQ(gOutcome.result().LifecycleRules().at(0), rule4); //Only NoncurrentVersionTransition auto rule5 = LifecycleRule(); rule5.setID("only transit"); rule5.setPrefix("test"); rule5.setStatus(RuleStatus::Enabled); transition = LifeCycleTransition(); transition.Expiration().setDays(180); transition.setStorageClass(StorageClass::IA); rule5.addNoncurrentVersionTransition(transition); transition.Expiration().setDays(365); transition.setStorageClass(StorageClass::Archive); rule5.addNoncurrentVersionTransition(transition); request.clearLifecycleRules(); request.addLifecycleRule(rule5); sOutcome = client->SetBucketLifecycle(request); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = client->GetBucketLifecycle(bucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().LifecycleRules().size(), 1UL); EXPECT_EQ(gOutcome.result().LifecycleRules().at(0), rule5); //Only NoncurrentVersionExpiration auto rule6 = LifecycleRule(); rule6.setID("only expiration"); rule6.setPrefix("log/"); rule6.setStatus(RuleStatus::Enabled); rule6.setNoncurrentVersionExpiration(LifeCycleExpiration(30U)); request.clearLifecycleRules(); request.addLifecycleRule(rule6); sOutcome = client->SetBucketLifecycle(request); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = client->GetBucketLifecycle(bucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().LifecycleRules().size(), 1UL); EXPECT_EQ(gOutcome.result().LifecycleRules().at(0), rule6); client->DeleteBucket(bucketName); } TEST_F(BucketLifecycleSettingsTest, GetBucketLifecycleWithInvalidResponseBodyTest) { auto rule = LifecycleRule(); rule.setID("basic-test"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); auto sblRequest = SetBucketLifecycleRequest(BucketName); sblRequest.addLifecycleRule(rule); Client->SetBucketLifecycle(sblRequest); auto gblfRequest = GetBucketLifecycleRequest(BucketName); gblfRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gblfOutcome = Client->GetBucketLifecycle(gblfRequest); EXPECT_EQ(gblfOutcome.isSuccess(), false); EXPECT_EQ(gblfOutcome.error().Code(), "ParseXMLError"); } } } ================================================ FILE: test/src/Bucket/BucketLoggingSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketLoggingSettingsTest : public ::testing::Test { protected: BucketLoggingSettingsTest() { } ~BucketLoggingSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketloggingsettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketLoggingSettingsTest::Client = nullptr; std::string BucketLoggingSettingsTest::BucketName = ""; TEST_F(BucketLoggingSettingsTest, InvalidBucketNameTest) { for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->SetBucketLogging(invalidBucketName, "bucket", "LogPrefix"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketLoggingSettingsTest, GetBucketNotSetLoggingTest) { auto dOutcome = Client->DeleteBucketLogging(DeleteBucketLoggingRequest(BucketName)); EXPECT_EQ(dOutcome.isSuccess(), true); auto gOutcome = Client->GetBucketLogging(GetBucketLoggingRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().TargetBucket().empty(), true); EXPECT_EQ(gOutcome.result().TargetPrefix().empty(), true); } TEST_F(BucketLoggingSettingsTest, GetBucketLoggingNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketloggingsettings"); auto outcome = Client->GetBucketLogging(bucketName); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketLoggingSettingsTest, DeleteBucketLoggingNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketloggingsettings"); auto outcome = Client->DeleteBucketLogging(bucketName); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketLoggingSettingsTest, EnableLoggingTest) { auto sOutcome = Client->SetBucketLogging(SetBucketLoggingRequest(BucketName, BucketName, "LoggingTest")); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketLogging(GetBucketLoggingRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().TargetPrefix(), "LoggingTest"); auto dOutcome = Client->DeleteBucketLogging(DeleteBucketLoggingRequest(BucketName)); EXPECT_EQ(dOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = Client->GetBucketLogging(GetBucketLoggingRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().TargetBucket().empty(), true); EXPECT_EQ(gOutcome.result().TargetPrefix().empty(), true); } TEST_F(BucketLoggingSettingsTest, EnableLoggingInvalidTargetBucketNameTest) { for (auto invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->SetBucketLogging(SetBucketLoggingRequest(BucketName, invalidBucketName, "LogPrefix")); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketLoggingSettingsTest, EnableLoggingNonExistTargetBucketNameTest) { auto targetBucketName = TestUtils::GetBucketName("cpp-sdk-bucketloggingsettings"); EXPECT_EQ(TestUtils::BucketExists(*Client, targetBucketName), false); auto outcome = Client->SetBucketLogging(SetBucketLoggingRequest(BucketName, targetBucketName, "LogPrefix")); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "InvalidTargetBucketForLogging"); } TEST_F(BucketLoggingSettingsTest, EnableLoggingInvalidPrefixNameTest) { for (auto const &invalidPrefix : TestUtils::InvalidLoggingPrefixNamesList()) { auto outcome = Client->SetBucketLogging(SetBucketLoggingRequest(BucketName, BucketName, invalidPrefix)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketLoggingSettingsTest, EnableLoggingWithEmtpyPrefixNameTest) { auto outcome = Client->SetBucketLogging(SetBucketLoggingRequest(BucketName, BucketName, "")); std::cout << "SetBucketLogging, requestid:" << outcome.result().RequestId() << std::endl; TestUtils::WaitForCacheExpire(5); auto blOutcome = Client->GetBucketLogging(BucketName); int i = 0; while (blOutcome.result().TargetBucket() != BucketName) { std::cout << "GetBucketLogging, cnt:" << i++ << ", requestid:" << blOutcome.result().RequestId() << std::endl; TestUtils::WaitForCacheExpire(5); blOutcome = Client->GetBucketLogging(BucketName); } EXPECT_EQ(blOutcome.isSuccess(), true); EXPECT_STREQ(blOutcome.result().TargetBucket().c_str(), BucketName.c_str()); EXPECT_STREQ(blOutcome.result().TargetPrefix().c_str(), ""); } TEST_F(BucketLoggingSettingsTest, BucketLoggingWithInvalidResponseBodyTest) { auto gblRequest = GetBucketLoggingRequest(BucketName); gblRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gblOutcome = Client->GetBucketLogging(gblRequest); EXPECT_EQ(gblOutcome.isSuccess(), false); EXPECT_EQ(gblOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketLoggingSettingsTest, GetBucketLoggingResult) { std::string xml = R"( mybucketlogs mybucket-access_log/ )"; GetBucketLoggingResult result(xml); EXPECT_EQ(result.TargetBucket(), "mybucketlogs"); EXPECT_EQ(result.TargetPrefix(), "mybucket-access_log/"); } TEST_F(BucketLoggingSettingsTest, SetBucketLoggingRequestConstructionFunctiontest) { SetBucketLoggingRequest request("test"); } TEST_F(BucketLoggingSettingsTest, GetBucketLoggingResultBranchtest) { GetBucketLoggingResult result("test"); std::string xml = R"( mybucketlogs mybucket-access_log/ )"; GetBucketLoggingResult result1(xml); xml = R"( )"; GetBucketLoggingResult result2(xml); xml = R"( mybucketlogs mybucket-access_log/ )"; GetBucketLoggingResult result3(xml); xml = R"()"; GetBucketLoggingResult result4(xml); xml = R"( )"; GetBucketLoggingResult result5(xml); } } } ================================================ FILE: test/src/Bucket/BucketPolicySettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketPolicySettingsTest : public ::testing::Test { protected: BucketPolicySettingsTest() { } ~BucketPolicySettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketpolicysettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketPolicySettingsTest::Client = nullptr; std::string BucketPolicySettingsTest::BucketName = ""; TEST_F(BucketPolicySettingsTest, InvalidBucketNameTest) { std::string policy = "invalidpolicy"; for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { SetBucketPolicyRequest request(invalidBucketName); request.setPolicy(policy); auto outcome = Client->SetBucketPolicy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketPolicySettingsTest, SetBucketPolicyInvalidInputTest) { SetBucketPolicyRequest request(BucketName); request.setPolicy("policy"); auto outcome = Client->SetBucketPolicy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidPolicyDocument"); EXPECT_EQ(outcome.error().Message(), "unknown char p"); } TEST_F(BucketPolicySettingsTest, SetBucketPolicyTest) { SetBucketPolicyRequest request(BucketName); std::string policy = "{\"Version\":\"1\",\"Statement\":[{\"Action\":[\"oss:PutObject\",\"oss:GetObject\"],\"Resource\": \"acs:oss:*:*:*\",\"Effect\": \"Deny\"}]}\n"; request.setPolicy(policy); auto outcome = Client->SetBucketPolicy(request); EXPECT_EQ(outcome.isSuccess(), true); GetBucketPolicyRequest request1(BucketName); auto outcome1 = Client->GetBucketPolicy(request1); EXPECT_EQ(outcome1.isSuccess(), true); EXPECT_EQ(outcome1.result().Policy(), policy); DeleteBucketPolicyRequest request2(BucketName); auto outcome2 = Client->DeleteBucketPolicy(request2); EXPECT_EQ(outcome2.isSuccess(), true); } TEST_F(BucketPolicySettingsTest, GetBucketPolicyResult) { std::string policy = "policy"; GetBucketPolicyResult result(policy); EXPECT_EQ(result.Policy(), "policy"); } TEST_F(BucketPolicySettingsTest, DeleteBucketPolicyInvalidValidateTest) { auto deloutcome = Client->DeleteBucketPolicy(DeleteBucketPolicyRequest("Invalid-bucket-test")); EXPECT_EQ(deloutcome.isSuccess(), false); EXPECT_EQ(deloutcome.error().Code(), "ValidateError"); } TEST_F(BucketPolicySettingsTest, GetBucketPolicyInvalidValidateTest) { auto getoutcome = Client->GetBucketPolicy(GetBucketPolicyRequest("Invalid-bucket-test")); EXPECT_EQ(getoutcome.isSuccess(), false); EXPECT_EQ(getoutcome.error().Code(), "ValidateError"); } } } ================================================ FILE: test/src/Bucket/BucketQosInfoTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketQosInfoTest : public ::testing::Test { protected: BucketQosInfoTest() { } ~BucketQosInfoTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketqosinfo"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketQosInfoTest::Client = nullptr; std::string BucketQosInfoTest::BucketName = ""; TEST_F(BucketQosInfoTest, SetAndDeleteBucketQosInfoTest) { QosConfiguration qos; qos.setTotalUploadBandwidth(10); qos.setExtranetUploadBandwidth(-1); qos.setIntranetUploadBandwidth(-1); qos.setTotalDownloadBandwidth(10); qos.setExtranetDownloadBandwidth(-1); qos.setIntranetDownloadBandwidth(-1); qos.setTotalQps(1000); qos.setExtranetQps(-1); qos.setIntranetQps(-1); SetBucketQosInfoRequest setrequest(BucketName, qos); auto setoutcome = Client->SetBucketQosInfo(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); DeleteBucketQosInfoRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketQosInfo(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); } TEST_F(BucketQosInfoTest, GetBucketQosInfoTest) { QosConfiguration qos; qos.setTotalUploadBandwidth(10); qos.setExtranetUploadBandwidth(-1); qos.setIntranetUploadBandwidth(-1); qos.setTotalDownloadBandwidth(10); qos.setExtranetDownloadBandwidth(-1); qos.setIntranetDownloadBandwidth(-1); qos.setTotalQps(1000); qos.setExtranetQps(-1); qos.setIntranetQps(-1); SetBucketQosInfoRequest setrequest(BucketName, qos); auto setoutcome = Client->SetBucketQosInfo(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); GetBucketQosInfoRequest getrequest(BucketName); auto getoutcome = Client->GetBucketQosInfo(getrequest); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().QosInfo().TotalUploadBandwidth(), 10); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetUploadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().IntranetUploadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().TotalDownloadBandwidth(), 10); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetDownloadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().IntranetDownloadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().TotalQps(), 1000); EXPECT_EQ(getoutcome.result().QosInfo().IntranetQps(), -1); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetQps(), -1); GetUserQosInfoRequest getrequest1; auto getoutcome1 = Client->GetUserQosInfo(getrequest1); EXPECT_EQ(getoutcome1.isSuccess(), true); DeleteBucketQosInfoRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketQosInfo(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); } TEST_F(BucketQosInfoTest, GetUserQosInfoTest) { QosConfiguration qos; qos.setTotalUploadBandwidth(10); qos.setExtranetUploadBandwidth(-1); qos.setIntranetUploadBandwidth(-1); qos.setTotalDownloadBandwidth(10); qos.setExtranetDownloadBandwidth(-1); qos.setIntranetDownloadBandwidth(-1); qos.setTotalQps(1000); qos.setExtranetQps(-1); qos.setIntranetQps(-1); SetBucketQosInfoRequest setrequest(BucketName, qos); auto setoutcome = Client->SetBucketQosInfo(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); GetUserQosInfoRequest getrequest; auto getoutcome = Client->GetUserQosInfo(getrequest); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().QosInfo().TotalUploadBandwidth(), 10); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetUploadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().IntranetUploadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().TotalDownloadBandwidth(), 10); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetDownloadBandwidth(), -1); EXPECT_EQ(getoutcome.result().QosInfo().IntranetDownloadBandwidth(), -1); //EXPECT_EQ(getoutcome.result().QosInfo().TotalQps(), 1000); EXPECT_EQ(getoutcome.result().QosInfo().IntranetQps(), -1); EXPECT_EQ(getoutcome.result().QosInfo().ExtranetQps(), -1); DeleteBucketQosInfoRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketQosInfo(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); } TEST_F(BucketQosInfoTest, GetUserQosInfoWithInvalidResponseBodyTest) { QosConfiguration qos; qos.setTotalUploadBandwidth(10); qos.setExtranetUploadBandwidth(-1); qos.setIntranetUploadBandwidth(-1); qos.setTotalDownloadBandwidth(10); qos.setExtranetDownloadBandwidth(-1); qos.setIntranetDownloadBandwidth(-1); qos.setTotalQps(1000); qos.setExtranetQps(-1); qos.setIntranetQps(-1); SetBucketQosInfoRequest setrequest(BucketName, qos); Client->SetBucketQosInfo(setrequest); auto gbqiRequest = GetBucketQosInfoRequest(BucketName); gbqiRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbqiOutcome = Client->GetBucketQosInfo(gbqiRequest); EXPECT_EQ(gbqiOutcome.isSuccess(), false); EXPECT_EQ(gbqiOutcome.error().Code(), "ParseXMLError"); auto guqiRequest = GetUserQosInfoRequest(); guqiRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto guqiOutcome = Client->GetUserQosInfo(guqiRequest); EXPECT_EQ(guqiOutcome.isSuccess(), false); EXPECT_EQ(guqiOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketQosInfoTest, GetBucketQosInfoResultTest) { std::string xml = R"( 10 -1 -1 10 -1 -1 1000 -1 -1 )"; GetBucketQosInfoResult result(xml); EXPECT_EQ(result.QosInfo().TotalUploadBandwidth(), 10); EXPECT_EQ(result.QosInfo().ExtranetUploadBandwidth(), -1); EXPECT_EQ(result.QosInfo().IntranetUploadBandwidth(), -1); EXPECT_EQ(result.QosInfo().TotalDownloadBandwidth(), 10); EXPECT_EQ(result.QosInfo().ExtranetDownloadBandwidth(), -1); EXPECT_EQ(result.QosInfo().IntranetDownloadBandwidth(), -1); EXPECT_EQ(result.QosInfo().TotalQps(), 1000); EXPECT_EQ(result.QosInfo().IntranetQps(), -1); EXPECT_EQ(result.QosInfo().ExtranetQps(), -1); } TEST_F(BucketQosInfoTest, GetUserQosInfoResultTest) { std::string xml = R"( oss-cn-hangzhou 10 -1 -1 10 -1 -1 1000 -1 -1 )"; GetUserQosInfoResult result(xml); EXPECT_EQ(result.Region(), "oss-cn-hangzhou"); EXPECT_EQ(result.QosInfo().TotalUploadBandwidth(), 10); EXPECT_EQ(result.QosInfo().ExtranetUploadBandwidth(), -1); EXPECT_EQ(result.QosInfo().IntranetUploadBandwidth(), -1); EXPECT_EQ(result.QosInfo().TotalDownloadBandwidth(), 10); EXPECT_EQ(result.QosInfo().ExtranetDownloadBandwidth(), -1); EXPECT_EQ(result.QosInfo().IntranetDownloadBandwidth(), -1); EXPECT_EQ(result.QosInfo().TotalQps(), 1000); EXPECT_EQ(result.QosInfo().IntranetQps(), -1); EXPECT_EQ(result.QosInfo().ExtranetQps(), -1); } TEST_F(BucketQosInfoTest, GetUserQosInfoResultBranchTest) { GetUserQosInfoResult result("test"); std::string xml = R"( oss-cn-hangzhou 10 -1 -1 10 -1 -1 1000 -1 -1 )"; GetUserQosInfoResult result1(xml); xml = R"( )"; GetUserQosInfoResult result2(xml); xml = R"( )"; GetUserQosInfoResult result3(xml); xml = R"()"; GetUserQosInfoResult result10(xml); xml = R"( oss-cn-hangzhou 10 -1 -1 10 -1 -1 1000 -1 -1 )"; GetBucketQosInfoResult result4(xml); xml = R"()"; GetBucketQosInfoResult result5(xml); GetBucketQosInfoResult result6("test"); xml = R"( )"; GetBucketQosInfoResult result7(xml); xml = R"( )"; GetBucketQosInfoResult result8(xml); xml = R"( )"; GetBucketQosInfoResult result9(xml); } TEST_F(BucketQosInfoTest, SetBucketQosInfoFailTest) { QosConfiguration qos; SetBucketQosInfoRequest setrequest("INVALIDNAME", qos); auto setoutcome = Client->SetBucketQosInfo(setrequest); EXPECT_EQ(setoutcome.isSuccess(), false); DeleteBucketQosInfoRequest delrequest("INVALIDNAME"); auto deloutcome = Client->DeleteBucketQosInfo(delrequest); EXPECT_EQ(deloutcome.isSuccess(), false); GetBucketQosInfoRequest getrequest("INVALIDNAME"); auto getoutcome = Client->GetBucketQosInfo(getrequest); EXPECT_EQ(getoutcome.isSuccess(), false); } TEST_F(BucketQosInfoTest, UserQosInfoFailTest) { auto invalidClient = std::make_shared(Config::Endpoint, Config::AccessKeyId, "Invalid", ClientConfiguration()); GetUserQosInfoRequest getrequest1; auto getoutcome1 = invalidClient->GetUserQosInfo(getrequest1); EXPECT_EQ(getoutcome1.isSuccess(), false); } } } ================================================ FILE: test/src/Bucket/BucketRefersSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketRefersSettingsTest : public ::testing::Test { protected: BucketRefersSettingsTest() { } ~BucketRefersSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketreferssettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketRefersSettingsTest::Client = nullptr; std::string BucketRefersSettingsTest::BucketName = ""; TEST_F(BucketRefersSettingsTest, GetBucketDefaultRefersTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketreferssettings"); auto cOutcome = Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(cOutcome.isSuccess(), true); auto refOutcome = Client->GetBucketReferer(bucketName); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().size(), 0UL); EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), true); Client->DeleteBucket(DeleteBucketRequest(bucketName)); } TEST_F(BucketRefersSettingsTest, SetBucketRefersPositiveTest) { //initialize refer list RefererList referList = { "http://*.aliyun.com", "http://wwww.alibaba.com" }; //use construct which pass in 3 parameters auto outcome = Client->SetBucketReferer(SetBucketRefererRequest(BucketName, referList, false)); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto refOutcome = Client->GetBucketReferer(GetBucketRefererRequest(BucketName)); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().size(), 2UL); EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), false); referList.push_back("http://www.taobao?.com"); //use construct which pass in 2 parameters, and allowEmptyRefer set to true //outcome = Client->SetBucketReferer(SetBucketRefererRequest(BucketName, referList)); outcome = Client->SetBucketReferer(BucketName, referList, true); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); refOutcome = Client->GetBucketReferer(GetBucketRefererRequest(BucketName)); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().size(), 3UL); //it is true this time EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), true); //use construct which pass in 1 parameter, which means set it back to init status outcome = Client->SetBucketReferer(SetBucketRefererRequest(BucketName)); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); refOutcome = Client->GetBucketReferer(GetBucketRefererRequest(BucketName)); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().empty(), true); EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), true); } TEST_F(BucketRefersSettingsTest, SetBucketRefersEmptyListTest) { auto outcome = Client->SetBucketReferer(SetBucketRefererRequest(BucketName, RefererList(), false)); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto refOutcome = Client->GetBucketReferer(GetBucketRefererRequest(BucketName)); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().empty(), true); EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), false); } TEST_F(BucketRefersSettingsTest, GetBucketRefersNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketreferssettings"); auto outcome = Client->GetBucketReferer(bucketName); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketRefersSettingsTest, SetBucketRefersNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketreferssettings"); auto outcome = Client->SetBucketReferer(SetBucketRefererRequest(bucketName, RefererList(), false)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketRefersSettingsTest, SetBucketRefersEmptyElementTest) { RefererList referList = { "", "" }; auto outcome = Client->SetBucketReferer(SetBucketRefererRequest(BucketName, referList)); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto refOutcome = Client->GetBucketReferer(GetBucketRefererRequest(BucketName)); EXPECT_EQ(refOutcome.isSuccess(), true); EXPECT_EQ(refOutcome.result().RefererList().empty(), true); EXPECT_EQ(refOutcome.result().AllowEmptyReferer(), true); } TEST_F(BucketRefersSettingsTest, SetBucketRefererNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-bucket-refer"); RefererList referList; referList.push_back("http://www.taobao?.com"); auto outcome = Client->SetBucketReferer(name, referList, true); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketRefersSettingsTest, GetBucketRefererResult) { std::string xml = R"( true http://www.aliyun.com https://www.aliyun.com http://www.*.com https://www.?.aliyuncs.com )"; GetBucketRefererResult result(xml); EXPECT_EQ(result.AllowEmptyReferer(), true); EXPECT_EQ(result.RefererList().size(), 4UL); } TEST_F(BucketRefersSettingsTest, GetBucketRefererResultBranchTest) { GetBucketRefererResult result("test"); std::string xml = R"( true http://www.aliyun.com https://www.aliyun.com http://www.*.com https://www.?.aliyuncs.com )"; GetBucketRefererResult result1(xml); xml = R"( )"; GetBucketRefererResult result2(xml); xml = R"( true )"; GetBucketRefererResult result3(xml); xml = R"( )"; GetBucketRefererResult result4(xml); xml = R"()"; GetBucketRefererResult result5(xml); } } } ================================================ FILE: test/src/Bucket/BucketRequestPaymentTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include namespace AlibabaCloud { namespace OSS { class BucketRequestPaymentTest : public ::testing::Test { protected: BucketRequestPaymentTest() { } ~BucketRequestPaymentTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName1 = TestUtils::GetBucketName("cpp-sdk-objectcopy1"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName1)); EXPECT_EQ(outCome.isSuccess(), true); PayerClient = std::make_shared(Config::Endpoint, Config::PayerAccessKeyId, Config::PayerAccessKeySecret, ClientConfiguration()); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName1); Client = nullptr; PayerClient = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::shared_ptr PayerClient; static std::string BucketName1; }; std::shared_ptr BucketRequestPaymentTest::Client = nullptr; std::shared_ptr BucketRequestPaymentTest::PayerClient = nullptr; std::string BucketRequestPaymentTest::BucketName1 = ""; TEST_F(BucketRequestPaymentTest, PutAndGetBucketRequestPayment) { GetBucketRequestPaymentRequest getRequest(BucketName1); GetBucketPaymentOutcome getOutcome = Client->GetBucketRequestPayment(getRequest); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().Payer(), RequestPayer::BucketOwner); SetBucketRequestPaymentRequest setRequest(BucketName1); setRequest.setRequestPayer(RequestPayer::NotSet); VoidOutcome setOutcome = Client->SetBucketRequestPayment(setRequest); EXPECT_EQ(setOutcome.isSuccess(), false); setRequest.setRequestPayer(RequestPayer::BucketOwner); setOutcome = Client->SetBucketRequestPayment(setRequest); EXPECT_EQ(setOutcome.isSuccess(), true); setRequest.setRequestPayer(RequestPayer::Requester); setOutcome = Client->SetBucketRequestPayment(setRequest); EXPECT_EQ(setOutcome.isSuccess(), true); getOutcome = Client->GetBucketRequestPayment(getRequest); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().Payer(), RequestPayer::Requester); } TEST_F(BucketRequestPaymentTest, BucketRequestPaymentWithInvalidResponseBodyTest) { auto gbrpRequest = GetBucketRequestPaymentRequest(BucketName1); gbrpRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbrpOutcome = Client->GetBucketRequestPayment(gbrpRequest); EXPECT_EQ(gbrpOutcome.isSuccess(), false); EXPECT_EQ(gbrpOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketRequestPaymentTest, BucketPaymentResult) { std::string xml = R"( BucketOwner )"; GetBucketPaymentResult result(xml); EXPECT_EQ(result.Payer(), RequestPayer::BucketOwner); } TEST_F(BucketRequestPaymentTest, GetBucketRequestPaymentInvalidValidateTest) { auto getoutcome = Client->GetBucketRequestPayment(GetBucketRequestPaymentRequest("Invalid-bucket-test")); EXPECT_EQ(getoutcome.isSuccess(), false); EXPECT_EQ(getoutcome.error().Code(), "ValidateError"); } TEST_F(BucketRequestPaymentTest, BucketPaymentResultBranchTest) { GetBucketPaymentResult result("test"); std::string xml = R"( BucketOwner )"; GetBucketPaymentResult result1(xml); xml = R"( )"; GetBucketPaymentResult result2(xml); xml = R"( )"; GetBucketPaymentResult result3(xml); xml = R"()"; GetBucketPaymentResult result4(xml); } } } ================================================ FILE: test/src/Bucket/BucketStorageCapacityTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketStorageCapacityTest : public ::testing::Test { protected: BucketStorageCapacityTest() { } ~BucketStorageCapacityTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketstoragecapacity"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketStorageCapacityTest::Client = nullptr; std::string BucketStorageCapacityTest::BucketName = ""; TEST_F(BucketStorageCapacityTest, InvalidBucketNameTest) { for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->SetBucketStorageCapacity(invalidBucketName, 10240); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketStorageCapacityTest, SetBucketStorageCapacityTest) { auto sOutcome = Client->SetBucketStorageCapacity(SetBucketStorageCapacityRequest(BucketName, 10240)); EXPECT_EQ(sOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto outcome = Client->GetBucketStorageCapacity(GetBucketStorageCapacityRequest(BucketName)); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().StorageCapacity(), 10240LL); } TEST_F(BucketStorageCapacityTest, GetBucketStorageCapacityNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketstoragecapacity"); auto outcome = Client->GetBucketStorageCapacity(bucketName); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketStorageCapacityTest, BucketStorageCapacityWithInvalidResponseBodyTest) { auto gbscRequest = GetBucketStorageCapacityRequest(BucketName); gbscRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbscOutcome = Client->GetBucketStorageCapacity(gbscRequest); EXPECT_EQ(gbscOutcome.isSuccess(), false); EXPECT_EQ(gbscOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketStorageCapacityTest, SetBucketStorageCapacityInvalidInputTest) { auto outcome = Client->SetBucketStorageCapacity(SetBucketStorageCapacityRequest(BucketName, -2)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } TEST_F(BucketStorageCapacityTest, GetBucketStorageCapacityResult) { std::string xml = R"( 10240 )"; GetBucketStorageCapacityResult result(xml); EXPECT_EQ(result.StorageCapacity(), 10240LL); } TEST_F(BucketStorageCapacityTest, GetBucketStorageCapacityResultBranchTest) { GetBucketStorageCapacityResult result("test"); std::string xml = R"( 10240 )"; GetBucketStorageCapacityResult result1(xml); xml = R"( )"; GetBucketStorageCapacityResult result2(xml); xml = R"( )"; GetBucketStorageCapacityResult result3(xml); xml = R"()"; GetBucketStorageCapacityResult result4(xml); } } } ================================================ FILE: test/src/Bucket/BucketTaggingtTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketTaggingTest : public ::testing::Test { protected: BucketTaggingTest() { } ~BucketTaggingTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-buckettagging"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketTaggingTest::Client = nullptr; std::string BucketTaggingTest::BucketName = ""; TEST_F(BucketTaggingTest, SetAndDeleteBucketTaggingTest) { SetBucketTaggingRequest setrequest(BucketName); Tag tag1("project","projectone"); Tag tag2("user", "jsmith"); TagSet tagset; tagset.push_back(tag1); tagset.push_back(tag2); Tagging taging; taging.setTags(tagset); setrequest.setTagging(taging); auto setoutcome = Client->SetBucketTagging(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); DeleteBucketTaggingRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketTagging(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); } TEST_F(BucketTaggingTest, GetBucketTaggingTest) { SetBucketTaggingRequest setrequest(BucketName); Tag tag1("project", "projectone"); Tag tag2("user", "jsmith"); TagSet tagset; tagset.push_back(tag1); tagset.push_back(tag2); Tagging taging; taging.setTags(tagset); setrequest.setTagging(taging); auto setoutcome = Client->SetBucketTagging(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); auto getoutcome = Client->GetBucketTagging(GetBucketTaggingRequest(BucketName)); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().Tagging().Tags().size(), 2U); EXPECT_TRUE(getoutcome.result().RequestId().size() > 0U); size_t i = 0; for (const auto& tag : getoutcome.result().Tagging().Tags()) { EXPECT_EQ(taging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(taging.Tags()[i].Value(), tag.Value()); i++; } DeleteBucketTaggingRequest delrequest(BucketName); auto deloutcome = Client->DeleteBucketTagging(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); } TEST_F(BucketTaggingTest, GetBucketTaggingResult) { std::string xml = R"( project projectone user jsmith )"; GetBucketTaggingResult result1(xml); EXPECT_EQ(result1.Tagging().Tags().size(), 2U); EXPECT_EQ(result1.Tagging().Tags()[0].Key(), "project"); EXPECT_EQ(result1.Tagging().Tags()[0].Value(), "projectone"); EXPECT_EQ(result1.Tagging().Tags()[1].Key(), "user"); EXPECT_EQ(result1.Tagging().Tags()[1].Value(), "jsmith"); } TEST_F(BucketTaggingTest, ListBucketByTaggingTest) { SetBucketTaggingRequest setrequest(BucketName); Tag tag1("project", "projectone"); TagSet tagset; tagset.push_back(tag1); Tagging taging; taging.setTags(tagset); setrequest.setTagging(taging); auto setoutcome = Client->SetBucketTagging(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); ListBucketsRequest listrequest; listrequest.setTag(tag1); auto listoutcome = Client->ListBuckets(listrequest); EXPECT_EQ(listoutcome.isSuccess(), true); EXPECT_EQ(listoutcome.result().Buckets().size(), 1U); EXPECT_EQ(listoutcome.result().Buckets()[0].Name(), BucketName); } TEST_F(BucketTaggingTest, BucketTaggingWithInvalidResponseBodyTest) { auto gbtRequest = GetBucketTaggingRequest(BucketName); gbtRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbtOutcome = Client->GetBucketTagging(gbtRequest); EXPECT_EQ(gbtOutcome.isSuccess(), false); EXPECT_EQ(gbtOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketTaggingTest, GetBucketTaggingResultBranchTest) { GetBucketTaggingResult result("test"); std::string xml = R"( project projectone user jsmith )"; GetBucketTaggingResult result1(xml); xml = R"( project projectone user jsmith )"; GetBucketTaggingResult result2(xml); xml = R"( )"; GetBucketTaggingResult result3(xml); xml = R"( )"; GetBucketTaggingResult result4(xml); xml = R"( )"; GetBucketTaggingResult result5(xml); xml = R"()"; GetBucketTaggingResult result6(xml); } TEST_F(BucketTaggingTest, SetBucketTaggingFailTest) { SetBucketTaggingRequest setrequest("INVALIDNAME"); auto setoutcome = Client->SetBucketTagging(setrequest); EXPECT_EQ(setoutcome.isSuccess(), false); DeleteBucketTaggingRequest delrequest("INVALIDNAME"); auto deloutcome = Client->DeleteBucketTagging(delrequest); EXPECT_EQ(deloutcome.isSuccess(), false); auto getoutcome = Client->GetBucketTagging(GetBucketTaggingRequest("INVALIDNAME")); EXPECT_EQ(getoutcome.isSuccess(), false); } TEST_F(BucketTaggingTest, SetBucketTaggingKeyTest) { SetBucketTaggingRequest setrequest(BucketName); Tag tag1("project", "projectone"); Tag tag2("user", "jsmith"); TagSet tagset; tagset.push_back(tag1); tagset.push_back(tag2); Tagging taging; taging.setTags(tagset); setrequest.setTagging(taging); auto setoutcome = Client->SetBucketTagging(setrequest); EXPECT_EQ(setoutcome.isSuccess(), true); DeleteBucketTaggingRequest delrequest(BucketName); Tagging taging1; TagSet tagset1; tagset1.push_back(tag1); taging1.setTags(tagset1); delrequest.setTagging(taging1); auto deloutcome = Client->DeleteBucketTagging(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); auto getoutcome = Client->GetBucketTagging(GetBucketTaggingRequest(BucketName)); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().Tagging().Tags().size(), 1U); EXPECT_EQ(getoutcome.result().Tagging().Tags()[0].Key(), tag2.Key()); delrequest.setTagging(taging); deloutcome = Client->DeleteBucketTagging(delrequest); EXPECT_EQ(deloutcome.isSuccess(), true); getoutcome = Client->GetBucketTagging(GetBucketTaggingRequest(BucketName)); EXPECT_EQ(getoutcome.isSuccess(), true); EXPECT_EQ(getoutcome.result().Tagging().Tags().size(), 0U); } } } ================================================ FILE: test/src/Bucket/BucketVersioningTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketVersioningTest : public ::testing::Test { protected: BucketVersioningTest() { } ~BucketVersioningTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-versioning"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketVersioningTest::Client = nullptr; std::string BucketVersioningTest::BucketName = ""; TEST_F(BucketVersioningTest, SetAndGetBucketVersioningTest) { //default auto gOutcome = Client->GetBucketVersioning(GetBucketVersioningRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gOutcome.result().Status(), VersioningStatus::NotSet); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::NotSet); //set Enabled SetBucketVersioningRequest request(BucketName, VersioningStatus::Enabled); auto sOutcome = Client->SetBucketVersioning(request); EXPECT_EQ(sOutcome.isSuccess(), true); EXPECT_EQ(sOutcome.result().RequestId().size(), 24UL); gOutcome = Client->GetBucketVersioning(GetBucketVersioningRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Status(), VersioningStatus::Enabled); bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); //set Suspended request.setStatus(VersioningStatus::Suspended); sOutcome = Client->SetBucketVersioning(request); EXPECT_EQ(sOutcome.isSuccess(), true); EXPECT_EQ(sOutcome.result().RequestId().size(), 24UL); gOutcome = Client->GetBucketVersioning(GetBucketVersioningRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Status(), VersioningStatus::Suspended); bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Suspended); //set Enabled again sOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(sOutcome.isSuccess(), true); EXPECT_EQ(sOutcome.result().RequestId().size(), 24UL); gOutcome = Client->GetBucketVersioning(GetBucketVersioningRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Status(), VersioningStatus::Enabled); bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); } TEST_F(BucketVersioningTest, SetAndGetBucketVersioningNGTest) { SetBucketVersioningRequest sRequest("Invalid-Bucket", VersioningStatus::Enabled); auto sOutcome = Client->SetBucketVersioning(sRequest); EXPECT_EQ(sOutcome.isSuccess(), false); GetBucketVersioningRequest gRequest("Invalid-Bucket"); auto gOutcome = Client->GetBucketVersioning(gRequest); EXPECT_EQ(gOutcome.isSuccess(), false); } TEST_F(BucketVersioningTest, GetBucketVersioningWithInvalidResponseBodyTest) { SetBucketVersioningRequest request(BucketName, VersioningStatus::Enabled); auto sOutcome = Client->SetBucketVersioning(request); EXPECT_EQ(sOutcome.isSuccess(), true); EXPECT_EQ(sOutcome.result().RequestId().size(), 24UL); auto gbvRequest = GetBucketVersioningRequest(BucketName); gbvRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbvOutcome = Client->GetBucketVersioning(gbvRequest); EXPECT_EQ(gbvOutcome.isSuccess(), false); EXPECT_EQ(gbvOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketVersioningTest, GetBucketVersioningResult) { std::string xml; GetBucketVersioningResult result; xml = R"( Enabled )"; result = GetBucketVersioningResult(xml); EXPECT_EQ(result.Status(), VersioningStatus::Enabled); xml = R"( Suspended )"; result = GetBucketVersioningResult(xml); EXPECT_EQ(result.Status(), VersioningStatus::Suspended); xml = R"( )"; result = GetBucketVersioningResult(xml); EXPECT_EQ(result.Status(), VersioningStatus::NotSet); } } } ================================================ FILE: test/src/Bucket/BucketWebsiteSettingsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketWebsiteSettingsTest : public ::testing::Test { protected: BucketWebsiteSettingsTest() { } ~BucketWebsiteSettingsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketwebsitesettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketWebsiteSettingsTest::Client = nullptr; std::string BucketWebsiteSettingsTest::BucketName = ""; TEST_F(BucketWebsiteSettingsTest, InvalidBucketNameTest) { std::string indexDoc = "index.html"; for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->SetBucketWebsite(invalidBucketName, indexDoc); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketWebsiteSettingsTest, GetBucketNotSetWebsiteTest) { auto dOutcome = Client->DeleteBucketWebsite(DeleteBucketWebsiteRequest(BucketName)); EXPECT_EQ(dOutcome.isSuccess(), true); auto gOutcome = Client->GetBucketWebsite(GetBucketWebsiteRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "NoSuchWebsiteConfiguration"); } TEST_F(BucketWebsiteSettingsTest, DeleteBucketWebsiteNegativeTest) { auto bucketName = TestUtils::GetBucketName("cpp-sdk-bucketwebsitesettings"); auto outcome = Client->DeleteBucketWebsite(bucketName); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(BucketWebsiteSettingsTest, SetBucketWebsiteTest) { auto gOutcome = Client->GetBucketWebsite(GetBucketWebsiteRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "NoSuchWebsiteConfiguration"); const std::string indexPage = "index.html"; const std::string errorPage = "NotFound.html"; SetBucketWebsiteRequest request(BucketName); request.setIndexDocument(indexPage); request.setErrorDocument(errorPage); auto outcome = Client->SetBucketWebsite(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = Client->GetBucketWebsite(GetBucketWebsiteRequest(BucketName)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().IndexDocument().c_str(), indexPage.c_str()); EXPECT_STREQ(gOutcome.result().ErrorDocument().c_str(), errorPage.c_str()); outcome = Client->SetBucketWebsite(BucketName, "index2.html", "NotFound2.html"); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); gOutcome = Client->GetBucketWebsite(BucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().IndexDocument(), "index2.html"); EXPECT_EQ(gOutcome.result().ErrorDocument(), "NotFound2.html"); } TEST_F(BucketWebsiteSettingsTest, SetBucketWebsiteInvalidInputTest) { SetBucketWebsiteRequest request(BucketName); for (auto const &invalidPageName : TestUtils::InvalidPageNamesList()) { request.setIndexDocument(invalidPageName); request.setIndexDocument(invalidPageName); auto outcome = Client->SetBucketWebsite(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); if (invalidPageName.empty()) { EXPECT_EQ(outcome.error().Message(), "Index document must not be empty."); } else { EXPECT_EQ(outcome.error().Message(), "Invalid index document, must be end with.html."); } } request.setIndexDocument("index.html"); request.setErrorDocument(".html"); auto outcome = Client->SetBucketWebsite(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Invalid error document, must be end with .html."); } TEST_F(BucketWebsiteSettingsTest, GetBucketWebsiteWithInvalidResponseBodyTest) { auto sbwRequest = SetBucketWebsiteRequest(BucketName); sbwRequest.setIndexDocument("index.html"); sbwRequest.setErrorDocument("NotFound.html"); Client->SetBucketWebsite(sbwRequest); auto gbwRequest = GetBucketWebsiteRequest(BucketName); gbwRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gbwOutcome = Client->GetBucketWebsite(gbwRequest); EXPECT_EQ(gbwOutcome.isSuccess(), false); EXPECT_EQ(gbwOutcome.error().Code(), "ParseXMLError"); } TEST_F(BucketWebsiteSettingsTest, GetBucketWebsiteResult) { std::string xml = R"( index.html NotFound.html )"; GetBucketWebsiteResult result(xml); EXPECT_EQ(result.IndexDocument(), "index.html"); EXPECT_EQ(result.ErrorDocument(), "NotFound.html"); xml = R"( )"; result = GetBucketWebsiteResult(xml); xml = R"( )"; result = GetBucketWebsiteResult(xml); xml = R"( )"; result = GetBucketWebsiteResult(xml); xml = R"( )"; result = GetBucketWebsiteResult(xml); xml = R"( )"; result = GetBucketWebsiteResult(xml); xml = R"( invalid xml )"; result = GetBucketWebsiteResult(xml); } } } ================================================ FILE: test/src/Bucket/BucketWormSettings.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class BucketWormSettings : public ::testing::Test { protected: BucketWormSettings() { } ~BucketWormSettings() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-bucketwormsettings"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client->DeleteBucket(DeleteBucketRequest(BucketName)); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr BucketWormSettings::Client = nullptr; std::string BucketWormSettings::BucketName = ""; TEST_F(BucketWormSettings, InvalidBucketNameTest) { for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto ibWOutcome = Client->InitiateBucketWorm(InitiateBucketWormRequest(invalidBucketName, 10)); EXPECT_EQ(ibWOutcome.isSuccess(), false); EXPECT_STREQ(ibWOutcome.error().Code().c_str(), "ValidateError"); auto abWOutcome = Client->AbortBucketWorm(AbortBucketWormRequest(invalidBucketName)); EXPECT_EQ(abWOutcome.isSuccess(), false); EXPECT_STREQ(abWOutcome.error().Code().c_str(), "ValidateError"); auto cbWOutcome = Client->CompleteBucketWorm(CompleteBucketWormRequest(invalidBucketName, "wormId")); EXPECT_EQ(cbWOutcome.isSuccess(), false); EXPECT_STREQ(cbWOutcome.error().Code().c_str(), "ValidateError"); auto ebWOutcome = Client->ExtendBucketWormWorm(ExtendBucketWormRequest(invalidBucketName, "wormId", 20)); EXPECT_EQ(ebWOutcome.isSuccess(), false); EXPECT_STREQ(ebWOutcome.error().Code().c_str(), "ValidateError"); auto gbWOutcome = Client->GetBucketWorm(GetBucketWormRequest(invalidBucketName)); EXPECT_EQ(gbWOutcome.isSuccess(), false); EXPECT_STREQ(gbWOutcome.error().Code().c_str(), "ValidateError"); } } TEST_F(BucketWormSettings, BucketWormBasicTest) { auto ibWOutcome = Client->InitiateBucketWorm(InitiateBucketWormRequest(BucketName, 10)); EXPECT_EQ(ibWOutcome.isSuccess(), true); EXPECT_EQ(ibWOutcome.result().WormId().empty(), false); auto gbWOutcome = Client->GetBucketWorm(GetBucketWormRequest(BucketName)); EXPECT_EQ(gbWOutcome.isSuccess(), true); EXPECT_EQ(gbWOutcome.result().CreationDate().empty(), false); EXPECT_EQ(gbWOutcome.result().Day(), 10UL); EXPECT_EQ(gbWOutcome.result().State(), "InProgress"); EXPECT_EQ(gbWOutcome.result().WormId(), ibWOutcome.result().WormId()); auto abWOutcome = Client->AbortBucketWorm(AbortBucketWormRequest(BucketName)); EXPECT_EQ(abWOutcome.isSuccess(), true); auto cbWOutcome = Client->CompleteBucketWorm(CompleteBucketWormRequest(BucketName, ibWOutcome.result().WormId())); EXPECT_EQ(cbWOutcome.isSuccess(), false); ibWOutcome = Client->InitiateBucketWorm(InitiateBucketWormRequest(BucketName, 8)); EXPECT_EQ(ibWOutcome.isSuccess(), true); EXPECT_EQ(ibWOutcome.result().WormId().empty(), false); gbWOutcome = Client->GetBucketWorm(GetBucketWormRequest(BucketName)); EXPECT_EQ(gbWOutcome.isSuccess(), true); EXPECT_EQ(gbWOutcome.result().CreationDate().empty(), false); EXPECT_EQ(gbWOutcome.result().Day(), 8UL); EXPECT_EQ(gbWOutcome.result().State(), "InProgress"); EXPECT_EQ(gbWOutcome.result().WormId(), ibWOutcome.result().WormId()); cbWOutcome = Client->CompleteBucketWorm(CompleteBucketWormRequest(BucketName, ibWOutcome.result().WormId())); EXPECT_EQ(cbWOutcome.isSuccess(), true); gbWOutcome = Client->GetBucketWorm(GetBucketWormRequest(BucketName)); EXPECT_EQ(gbWOutcome.isSuccess(), true); EXPECT_EQ(gbWOutcome.result().State(), "Locked"); auto ebWOutcome = Client->ExtendBucketWormWorm(ExtendBucketWormRequest(BucketName, ibWOutcome.result().WormId(), 20)); EXPECT_EQ(ebWOutcome.isSuccess(), true); gbWOutcome = Client->GetBucketWorm(GetBucketWormRequest(BucketName)); EXPECT_EQ(gbWOutcome.isSuccess(), true); EXPECT_EQ(gbWOutcome.result().Day(), 20UL); abWOutcome = Client->AbortBucketWorm(AbortBucketWormRequest(BucketName)); EXPECT_EQ(abWOutcome.isSuccess(), false); EXPECT_EQ(abWOutcome.error().Code(), "WORMConfigurationLocked"); } TEST_F(BucketWormSettings, GetBucketWormResult) { std::string xml = R"( ID Locked 1 2018-08-14T15:50:32 )"; auto result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), "2018-08-14T15:50:32"); EXPECT_EQ(result.WormId(), "ID"); EXPECT_EQ(result.State(), "Locked"); EXPECT_EQ(result.Day(), 1UL); xml = R"( ID InProgress 365 2018-08-14T15:50:32 )"; result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), "2018-08-14T15:50:32"); EXPECT_EQ(result.WormId(), "ID"); EXPECT_EQ(result.State(), "InProgress"); EXPECT_EQ(result.Day(), 365UL); xml = R"( )"; result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), ""); EXPECT_EQ(result.WormId(), ""); EXPECT_EQ(result.State(), ""); EXPECT_EQ(result.Day(), 0UL); xml = R"( )"; result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), ""); EXPECT_EQ(result.WormId(), ""); EXPECT_EQ(result.State(), ""); EXPECT_EQ(result.Day(), 0UL); xml = R"( )"; result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), ""); EXPECT_EQ(result.WormId(), ""); EXPECT_EQ(result.State(), ""); EXPECT_EQ(result.Day(), 0UL); xml = R"( )"; result = GetBucketWormResult(xml); EXPECT_EQ(result.CreationDate(), ""); EXPECT_EQ(result.WormId(), ""); EXPECT_EQ(result.State(), ""); EXPECT_EQ(result.Day(), 0UL); } } } ================================================ FILE: test/src/Config.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "Config.h" #include #include static std::string dataPath_; #ifdef _WIN32 #define delimiter "\\" #pragma warning( disable : 4996) #else #define delimiter "/" #endif std::string Config::AccessKeyId = ""; std::string Config::AccessKeySecret = ""; std::string Config::Endpoint = ""; std::string Config::Region = ""; std::string Config::SecondEndpoint = ""; std::string Config::CallbackServer = ""; std::string Config::CfgFilePath = "oss.ini"; std::string Config::PayerAccessKeyId = ""; std::string Config::PayerAccessKeySecret = ""; std::string Config::PayerUID = ""; std::string Config::RamRoleArn = ""; std::string Config::RamUID = ""; static std::string LeftTrim(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](unsigned char ch) { return !::isspace(ch); })); return copy; } static std::string RightTrim(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](unsigned char ch) { return !::isspace(ch); }).base(), copy.end()); return copy; } static std::string Trim(const char* source) { return LeftTrim(RightTrim(source).c_str()); } static std::string LeftTrimQuotes(const char* source) { std::string copy(source); copy.erase(copy.begin(), std::find_if(copy.begin(), copy.end(), [](int ch) { return !(ch == '"'); })); return copy; } static std::string RightTrimQuotes(const char* source) { std::string copy(source); copy.erase(std::find_if(copy.rbegin(), copy.rend(), [](int ch) { return !(ch == '"'); }).base(), copy.end()); return copy; } static std::string TrimQuotes(const char* source) { return LeftTrimQuotes(RightTrimQuotes(source).c_str()); } static bool hasCfgInfo() { if (!Config::AccessKeyId.empty() && !Config::AccessKeySecret.empty() && !Config::Endpoint.empty()) { return true; } return false; } static void LoadCfgFromFile() { if (hasCfgInfo()) return; std::fstream in(Config::CfgFilePath, std::ios::in | std::ios::binary); if (!in.good()) return; char buffer[256]; char *ptr; while (in.getline(buffer, 256)) { ptr = strchr(buffer, '='); if (!ptr) { continue; } if (!strncmp(buffer, "AccessKeyId", 11)) { Config::AccessKeyId = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "AccessKeySecret", 15)) { Config::AccessKeySecret = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "Endpoint", 8)) { Config::Endpoint = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "Region", 6)) { Config::Region = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "SecondEndpoint", 14)) { Config::SecondEndpoint = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "CallbackServer", 14)) { Config::CallbackServer = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "PayerAccessKeyId", 16)) { Config::PayerAccessKeyId = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "PayerAccessKeySecret", 20)) { Config::PayerAccessKeySecret = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "PayerUID", 8)) { Config::PayerUID = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "RamRoleArn", 10)) { Config::RamRoleArn = TrimQuotes(Trim(ptr + 1).c_str()); } else if (!strncmp(buffer, "RamUID", 6)) { Config::RamUID = TrimQuotes(Trim(ptr + 1).c_str()); } } in.close(); } static void LoadCfgFromEnv() { if (hasCfgInfo()) return; const char *value; value = std::getenv("TEST_ACCESS_KEY_ID"); if (value) { Config::AccessKeyId = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_ACCESS_KEY_SECRET"); if (value) { Config::AccessKeySecret = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_ENDPOINT"); if (value) { Config::Endpoint = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_REGION"); if (value) { Config::Region = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_CALLBACKSERVER"); if (value) { Config::CallbackServer = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_PAYER_ACCESS_KEY_ID"); if (value) { Config::PayerAccessKeyId = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_PAYER_ACCESS_KEY_SECRET"); if (value) { Config::PayerAccessKeySecret = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_PAYER_UID"); if (value) { Config::PayerUID = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_STS_ARN"); if (value) { Config::RamRoleArn = TrimQuotes(Trim(value).c_str()); } value = std::getenv("TEST_OSS_ACCOUNT_ID"); if (value) { Config::RamUID = TrimQuotes(Trim(value).c_str()); } } bool Config::InitTestEnv() { /*Get from Env*/ LoadCfgFromEnv(); /*Get from file*/ LoadCfgFromFile(); /*Inti Data Path*/ std::string path = __FILE__; auto last_pos = path.rfind("src"); path = path.substr(0, last_pos); path.append("data").append(delimiter); dataPath_ = path; return hasCfgInfo(); } std::string Config::GetDataPath() { return dataPath_; } void Config::ParseArg(int argc, char **argv) { int i = 1; while (i < argc) { if (argv[i][0] == '-') { if (!strcmp("-oss_cfg", argv[i]) && (i+1) < argc) { Config::CfgFilePath = Trim(argv[i + 1]); i++; } } i++; } } ================================================ FILE: test/src/Config.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include class Config { public: static void ParseArg(int argc, char **argv); static bool InitTestEnv(); static std::string GetDataPath(); public: static std::string AccessKeyId; static std::string AccessKeySecret; static std::string Endpoint; static std::string Region; static std::string SecondEndpoint; static std::string CallbackServer; static std::string CfgFilePath; static std::string PayerAccessKeyId; static std::string PayerAccessKeySecret; static std::string PayerUID; static std::string RamRoleArn; static std::string RamUID; }; ================================================ FILE: test/src/Encryption/CipherTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../Config.h" #include "../Utils.h" #include #include #include #include namespace AlibabaCloud { namespace OSS { class CipherTest : public ::testing::Test { protected: CipherTest() { } ~CipherTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { } void SetUp() override { } void TearDown() override { } public: }; TEST_F(CipherTest, ByteBufferTest) { ByteBuffer buff = ByteBuffer(1024); for (auto i = 0U; i < buff.size(); i++) { buff[i] = static_cast(i + 10U); } buff.resize(25U); EXPECT_EQ(buff.size(), 25U); for (auto i = 0U; i < buff.size(); i++) { EXPECT_EQ(buff[i], static_cast(i + 10U)); } } TEST_F(CipherTest, GenerateKeyTest) { ByteBuffer key1 = SymmetricCipher::GenerateKey(32); ByteBuffer key2 = SymmetricCipher::GenerateKey(32); EXPECT_EQ(key1.size(), 32U); EXPECT_EQ(key2.size(), 32U); EXPECT_NE(key1, key2); key1 = key2; EXPECT_EQ(key1, key2); key1 = SymmetricCipher::GenerateKey((size_t)16); EXPECT_EQ(key1.size(), 16U); EXPECT_NE(key1, key2); } TEST_F(CipherTest, GenerateIVTest) { ByteBuffer iv1 = SymmetricCipher::GenerateKey((size_t)32); ByteBuffer iv2 = SymmetricCipher::GenerateKey((size_t)32); EXPECT_EQ(iv1.size(), 32U); EXPECT_EQ(iv2.size(), 32U); EXPECT_NE(iv1, iv2); iv1 = iv2; EXPECT_EQ(iv1, iv2); iv1 = SymmetricCipher::GenerateKey((size_t)16); EXPECT_EQ(iv1.size(), 16U); EXPECT_NE(iv1, iv2); } TEST_F(CipherTest, AES128_CBCTest) { auto cipher = SymmetricCipher::CreateAES128_CBCImpl(); auto key = ByteBuffer(16); auto iv = ByteBuffer(16); auto data = ByteBuffer(16); memcpy((void *)key.data(), (void *)("1234567890123456"), 16); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); memcpy((void *)data.data(), (void *)("1234567890123456"), 16); cipher->EncryptInit(key, iv); auto out = cipher->Encrypt(data); auto res = cipher->EncryptFinish(); out.insert(out.end(), res.begin(), res.end()); auto encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "2LWYSMdnDJSym1TSN54uesXryeud7lOPCtlpWV16dAw="); data = ByteBuffer(32); memcpy((void *)data.data(), (void *)("12345678901234561234567890123456"), 32); cipher->EncryptInit(key, iv); out = cipher->Encrypt(data); res = cipher->EncryptFinish(); out.insert(out.end(), res.begin(), res.end()); encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "2LWYSMdnDJSym1TSN54uetDw/KrpkJ7D+YYFVxZjfqGV1OFBxxlBNPpKFFwBegWk"); data = ByteBuffer(33); memcpy((void *)data.data(), (void *)("123456789012345612345678901234561"), 33); cipher->EncryptInit(key, iv); out = cipher->Encrypt(data); res = cipher->EncryptFinish(); out.insert(out.end(), res.begin(), res.end()); encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "2LWYSMdnDJSym1TSN54uetDw/KrpkJ7D+YYFVxZjfqGzz+k3f0nDhB4D6GcOJxcy"); memcpy((void *)key.data(), (void *)("abcdefghijklmnop"), 16); memcpy((void *)iv.data(), (void *)("ABCDEFGHIJKLMNOP"), 16); data = ByteBuffer(34); memcpy((void *)data.data(), (void *)("1234567890123456123456789012345612"), 34); cipher->EncryptInit(key, iv); out = cipher->Encrypt(data); res = cipher->EncryptFinish(); out.insert(out.end(), res.begin(), res.end()); encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "Ck22xnBoI63Di96xD7wA4wKNM3JtJE9QLmRSYne6XaAABklNJi5Tv7U6zZW0eKWC"); EXPECT_EQ(cipher->Name(), "AES/CBC/PKCS5Padding"); EXPECT_EQ(cipher->Algorithm(), CipherAlgorithm::AES); EXPECT_EQ(cipher->Mode(), CipherMode::CBC); EXPECT_EQ(cipher->Padding(), CipherPadding::PKCS5Padding); } TEST_F(CipherTest, AES256_CTRTest) { auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); auto key = ByteBuffer(32); auto iv = ByteBuffer(16); auto data = ByteBuffer(16); memcpy((void *)key.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); memcpy((void *)data.data(), (void *)("1234567890123456"), 16); //Encrypt cipher->EncryptInit(key, iv); auto out = cipher->Encrypt(data); auto encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "wrnuWSenVochXx3m0QzCBQ=="); cipher->EncryptInit(key, iv); out.resize(16); memset(out.data(), 0, out.size()); auto ret = cipher->Encrypt(out.data(), (int)data.size(), data.data(), (int)data.size()); EXPECT_EQ(ret, 16); encryptedOut = Base64Encode(out); EXPECT_EQ(encryptedOut, "wrnuWSenVochXx3m0QzCBQ=="); //Decrypt cipher->DecryptInit(key, iv); auto reout = cipher->Decrypt(out); EXPECT_EQ(TestUtils::IsByteBufferEQ(reout, data), true); cipher->DecryptInit(key, iv); reout.resize(16); memset(reout.data(), 0, reout.size()); ret = cipher->Decrypt(reout.data(), (int)reout.size(), out.data(), (int)out.size()); EXPECT_EQ(ret, 16); EXPECT_EQ(TestUtils::IsByteBufferEQ(reout, data), true); //data is empty cipher->EncryptInit(key, iv); out = cipher->Encrypt(ByteBuffer()); EXPECT_EQ(out.empty(), true); ret = cipher->Encrypt(nullptr, 0, out.data(), (int)out.size()); EXPECT_EQ(ret, -1); ret = cipher->Encrypt(out.data(), (int)out.size(), nullptr, (int)out.size()); EXPECT_EQ(ret, -1); cipher->DecryptInit(key, iv); reout = cipher->Decrypt(ByteBuffer()); EXPECT_EQ(reout.empty(), true); ret = cipher->Decrypt(nullptr, 0, out.data(), (int)out.size()); EXPECT_EQ(ret, -1); ret = cipher->Decrypt(reout.data(), (int)reout.size(), nullptr, 0); EXPECT_EQ(ret, -1); } TEST_F(CipherTest, AES256_CTRCounterTest) { auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); auto key = ByteBuffer(32); auto iv = ByteBuffer(16); auto data = ByteBuffer(32); auto data1 = ByteBuffer(16); memcpy((void *)key.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); memcpy((void *)data.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)data1.data(), (void *)("1234567890123456"), 16); cipher->EncryptInit(key, iv); auto out = cipher->Encrypt(data); auto iv1 = SymmetricCipher::IncCTRCounter(iv, 1); cipher->EncryptInit(key, iv1); auto out1 = cipher->Encrypt(data1); EXPECT_TRUE(TestUtils::IsByteBufferEQ(out.data() + 16, out1.data(), 16)); } TEST_F(CipherTest, RSA_RSAPEMTest) { auto cipher = AsymmetricCipher::CreateRSA_NONEImpl(); const std::string publicKey = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALpUiB+w+r3v2Fgw0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGl\n" "s5YGoqD4lObG/sCQyaWd0B/XzOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMK\n" "zeyVFFFvl9prlr6XpuJQlY0F/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----"; const std::string privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXgIBAAKBgQC6VIgfsPq979hYMNEoDG1pfG581FXN7d2GwPPR9d5a8O7+kVGy\n" "/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d58mYZrPODBiepxdjUD/tYI2N\n" "QcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD8eEIseQKCW0oRJVLtQIDAQAB\n" "AoGBAJrzWRAhuSLipeMRFZ5cV1B1rdwZKBHMUYCSTTC5amPuIJGKf4p9XI4F4kZM\n" "1klO72TK72dsAIS9rCoO59QJnCpG4CvLYlJ37wA2UbhQ1rBH5dpBD/tv3CUyfdtI\n" "9CLUsZR3DGBWXYwGG0KGMYPExe5Hq3PUH9+QmuO+lXqJO4IBAkEA6iLee6oBzu6v\n" "90zrr4YA9NNr+JvtplpISOiL/XzsU6WmdXjzsFLSsZCeaJKsfdzijYEceXY7zUNa\n" "0/qQh2BKoQJBAMu61rQ5wKtql2oR4ePTSm00/iHoIfdFnBNU+b8uuPXlfwU80OwJ\n" "Gbs0xBHe+dt4uT53QLci4KgnNkHS5lu4XJUCQQCisCvrvcuX4B6BNf+mbPSJKcci\n" "biaJqr4DeyKatoz36mhpw+uAH2yrWRPZEeGtayg4rvf8Jf2TuTOJi9eVWYFBAkEA\n" "uIPzyS81TQsxL6QajpjjI52HPXZcrPOis++Wco0Cf9LnA/tczSpA38iefAETEq94\n" "NxcSycsQ5br97QfyEsgbMQJANTZ/HyMowmDPIC+n9ExdLSrf4JydARSfntFbPsy1\n" "4oC6ciKpRdtAtAtiU8s9eAUSWi7xoaPJzjAHWbmGSHHckg==\n" "-----END RSA PRIVATE KEY-----"; cipher->setPublicKey(publicKey); cipher->setPrivateKey(privateKey); auto data = ByteBuffer(32); memcpy((void *)data.data(), (void *)("12345678901234561234567890123456"), 32); auto encoded = cipher->Encrypt(data); EXPECT_EQ(encoded.size(), 128U); auto decoded = cipher->Decrypt(encoded); EXPECT_EQ(decoded.size(), data.size()); EXPECT_TRUE(TestUtils::IsByteBufferEQ(data.data(), decoded.data(), (int)data.size())); EXPECT_EQ(cipher->Name(), "RSA/NONE/PKCS1Padding"); } TEST_F(CipherTest, RSA_PEMTest) { auto cipher = AsymmetricCipher::CreateRSA_NONEImpl(); const std::string publicKey = "-----BEGIN PUBLIC KEY-----\n" "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6VIgfsPq979hYMNEoDG1pfG58\n" "1FXN7d2GwPPR9d5a8O7+kVGy/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d\n" "58mYZrPODBiepxdjUD/tYI2NQcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD\n" "8eEIseQKCW0oRJVLtQIDAQAB\n" "-----END PUBLIC KEY-----"; const std::string privateKey = "-----BEGIN PRIVATE KEY-----\n" "MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBALpUiB+w+r3v2Fgw\n" "0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGls5YGoqD4lObG/sCQyaWd0B/X\n" "zOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMKzeyVFFFvl9prlr6XpuJQlY0F\n" "/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAECgYEAmvNZECG5IuKl4xEVnlxXUHWt\n" "3BkoEcxRgJJNMLlqY+4gkYp/in1cjgXiRkzWSU7vZMrvZ2wAhL2sKg7n1AmcKkbg\n" "K8tiUnfvADZRuFDWsEfl2kEP+2/cJTJ920j0ItSxlHcMYFZdjAYbQoYxg8TF7ker\n" "c9Qf35Ca476Veok7ggECQQDqIt57qgHO7q/3TOuvhgD002v4m+2mWkhI6Iv9fOxT\n" "paZ1ePOwUtKxkJ5okqx93OKNgRx5djvNQ1rT+pCHYEqhAkEAy7rWtDnAq2qXahHh\n" "49NKbTT+Iegh90WcE1T5vy649eV/BTzQ7AkZuzTEEd7523i5PndAtyLgqCc2QdLm\n" "W7hclQJBAKKwK+u9y5fgHoE1/6Zs9IkpxyJuJomqvgN7Ipq2jPfqaGnD64AfbKtZ\n" "E9kR4a1rKDiu9/wl/ZO5M4mL15VZgUECQQC4g/PJLzVNCzEvpBqOmOMjnYc9dlys\n" "86Kz75ZyjQJ/0ucD+1zNKkDfyJ58ARMSr3g3FxLJyxDluv3tB/ISyBsxAkA1Nn8f\n" "IyjCYM8gL6f0TF0tKt/gnJ0BFJ+e0Vs+zLXigLpyIqlF20C0C2JTyz14BRJaLvGh\n" "o8nOMAdZuYZIcdyS\n" "-----END PRIVATE KEY-----"; cipher->setPublicKey(publicKey); cipher->setPrivateKey(privateKey); auto data = ByteBuffer(32); memcpy((void *)data.data(), (void *)("12345678901234561234567890123456"), 32); auto encoded = cipher->Encrypt(data); EXPECT_EQ(encoded.size(), 128U); auto decoded = cipher->Decrypt(encoded); EXPECT_EQ(decoded.size(), data.size()); EXPECT_TRUE(TestUtils::IsByteBufferEQ(data.data(), decoded.data(), (int)data.size())); EXPECT_EQ(cipher->Name(), "RSA/NONE/PKCS1Padding"); } TEST_F(CipherTest, RSA_DifferentPEMTest) { const std::string publicKey1 = "-----BEGIN PUBLIC KEY-----\n" "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6VIgfsPq979hYMNEoDG1pfG58\n" "1FXN7d2GwPPR9d5a8O7+kVGy/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d\n" "58mYZrPODBiepxdjUD/tYI2NQcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD\n" "8eEIseQKCW0oRJVLtQIDAQAB\n" "-----END PUBLIC KEY-----"; const std::string privateKey1 = "-----BEGIN PRIVATE KEY-----\n" "MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBALpUiB+w+r3v2Fgw\n" "0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGls5YGoqD4lObG/sCQyaWd0B/X\n" "zOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMKzeyVFFFvl9prlr6XpuJQlY0F\n" "/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAECgYEAmvNZECG5IuKl4xEVnlxXUHWt\n" "3BkoEcxRgJJNMLlqY+4gkYp/in1cjgXiRkzWSU7vZMrvZ2wAhL2sKg7n1AmcKkbg\n" "K8tiUnfvADZRuFDWsEfl2kEP+2/cJTJ920j0ItSxlHcMYFZdjAYbQoYxg8TF7ker\n" "c9Qf35Ca476Veok7ggECQQDqIt57qgHO7q/3TOuvhgD002v4m+2mWkhI6Iv9fOxT\n" "paZ1ePOwUtKxkJ5okqx93OKNgRx5djvNQ1rT+pCHYEqhAkEAy7rWtDnAq2qXahHh\n" "49NKbTT+Iegh90WcE1T5vy649eV/BTzQ7AkZuzTEEd7523i5PndAtyLgqCc2QdLm\n" "W7hclQJBAKKwK+u9y5fgHoE1/6Zs9IkpxyJuJomqvgN7Ipq2jPfqaGnD64AfbKtZ\n" "E9kR4a1rKDiu9/wl/ZO5M4mL15VZgUECQQC4g/PJLzVNCzEvpBqOmOMjnYc9dlys\n" "86Kz75ZyjQJ/0ucD+1zNKkDfyJ58ARMSr3g3FxLJyxDluv3tB/ISyBsxAkA1Nn8f\n" "IyjCYM8gL6f0TF0tKt/gnJ0BFJ+e0Vs+zLXigLpyIqlF20C0C2JTyz14BRJaLvGh\n" "o8nOMAdZuYZIcdyS\n" "-----END PRIVATE KEY-----"; const std::string publicKey2 = "-----BEGIN PUBLIC KEY-----\n" "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCokfiAVXXf5ImFzKDw+XO/UByW\n" "6mse2QsIgz3ZwBtMNu59fR5zttSx+8fB7vR4CN3bTztrP9A6bjoN0FFnhlQ3vNJC\n" "5MFO1PByrE/MNd5AAfSVba93I6sx8NSk5MzUCA4NJzAUqYOEWGtGBcom6kEF6MmR\n" "1EKib1Id8hpooY5xaQIDAQAB\n" "-----END PUBLIC KEY-----"; const std::string privateKey2 = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICWwIBAAKBgQCokfiAVXXf5ImFzKDw+XO/UByW6mse2QsIgz3ZwBtMNu59fR5z\n" "ttSx+8fB7vR4CN3bTztrP9A6bjoN0FFnhlQ3vNJC5MFO1PByrE/MNd5AAfSVba93\n" "I6sx8NSk5MzUCA4NJzAUqYOEWGtGBcom6kEF6MmR1EKib1Id8hpooY5xaQIDAQAB\n" "AoGAOPUZgkNeEMinrw31U3b2JS5sepG6oDG2CKpPu8OtdZMaAkzEfVTJiVoJpP2Y\n" "nPZiADhFW3e0ZAnak9BPsSsySRaSNmR465cG9tbqpXFKh9Rp/sCPo4Jq2n65yood\n" "JBrnGr6/xhYvNa14sQ6xjjfSgRNBSXD1XXNF4kALwgZyCAECQQDV7t4bTx9FbEs5\n" "36nAxPsPM6aACXaOkv6d9LXI7A0J8Zf42FeBV6RK0q7QG5iNNd1WJHSXIITUizVF\n" "6aX5NnvFAkEAybeXNOwUvYtkgxF4s28s6gn11c5HZw4/a8vZm2tXXK/QfTQrJVXp\n" "VwxmSr0FAajWAlcYN/fGkX1pWA041CKFVQJAG08ozzekeEpAuByTIOaEXgZr5MBQ\n" "gBbHpgZNBl8Lsw9CJSQI15wGfv6yDiLXsH8FyC9TKs+d5Tv4Cvquk0efOQJAd9OC\n" "lCKFs48hdyaiz9yEDsc57PdrvRFepVdj/gpGzD14mVerJbOiOF6aSV19ot27u4on\n" "Td/3aifYs0CveHzFPQJAWb4LCDwqLctfzziG7/S7Z74gyq5qZF4FUElOAZkz718E\n" "yZvADwuz/4aK0od0lX9c4Jp7Mo5vQ4TvdoBnPuGoyw==\n" "-----END RSA PRIVATE KEY-----"; auto cipher1 = AsymmetricCipher::CreateRSA_NONEImpl(); cipher1->setPublicKey(publicKey1); cipher1->setPrivateKey(privateKey1); auto cipher2 = AsymmetricCipher::CreateRSA_NONEImpl(); cipher2->setPublicKey(publicKey2); cipher2->setPrivateKey(privateKey2); auto data = ByteBuffer(32); memcpy((void *)data.data(), (void *)("12345678901234561234567890123456"), 32); //key1 auto encoded1 = cipher1->Encrypt(data); EXPECT_EQ(encoded1.size(), 128U); auto decoded1 = cipher1->Decrypt(encoded1); EXPECT_EQ(decoded1.size(), data.size()); EXPECT_TRUE(TestUtils::IsByteBufferEQ(data, decoded1)); //key2 auto encoded2 = cipher2->Encrypt(data); EXPECT_EQ(encoded1.size(), 128U); auto decoded2 = cipher2->Decrypt(encoded2); EXPECT_EQ(decoded2.size(), data.size()); EXPECT_TRUE(TestUtils::IsByteBufferEQ(data, decoded2)); //decrypt encode1 by key2 auto decoded1_2 = cipher2->Decrypt(encoded1); EXPECT_EQ(decoded1_2.size(), 0U); //decrypt encode2 by key1 auto decoded2_1 = cipher1->Decrypt(encoded2); EXPECT_EQ(decoded2_1.size(), 0U); } TEST_F(CipherTest, SimpleRSAEncryptionMaterialsTest) { const std::string publicKey1 = "-----BEGIN PUBLIC KEY-----\n" "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6VIgfsPq979hYMNEoDG1pfG58\n" "1FXN7d2GwPPR9d5a8O7+kVGy/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d\n" "58mYZrPODBiepxdjUD/tYI2NQcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD\n" "8eEIseQKCW0oRJVLtQIDAQAB\n" "-----END PUBLIC KEY-----"; const std::string privateKey1 = "-----BEGIN PRIVATE KEY-----\n" "MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBALpUiB+w+r3v2Fgw\n" "0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGls5YGoqD4lObG/sCQyaWd0B/X\n" "zOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMKzeyVFFFvl9prlr6XpuJQlY0F\n" "/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAECgYEAmvNZECG5IuKl4xEVnlxXUHWt\n" "3BkoEcxRgJJNMLlqY+4gkYp/in1cjgXiRkzWSU7vZMrvZ2wAhL2sKg7n1AmcKkbg\n" "K8tiUnfvADZRuFDWsEfl2kEP+2/cJTJ920j0ItSxlHcMYFZdjAYbQoYxg8TF7ker\n" "c9Qf35Ca476Veok7ggECQQDqIt57qgHO7q/3TOuvhgD002v4m+2mWkhI6Iv9fOxT\n" "paZ1ePOwUtKxkJ5okqx93OKNgRx5djvNQ1rT+pCHYEqhAkEAy7rWtDnAq2qXahHh\n" "49NKbTT+Iegh90WcE1T5vy649eV/BTzQ7AkZuzTEEd7523i5PndAtyLgqCc2QdLm\n" "W7hclQJBAKKwK+u9y5fgHoE1/6Zs9IkpxyJuJomqvgN7Ipq2jPfqaGnD64AfbKtZ\n" "E9kR4a1rKDiu9/wl/ZO5M4mL15VZgUECQQC4g/PJLzVNCzEvpBqOmOMjnYc9dlys\n" "86Kz75ZyjQJ/0ucD+1zNKkDfyJ58ARMSr3g3FxLJyxDluv3tB/ISyBsxAkA1Nn8f\n" "IyjCYM8gL6f0TF0tKt/gnJ0BFJ+e0Vs+zLXigLpyIqlF20C0C2JTyz14BRJaLvGh\n" "o8nOMAdZuYZIcdyS\n" "-----END PRIVATE KEY-----"; const std::string publicKey2 = "-----BEGIN PUBLIC KEY-----\n" "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCokfiAVXXf5ImFzKDw+XO/UByW\n" "6mse2QsIgz3ZwBtMNu59fR5zttSx+8fB7vR4CN3bTztrP9A6bjoN0FFnhlQ3vNJC\n" "5MFO1PByrE/MNd5AAfSVba93I6sx8NSk5MzUCA4NJzAUqYOEWGtGBcom6kEF6MmR\n" "1EKib1Id8hpooY5xaQIDAQAB\n" "-----END PUBLIC KEY-----"; const std::string privateKey2 = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICWwIBAAKBgQCokfiAVXXf5ImFzKDw+XO/UByW6mse2QsIgz3ZwBtMNu59fR5z\n" "ttSx+8fB7vR4CN3bTztrP9A6bjoN0FFnhlQ3vNJC5MFO1PByrE/MNd5AAfSVba93\n" "I6sx8NSk5MzUCA4NJzAUqYOEWGtGBcom6kEF6MmR1EKib1Id8hpooY5xaQIDAQAB\n" "AoGAOPUZgkNeEMinrw31U3b2JS5sepG6oDG2CKpPu8OtdZMaAkzEfVTJiVoJpP2Y\n" "nPZiADhFW3e0ZAnak9BPsSsySRaSNmR465cG9tbqpXFKh9Rp/sCPo4Jq2n65yood\n" "JBrnGr6/xhYvNa14sQ6xjjfSgRNBSXD1XXNF4kALwgZyCAECQQDV7t4bTx9FbEs5\n" "36nAxPsPM6aACXaOkv6d9LXI7A0J8Zf42FeBV6RK0q7QG5iNNd1WJHSXIITUizVF\n" "6aX5NnvFAkEAybeXNOwUvYtkgxF4s28s6gn11c5HZw4/a8vZm2tXXK/QfTQrJVXp\n" "VwxmSr0FAajWAlcYN/fGkX1pWA041CKFVQJAG08ozzekeEpAuByTIOaEXgZr5MBQ\n" "gBbHpgZNBl8Lsw9CJSQI15wGfv6yDiLXsH8FyC9TKs+d5Tv4Cvquk0efOQJAd9OC\n" "lCKFs48hdyaiz9yEDsc57PdrvRFepVdj/gpGzD14mVerJbOiOF6aSV19ot27u4on\n" "Td/3aifYs0CveHzFPQJAWb4LCDwqLctfzziG7/S7Z74gyq5qZF4FUElOAZkz718E\n" "yZvADwuz/4aK0od0lX9c4Jp7Mo5vQ4TvdoBnPuGoyw==\n" "-----END RSA PRIVATE KEY-----"; auto cipher = AsymmetricCipher::CreateRSA_NONEImpl(); const ByteBuffer key = SymmetricCipher::GenerateKey(32); const ByteBuffer iv = SymmetricCipher::GenerateKey(16); std::map description1; std::map description2; std::map description3; description1["desc"] = "key1"; description2["desc"] = "key2"; cipher->setPublicKey(publicKey1); const ByteBuffer encryptedKey1 = cipher->Encrypt(key); const ByteBuffer encryptedIV1 = cipher->Encrypt(iv); cipher->setPublicKey(publicKey2); const ByteBuffer encryptedKey2 = cipher->Encrypt(key); const ByteBuffer encryptedIV2 = cipher->Encrypt(iv); EXPECT_TRUE(!encryptedKey1.empty()); EXPECT_TRUE(!encryptedIV1.empty()); EXPECT_EQ(encryptedKey1.size(), encryptedKey2.size()); EXPECT_EQ(encryptedIV1.size(), encryptedIV2.size()); SimpleRSAEncryptionMaterials materials(publicKey1, privateKey1, description1); materials.addEncryptionMaterial(publicKey2, privateKey2, description2); int ret; //EncryptCEK ContentCryptoMaterial content; content.setCipherName("AES/CTR/NoPadding"); content.setContentKey(key); content.setContentIV(iv); ret = materials.EncryptCEK(content); EXPECT_EQ(0, ret); EXPECT_EQ(description1, content.Description()); //DecryptCEK content.setKeyWrapAlgorithm("RSA/NONE/PKCS1Padding"); content.setContentKey(ByteBuffer()); content.setContentIV(ByteBuffer()); content.setEncryptedContentKey(encryptedKey2); content.setEncryptedContentIV(encryptedIV2); content.setDescription(description2); ret = materials.DecryptCEK(content); EXPECT_EQ(0, ret); EXPECT_TRUE(TestUtils::IsByteBufferEQ(key.data(), content.ContentKey().data(), (int)key.size())); EXPECT_TRUE(TestUtils::IsByteBufferEQ(iv.data(), content.ContentIV().data(), (int)iv.size())); content.setContentKey(ByteBuffer()); content.setContentIV(ByteBuffer()); content.setEncryptedContentKey(encryptedKey1); content.setEncryptedContentIV(encryptedIV1); content.setDescription(description1); ret = materials.DecryptCEK(content); EXPECT_EQ(0, ret); EXPECT_TRUE(TestUtils::IsByteBufferEQ(key.data(), content.ContentKey().data(), (int)key.size())); EXPECT_TRUE(TestUtils::IsByteBufferEQ(iv.data(), content.ContentIV().data(), (int)iv.size())); //EncryptCEK fail with no key or no iv content.setCipherName("AES/CTR/NoPadding"); content.setContentKey(key); content.setContentIV(ByteBuffer()); ret = materials.EncryptCEK(content); EXPECT_TRUE(ret != 0); content.setContentKey(ByteBuffer()); content.setContentIV(iv); ret = materials.EncryptCEK(content); EXPECT_TRUE(ret != 0); content.setContentKey(ByteBuffer()); content.setContentIV(ByteBuffer()); ret = materials.EncryptCEK(content); EXPECT_TRUE(ret != 0); //DecryptCEK fail with no key or no iv content.setKeyWrapAlgorithm("RSA/NONE/PKCS1Padding"); content.setEncryptedContentKey(ByteBuffer()); content.setEncryptedContentIV(ByteBuffer()); content.setDescription(description1); ret = materials.DecryptCEK(content); EXPECT_TRUE(ret != 0); content.setEncryptedContentKey(encryptedKey1); content.setEncryptedContentIV(ByteBuffer()); content.setDescription(description1); ret = materials.DecryptCEK(content); EXPECT_TRUE(ret != 0); content.setEncryptedContentKey(ByteBuffer()); content.setEncryptedContentIV(encryptedIV1); content.setDescription(description1); ret = materials.DecryptCEK(content); EXPECT_TRUE(ret != 0); //DecryptCEK fail with no desc content.setEncryptedContentKey(encryptedKey1); content.setEncryptedContentIV(encryptedIV1); content.setDescription(description3); ret = materials.DecryptCEK(content); EXPECT_TRUE(ret != 0); //DecryptCEK fail with non-match algo content.setKeyWrapAlgorithm("None"); content.setEncryptedContentKey(encryptedKey1); content.setEncryptedContentIV(encryptedIV1); content.setDescription(description1); ret = materials.DecryptCEK(content); EXPECT_TRUE(ret != 0); //key invalid test SimpleRSAEncryptionMaterials invalidMaterials("invalid", "invalid"); content.setCipherName("AES/CTR/NoPadding"); content.setContentKey(key); content.setContentIV(iv); ret = invalidMaterials.EncryptCEK(content); EXPECT_TRUE(ret != 0); content.setKeyWrapAlgorithm("RSA/NONE/PKCS1Padding"); content.setEncryptedContentKey(encryptedKey2); content.setEncryptedContentIV(encryptedIV2); content.setDescription(description2); ret = invalidMaterials.DecryptCEK(content); EXPECT_TRUE(ret != 0); } } } ================================================ FILE: test/src/Encryption/CryptoObjectTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include "../Config.h" #include "../Utils.h" #include #include namespace AlibabaCloud { namespace OSS { class CryptoObjectTest : public ::testing::Test { protected: CryptoObjectTest() { } ~CryptoObjectTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { const std::string publicKey = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALpUiB+w+r3v2Fgw0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGl\n" "s5YGoqD4lObG/sCQyaWd0B/XzOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMK\n" "zeyVFFFvl9prlr6XpuJQlY0F/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----"; const std::string privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXgIBAAKBgQC6VIgfsPq979hYMNEoDG1pfG581FXN7d2GwPPR9d5a8O7+kVGy\n" "/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d58mYZrPODBiepxdjUD/tYI2N\n" "QcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD8eEIseQKCW0oRJVLtQIDAQAB\n" "AoGBAJrzWRAhuSLipeMRFZ5cV1B1rdwZKBHMUYCSTTC5amPuIJGKf4p9XI4F4kZM\n" "1klO72TK72dsAIS9rCoO59QJnCpG4CvLYlJ37wA2UbhQ1rBH5dpBD/tv3CUyfdtI\n" "9CLUsZR3DGBWXYwGG0KGMYPExe5Hq3PUH9+QmuO+lXqJO4IBAkEA6iLee6oBzu6v\n" "90zrr4YA9NNr+JvtplpISOiL/XzsU6WmdXjzsFLSsZCeaJKsfdzijYEceXY7zUNa\n" "0/qQh2BKoQJBAMu61rQ5wKtql2oR4ePTSm00/iHoIfdFnBNU+b8uuPXlfwU80OwJ\n" "Gbs0xBHe+dt4uT53QLci4KgnNkHS5lu4XJUCQQCisCvrvcuX4B6BNf+mbPSJKcci\n" "biaJqr4DeyKatoz36mhpw+uAH2yrWRPZEeGtayg4rvf8Jf2TuTOJi9eVWYFBAkEA\n" "uIPzyS81TQsxL6QajpjjI52HPXZcrPOis++Wco0Cf9LnA/tczSpA38iefAETEq94\n" "NxcSycsQ5br97QfyEsgbMQJANTZ/HyMowmDPIC+n9ExdLSrf4JydARSfntFbPsy1\n" "4oC6ciKpRdtAtAtiU8s9eAUSWi7xoaPJzjAHWbmGSHHckg==\n" "-----END RSA PRIVATE KEY-----"; Endpoint = Config::Endpoint; Client = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(publicKey, privateKey), CryptoConfiguration()); BucketName = TestUtils::GetBucketName("cpp-sdk-crypto-object"); Client->CreateBucket(BucketName); TestFile = TestUtils::GetTargetFileName("cpp-sdk-multipartupload"); TestUtils::WriteRandomDatatoFile(TestFile, 1 * 1024 * 1024 + 100); TestFileMd5 = TestUtils::GetFileMd5(TestFile); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { RemoveFile(TestFile); TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } void SetUp() override { } void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string TestFile; static std::string TestFileMd5; static std::string Endpoint; }; std::shared_ptr CryptoObjectTest::Client = nullptr; std::string CryptoObjectTest::BucketName = ""; std::string CryptoObjectTest::TestFile = ""; std::string CryptoObjectTest::TestFileMd5 = ""; std::string CryptoObjectTest::Endpoint = ""; const int DownloadPartFailedFlag = 1 << 30; static int64_t GetFileLength(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } static int CalculatePartCount(int64_t totalSize, int singleSize) { // Calculate the part count auto partCount = (int)(totalSize / singleSize); if (totalSize % singleSize != 0) { partCount++; } return partCount; } TEST_F(CryptoObjectTest, PutAndGetObjectTest) { std::string key = TestUtils::GetObjectKey("PutAndGetObjectTest"); auto content = std::make_shared(); *content << "123"; PutObjectRequest pRequest(BucketName, key, content); auto pOutcome = Client->PutObject(pRequest); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); GetObjectRequest gRequest(BucketName, key); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), true); auto oriMd5 = ComputeContentMD5(*content); auto getMd5 = ComputeContentMD5(*outcome.result().Content()); auto ss = std::make_shared(); outcome = Client->GetObject(BucketName, key, ss); EXPECT_EQ(outcome.isSuccess(), true); getMd5 = ComputeContentMD5(*ss); EXPECT_EQ(oriMd5, getMd5); } TEST_F(CryptoObjectTest, GetObjectBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); auto fOutcome = Client->GetObject(BucketName, key, tmpFile); EXPECT_EQ(fOutcome.isSuccess(), true); fOutcome = dummy; std::shared_ptr fileContent = std::make_shared(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); std::string fileMd5 = ComputeContentMD5(*fileContent.get()); EXPECT_STREQ(oriMd5.c_str(), memMd5.c_str()); EXPECT_STREQ(oriMd5.c_str(), fileMd5.c_str()); fileContent = nullptr; EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, GetObjectToFileTest) { std::string key = TestUtils::GetObjectKey("GetObjectToFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto fOutcome = Client->GetObject(BucketName, key, tmpFile); EXPECT_EQ(fOutcome.isSuccess(), true); auto fileETag = TestUtils::GetFileETag(tmpFile); EXPECT_NE(fileETag, pOutcome.result().ETag()); fOutcome.result().setContent(std::shared_ptr()); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, GetObjectToNullContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToNullContentTest"); std::shared_ptr content = nullptr; auto outcome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(CryptoObjectTest, GetObjectToFailContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToFailContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicNegativeTest").append(".tmp"); std::shared_ptr content = std::make_shared(tmpFile, std::ios::in | std::ios::binary); auto outcome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(CryptoObjectTest, GetObjectToBadContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToBadContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicNegativeTest").append(".tmp"); std::shared_ptr content = std::make_shared(); content->setstate(content->badbit); auto outcome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(CryptoObjectTest, GetObjectToBadKeyTest) { std::string key = "/InvalidObjectName"; auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(CryptoObjectTest, GetObjectUsingRangeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUsingRangeTest"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); request.setRange(10, 19); auto outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); char buffer[10]; content->clear(); content->seekg(10, content->beg); EXPECT_EQ(content->good(), true); content->read(buffer, 10); std::string oriMd5 = ComputeContentMD5(buffer, 10); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); EXPECT_STREQ(oriMd5.c_str(), memMd5.c_str()); } TEST_F(CryptoObjectTest, GetObjectUsingRangeNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUsingRangeNegativeTest"); GetObjectRequest request(BucketName, key); request.setRange(10, 9); auto outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); request.setRange(10, -2); outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); request.setRange(-1, 9); outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); } TEST_F(CryptoObjectTest, GetObjectMatchingETagPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); reqeust.addMatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ETag().c_str(), eTag.c_str()); } TEST_F(CryptoObjectTest, GetObjectMatchingETagsPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagsPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); std::vector eTagList; eTagList.push_back(eTag); reqeust.addMatchingETagConstraint("invalidETag"); reqeust.setMatchingETagConstraints(eTagList); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ETag().c_str(), eTag.c_str()); } TEST_F(CryptoObjectTest, GetObjectMatchingETagNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagNegativeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.addMatchingETagConstraint("Dummy1"); reqeust.addMatchingETagConstraint("Dummy2"); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "PreconditionFailed"); } TEST_F(CryptoObjectTest, GetObjectModifiedSincePositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectModifiedSincePositiveTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(-10); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setModifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, GetObjectModifiedSinceNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectModifiedSinceNegativeTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setModifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "ServerError:304"); } TEST_F(CryptoObjectTest, GetObjectNonMatchingETagPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = "Dummy"; GetObjectRequest reqeust(BucketName, key); reqeust.addNonmatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, GetObjectNonMatchingETagsPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagsPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); std::vector eTagList; eTagList.push_back("Dummy1"); eTagList.push_back("Dummy2"); reqeust.setNonmatchingETagConstraints(eTagList); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, GetObjectNonMatchingETagNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagNegativeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); reqeust.addNonmatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "ServerError:304"); } TEST_F(CryptoObjectTest, GetObjectUnmodifiedSincePositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectUnmodifiedSincePositiveTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setUnmodifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, GetObjectUnmodifiedSinceNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUnmodifiedSinceNegativeTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(-10); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setUnmodifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "PreconditionFailed"); } /* no supported TEST_F(CryptoObjectTest, GetObjectWithResponseHeadersSettingTest) { std::string key = TestUtils::GetObjectKey("GetObjectWithResponseHeadersSettingTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentType(), "application/octet-stream"); reqeust.addResponseHeaders(RequestResponseHeader::ContentType, "test/haah"); gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentType(), "test/haah"); } */ class GetObjectAsyncContex : public AsyncCallerContext { public: GetObjectAsyncContex() :ready(false) {} ~GetObjectAsyncContex() {} mutable std::mutex mtx; mutable std::condition_variable cv; mutable std::string md5; mutable bool ready; }; static void GetObjectHandler(const AlibabaCloud::OSS::OssClient* client, const GetObjectRequest& request, const GetObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "Client[" << client << "]" << "GetObjectHandler" << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); ctx->md5 = memMd5; std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(CryptoObjectTest, GetObjectAsyncBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectAsyncBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectAsyncHandler handler = GetObjectHandler; GetObjectRequest request(BucketName, key); std::shared_ptr memContext = std::make_shared(); GetObjectRequest fileRequest(BucketName, key); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); std::shared_ptr fileContext = std::make_shared(); Client->GetObjectAsync(request, handler, memContext); Client->GetObjectAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue GetObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } std::string oriMd5 = ComputeContentMD5(*content.get()); EXPECT_EQ(oriMd5, memContext->md5); EXPECT_EQ(oriMd5, fileContext->md5); memContext = nullptr; fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, GetObjectCallableBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectCallableBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); std::shared_ptr memContext = std::make_shared(); GetObjectRequest fileRequest(BucketName, key); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); auto memOutcomeCallable = Client->GetObjectCallable(request); auto fileOutcomeCallable = Client->GetObjectCallable(fileRequest); std::cout << "Client[" << Client << "]" << "Issue GetObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*memOutcome.result().Content()); std::string fileMd5 = ComputeContentMD5(*fileOutcome.result().Content()); EXPECT_EQ(oriMd5, fileMd5); EXPECT_EQ(oriMd5, fileMd5); memOutcome = dummy; fileOutcome = dummy; //EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectBasicTest) { std::string key = TestUtils::GetObjectKey("PutObjectBasicTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(CryptoObjectTest, PutObjectWithExpiresTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithExpiresTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); request.MetaData().setContentType("application/x-test"); request.setExpires(TestUtils::GetGMTString(120)); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(CryptoObjectTest, PutObjectUsingContentLengthTest) { std::string key = TestUtils::GetObjectKey("PutObjectUsingContentLengthTest"); std::shared_ptr content = std::make_shared(); *content << "123456789"; PutObjectRequest request(BucketName, key, content); request.MetaData().setContentLength(2); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5("12", 2); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(CryptoObjectTest, PutObjectFullSettingsTest) { std::string key = TestUtils::GetObjectKey("PutObjectFullSettingsTest"); auto content = TestUtils::GetRandomStream(1024); key.append("/attachement_test.data"); std::string saveAs = "abc123.zip"; std::string contentDisposition = "attachment;filename*=utf-8''"; contentDisposition.append(UrlEncode(saveAs)); PutObjectRequest request(BucketName, key, content); request.setCacheControl("no-cache"); request.setContentDisposition(contentDisposition); request.setContentEncoding("gzip"); std::string contentMd5 = ComputeContentMD5(*content); request.setContentMd5(contentMd5); //user metadata request.MetaData().UserMetaData()["MyKey1"] = "MyValue1"; request.MetaData().UserMetaData()["MyKey2"] = "MyValue2"; request.MetaData().UserMetaData()["MyKey3"] = ""; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().CacheControl(), "no-cache"); EXPECT_EQ(metaOutcome.result().ContentDisposition(), contentDisposition); EXPECT_EQ(metaOutcome.result().ContentEncoding(), "gzip"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey1"), "MyValue1"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey2"), "MyValue2"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey3"), ""); } TEST_F(CryptoObjectTest, PutObjectDefaultMetadataTest) { std::string key = TestUtils::GetObjectKey("PutObjectDefaultMetadataTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); } TEST_F(CryptoObjectTest, PutObjectFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*outcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, PutObjectUsingContentLengthFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectUsingContentLengthFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUsingContentLengthFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); file->seekg(0, file->end); auto content_length = file->tellg(); EXPECT_EQ(content_length, 1024LL); file->seekg(content_length / 2, file->beg); PutObjectRequest request(BucketName, key, file); request.MetaData().setContentLength(content_length / 2); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); char buff[2048]; file->clear(); file->seekg(content_length / 2, file->beg); file->read(buff, 2048); size_t readSize = static_cast(file->gcount()); std::string oriMd5 = ComputeContentMD5(buff, readSize); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); file->close(); RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectFullSettingsFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectFullSettingsFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFullSettingsFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); key.append("/attachement_test.data"); std::string saveAs = "abc123.zip"; std::string contentDisposition = "attachment;filename*=utf-8''"; contentDisposition.append(UrlEncode(saveAs)); PutObjectRequest request(BucketName, key, file); request.setCacheControl("no-cache"); request.setContentDisposition(contentDisposition); request.setContentEncoding("gzip"); std::string contentMd5 = ComputeContentMD5(*file); request.setContentMd5(contentMd5); //user metadata request.MetaData().UserMetaData()["MyKey1"] = "MyValue1"; request.MetaData().UserMetaData()["MyKey2"] = "MyValue2"; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().CacheControl(), "no-cache"); EXPECT_EQ(metaOutcome.result().ContentDisposition(), contentDisposition); EXPECT_EQ(metaOutcome.result().ContentEncoding(), "gzip"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey1"), "MyValue1"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey2"), "MyValue2"); file->close(); RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectDefaultMetadataFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectDefaultMetadataFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectDefaultMetadataFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); auto outcome = Client->PutObject(BucketName, key, file); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); file->close(); RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectUserMetadataFromFileContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectUserMetadataFromFileContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUserMetadataFromFileContentTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); PutObjectRequest request(BucketName, key, file); request.MetaData().UserMetaData()["test"] = "testvalue"; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); file->close(); file = nullptr; RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectUserMetadataFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectUserMetadataFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUserMetadataFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); ObjectMetaData metaData; PutObjectRequest request(BucketName, key, file); request.MetaData().UserMetaData()["test"] = "testvalue"; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); EXPECT_EQ(hOutcome.result().ContentLength(), 1024LL); file->close(); file = nullptr; RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutObjectWithNotExistFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNotExistFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFileTest").append("-put.tmp"); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is in fail state. Logical error on i/o operation."); } TEST_F(CryptoObjectTest, PutObjectWithNullContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNullContentTest"); std::shared_ptr content = nullptr; auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is null."); } TEST_F(CryptoObjectTest, PutObjectWithBadContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNullContentTest"); std::shared_ptr content = std::make_shared(); content->setstate(content->badbit); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is in bad state. Read/writing error on i/o operation."); } TEST_F(CryptoObjectTest, PutObjectWithSameContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithSameContentTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(outcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } class PutObjectAsyncContex : public AsyncCallerContext { public: PutObjectAsyncContex() :ready(false) {} virtual ~PutObjectAsyncContex() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; static void PutObjectHandler(const AlibabaCloud::OSS::OssClient* client, const PutObjectRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "Client[" << client << "]" << "PutObjectHandler, tag:" << context->Uuid() << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(CryptoObjectTest, PutObjectAsyncBasicTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); PutObjectAsyncHandler handler = PutObjectHandler; PutObjectRequest memRequest(BucketName, memKey, memContent); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("PutobjectasyncFromMem"); PutObjectRequest fileRequest(BucketName, fileKey, fileContent); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("PutobjectasyncFromFile"); Client->PutObjectAsync(memRequest, handler, memContext); Client->PutObjectAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue PutObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, PutObjectCallableBasicTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectCallableBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto memOutcomeCallable = Client->PutObjectCallable(PutObjectRequest(BucketName, memKey, memContent)); auto fileOutcomeCallable = Client->PutObjectCallable(PutObjectRequest(BucketName, fileKey, fileContent)); std::cout << "Client[" << Client << "]" << "Issue PutObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; RemoveFile(tmpFile); } TEST_F(CryptoObjectTest, PutAndGetObjectFailTest) { std::string key = TestUtils::GetObjectKey("PutAndGetObjectFailTest"); auto content = std::make_shared(); *content << "123"; auto pOutcome = Client->PutObject(BucketName, key, "invalid path"); EXPECT_EQ(pOutcome.isSuccess(), false); auto outcome = Client->GetObject(BucketName, key, "invalid path"); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(CryptoObjectTest, PutObjectWithContentMd5Test) { std::string key = TestUtils::GetObjectKey("PutObjectWithContentMd5Test"); auto content = std::make_shared(); *content << "123"; auto oriMd5 = ComputeContentMD5(*content); PutObjectRequest pRequest(BucketName, key, content); pRequest.setContentMd5(oriMd5); auto pOutcome = Client->PutObject(pRequest); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); GetObjectRequest gRequest(BucketName, key); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), true); auto getMd5 = ComputeContentMD5(*outcome.result().Content()); auto unencryptMd5 = outcome.result().Metadata().UserMetaData().at("client-side-encryption-unencrypted-content-md5"); EXPECT_EQ(unencryptMd5, getMd5); } TEST_F(CryptoObjectTest, GetObjectWithRangeTest) { std::string key = TestUtils::GetObjectKey("GetObjectWithRangeTest"); auto content = std::make_shared(); std::string contentStr = "1234567890abcdefjhijklmnopqrstuvwxzyQAZWSXEDC"; *content << contentStr; int64_t contentLen = contentStr.size(); PutObjectRequest pRequest(BucketName, key, content); auto pOutcome = Client->PutObject(pRequest); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); //from offset to end for (int64_t i = 0; i < contentLen - 1; i++) { GetObjectRequest gRequest(BucketName, key); gRequest.setRange(i, -1); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), contentLen - i); std::string getStr; *outcome.result().Content() >> getStr; EXPECT_EQ(getStr, contentStr.substr(i)); } //from offset to contentLen - 3 int64_t last_remain = 2; for (int64_t i = 0; i < contentLen - 1 - last_remain; i++) { GetObjectRequest gRequest(BucketName, key); gRequest.setRange(i, contentLen - last_remain); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), (contentLen - last_remain - i + 1) ); std::string getStr; *outcome.result().Content() >> getStr; EXPECT_EQ(getStr, contentStr.substr(i, (contentLen - last_remain - i + 1))); } } // static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { UNUSED_PARAM(increment); UNUSED_PARAM(transfered); UNUSED_PARAM(total); UNUSED_PARAM(userData); } TEST_F(CryptoObjectTest, PutObjectProgressTest) { std::string key = TestUtils::GetObjectKey("PutObjectProgressTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); TransferProgress arg; arg.Handler = ProgressCallback; arg.UserData = this; request.setTransferProgress(arg); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, GetObjectProgressTest) { std::string key = TestUtils::GetObjectKey("GetObjectProgressTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest grequest(BucketName, key); TransferProgress arg; arg.Handler = ProgressCallback; arg.UserData = this; grequest.setTransferProgress(arg); auto gOutcome = Client->GetObject(grequest); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(CryptoObjectTest, MultipartUploadComplexStepTest) { const int partSize = 100 * 1024; auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadComplexStepTest"); const int64_t fileLength = GetFileLength(sourceFile); MultipartUploadCryptoContext cryptoCTX; cryptoCTX.setPartSize(partSize); cryptoCTX.setDataSize(fileLength); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentIV().size(), static_cast(16)); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentKey().size(), static_cast(32)); EXPECT_EQ(cryptoCTX.UploadId(), initOutcome.result().UploadId()); // Set the part size, must be 16 alignment auto partCount = CalculatePartCount(fileLength, partSize); // Create a list to save result PartList partETags; //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = Client->UploadPart(request, cryptoCTX); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); // Save the result Part part(i + 1, uploadPartOutcome.result().ETag()); partETags.push_back(part); } } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_FALSE(lmuOutcome.result().RequestId().empty()); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest, cryptoCTX); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_FALSE(cOutcome.result().RequestId().empty()); auto gOutcome = Client->GetObject(GetObjectRequest(BucketName, targetObjectKey)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(CryptoObjectTest, InitiateMultipartUploadWithoutSpecialHeadersTest) { const int partSize = 100 * 1024; auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadComplexStepTest"); const int64_t fileLength = GetFileLength(sourceFile); MultipartUploadCryptoContext cryptoCTX; InitiateMultipartUploadRequest request(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(request, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "EncryptionClientError"); cryptoCTX.setPartSize(partSize); initOutcome = Client->InitiateMultipartUpload(request, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "InvalidEncryptionRequest"); cryptoCTX.setPartSize(partSize); cryptoCTX.setDataSize(fileLength); initOutcome = Client->InitiateMultipartUpload(request, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentIV().size(), static_cast(16)); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentKey().size(), static_cast(32)); EXPECT_EQ(cryptoCTX.UploadId(), initOutcome.result().UploadId()); } TEST_F(CryptoObjectTest, CompleteMultipartUploadNegativeTest) { const int partSize = 100 * 1024; auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadComplexStepTest"); const int64_t fileLength = GetFileLength(sourceFile); MultipartUploadCryptoContext cryptoCTX; cryptoCTX.setPartSize(partSize); cryptoCTX.setDataSize(fileLength); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentIV().size(), static_cast(16)); EXPECT_EQ(cryptoCTX.ContentMaterial().ContentKey().size(), static_cast(32)); EXPECT_EQ(cryptoCTX.UploadId(), initOutcome.result().UploadId()); // Create a list to save result PartList partETags; //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < 2; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = Client->UploadPart(request, cryptoCTX); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); // Save the result Part part(i + 1, uploadPartOutcome.result().ETag()); partETags.push_back(part); } } CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(cryptoCTX.UploadId()); auto cOutcome = Client->CompleteMultipartUpload(completeRequest, cryptoCTX); EXPECT_EQ(cOutcome.isSuccess(), false); EXPECT_EQ(cOutcome.error().Code(), "InvalidEncryptionRequest"); EXPECT_EQ(cOutcome.error().Message(), "The client encryption part list is unexpected with init_multipart setted."); } TEST_F(CryptoObjectTest, MultipartUploadCryptoContextTest) { auto key = TestUtils::GetObjectKey("MultipartUploadCryptoContextTest"); MultipartUploadCryptoContext cryptoCtx; cryptoCtx.setPartSize(102401); cryptoCtx.setDataSize(11); auto initOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key), cryptoCtx); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "EncryptionClientError"); auto content = std::make_shared("hello world"); UploadPartRequest request(BucketName, key, content); request.setPartNumber(1); request.setUploadId("uploadid"); request.setContentLength(11); auto uploadPartOutcome = Client->UploadPart(request, cryptoCtx); EXPECT_EQ(uploadPartOutcome.isSuccess(), false); EXPECT_EQ(uploadPartOutcome.error().Code(), "EncryptionClientError"); } TEST_F(CryptoObjectTest, MultipartUploadCallableBasicTest) { auto memKey = TestUtils::GetObjectKey("MultipartUploadCallable-MemObject"); auto memContent = TestUtils::GetRandomStream(102400); MultipartUploadCryptoContext memCryptoCtx; memCryptoCtx.setPartSize(102400); memCryptoCtx.setDataSize(102400); auto memInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey), memCryptoCtx); EXPECT_EQ(memInitOutcome.isSuccess(), true); auto fileKey = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject"); auto tmpFile = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); { MultipartUploadCryptoContext fileCryptoCtx; fileCryptoCtx.setPartSize(102400); fileCryptoCtx.setDataSize(1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto fileInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey), fileCryptoCtx); EXPECT_EQ(fileInitOutcome.isSuccess(), true); auto memOutcomeCallable = Client->UploadPartCallable(UploadPartRequest(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent), memCryptoCtx); auto fileOutcomeCallable = Client->UploadPartCallable(UploadPartRequest(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent), fileCryptoCtx); std::cout << "Client[" << Client << "]" << "Issue MultipartUploadCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto menOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(menOutcome.isSuccess(), true); // list part auto memListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); auto fileListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(memListPartOutcome.isSuccess(), true); EXPECT_EQ(fileListPartOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartOutcome.result().PartList(), memInitOutcome.result().UploadId()), memCryptoCtx); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartOutcome.result().PartList(), fileInitOutcome.result().UploadId()), fileCryptoCtx); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; } RemoveFile(tmpFile); } class UploadPartAsyncContext : public AsyncCallerContext { public: UploadPartAsyncContext() :ready(false) {} virtual ~UploadPartAsyncContext() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; static void UploadPartInvalidHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartInvalidHandler, tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), false); std::cout << __FUNCTION__ << " InvalidHandler, code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } static void UploadPartHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartHandler,tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(CryptoObjectTest, UploadPartAsyncBasicTest) { std::string memKey = TestUtils::GetObjectKey("UploadPartMemObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); MultipartUploadCryptoContext memCryptoCtx; memCryptoCtx.setPartSize(102400); memCryptoCtx.setDataSize(102400); InitiateMultipartUploadRequest memInitRequest(BucketName, memKey); auto memInitOutcome = Client->InitiateMultipartUpload(memInitRequest, memCryptoCtx); EXPECT_EQ(memInitOutcome.isSuccess(), true); EXPECT_EQ(memInitOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartFileObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("UploadPartFileObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); MultipartUploadCryptoContext fileCryptoCtx; fileCryptoCtx.setPartSize(102400); fileCryptoCtx.setDataSize(1024); InitiateMultipartUploadRequest fileInitRequest(BucketName, fileKey); auto fileInitOutcome = Client->InitiateMultipartUpload(fileInitRequest, fileCryptoCtx); EXPECT_EQ(fileInitOutcome.isSuccess(), true); EXPECT_EQ(fileInitOutcome.result().Key(), fileKey); UploadPartAsyncHandler handler = UploadPartHandler; UploadPartRequest memRequest(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("UploadPartAsyncFromMem"); UploadPartRequest fileRequest(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("UploadPartAsyncFromFile"); Client->UploadPartAsync(memRequest, handler, memCryptoCtx, memContext); Client->UploadPartAsync(fileRequest, handler, fileCryptoCtx, fileContext); std::cout << "Client[" << Client << "]" << "Issue UploadPartAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); auto memListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); EXPECT_EQ(memListPartsOutcome.isSuccess(), true); auto fileListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(fileListPartsOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartsOutcome.result().PartList(), memInitOutcome.result().UploadId()), memCryptoCtx); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartsOutcome.result().PartList(), fileInitOutcome.result().UploadId()), fileCryptoCtx); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoObjectTest, UploadPartAsyncInvalidContentTest) { std::string key = TestUtils::GetObjectKey("UploadPartCopyAsyncInvalidContentTest"); UploadPartAsyncHandler handler = UploadPartInvalidHandler; std::shared_ptr content = nullptr; MultipartUploadCryptoContext cryptoCtx; cryptoCtx.setPartSize(102400); cryptoCtx.setDataSize(1024); UploadPartRequest request(BucketName, key, 1, "id", content); std::shared_ptr context = std::make_shared(); context->setUuid("UploadPartCopyAsyncInvalidContent"); Client->UploadPartAsync(request, handler, cryptoCtx, context); TestUtils::WaitForCacheExpire(1); content = TestUtils::GetRandomStream(100); request.setConetent(content); Client->UploadPartAsync(request, handler, cryptoCtx, context); TestUtils::WaitForCacheExpire(1); request.setContentLength(5LL * 1024LL * 1024LL * 1024LL + 1LL); Client->UploadPartAsync(request, handler, cryptoCtx, context); TestUtils::WaitForCacheExpire(1); ContentCryptoMaterial contentMaterial; contentMaterial.setContentIV(ByteBuffer(16)); contentMaterial.setContentKey(ByteBuffer(32)); cryptoCtx.setContentMaterial(contentMaterial); request.setContentLength(100); Client->UploadPartAsync(request, handler, cryptoCtx, context); TestUtils::WaitForCacheExpire(1); request.setBucket("non-existent-bucket"); request.setContentLength(100); Client->UploadPartAsync(request, handler, cryptoCtx, context); request.setBucket(BucketName); } TEST_F(CryptoObjectTest, NormalResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object std::shared_ptr content = std::make_shared(tmpFile, std::ios::in | std::ios::binary); auto uploadOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); content = nullptr; // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoObjectTest, MultiResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object std::shared_ptr content = std::make_shared(tmpFile, std::ios::in | std::ios::binary); auto uploadOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); content = nullptr; EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object int threadNum = 1 + rand() % 100; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoObjectTest, EncryptionMaterialsFunctionFailTest) { std::string publicKey = "invalid"; std::string privateKey = "invalid"; auto client = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(publicKey, privateKey), CryptoConfiguration()); //put auto content = std::make_shared("just for test"); auto pOutcome = client->PutObject(BucketName, "test-key", content); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "EncryptionClientError"); EXPECT_EQ(pOutcome.error().Message(), "EncryptCEK fail, return value:-1"); //get std::string key = TestUtils::GetObjectKey("test-key"); pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto gOutcome = client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "EncryptionClientError"); EXPECT_EQ(gOutcome.error().Message(), "DecryptCEK fail, return value:-1"); //init MultipartUploadCryptoContext cryptoCTX; cryptoCTX.setPartSize(1001024); InitiateMultipartUploadRequest request(BucketName, "test-key"); auto initOutcome = client->InitiateMultipartUpload(request, cryptoCTX); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "EncryptionClientError"); EXPECT_EQ(initOutcome.error().Message(), "EncryptCEK fail, return value:-1"); } TEST_F(CryptoObjectTest, DifferentEncryptionMaterialsTest) { const std::string publicKey = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALpUiB+w+r3v2Fgw0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGl\n" "s5YGoqD4lObG/sCQyaWd0B/XzOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMK\n" "zeyVFFFvl9prlr6XpuJQlY0F/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----"; const std::string privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXgIBAAKBgQC6VIgfsPq979hYMNEoDG1pfG581FXN7d2GwPPR9d5a8O7+kVGy\n" "/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d58mYZrPODBiepxdjUD/tYI2N\n" "QcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD8eEIseQKCW0oRJVLtQIDAQAB\n" "AoGBAJrzWRAhuSLipeMRFZ5cV1B1rdwZKBHMUYCSTTC5amPuIJGKf4p9XI4F4kZM\n" "1klO72TK72dsAIS9rCoO59QJnCpG4CvLYlJ37wA2UbhQ1rBH5dpBD/tv3CUyfdtI\n" "9CLUsZR3DGBWXYwGG0KGMYPExe5Hq3PUH9+QmuO+lXqJO4IBAkEA6iLee6oBzu6v\n" "90zrr4YA9NNr+JvtplpISOiL/XzsU6WmdXjzsFLSsZCeaJKsfdzijYEceXY7zUNa\n" "0/qQh2BKoQJBAMu61rQ5wKtql2oR4ePTSm00/iHoIfdFnBNU+b8uuPXlfwU80OwJ\n" "Gbs0xBHe+dt4uT53QLci4KgnNkHS5lu4XJUCQQCisCvrvcuX4B6BNf+mbPSJKcci\n" "biaJqr4DeyKatoz36mhpw+uAH2yrWRPZEeGtayg4rvf8Jf2TuTOJi9eVWYFBAkEA\n" "uIPzyS81TQsxL6QajpjjI52HPXZcrPOis++Wco0Cf9LnA/tczSpA38iefAETEq94\n" "NxcSycsQ5br97QfyEsgbMQJANTZ/HyMowmDPIC+n9ExdLSrf4JydARSfntFbPsy1\n" "4oC6ciKpRdtAtAtiU8s9eAUSWi7xoaPJzjAHWbmGSHHckg==\n" "-----END RSA PRIVATE KEY-----"; std::map description; description["provider"] = "aliclould"; auto otherClient = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(publicKey, privateKey, description), CryptoConfiguration()); std::string key = TestUtils::GetObjectKey("DifferentEncryptionMaterialsTest"); auto content = std::make_shared("just for test"); auto pOutcome = otherClient->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto gOutcome = otherClient->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), true); // gOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "EncryptionClientError"); EXPECT_EQ(gOutcome.error().Message(), "DecryptCEK fail, return value:-1"); auto otherClient2 = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(publicKey, privateKey, description), CryptoConfiguration()); gOutcome = otherClient2->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), true); auto oriMd5 = ComputeContentMD5(*content); auto getMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(oriMd5, getMd5); } TEST_F(CryptoObjectTest, DownloadUnencryptedObjectTest) { auto otherClient = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string key = TestUtils::GetObjectKey("DownloadUnencryptedObjectTest"); auto content = std::make_shared("just for test"); auto pOutcome = otherClient->PutObject(BucketName, key, content); GetObjectRequest gRequest(BucketName, key); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), true); auto oriMd5 = ComputeContentMD5(*content); auto getMd5 = ComputeContentMD5(*outcome.result().Content()); EXPECT_EQ(oriMd5, getMd5); } TEST_F(CryptoObjectTest, UnsupportCEKAlgoTest) { auto otherClient = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string key = TestUtils::GetObjectKey("UnsupportCEKAlgoTest"); auto content = std::make_shared("just for test"); PutObjectRequest pRequest(BucketName, key, content); pRequest.MetaData().addUserHeader("client-side-encryption-key", "1234"); pRequest.MetaData().addUserHeader("client-side-encryption-start", "1234"); pRequest.MetaData().addUserHeader("client-side-encryption-cek-alg", "AES/ECB/NoPadding"); pRequest.MetaData().addUserHeader("client-side-encryption-wrap-alg", "RSA/NONE/PKCS1Padding"); auto pOutcome = otherClient->PutObject(pRequest); GetObjectRequest gRequest(BucketName, key); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "EncryptionClientError"); EXPECT_EQ(outcome.error().Message(), "Cipher name is not support, expect AES/CTR/NoPadding, got AES/ECB/NoPadding."); } TEST_F(CryptoObjectTest, CompatibilityTest) { #define ArraySize(a) sizeof(a)/sizeof(a[0]) std::string fileNames[] = { "cpp-enc-example.jpg", "go-enc-example.jpg" }; std::map userMetas[] = { //cpp-enc-example.jpg { {"client-side-encryption-key", "nyXOp7delQ/MQLjKQMhHLaT0w7u2yQoDLkSnK8MFg/MwYdh4na4/LS8LLbLcM18m8I/ObWUHU775I50sJCpdv+f4e0jLeVRRiDFWe+uo7Puc9j4xHj8YB3QlcIOFQiTxHIB6q+C+RA6lGwqqYVa+n3aV5uWhygyv1MWmESurppg="}, {"client-side-encryption-start", "De/S3T8wFjx7QPxAAFl7h7TeI2EsZlfCwox4WhLGng5DK2vNXxULmulMUUpYkdc9umqmDilgSy5Z3Foafw+v4JJThfw68T/9G2gxZLrQTbAlvFPFfPM9Ehk6cY4+8WpY32uN8w5vrHyoSZGr343NxCUGIp6fQ9sSuOLMoJg7hNw="}, {"client-side-encryption-cek-alg", "AES/CTR/NoPadding"}, {"client-side-encryption-wrap-alg", "RSA/NONE/PKCS1Padding"}, }, //go-enc-example.jpg { {"client-side-encryption-key", "F2L5QjyA2s85tPvaGdQ5EKnU/XN5dUWqZfgwcM4gfzPMcDWR93AZGSpeB9VSJBYPdIqhy1cevKEJv+Dv2ckDuDJ7nzijwcBnO5tPl5jXYlWxgzj6t1gMqQr/LENbB5iC8hzGkkoVWjWtSPDB+uE3+qf4V1A0308OqSM3OKxV0VI="}, {"client-side-encryption-start", "D+3z6ftLp500eVnvsat5awYdYI/jTeSRlGlmHNrhTm3l1bonYP1v72vGqZhvOpT++9ZXOhdePu82gjhqVfh8Qv2HZsVGeJLzQJRU8kIKc7PRI4SoqpHZh2VYsASvnDtxVy2MQmpJzvG8xr4j3I29EgsEha7NV+2hGq/dolxLHNc="}, {"client-side-encryption-cek-alg", "AES/CTR/NoPadding"}, {"client-side-encryption-wrap-alg", "RSA/NONE/PKCS1Padding"}, }, }; std::string privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICWwIBAAKBgQCokfiAVXXf5ImFzKDw+XO/UByW6mse2QsIgz3ZwBtMNu59fR5z\n" "ttSx+8fB7vR4CN3bTztrP9A6bjoN0FFnhlQ3vNJC5MFO1PByrE/MNd5AAfSVba93\n" "I6sx8NSk5MzUCA4NJzAUqYOEWGtGBcom6kEF6MmR1EKib1Id8hpooY5xaQIDAQAB\n" "AoGAOPUZgkNeEMinrw31U3b2JS5sepG6oDG2CKpPu8OtdZMaAkzEfVTJiVoJpP2Y\n" "nPZiADhFW3e0ZAnak9BPsSsySRaSNmR465cG9tbqpXFKh9Rp/sCPo4Jq2n65yood\n" "JBrnGr6/xhYvNa14sQ6xjjfSgRNBSXD1XXNF4kALwgZyCAECQQDV7t4bTx9FbEs5\n" "36nAxPsPM6aACXaOkv6d9LXI7A0J8Zf42FeBV6RK0q7QG5iNNd1WJHSXIITUizVF\n" "6aX5NnvFAkEAybeXNOwUvYtkgxF4s28s6gn11c5HZw4/a8vZm2tXXK/QfTQrJVXp\n" "VwxmSr0FAajWAlcYN/fGkX1pWA041CKFVQJAG08ozzekeEpAuByTIOaEXgZr5MBQ\n" "gBbHpgZNBl8Lsw9CJSQI15wGfv6yDiLXsH8FyC9TKs+d5Tv4Cvquk0efOQJAd9OC\n" "lCKFs48hdyaiz9yEDsc57PdrvRFepVdj/gpGzD14mVerJbOiOF6aSV19ot27u4on\n" "Td/3aifYs0CveHzFPQJAWb4LCDwqLctfzziG7/S7Z74gyq5qZF4FUElOAZkz718E\n" "yZvADwuz/4aK0od0lX9c4Jp7Mo5vQ4TvdoBnPuGoyw==\n" "-----END RSA PRIVATE KEY-----"; EXPECT_EQ(ArraySize(fileNames), ArraySize(userMetas)); ClientConfiguration conf; auto unencryptedClient = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto encryptedClient = std::make_shared(Endpoint, std::make_shared(Config::AccessKeyId, Config::AccessKeySecret), conf, std::make_shared("", privateKey), CryptoConfiguration()); size_t index = 0; for (const auto& file : fileNames) { std::string encryptedFile = Config::GetDataPath(); encryptedFile.append(file); std::string oriFile = Config::GetDataPath(); oriFile.append("example.jpg"); std::string key = file; ObjectMetaData meta; for (const auto& it : userMetas[index]) { meta.addUserHeader(it.first, it.second); } auto pOutcome = unencryptedClient->PutObject(BucketName, key, encryptedFile, meta); EXPECT_EQ(pOutcome.isSuccess(), true); auto gOutcome = encryptedClient->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), true); for (const auto& it : userMetas[index]) { EXPECT_EQ(gOutcome.result().Metadata().UserMetaData().at(it.first), it.second); } auto getMd5 = ComputeContentMD5(*gOutcome.result().Content()); auto oriMd5 = TestUtils::GetFileMd5(oriFile); EXPECT_EQ(oriMd5, getMd5); index++; } EXPECT_EQ(index, ArraySize(fileNames)); } class EncryptionDisableFuncClient : public OssEncryptionClient { public: EncryptionDisableFuncClient(const std::string& endpoint, const std::string& accessKeyId, const std::string& accessKeySecret) : OssEncryptionClient(endpoint, accessKeyId, accessKeySecret, ClientConfiguration(), std::make_shared("", ""), CryptoConfiguration()) {} public: AppendObjectOutcome AppendObject(const AppendObjectRequest& request) const { return OssEncryptionClient::AppendObject(request); } UploadPartCopyOutcome UploadPartCopy(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& ctx) const { return OssEncryptionClient::UploadPartCopy(request, ctx); } void UploadPartCopyAsync(const UploadPartCopyRequest& request, const UploadPartCopyAsyncHandler& handler, const MultipartUploadCryptoContext& cryptoCtx, const std::shared_ptr& context = nullptr) const { OssEncryptionClient::UploadPartCopyAsync(request, handler, cryptoCtx, context); } UploadPartCopyOutcomeCallable UploadPartCopyCallable(const UploadPartCopyRequest& request, const MultipartUploadCryptoContext& cryptoCtx) const { return OssEncryptionClient::UploadPartCopyCallable(request, cryptoCtx); } CopyObjectOutcome ResumableCopyObject(const MultiCopyObjectRequest& request) const { return OssEncryptionClient::ResumableCopyObject(request); } GetObjectOutcome GetObjectByUrl(const GetObjectByUrlRequest& request) const { return OssEncryptionClient::GetObjectByUrl(request); } PutObjectOutcome PutObjectByUrl(const PutObjectByUrlRequest& request) const { return OssEncryptionClient::PutObjectByUrl(request); } }; static void UploadPartCopyDisableFuncHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartCopyRequest& request, const UploadPartCopyOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartCopyHandler, tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "EncryptionClientError"); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(CryptoObjectTest, TestDisableFunctionTest) { EncryptionDisableFuncClient disableClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret); auto content = std::make_shared(); auto aOutcome = disableClient.AppendObject(AppendObjectRequest(BucketName, "key", content)); EXPECT_EQ(aOutcome.isSuccess(), false); EXPECT_EQ(aOutcome.error().Code(), "EncryptionClientError"); MultipartUploadCryptoContext ctx; auto uOutcome = disableClient.UploadPartCopy(UploadPartCopyRequest(BucketName, "key"), ctx); EXPECT_EQ(uOutcome.isSuccess(), false); EXPECT_EQ(uOutcome.error().Code(), "EncryptionClientError"); auto uOutcomeCallable = disableClient.UploadPartCopyCallable(UploadPartCopyRequest(BucketName, "key"), ctx); uOutcome = uOutcomeCallable.get(); EXPECT_EQ(uOutcome.isSuccess(), false); EXPECT_EQ(uOutcome.error().Code(), "EncryptionClientError"); auto rOutcome = disableClient.ResumableCopyObject(MultiCopyObjectRequest(BucketName, "key", "", "")); EXPECT_EQ(rOutcome.isSuccess(), false); EXPECT_EQ(rOutcome.error().Code(), "EncryptionClientError"); auto gOutcome = disableClient.GetObjectByUrl(GetObjectByUrlRequest("url")); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "EncryptionClientError"); auto pOutcome = disableClient.PutObjectByUrl(PutObjectByUrlRequest("key", content)); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "EncryptionClientError"); UploadPartCopyAsyncHandler handler = UploadPartCopyDisableFuncHandler; UploadPartCopyRequest cRequest(BucketName, "key"); std::shared_ptr cContext = std::make_shared(); cContext->setUuid("UploadPartCopyAsync"); disableClient.UploadPartCopyAsync(cRequest, handler, ctx, cContext); { std::unique_lock lck(cContext->mtx); if (!cContext->ready) cContext->cv.wait(lck); } } } } ================================================ FILE: test/src/Encryption/CryptoObjectVersioningTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include namespace AlibabaCloud { namespace OSS { class CryptoObjectVersioningTest : public ::testing::Test { protected: CryptoObjectVersioningTest() { } ~CryptoObjectVersioningTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { const std::string publicKey = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALpUiB+w+r3v2Fgw0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGl\n" "s5YGoqD4lObG/sCQyaWd0B/XzOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMK\n" "zeyVFFFvl9prlr6XpuJQlY0F/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----"; const std::string privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXgIBAAKBgQC6VIgfsPq979hYMNEoDG1pfG581FXN7d2GwPPR9d5a8O7+kVGy\n" "/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d58mYZrPODBiepxdjUD/tYI2N\n" "QcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD8eEIseQKCW0oRJVLtQIDAQAB\n" "AoGBAJrzWRAhuSLipeMRFZ5cV1B1rdwZKBHMUYCSTTC5amPuIJGKf4p9XI4F4kZM\n" "1klO72TK72dsAIS9rCoO59QJnCpG4CvLYlJ37wA2UbhQ1rBH5dpBD/tv3CUyfdtI\n" "9CLUsZR3DGBWXYwGG0KGMYPExe5Hq3PUH9+QmuO+lXqJO4IBAkEA6iLee6oBzu6v\n" "90zrr4YA9NNr+JvtplpISOiL/XzsU6WmdXjzsFLSsZCeaJKsfdzijYEceXY7zUNa\n" "0/qQh2BKoQJBAMu61rQ5wKtql2oR4ePTSm00/iHoIfdFnBNU+b8uuPXlfwU80OwJ\n" "Gbs0xBHe+dt4uT53QLci4KgnNkHS5lu4XJUCQQCisCvrvcuX4B6BNf+mbPSJKcci\n" "biaJqr4DeyKatoz36mhpw+uAH2yrWRPZEeGtayg4rvf8Jf2TuTOJi9eVWYFBAkEA\n" "uIPzyS81TQsxL6QajpjjI52HPXZcrPOis++Wco0Cf9LnA/tczSpA38iefAETEq94\n" "NxcSycsQ5br97QfyEsgbMQJANTZ/HyMowmDPIC+n9ExdLSrf4JydARSfntFbPsy1\n" "4oC6ciKpRdtAtAtiU8s9eAUSWi7xoaPJzjAHWbmGSHHckg==\n" "-----END RSA PRIVATE KEY-----"; Endpoint = Config::Endpoint; Client = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(publicKey, privateKey), CryptoConfiguration()); BucketName = TestUtils::GetBucketName("cpp-sdk-crypto-versioning"); Client->CreateBucket(BucketName); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucketVersioning(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string Endpoint; }; std::shared_ptr CryptoObjectVersioningTest::Client = nullptr; std::string CryptoObjectVersioningTest::BucketName = ""; std::string CryptoObjectVersioningTest::Endpoint = ""; TEST_F(CryptoObjectVersioningTest, ObjectBasicWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test put, get, head and getmeta auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("ObjectBasicWithVersioningEnableTest"); auto pOutcome = Client->PutObject(BucketName, key, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(etag1, etag2); //head HeadObjectRequest request(BucketName, key); auto hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId2); request.setVersionId(versionId1); hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId1); request.setVersionId(versionId2); hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId2); //Get GetObjectRequest gRequest(BucketName, key); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); gRequest.setVersionId(versionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId1); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gRequest.setVersionId(versionId2); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); auto lOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 1UL); ListObjectVersionsRequest lvRequest(BucketName); lvRequest.setPrefix(key); auto lvOutcome = Client->ListObjectVersions(lvRequest); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 2UL); //Delete DeleteObjectRequest dRequest(BucketName, key); auto dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(dOutcome.result().VersionId().empty(), false); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); auto dversionId = dOutcome.result().VersionId(); //Get simple meta GetObjectMetaRequest gmRequest(BucketName, key); auto gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), false); EXPECT_EQ(gmOutcome.error().Code(), "NoSuchKey"); gmRequest.setVersionId(versionId1); gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId1); gmRequest.setVersionId(versionId2); gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId2); //list agian lOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 0UL); lvRequest.setBucket(BucketName); lvRequest.setPrefix(key); lvOutcome = Client->ListObjectVersions(lvRequest); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 2UL); EXPECT_EQ(lvOutcome.result().DeleteMarkerSummarys().size(), 1UL); //Get agian gOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), false); gRequest.setVersionId(versionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId1); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gRequest.setVersionId(versionId2); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); //delete by version id dRequest.setVersionId(dversionId); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(dOutcome.result().VersionId(), dversionId); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); gmOutcome = Client->GetObjectMeta(BucketName, key); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId2); dRequest.setVersionId(versionId1); EXPECT_EQ(dRequest.VersionId(), versionId1); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId(), versionId1); EXPECT_EQ(dOutcome.result().DeleteMarker(), false); dRequest.setVersionId(versionId2); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId(), versionId2); EXPECT_EQ(dOutcome.result().DeleteMarker(), false); //list again //lvRequest.setBucket(BucketName); //lvRequest.setPrefix(key); lvOutcome = Client->ListObjectVersions(BucketName, key); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 0UL); EXPECT_EQ(lvOutcome.result().DeleteMarkerSummarys().size(), 0UL); } TEST_F(CryptoObjectVersioningTest, ResumableUploadWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //multi-part mode std::string key = TestUtils::GetObjectKey("ResumableUploadWithVersioningEnableTestOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadWithVersioningEnableTestOverPartSize").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(3); auto ruOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(ruOutcome.isSuccess(), true); EXPECT_EQ(ruOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(ruOutcome.result().VersionId().empty(), false); GetObjectRequest gRequest(BucketName, key); gRequest.setVersionId(ruOutcome.result().VersionId()); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), ComputeContentMD5(*gOutcome.result().Content())); RemoveFile(tmpFile); //put object mode std::string key1 = TestUtils::GetObjectKey("ResumableUploadWithVersioningEnableTestUnderPartSize"); std::string tmpFile1 = TestUtils::GetTargetFileName("ResumableUploadWithVersioningEnableTestUnderPartSize").append(".tmp"); num = rand() % 8; TestUtils::WriteRandomDatatoFile(tmpFile1, 10240 * num); UploadObjectRequest request1(BucketName, key1, tmpFile1); request1.setPartSize(100 * 1024); request1.setThreadNum(1); auto ruOutcome1 = Client->ResumableUploadObject(request1); EXPECT_EQ(ruOutcome1.isSuccess(), true); EXPECT_EQ(ruOutcome1.result().RequestId().size(), 24UL); EXPECT_EQ(ruOutcome1.result().VersionId().empty(), false); GetObjectRequest gRequest1(BucketName, key1); gRequest1.setVersionId(ruOutcome1.result().VersionId()); auto gOutcome1 = Client->GetObject(gRequest1); EXPECT_EQ(gOutcome1.isSuccess(), true); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile1), ComputeContentMD5(*gOutcome1.result().Content())); RemoveFile(tmpFile1); } TEST_F(CryptoObjectVersioningTest, ResumableDownloadWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //multi-part mode std::string key = TestUtils::GetObjectKey("ResumableDownloadWithVersioningEnableTestOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestOverPartSize").append(".tmp"); std::string tmpFileDonwload = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestOverPartSize").append(".dat"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto dOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId().empty(), false); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); DownloadObjectRequest rdRequest(BucketName, key, tmpFileDonwload); rdRequest.setPartSize(100 * 1024); rdRequest.setThreadNum(3); auto rdOutcome = Client->ResumableDownloadObject(rdRequest); EXPECT_EQ(rdOutcome.isSuccess(), false); EXPECT_EQ(rdOutcome.error().Code(), "NoSuchKey"); rdRequest.setVersionId(pOutcome.result().VersionId()); rdOutcome = Client->ResumableDownloadObject(rdRequest); EXPECT_EQ(rdOutcome.isSuccess(), true); EXPECT_EQ(rdOutcome.result().VersionId(), pOutcome.result().VersionId()); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), TestUtils::GetFileMd5(tmpFileDonwload)); RemoveFile(tmpFileDonwload); //get object mode std::string tmpFileDonwload1 = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestUnderPartSize").append(".dat"); DownloadObjectRequest rdRequest1(BucketName, key, tmpFileDonwload1); rdRequest1.setPartSize(4 * 1024 * 1024); rdOutcome = Client->ResumableDownloadObject(rdRequest1); EXPECT_EQ(rdOutcome.isSuccess(), false); EXPECT_EQ(rdOutcome.error().Code(), "NoSuchKey"); rdRequest1.setVersionId(pOutcome.result().VersionId()); rdOutcome = Client->ResumableDownloadObject(rdRequest1); EXPECT_EQ(rdOutcome.isSuccess(), true); EXPECT_EQ(rdOutcome.result().VersionId(), pOutcome.result().VersionId()); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), TestUtils::GetFileMd5(tmpFileDonwload1)); RemoveFile(tmpFileDonwload1); RemoveFile(tmpFile); } } } ================================================ FILE: test/src/Encryption/CryptoResumableObjectTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include "src/external/json/json.h" #include #include namespace AlibabaCloud { namespace OSS { class CryptoResumableObjectTest : public::testing::Test { protected: CryptoResumableObjectTest() { } ~CryptoResumableObjectTest()override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { PublicKey = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALpUiB+w+r3v2Fgw0SgMbWl8bnzUVc3t3YbA89H13lrw7v6RUbL8+HGl\n" "s5YGoqD4lObG/sCQyaWd0B/XzOhjlSc1b53nyZhms84MGJ6nF2NQP+1gjY1ByDMK\n" "zeyVFFFvl9prlr6XpuJQlY0F/W4pbjLsk8Px4Qix5AoJbShElUu1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----"; PrivateKey = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXgIBAAKBgQC6VIgfsPq979hYMNEoDG1pfG581FXN7d2GwPPR9d5a8O7+kVGy\n" "/PhxpbOWBqKg+JTmxv7AkMmlndAf18zoY5UnNW+d58mYZrPODBiepxdjUD/tYI2N\n" "QcgzCs3slRRRb5faa5a+l6biUJWNBf1uKW4y7JPD8eEIseQKCW0oRJVLtQIDAQAB\n" "AoGBAJrzWRAhuSLipeMRFZ5cV1B1rdwZKBHMUYCSTTC5amPuIJGKf4p9XI4F4kZM\n" "1klO72TK72dsAIS9rCoO59QJnCpG4CvLYlJ37wA2UbhQ1rBH5dpBD/tv3CUyfdtI\n" "9CLUsZR3DGBWXYwGG0KGMYPExe5Hq3PUH9+QmuO+lXqJO4IBAkEA6iLee6oBzu6v\n" "90zrr4YA9NNr+JvtplpISOiL/XzsU6WmdXjzsFLSsZCeaJKsfdzijYEceXY7zUNa\n" "0/qQh2BKoQJBAMu61rQ5wKtql2oR4ePTSm00/iHoIfdFnBNU+b8uuPXlfwU80OwJ\n" "Gbs0xBHe+dt4uT53QLci4KgnNkHS5lu4XJUCQQCisCvrvcuX4B6BNf+mbPSJKcci\n" "biaJqr4DeyKatoz36mhpw+uAH2yrWRPZEeGtayg4rvf8Jf2TuTOJi9eVWYFBAkEA\n" "uIPzyS81TQsxL6QajpjjI52HPXZcrPOis++Wco0Cf9LnA/tczSpA38iefAETEq94\n" "NxcSycsQ5br97QfyEsgbMQJANTZ/HyMowmDPIC+n9ExdLSrf4JydARSfntFbPsy1\n" "4oC6ciKpRdtAtAtiU8s9eAUSWi7xoaPJzjAHWbmGSHHckg==\n" "-----END RSA PRIVATE KEY-----"; Description["comment"] = "rsa test"; Description["provider"] = "aliclould"; Endpoint = Config::Endpoint; Client = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(PublicKey, PrivateKey, Description), CryptoConfiguration()); UnEncryptionClient = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); BucketName = TestUtils::GetBucketName("cpp-sdk-crypto-resumableobject"); Client->CreateBucket(CreateBucketRequest(BucketName)); UploadPartFailedFlag = 1 << 30; DownloadPartFailedFlag = 1 << 30; CopyPartFailedFlag = 1 << 30; } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static std::string GetCheckpointFileByResumableUploader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath); static std::string GetCheckpointFileByResumableDownloader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath); static std::string GetCheckpointFileByResumableCopier(std::string bucket, std::string key, std::string srcBucket, std::string srcKey, std::string checkpointDir); static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData); public: static std::shared_ptr Client; static std::shared_ptr UnEncryptionClient; static std::string BucketName; static int UploadPartFailedFlag; static int DownloadPartFailedFlag; static int CopyPartFailedFlag; static std::string PublicKey; static std::string PrivateKey; static std::map Description; static std::string Endpoint; class Timer { public: Timer() : begin_(std::chrono::high_resolution_clock::now()) {} void reset() { begin_ = std::chrono::high_resolution_clock::now(); } int64_t elapsed() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } private: std::chrono::time_point begin_; }; }; std::string CryptoResumableObjectTest::GetCheckpointFileByResumableUploader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(filePath) + "--" + ComputeContentETag(destPath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } std::string CryptoResumableObjectTest::GetCheckpointFileByResumableDownloader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto srcPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(filePath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } std::string CryptoResumableObjectTest::GetCheckpointFileByResumableCopier(std::string bucket, std::string key, std::string srcBucket, std::string srcKey, std::string checkpointDir) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << srcBucket << "/" << srcKey; auto srcPath = ss.str(); ss.str(""); ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } void CryptoResumableObjectTest::ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { std::cout << "ProgressCallback[" << userData << "] => " << increment << "," << transfered << "," << total << std::endl; } std::shared_ptr CryptoResumableObjectTest::Client = nullptr; std::shared_ptr CryptoResumableObjectTest::UnEncryptionClient = nullptr; std::string CryptoResumableObjectTest::BucketName = ""; int CryptoResumableObjectTest::UploadPartFailedFlag = 0; int CryptoResumableObjectTest::DownloadPartFailedFlag = 0; int CryptoResumableObjectTest::CopyPartFailedFlag = 0; std::string CryptoResumableObjectTest::PublicKey = ""; std::string CryptoResumableObjectTest::PrivateKey = ""; std::map CryptoResumableObjectTest::Description = std::map(); std::string CryptoResumableObjectTest::Endpoint = ""; TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithSizeOverPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectOverPartSize").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(getObjectOutcome.isSuccess(), true); auto getoutcome = Client->GetObject(GetObjectRequest(BucketName, key)); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithSizeUnderPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSize").append(".tmp"); int num = rand() % 8; TestUtils::WriteRandomDatatoFile(tmpFile, 10240 * num); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableObjectWithDisableRequest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithDisableRequest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); Client->DisableRequest(); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); Client->EnableRequest(); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadWithSizeOverPartSizeTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectOverPartSize").append(".tmp"); int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadSetMinPartSizeTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectSetMinPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectSetMinPartSize").append(".tmp"); int num = 1 + rand() % 20; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int partSize = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(partSize * 102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableUploadWithoutSourceFilePathTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePath"); std::string tmpFile; UploadObjectRequest request(BucketName, key, tmpFile); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(CryptoResumableObjectTest, UnnormalResumableUploadWithoutRealFileTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutRealFile"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutRealFile").append(".tmp"); UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(CryptoResumableObjectTest, UnnormalResumableUploadWithNotExitsCheckpointTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithNotExitsCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithNotExitsCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 100); std::string checkPoint = "NotExistDir"; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkPoint); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setCheckpointDir(checkpointDir); request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableUploadWithFailedPartUploadTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(1024); auto failOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(failOutcome.isSuccess(), false); request.setPartSize(102400); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadRetryAfterFailedPartTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadRetryAfterFailedPartTest) { std::string key = TestUtils::GetObjectKey("NormalMultiUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("NormalMultiUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadRetryWithSourceFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithSourceFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithSourceFileChanged").append(".tmp"); int num = 2 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); request.setPartSize(102400); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change source file EXPECT_EQ(RemoveFile(tmpFile), true); // TODO: API only check file size, don't check the contents of file TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (num + 1)); std::string newSourceFileMd5 = TestUtils::GetFileMd5(tmpFile); EXPECT_NE(sourceFileMd5, newSourceFileMd5); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download target object std::string targetFile = TestUtils::GetObjectKey("DownloadResumableUploadObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(targetFileMd5, newSourceFileMd5); EXPECT_NE(targetFileMd5, sourceFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadRetryWithSourceFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithSourceFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithSourceFileChanged").append(".tmp"); int num = 2 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile, checkpointKey, 102400, threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change source file EXPECT_EQ(RemoveFile(tmpFile), true); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 100); std::string newSourceFileMd5 = TestUtils::GetFileMd5(tmpFile); EXPECT_NE(sourceFileMd5, newSourceFileMd5); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::string targetFile = TestUtils::GetObjectKey("DownloadResumableUploadObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(targetFileMd5, newSourceFileMd5); EXPECT_NE(targetFileMd5, sourceFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFilename = GetCheckpointFileByResumableUploader(BucketName, key, checkpointKey, tmpFile); std::string checkpointTmpFile = std::string(checkpointFilename).append(".tmp"); std::ifstream jsonStream(checkpointFilename, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadId = "InvaliedUploadID"; //if (reader.parse(jsonStream, readRoot)) { if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadId; writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["size"] = readRoot["size"].asInt64(); writeRoot["partSize"] = readRoot["partSize"].asInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFilename), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFilename), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile, checkpointKey, 102400, threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFilename = GetCheckpointFileByResumableUploader(BucketName, key, checkpointKey, tmpFile); std::string checkpointTmpFile = std::string(checkpointFilename).append(".tmp"); std::ifstream jsonStream(checkpointFilename, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadId = "InvaliedUploadID"; //if (reader.parse(jsonStream, readRoot)) { if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadId; writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["size"] = readRoot["size"].asInt64(); writeRoot["partSize"] = readRoot["partSize"].asInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFilename), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFilename), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithProgressCallbackTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); TransferProgress progressCallback = { ProgressCallback, this }; UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); request = UploadObjectRequest(BucketName, key, tmpFile, checkpointDir, 10240000, 1); request.setTransferProgress(progressCallback); outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadProgressCallbackWithUploadPartFailedTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); TransferProgress progressCallback = { ProgressCallback, this }; UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry std::cout << "Retry : " << std::endl; request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, MultiResumableUploadWithThreadNumberOverPartNumber) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithThreadNumberOverPartNumber"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithThreadNumberOverPartNumber").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); int threadNum = 0; UploadObjectRequest request(BucketName, key, tmpFile, ""); request.setPartSize(102400); request.setThreadNum(threadNum); auto invalidateOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(invalidateOutcome.isSuccess(), false); // the thread num over part num threadNum = 20; request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithObjectMetaDataSetTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithObjectMetaDateSetTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithObjectMetaDateSetTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); ObjectMetaData meta; meta.setCacheControl("No-Cache"); meta.setExpirationTime("Fri, 09 Nov 2018 05:57:16 GMT"); // upload object UploadObjectRequest request(BucketName, key, tmpFile, "", meta); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().CacheControl(), "No-Cache"); EXPECT_EQ(hOutcome.result().ExpirationTime(), "Fri, 09 Nov 2018 05:57:16 GMT"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithUserMetaDataTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithUserDataTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithUserDataTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); // upload object ObjectMetaData metaDate; metaDate.UserMetaData()["test"] = "testvalue"; UploadObjectRequest request(BucketName, key, tmpFile, "", 102400, 1, metaDate); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithObjectAclSetTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithObjectAclSetTest"); std::string tmpFile = TestUtils::GetTargetFileName("").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); // upload object UploadObjectRequest request(BucketName, key, tmpFile, "", 102400, 1); CannedAccessControlList acl = CannedAccessControlList::PublicReadWrite; request.setAcl(acl); request.setEncodingType("url"); EXPECT_EQ(request.EncodingType(), "url"); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, key)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithNon16AlignmentPartSizeTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadWithNon16AlignmentPartSizeTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadWithNon16AlignmentPartSizeTest").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024 + 3); request.setThreadNum(3); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); auto value = getObjectOutcome.result().Metadata().UserMetaData().at("client-side-encryption-part-size"); EXPECT_EQ("102400", value); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableUploadWithContentMD5Test) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadWithContentMD5Test"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadWithContentMD5Test").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); file.close(); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(200 * 1024); request.setThreadNum(3); request.MetaData().setContentMd5(oriMd5); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); auto unencryptedMd5 = getObjectOutcome.result().Metadata().UserMetaData().at("client-side-encryption-unencrypted-content-md5"); EXPECT_EQ(unencryptedMd5, memMd5); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableDownloadObjectWithDisableRequest) { // upload object std::string key = TestUtils::GetObjectKey("UnnormalResumableDownloadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalResumableDownloadObjectWithDisableRequest").append(".tmp"); std::string targetKey = TestUtils::GetObjectKey("UnnormalResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (1 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); // download object Client->DisableRequest(); DownloadObjectRequest request(BucketName, key, targetKey); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(targetKey.append(".temp")); Client->EnableRequest(); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithSizeOverPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectOverPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithSizeUnderPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectUnderPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 10 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, MultiResumableDownloadWithSizeOverPartSizeTest) { // upload std::string key = TestUtils::GetObjectKey("MultiResumableDownloadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("MultiResumableDownloadObjectOverPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 100; auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(uploadOutcome.result().VersionId().empty(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadSetMinPartSizeTest) { // upload std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectSetMinPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectSetMinPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(uploadOutcome.result().VersionId().empty(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download int partSize = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(partSize * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); request.setPartSize(102400); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableDownloadWithoutTargetFilePathTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePath"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutFilePath").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1)); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::string targetFile; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableDownloadWithNotExitsCheckpointTest) { std::string key = TestUtils::GetObjectKey("UnnormalDownloadObjectWithNotExistCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalDownloadObjectWithNotExistCheckpoint").append(".tmp"); std::string checkpointDir = "NotExistDir"; std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); std::shared_ptr content = nullptr; outcome.result().setContent(content); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.isSuccess(), false); RemoveFile(targetFile.append(".temp")); RemoveFile(tmpFile); } TEST_F(CryptoResumableObjectTest, MultiResumableDownloadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download int threadNum = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CryptoResumableObjectTest, UnnormalResumableDownloadWithDownloadPartFailedTest) { std::string key = TestUtils::GetObjectKey("UnnormalDownloadObjectWithPartFailed"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalDownloadObjectWithPartFailed").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string failedDownloadFile = targetFile.append(".temp"); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(failedDownloadFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, MultiResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object int threadNum = 1 + rand() % 100; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadRetryWithSourceObjectDeletedTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithSourceObjectDeleted"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithSourceObjectDeleted").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // put object auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // delete source object auto deleteObjectOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(deleteObjectOutcome.isSuccess(), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), false); std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile.append(".temp")), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string invaliedKey = "InvaliedKey"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = invaliedKey; writeRoot["filePath"] = readRoot["filePath"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["sizesize"] = readRoot["size"].asUInt64(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); for (uint32_t i = 0; i < readRoot["parts"].size(); i++) { Json::Value partValue = readRoot["parts"][i]; writeRoot["parts"][i]["partNumber"] = partValue["partNumber"].asInt(); writeRoot["parts"][i]["size"] = partValue["size"].asInt64(); writeRoot["parts"][i]["crc64"] = partValue["crc64"].asUInt64(); } writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); if (readRoot["rangeStart"] != Json::nullValue && readRoot["rangeEnd"] != Json::nullValue) { writeRoot["rangeStart"] = readRoot["rangeStart"].asInt64(); writeRoot["rangeEnd"] = readRoot["rangeEnd"].asInt64(); } } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(retryOutcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(sourceFileMd5, targetFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, MultiResumableDownloadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectRetryWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectRetryWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object int threadNum = 1 + rand() % 100; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string invaliedKey = "InvaliedKey"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = invaliedKey; writeRoot["filePath"] = readRoot["filePath"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["sizesize"] = readRoot["size"].asUInt64(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); for (uint32_t i = 0; i < readRoot["parts"].size(); i++) { Json::Value partValue = readRoot["parts"][i]; writeRoot["parts"][i]["partNumber"] = partValue["partNumber"].asInt(); writeRoot["parts"][i]["size"] = partValue["size"].asInt64(); writeRoot["parts"][i]["crc64"] = partValue["crc64"].asUInt64(); } writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); if (readRoot["rangeStart"] != Json::nullValue && readRoot["rangeEnd"] != Json::nullValue) { writeRoot["rangeStart"] = readRoot["rangeStart"].asInt64(); writeRoot["rangeEnd"] = readRoot["rangeEnd"].asInt64(); } } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(retryOutcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(sourceFileMd5, targetFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithProgressCallbackTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithProgressCallback"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithProgressCallback"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setTransferProgress(progressCallback); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_EQ(RemoveFile(targetKey), true); std::string targetKey1 = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithProgressCallback"); request = DownloadObjectRequest(BucketName, sourceKey, targetKey1); request.setTransferProgress(progressCallback); request.setPartSize(10240000); outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey1), ComputeContentMD5(*putObjectContent)); EXPECT_EQ(RemoveFile(targetKey1), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadProgressCallbackWithDownloadPartFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectProgressCallbackWithPartFailed"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectProgressCallbackWithPartFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setCheckpointDir(checkpointDir); request.setTransferProgress(progressCallback); request.setFlags(request.Flags() | DownloadPartFailedFlag); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); std::cout << "Retry : " << std::endl; request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(retryOutcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_NE(TestUtils::GetFileCRC64(targetKey), outcome.result().Metadata().CRC64()); EXPECT_EQ(RemoveFile(targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithRangeLength"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithRangeLength"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(20, 30); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), 30 - 20 + 1); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); std::string targetKey1 = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithRangeLength1"); request = DownloadObjectRequest(BucketName, sourceKey, targetKey1); request.setPartSize(10240000); request.setRange(20, 30); auto outcome1 = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome1.isSuccess(), true); EXPECT_EQ(outcome1.result().Metadata().ContentLength(), 30 - 20 + 1); EXPECT_EQ(outcome1.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), TestUtils::GetFileMd5(targetKey1)); EXPECT_EQ(RemoveFile(targetKey), true); EXPECT_EQ(RemoveFile(targetKey1), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithErrorRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithErrorRangeLength"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithErrorRangeLength"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(20, -1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(RemoveFile(targetKey), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length - 20); } TEST_F(CryptoResumableObjectTest, UnnormalResumableDownloadWithErrorRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalDownloadSourceObjectWithErrorRangeLength"); std::string targetKey = TestUtils::GetObjectKey("UnnormalDownloadTargetObjectWithErrorRangeLength"); auto putObjectContent = TestUtils::GetRandomStream(102400 * 2); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(102400, 20); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(CryptoResumableObjectTest, MultiResumableDwoanloadWithThreadNumberOverPartNumber) { std::string sourceKey = TestUtils::GetObjectKey("MultiDownloadSourceObjectWithThreadNumberOverPartNumber"); std::string targetKey = TestUtils::GetObjectKey("MultiDownloadTargetObjectWithThreadNumberOverPartNumber"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download int threadNum = 0; DownloadObjectRequest request(BucketName, sourceKey, targetKey, ""); request.setPartSize(102400); request.setThreadNum(threadNum); auto invalidateOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(invalidateOutcome.isSuccess(), false); threadNum = 20; request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_NE(TestUtils::GetFileCRC64(targetKey), outcome.result().Metadata().CRC64()); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDwoanloadWithResponseHeadersSetTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiDownloadSourceObjectWithResponseHeadersSetTest"); std::string targetKey = TestUtils::GetObjectKey("MultiDownloadTargetObjectWithResponseHeadersSetTest"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setThreadNum(1); request.addResponseHeaders(RequestResponseHeader::CacheControl, "max-age=3"); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CacheControl(), "max-age=3"); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_NE(TestUtils::GetFileCRC64(targetKey), outcome.result().Metadata().CRC64()); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithModifiedSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithModifiedSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithModifiedSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); // error set Modified-Since time request.setModifiedSinceConstraint(TestUtils::GetGMTString(100)); auto modifiedOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(modifiedOutcome.isSuccess(), false); EXPECT_EQ(modifiedOutcome.error().Code(), "ServerError:304"); // error set Unmodified-Since time request.setModifiedSinceConstraint(TestUtils::GetGMTString(0)); request.setUnmodifiedSinceConstraint(TestUtils::GetGMTString(-100)); auto unmodifiedOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(unmodifiedOutcome.isSuccess(), false); EXPECT_EQ(unmodifiedOutcome.error().Code(), "PreconditionFailed"); // normal download request.setModifiedSinceConstraint(TestUtils::GetGMTString(-100)); request.setUnmodifiedSinceConstraint(TestUtils::GetGMTString(100)); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_NE(TestUtils::GetFileCRC64(targetKey), outcome.result().Metadata().CRC64()); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDownloadWithMatchSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithMatchSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithMatchSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); auto hOutcom = Client->HeadObject(BucketName, sourceKey); EXPECT_EQ(hOutcom.isSuccess(), true); std::string realETag = hOutcom.result().ETag(); std::vector eTagMatchList; std::vector eTagNoneMatchList; // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); // error set If-Match eTagMatchList.push_back("invalidateETag"); request.setMatchingETagConstraints(eTagMatchList); auto matchOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(matchOutcome.isSuccess(), false); EXPECT_EQ(matchOutcome.error().Code(), "PreconditionFailed"); // error set If-None-Match eTagMatchList.clear(); eTagNoneMatchList.push_back(realETag); request.setMatchingETagConstraints(eTagMatchList); request.setNonmatchingETagConstraints(eTagNoneMatchList); auto noneMatchOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(noneMatchOutcome.isSuccess(), false); EXPECT_EQ(noneMatchOutcome.error().Code(), "ServerError:304"); // normal download eTagNoneMatchList.clear(); eTagMatchList.push_back(realETag); eTagNoneMatchList.push_back("invalidateETag"); request.setMatchingETagConstraints(eTagMatchList); request.setNonmatchingETagConstraints(eTagNoneMatchList); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), hOutcom.result().ContentLength()); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_NE(TestUtils::GetFileCRC64(targetKey), outcome.result().Metadata().CRC64()); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, NormalResumableDwoanloadWithoutCRCCheckTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalResumableDwoanloadWithoutCRCCheckTest"); std::string targetKey = TestUtils::GetObjectKey("NormalResumableDwoanloadWithoutCRCCheckTest"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download ClientConfiguration conf; conf.enableCrc64 = false; auto client = std::make_shared(Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration(), std::make_shared(PublicKey, PrivateKey, Description), CryptoConfiguration()); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setThreadNum(1); request.addResponseHeaders(RequestResponseHeader::CacheControl, "max-age=3"); auto outcome = client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CacheControl(), "max-age=3"); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, ResumableDwoanloadWithUnEncryptedObjectTest) { std::string sourceKey = TestUtils::GetObjectKey("ResumableDwoanloadWithUnEncryptedObjectTest"); std::string targetKey = TestUtils::GetObjectKey("NormalResumableDwoanloadWithoutCRCCheckTest"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = UnEncryptionClient->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); auto hOutcome = UnEncryptionClient->HeadObject(BucketName, sourceKey); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().hasUserHeader("client-side-encryption-key"), false); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length); EXPECT_EQ(outcome.result().Metadata().hasUserHeader("client-side-encryption-key"), false); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), ComputeContentMD5(*putObjectContent)); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(CryptoResumableObjectTest, ResumableUploadAndDownloadTrafficLimitTest) { Timer timer; std::string key = TestUtils::GetObjectKey("ResumableUploadAndDownloadTrafficLimitTest"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadAndDownloadTrafficLimitTest").append(".tmp"); /*set content 800 KB*/ TestUtils::WriteRandomDatatoFile(tmpFile, 800 * 1024); //upload UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(10240000); /* set upload traffic limit 200KB/s*/ request.setTrafficLimit(819200 * 2); auto theory_time = (800 * 1024 * 8) / (819200 * 2); timer.reset(); auto uOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(uOutcome.isSuccess(), true); auto diff_put = timer.elapsed(); EXPECT_NEAR((double)diff_put, (double)theory_time, 1.0); //download std::string targetKey = TestUtils::GetObjectKey("ResumableUploadAndDownloadTrafficLimitTest"); DownloadObjectRequest dRequest(BucketName, key, targetKey); dRequest.setTrafficLimit(8192000); dRequest.setPartSize(10240000); auto dOutcome = Client->ResumableDownloadObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().Metadata().ContentLength(), 800 * 1024); EXPECT_EQ(dOutcome.result().Metadata().hasHeader("x-oss-qos-delay-time"), true); EXPECT_EQ(dOutcome.result().Metadata().hasUserHeader("client-side-encryption-key"), true); EXPECT_EQ(TestUtils::GetFileMd5(targetKey), TestUtils::GetFileMd5(tmpFile)); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetKey), true); } } } ================================================ FILE: test/src/Encryption/CryptoStreamBufTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include namespace AlibabaCloud { namespace OSS { class CryptoStreamBufTest : public ::testing::Test { protected: CryptoStreamBufTest() { } ~CryptoStreamBufTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { } void SetUp() override { } void TearDown() override { } public: }; TEST_F(CryptoStreamBufTest, EncryptBufferTest) { auto key = ByteBuffer(32); auto iv = ByteBuffer(16); memcpy((void *)key.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); cipher->EncryptInit(key, iv); auto content = std::make_shared(); *content << "11223344556677889900aabbccddeeffb"; CryptoStreamBuf cryptoStream(*content, cipher, key, iv); unsigned char encoded[] = { 0xc2, 0xba, 0xef, 0x5f, 0x21, 0xa2, 0x55, 0x8b, 0x2d, 0x5a, 0x1a, 0xe2, 0xd5, 0x0f, 0xcf, 0x0b, 0xa3, 0x00, 0x36, 0xa8, 0xf5, 0x79, 0x03, 0xaa, 0x4c, 0xc5, 0x65, 0xbb, 0x67, 0x0a, 0x07, 0x14, 0x9d }; const int test_size = sizeof(encoded) / sizeof(encoded[0]); char buff[256]; //content->read(buff, 128); //EXPECT_EQ(33, content->gcount()); //read n byte by step //int step = 1; for (auto step = 1; step < test_size; step++) { int size = 0; memset(buff, 0, sizeof(buff) / sizeof(buff[0])); for (int offset = 0; offset < test_size; offset += step) { content->read(buff + offset, step); size += static_cast(content->gcount()); } EXPECT_EQ(size, test_size); EXPECT_TRUE(TestUtils::IsByteBufferEQ((char *)encoded, buff, test_size)); content->clear(); content->seekg(0, content->beg); } //seek to x offset and read n byte for (int n = 1; n < test_size; n++) { for (int offset = 0; offset < test_size; offset++) { memset(buff, 1, sizeof(buff) / sizeof(buff[0])); content->clear(); content->seekg(offset, content->beg); content->read(buff + offset, n); int size = static_cast(content->gcount()); EXPECT_TRUE(TestUtils::IsByteBufferEQ((char *)encoded + offset, buff + offset, size)); } } } TEST_F(CryptoStreamBufTest, DecryptBufferTest) { auto key = ByteBuffer(32); auto iv = ByteBuffer(16); memcpy((void *)key.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); unsigned char encoded[] = { 0xc2, 0xba, 0xef, 0x5f, 0x21, 0xa2, 0x55, 0x8b, 0x2d, 0x5a, 0x1a, 0xe2, 0xd5, 0x0f, 0xcf, 0x0b, 0xa3, 0x00, 0x36, 0xa8, 0xf5, 0x79, 0x03, 0xaa, 0x4c, 0xc5, 0x65, 0xbb, 0x67, 0x0a, 0x07, 0x14, 0x9d }; const int test_size = sizeof(encoded) / sizeof(encoded[0]); for (auto step = 1; step <= test_size; step++) { std::string out; auto content = std::make_shared(); auto cryptoStreamBuff = std::make_shared< CryptoStreamBuf>(*content, cipher, key, iv); for (auto i = 0; i < test_size;) { auto writeCnt = std::min(step, test_size - i); content->write((const char*)encoded + i, writeCnt); i += writeCnt; } cryptoStreamBuff = nullptr; *content >> out; EXPECT_EQ(out, "11223344556677889900aabbccddeeffb"); } } TEST_F(CryptoStreamBufTest, DecryptBufferWithSkipCntTest) { auto key = ByteBuffer(32); auto iv = ByteBuffer(16); memcpy((void *)key.data(), (void *)("12345678901234561234567890123456"), 32); memcpy((void *)iv.data(), (void *)("1234567890123456"), 16); auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); unsigned char encoded[] = { 0xc2, 0xba, 0xef, 0x5f, 0x21, 0xa2, 0x55, 0x8b, 0x2d, 0x5a, 0x1a, 0xe2, 0xd5, 0x0f, 0xcf, 0x0b, 0xa3, 0x00, 0x36, 0xa8, 0xf5, 0x79, 0x03, 0xaa, 0x4c, 0xc5, 0x65, 0xbb, 0x67, 0x0a, 0x07, 0x14, 0x9d }; const int test_size = sizeof(encoded) / sizeof(encoded[0]); std::string pattern = "11223344556677889900aabbccddeeffb"; for (auto skip = 0; skip <= CryptoStreamBuf::BLK_SIZE; skip++) { for (auto step = 1; step <= test_size; step++) { std::string out; auto content = std::make_shared(); auto cryptoStreamBuff = std::make_shared< CryptoStreamBuf>(*content, cipher, key, iv, skip); for (auto i = 0; i < test_size;) { auto writeCnt = std::min(step, test_size - i); content->write((const char*)(encoded) + i, writeCnt); i += writeCnt; } cryptoStreamBuff = nullptr; *content >> out; EXPECT_EQ(out, pattern.substr(skip)); } } } TEST_F(CryptoStreamBufTest, CryptoStreamTest) { auto cipher = SymmetricCipher::CreateAES256_CTRImpl(); auto content = std::make_shared("", std::ios_base::out | std::ios_base::in | std::ios_base::trunc | std::ios_base::binary); auto cryptoStream = std::make_shared(*content, cipher, ByteBuffer(32), ByteBuffer(16)); cryptoStream = nullptr; } } } ================================================ FILE: test/src/LiveChannel/DeleteLiveChannelTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class DeleteLiveChannelTest : public ::testing::Test { protected: DeleteLiveChannelTest() { } ~DeleteLiveChannelTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-delete-live-channel"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr DeleteLiveChannelTest::Client = nullptr; std::string DeleteLiveChannelTest::BucketName = ""; TEST_F(DeleteLiveChannelTest, DeleteLiveChannelErrorParam) { std::string channelName = "not_exist"; DeleteLiveChannelRequest request(BucketName, channelName); auto deleteOutcome = Client->DeleteLiveChannel(request); // with http code 204 No Content EXPECT_EQ(deleteOutcome.isSuccess(), true); DeleteLiveChannelRequest request2(BucketName, channelName+"/test"); deleteOutcome = Client->DeleteLiveChannel(request2); EXPECT_EQ(deleteOutcome.isSuccess(), false); } } } ================================================ FILE: test/src/LiveChannel/GenerateRTMPSignatrueUrlTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class GenerateRTMPSignatureUrlTest : public ::testing::Test { protected: GenerateRTMPSignatureUrlTest() { } ~GenerateRTMPSignatureUrlTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-delete-live-channel"); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr GenerateRTMPSignatureUrlTest::Client = nullptr; std::string GenerateRTMPSignatureUrlTest::BucketName = ""; TEST_F(GenerateRTMPSignatureUrlTest, GenerateRTMPSignatureUrlUT) { std::string channelName = "not_exist"; GenerateRTMPSignedUrlRequest request(BucketName, channelName, "", 0); EXPECT_EQ(request.PlayList(), ""); EXPECT_EQ(request.Expires(), 0U); request.setPlayList("test.m3u8"); EXPECT_EQ(request.PlayList(), "test.m3u8"); time_t tExpire = time(nullptr) + 15 * 60; request.setExpires(tExpire); EXPECT_EQ(request.Expires(), (uint64_t)tExpire); auto generateOutcome = Client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), true); EXPECT_EQ(generateOutcome.result().empty(), false); std::string signedURL = generateOutcome.result(); EXPECT_TRUE(signedURL.find("playlistName") != std::string::npos); } TEST_F(GenerateRTMPSignatureUrlTest, GenerateRTMPSignatureUrlUT2) { // v1 auto conf = ClientConfiguration(); auto client = std::make_shared(Config::Endpoint, "ak", "sk", conf); GenerateRTMPSignedUrlRequest request("cpp-sdk-live-channel-bucket", "channel", "", 0); request.setPlayList("test.m3u8"); time_t tExpire = (time_t)1706289617; request.setExpires(tExpire); EXPECT_EQ(request.Expires(), (uint64_t)tExpire); auto generateOutcome = client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), true); EXPECT_EQ(generateOutcome.result().empty(), false); std::string path = "/live/channel?Expires=1706289617&OSSAccessKeyId=ak&Signature=Y1LCM2PzyECssQhTdi%2BGKra7iXE%3D&playlistName=test.m3u8"; std::string signedURL = generateOutcome.result(); EXPECT_TRUE(signedURL.find(path) != std::string::npos); // v4 auto conf1 = ClientConfiguration(); conf1.signatureVersion = SignatureVersionType::V4; auto client1 = std::make_shared(Config::Endpoint, "ak", "sk", conf1); auto generateOutcome1 = client1->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome1.isSuccess(), true); EXPECT_EQ(generateOutcome1.result().empty(), false); std::string signedURL1 = generateOutcome1.result(); EXPECT_TRUE(signedURL1.find(path) != std::string::npos); } TEST_F(GenerateRTMPSignatureUrlTest, GenerateRTMPSignatureUrlInvalidBucketTest) { GenerateRTMPSignedUrlRequest request("Invalid-bucket-test", "channel-name", "playlist.m3u8", 1000); auto generateOutcome = Client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), false); EXPECT_EQ(generateOutcome.error().Code(), "ValidateError"); //channel invalid request.setBucket(BucketName); request.setChannelName(""); request.setPlayList("playlist.m3u8"); request.setExpires(1000); generateOutcome = Client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), false); EXPECT_EQ(generateOutcome.error().Code(), "ValidateError"); request.setBucket(BucketName); request.setChannelName("chanelname"); request.setPlayList(""); request.setExpires(1000); generateOutcome = Client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), false); EXPECT_EQ(generateOutcome.error().Code(), "ValidateError"); request.setBucket(BucketName); request.setChannelName("chanelname"); request.setPlayList("playlist.m3u8"); request.setExpires(0); generateOutcome = Client->GenerateRTMPSignedUrl(request); EXPECT_EQ(generateOutcome.isSuccess(), false); EXPECT_EQ(generateOutcome.error().Code(), "ValidateError"); } TEST_F(GenerateRTMPSignatureUrlTest, GenerateRTMPSignedUrlRequestBranchTest) { std::string str; GenerateRTMPSignedUrlRequest request("INVALIDNAME", "test", str, 0); Client->GenerateRTMPSignedUrl(request); } } } ================================================ FILE: test/src/LiveChannel/GetLiveChannelHistoryTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class GetLiveChannelHistoryTest : public ::testing::Test { protected: GetLiveChannelHistoryTest() { } ~GetLiveChannelHistoryTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-get-live-channel-history"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr GetLiveChannelHistoryTest::Client = nullptr; std::string GetLiveChannelHistoryTest::BucketName = ""; TEST_F(GetLiveChannelHistoryTest, GetLiveChannelHistoryGetTest) { std::string channelName = "test-channel"; PutLiveChannelRequest request(BucketName, channelName, "HLS"); auto putOutcome = Client->PutLiveChannel(request); EXPECT_EQ(putOutcome.isSuccess(), true); GetLiveChannelHistoryRequest request2(BucketName, channelName); auto getOutcome = Client->GetLiveChannelHistory(request2); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().LiveRecordList().size(), 0u); GetLiveChannelHistoryRequest request3(BucketName, "not_exist"); auto getOutcome2 = Client->GetLiveChannelHistory(request3); EXPECT_EQ(getOutcome2.isSuccess(), false); EXPECT_EQ(getOutcome2.result().LiveRecordList().size(), 0u); } TEST_F(GetLiveChannelHistoryTest, GetLiveChannelHistoryWithInvalidResponseBodyTest) { std::string channelName = "test-channel1"; PutLiveChannelRequest request(BucketName, channelName, "HLS"); auto putOutcome = Client->PutLiveChannel(request); EXPECT_EQ(putOutcome.isSuccess(), true); GetLiveChannelHistoryRequest request2(BucketName, channelName); request2.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto getOutcome = Client->GetLiveChannelHistory(request2); EXPECT_EQ(getOutcome.isSuccess(), false); EXPECT_EQ(getOutcome.error().Code(), "GetLiveChannelStatError"); } TEST_F(GetLiveChannelHistoryTest, GetLiveChannelHistoryResultTest) { std::string xml = R"( 2016-07-30T01:53:21.000Z 2016-07-30T01:53:31.000Z 10.101.194.148:56861 2016-07-30T01:53:35.000Z 2016-07-30T01:53:45.000Z 10.101.194.148:57126 2016-07-30T01:53:49.000Z 2016-07-30T01:53:59.000Z 10.101.194.148:57577 2016-07-30T01:54:04.000Z 2016-07-30T01:54:14.000Z 10.101.194.148:57632 )"; GetLiveChannelHistoryResult result(xml); std::vectorvec = result.LiveRecordList(); EXPECT_EQ(vec.size(), 4u); EXPECT_EQ(vec[0].startTime, "2016-07-30T01:53:21.000Z"); EXPECT_EQ(vec[0].endTime, "2016-07-30T01:53:31.000Z"); EXPECT_EQ(vec[0].remoteAddr, "10.101.194.148:56861"); EXPECT_EQ(vec[1].startTime, "2016-07-30T01:53:35.000Z"); EXPECT_EQ(vec[1].endTime, "2016-07-30T01:53:45.000Z"); EXPECT_EQ(vec[1].remoteAddr, "10.101.194.148:57126"); EXPECT_EQ(vec[2].startTime, "2016-07-30T01:53:49.000Z"); EXPECT_EQ(vec[2].endTime, "2016-07-30T01:53:59.000Z"); EXPECT_EQ(vec[2].remoteAddr, "10.101.194.148:57577"); EXPECT_EQ(vec[3].startTime, "2016-07-30T01:54:04.000Z"); EXPECT_EQ(vec[3].endTime, "2016-07-30T01:54:14.000Z"); EXPECT_EQ(vec[3].remoteAddr, "10.101.194.148:57632"); xml = R"( )"; GetLiveChannelHistoryResult result2(xml); EXPECT_EQ(result2.LiveRecordList().empty(), true); } TEST_F(GetLiveChannelHistoryTest, GetLiveChannelHistoryResultBranchTest) { GetLiveChannelHistoryResult result("test"); std::string xml = R"( 2016-07-30T01:53:21.000Z 2016-07-30T01:53:31.000Z 10.101.194.148:56861 )"; GetLiveChannelHistoryResult result1(xml); xml = R"( )"; GetLiveChannelHistoryResult result2(xml); xml = R"( )"; GetLiveChannelHistoryResult result3(xml); xml = R"( )"; GetLiveChannelHistoryResult result4(xml); xml = R"()"; GetLiveChannelHistoryResult result5(xml); } } } ================================================ FILE: test/src/LiveChannel/ListLiveChannelTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class ListLiveChannelTest : public ::testing::Test { protected: ListLiveChannelTest() { } ~ListLiveChannelTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-list-live-channel"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ListLiveChannelTest::Client = nullptr; std::string ListLiveChannelTest::BucketName = ""; TEST_F(ListLiveChannelTest, ListLiveChannelListTest) { ListLiveChannelRequest request(BucketName); auto listOutcome = Client->ListLiveChannel(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().LiveChannelList().size(), 0u); std::string channelName = "test_channel"; PutLiveChannelRequest request2(BucketName, channelName, "HLS"); auto putOutcome = Client->PutLiveChannel(request2); EXPECT_EQ(putOutcome.isSuccess(), true); listOutcome = Client->ListLiveChannel(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().LiveChannelList().size(), 1u); std::vector vec = listOutcome.result().LiveChannelList(); EXPECT_EQ(vec[0].name, "test_channel"); EXPECT_EQ(vec[0].description, ""); EXPECT_EQ(vec[0].status, "enabled"); EXPECT_EQ(vec[0].lastModified.empty(), false); EXPECT_EQ(vec[0].publishUrl.empty(), false); EXPECT_EQ(vec[0].playUrl.empty(), false); // ListLiveChannelRequest request3(BucketName); request3.setMaxKeys(1001u); listOutcome = Client->ListLiveChannel(request3); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "ValidateError"); EXPECT_EQ(listOutcome.error().Message(), "The Max Key param is invalid, it's default valus is 100, and smaller than 1000"); // ListLiveChannelRequest request4(BucketName); request4.setMarker("/"); request4.setPrefix("test_test"); request4.setMaxKeys(999); listOutcome = Client->ListLiveChannel(request4); EXPECT_EQ(listOutcome.isSuccess(), true); vec = listOutcome.result().LiveChannelList(); EXPECT_EQ(vec.size(), 0U); } TEST_F(ListLiveChannelTest, ListLiveChannelWithInvalidResponseBodyTest) { ListLiveChannelRequest request(BucketName); request.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto listOutcome = Client->ListLiveChannel(request); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "GetLiveChannelStatError"); } TEST_F(ListLiveChannelTest, ListLiveChannelResultTest) { std::string xml = R"( 1 true channel-0 channel-0 test disabled 2016-07-30T01:54:21.000Z rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/channel-0 http://test-bucket.oss-cn-hangzhou.aliyuncs.com/channel-0/playlist.m3u8 channel-0 disabled 2016-07-30T01:54:21.000Z rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/channel-0 http://test-bucket.oss-cn-hangzhou.aliyuncs.com/channel-0/playlist.m3u8 )"; ListLiveChannelResult result(xml); EXPECT_EQ(result.Prefix(), ""); EXPECT_EQ(result.Marker(), ""); EXPECT_EQ(result.MaxKeys(), 1u); EXPECT_EQ(result.IsTruncated(), true); EXPECT_EQ(result.NextMarker(), "channel-0"); std::vector vec = result.LiveChannelList(); EXPECT_EQ(vec.size(), 2u); EXPECT_EQ(vec[0].description, "test"); EXPECT_EQ(vec[0].status, "disabled"); EXPECT_EQ(vec[0].name, "channel-0"); EXPECT_EQ(vec[0].lastModified, "2016-07-30T01:54:21.000Z"); EXPECT_EQ(vec[0].publishUrl, "rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/channel-0"); EXPECT_EQ(vec[0].playUrl, "http://test-bucket.oss-cn-hangzhou.aliyuncs.com/channel-0/playlist.m3u8"); } TEST_F(ListLiveChannelTest, ListLiveChannelResultBranchTest) { ListLiveChannelResult result("test"); std::string xml = R"( )"; ListLiveChannelResult result1(xml); xml = R"( )"; ListLiveChannelResult result2(xml); xml = R"( )"; ListLiveChannelResult result3(xml); xml = R"( )"; ListLiveChannelResult result4(xml); xml = R"()"; ListLiveChannelResult result5(xml); } } } ================================================ FILE: test/src/LiveChannel/PostAndGetVodPlayListTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class PostAndGetVodPlayListTest : public ::testing::Test { protected: PostAndGetVodPlayListTest() { } ~PostAndGetVodPlayListTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-post-and-get-vod-play-list"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr PostAndGetVodPlayListTest::Client = nullptr; std::string PostAndGetVodPlayListTest::BucketName = ""; TEST_F(PostAndGetVodPlayListTest, PostVodPlayListTest) { std::string channelName = "test-channel"; std::string playList = "my_play_list.m3u8"; std::string channelType = "HLS"; uint64_t startTime = time(NULL); uint64_t endTime = startTime + 3600; PostVodPlaylistRequest request(BucketName, channelName, playList, startTime, endTime); auto postOutcome = Client->PostVodPlaylist(request); EXPECT_EQ(postOutcome.isSuccess(), false); auto putOutcome = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, channelType)); EXPECT_EQ(putOutcome.isSuccess(), true); PostVodPlaylistRequest request2(BucketName, channelName, playList, startTime, endTime); postOutcome = Client->PostVodPlaylist(request2); EXPECT_EQ(postOutcome.isSuccess(), false); PostVodPlaylistRequest request3(BucketName, channelName, playList, startTime, endTime); request3.setPlayList("another_play_list.m3u8"); request3.setStartTime(startTime); request3.setEndTime(endTime); postOutcome = Client->PostVodPlaylist(request3); EXPECT_EQ(postOutcome.isSuccess(), false); EXPECT_TRUE(postOutcome.error().Code() != "ValidateError"); auto getOutcome = Client->GetVodPlaylist(GetVodPlaylistRequest(BucketName, channelName, startTime, endTime)); EXPECT_EQ(getOutcome.isSuccess(), false); } TEST_F(PostAndGetVodPlayListTest, PostVodPlayListErrorParamTest) { std::string channelName = "test-channel"; std::string playList = "my_play_list/.m3u8"; uint64_t startTime = 1543978300; uint64_t endTime = 1543989000; PostVodPlaylistRequest request(BucketName, channelName, playList, startTime, endTime); auto postOutcome = Client->PostVodPlaylist(request); EXPECT_EQ(postOutcome.isSuccess(), false); playList = "my_play_list.m3u8"; channelName = "/test/channel/name"; PostVodPlaylistRequest request2(BucketName, channelName, playList, startTime, endTime); auto postOutcome2 = Client->PostVodPlaylist(request2); EXPECT_EQ(postOutcome2.isSuccess(), false); // channelName = "test_channel_name测试"; PostVodPlaylistRequest request3(BucketName, channelName, playList, startTime, endTime); auto postOutcome3 = Client->PostVodPlaylist(request3); EXPECT_EQ(postOutcome3.isSuccess(), false); // startTime = 0; PostVodPlaylistRequest request4(BucketName, channelName, playList, startTime, endTime); auto postOutcome4 = Client->PostVodPlaylist(request4); EXPECT_EQ(postOutcome4.isSuccess(), false); // startTime = 1543978300; endTime = 1543978299; PostVodPlaylistRequest request5(BucketName, channelName, playList, startTime, endTime); auto postOutcome5 = Client->PostVodPlaylist(request5); EXPECT_EQ(postOutcome5.isSuccess(), false); // startTime = 1543978300; endTime = 1544064701; PostVodPlaylistRequest request6(BucketName, channelName, playList, startTime, endTime); auto postOutcome6 = Client->PostVodPlaylist(request6); EXPECT_EQ(postOutcome6.isSuccess(), false); // startTime = time(NULL); endTime = 0; PostVodPlaylistRequest request7(BucketName, channelName, playList, startTime, endTime); auto postOutcome7 = Client->PostVodPlaylist(request7); EXPECT_EQ(postOutcome7.isSuccess(), false); GetVodPlaylistRequest getRequest1(BucketName, channelName); getRequest1.setStartTime(0); getRequest1.setEndTime(0); auto getVodOutcome = Client->GetVodPlaylist(getRequest1); EXPECT_EQ(getVodOutcome.isSuccess(), false); GetVodPlaylistRequest getRequest2(BucketName, channelName); getRequest2.setStartTime(1000000); getRequest2.setEndTime(99999); getVodOutcome = Client->GetVodPlaylist(getRequest2); EXPECT_EQ(getVodOutcome.isSuccess(), false); GetVodPlaylistRequest getRequest3(BucketName, channelName); time_t tNow = time(nullptr); time_t tNext = tNow + 60 * 60 * 24 + 1; getRequest3.setStartTime(tNow); getRequest3.setEndTime(tNext); getVodOutcome = Client->GetVodPlaylist(getRequest3); EXPECT_EQ(getVodOutcome.isSuccess(), false); EXPECT_STREQ(getVodOutcome.error().Code().c_str(), "ValidateError"); } TEST_F(PostAndGetVodPlayListTest, GetVodPlaylistResultTest) { std::string xml = R"(#EXTM3U #EXT-X-VERSION:3 #EXT-X-MEDIA-SEQUENCE:0 #EXT-X-TARGETDURATION:13 #EXTINF:7.120, 1543895706266.ts #EXTINF:5.840, 1543895706323.ts #EXTINF:6.400, 1543895706356.ts #EXTINF:5.520, 1543895706389.ts #EXTINF:5.240, 1543895706428.ts #EXTINF:13.320, 1543895706468.ts #EXTINF:5.960, 1543895706538.ts #EXTINF:6.520, 1543895706561.ts #EXT-X-ENDLIST)"; GetVodPlaylistResult result(xml); EXPECT_EQ(result.PlaylistContent().empty(), false); std::shared_ptr content = std::make_shared(xml); GetVodPlaylistResult result2(content); EXPECT_EQ(result2.PlaylistContent().empty(), false); } TEST_F(PostAndGetVodPlayListTest, GetVodPlaylistRequestFunctionTest) { auto getOutcome = Client->GetVodPlaylist(GetVodPlaylistRequest("INVLAIDNAME", "test-channel", 1, 2)); } } } ================================================ FILE: test/src/LiveChannel/PutAndGetLiveChannelStatusTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class PutAndGetLiveChannelStatusTest : public ::testing::Test { protected: PutAndGetLiveChannelStatusTest() { } ~PutAndGetLiveChannelStatusTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-delete-live-channel"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr PutAndGetLiveChannelStatusTest::Client = nullptr; std::string PutAndGetLiveChannelStatusTest::BucketName = ""; TEST_F(PutAndGetLiveChannelStatusTest, PutLiveChannelStatusAndGetTest) { std::string channelName = "not_exist"; PutLiveChannelStatusRequest request(BucketName, channelName, LiveChannelStatus::EnabledStatus); auto putOutcome = Client->PutLiveChannelStatus(request); EXPECT_EQ(putOutcome.isSuccess(), false); channelName = "new_channel"; PutLiveChannelRequest request2(BucketName, channelName, "HLS"); auto putOutcome2 = Client->PutLiveChannel(request2); EXPECT_EQ(putOutcome2.isSuccess(), true); PutLiveChannelStatusRequest request3(BucketName, channelName, LiveChannelStatus::DisabledStatus); auto putOutcome3 = Client->PutLiveChannelStatus(request3); EXPECT_EQ(putOutcome3.isSuccess(), true); GetLiveChannelStatRequest request4(BucketName, channelName); auto getStatOutcome = Client->GetLiveChannelStat(request4); EXPECT_EQ(getStatOutcome.isSuccess(), true); EXPECT_EQ(getStatOutcome.result().Status(), LiveChannelStatus::DisabledStatus); EXPECT_EQ(getStatOutcome.result().ConnectedTime(), ""); EXPECT_EQ(getStatOutcome.result().RemoteAddr(), ""); EXPECT_EQ(getStatOutcome.result().VideoBandWidth(), 0u); EXPECT_EQ(getStatOutcome.result().AudioBandWidth(), 0u); PutLiveChannelStatusRequest request5(BucketName, channelName); request5.setStatus(LiveChannelStatus::IdleStatus); auto putOutcome5 = Client->PutLiveChannelStatus(request5); EXPECT_EQ(putOutcome5.isSuccess(), false); PutLiveChannelStatusRequest request6(BucketName, channelName); request6.setStatus(LiveChannelStatus::EnabledStatus); auto putOutcome6 = Client->PutLiveChannelStatus(request6); EXPECT_EQ(putOutcome6.isSuccess(), true); } TEST_F(PutAndGetLiveChannelStatusTest, GetLiveChannelStatusWithInvalidResponseBodyTest) { // case 1 default std::string channelName = "test-channel1"; PutLiveChannelRequest request2(BucketName, channelName, "HLS"); auto putOutcome2 = Client->PutLiveChannel(request2); EXPECT_EQ(putOutcome2.isSuccess(), true); PutLiveChannelStatusRequest request3(BucketName, channelName, LiveChannelStatus::DisabledStatus); auto putOutcome3 = Client->PutLiveChannelStatus(request3); EXPECT_EQ(putOutcome3.isSuccess(), true); GetLiveChannelStatRequest request4(BucketName, channelName); request4.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto getStatOutcome = Client->GetLiveChannelStat(request4); EXPECT_EQ(getStatOutcome.isSuccess(), false); EXPECT_EQ(getStatOutcome.error().Code(), "GetLiveChannelStatError"); } TEST_F(PutAndGetLiveChannelStatusTest, GetLiveChannelResultTest) { std::string xml1 = R"( Idle )"; GetLiveChannelStatResult result(xml1); EXPECT_EQ(result.Status(), LiveChannelStatus::IdleStatus); EXPECT_EQ(result.ConnectedTime(), ""); EXPECT_EQ(result.RemoteAddr(), ""); std::string xml2 = R"( Live 2016-08-25T06:25:15.000Z 10.1.2.3:47745 )"; GetLiveChannelStatResult result2(xml2); EXPECT_EQ(result2.Status(), LiveChannelStatus::LiveStatus); EXPECT_EQ(result2.ConnectedTime(), "2016-08-25T06:25:15.000Z"); EXPECT_EQ(result2.RemoteAddr(), "10.1.2.3:47745"); EXPECT_EQ(result2.Width(), 1280u); EXPECT_EQ(result2.Height(), 536u); EXPECT_EQ(result2.VideoBandWidth(), 0u); EXPECT_EQ(result2.VideoCodec(), "H264"); EXPECT_EQ(result2.AudioBandWidth(), 0u); EXPECT_EQ(result2.AudioCodec(), "ADPCM"); } TEST_F(PutAndGetLiveChannelStatusTest, GetLiveChannelStatusInvalidBucketTest) { std::string channelName = "not_exist"; GetLiveChannelStatRequest request4("Invalid-bucket-test", channelName); auto getStatOutcome = Client->GetLiveChannelStat(request4); EXPECT_EQ(getStatOutcome.isSuccess(), false); EXPECT_EQ(getStatOutcome.error().Code(), "ValidateError"); } TEST_F(PutAndGetLiveChannelStatusTest, GetLiveChannelStatResultFunctionTest) { GetLiveChannelStatResult result("test"); result.FrameRate(); result.SampleRate(); } TEST_F(PutAndGetLiveChannelStatusTest, PutLiveChannelStatusRequestValidateFailFunctionTest) { PutLiveChannelStatusRequest request("INVLAIDNAME", "test2"); auto putOutcome = Client->PutLiveChannelStatus(request); } TEST_F(PutAndGetLiveChannelStatusTest, GetLiveChannelResultBranchTest) { GetLiveChannelStatResult result("test"); std::string xml2 = R"( Live 2016-08-25T06:25:15.000Z 10.1.2.3:47745 )"; GetLiveChannelStatResult result2(xml2); xml2 = R"( 1280 536 24 0 H264 0 44100 ADPCM )"; GetLiveChannelStatResult result3(xml2); xml2 = R"( )"; GetLiveChannelStatResult result4(xml2); xml2 = R"( )"; GetLiveChannelStatResult result5(xml2); xml2 = R"()"; GetLiveChannelStatResult result6(xml2); } } } ================================================ FILE: test/src/LiveChannel/PutAndGetLiveChannelTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class PutAndGetLiveChannelTest : public ::testing::Test { protected: PutAndGetLiveChannelTest() { } ~PutAndGetLiveChannelTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-put-and-get-live-channel"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr PutAndGetLiveChannelTest::Client = nullptr; std::string PutAndGetLiveChannelTest::BucketName = ""; TEST_F(PutAndGetLiveChannelTest, PutAndGetLiveChannelInfoTest) { // case 1 default std::string channelName = "test-channel"; std::string channelType = "HLS"; auto putOutcome = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, channelType)); EXPECT_EQ(putOutcome.isSuccess(), true); auto getOutcome = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest(BucketName, channelName)); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().Type(), "HLS"); EXPECT_EQ(getOutcome.result().FragDuration(), 5u); EXPECT_EQ(getOutcome.result().FragCount(), 3u); EXPECT_EQ(getOutcome.result().Status(), LiveChannelStatus::EnabledStatus); EXPECT_EQ(getOutcome.result().Description(), ""); EXPECT_EQ(getOutcome.result().PlaylistName(), "playlist.m3u8"); // case 2 no snapshot std::string channelName2 = channelName; PutLiveChannelRequest request(BucketName, channelName2, "HLS"); request.setChannelName(channelName2+"-test"); request.setDescripition("just_a_test"); request.setFragDuration(25u); request.setFragCount(30u); request.setStatus(LiveChannelStatus::DisabledStatus); request.setPlayListName("test_play-list.m3u8"); auto putOutcome2 = Client->PutLiveChannel(request); EXPECT_EQ(putOutcome2.isSuccess(), true); auto getOutcome2 = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest(BucketName, channelName2+"-test")); EXPECT_EQ(getOutcome2.isSuccess(), true); EXPECT_EQ(getOutcome2.result().Type(), "HLS"); EXPECT_EQ(getOutcome2.result().FragDuration(), 25u); EXPECT_EQ(getOutcome2.result().FragCount(), 30u); EXPECT_EQ(getOutcome2.result().Status(), LiveChannelStatus::DisabledStatus); EXPECT_EQ(getOutcome2.result().Description(), "just_a_test"); EXPECT_EQ(getOutcome2.result().PlaylistName(), "test_play-list.m3u8"); std::string channelName3 = "test_channel_name测试"; PutLiveChannelRequest request2(BucketName, channelName2, "HLS"); auto putOutcome3 = Client->PutLiveChannel(request2); EXPECT_EQ(putOutcome3.isSuccess(), true); EXPECT_EQ(putOutcome3.result().PublishUrl().empty(), false); EXPECT_EQ(putOutcome3.result().PlayUrl().empty(), false); // case 3 snapshot partial PutLiveChannelRequest request3(BucketName, channelName2+"-test2", "HLS"); request3.setChannelType("HLS"); request3.setDestBucket("not_exist_bucket"); putOutcome3 = Client->PutLiveChannel(request3); EXPECT_EQ(putOutcome3.isSuccess(), false); EXPECT_STREQ(putOutcome3.error().Code().c_str(), "ValidateError"); // case 4 snapshot full PutLiveChannelRequest request4(BucketName, channelName2 + "-test3", "HLS"); request4.setChannelType("HLS"); request4.setDestBucket("not_exist_bucket"); request4.setInterval(6); request4.setNotifyTopic("not_exist_topic"); request4.setRoleName("not_exist_role_name"); putOutcome3 = Client->PutLiveChannel(request4); EXPECT_EQ(putOutcome3.isSuccess(), false); // clear env auto deleteOutcome1 = Client->DeleteLiveChannel(DeleteLiveChannelRequest(BucketName, channelName)); EXPECT_EQ(deleteOutcome1.isSuccess(), true); auto deleteOutcome2 = Client->DeleteLiveChannel(DeleteLiveChannelRequest(BucketName, channelName2+"-test")); EXPECT_EQ(deleteOutcome2.isSuccess(), true); } TEST_F(PutAndGetLiveChannelTest, PutLiveChannelErrorParamTest) { std::string channelName; channelName.assign(1024, 'a'); EXPECT_EQ(channelName.size(), 1024u); auto putOutcome = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "HLS")); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "ValidateError"); EXPECT_EQ(putOutcome.error().Message(), "The channelName param is invalid, it shouldn't contain '/' and length < 1023"); // channelName.clear(); channelName = "/test"; EXPECT_EQ(channelName, "/test"); auto putOutcome2 = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "HLS")); EXPECT_EQ(putOutcome2.isSuccess(), false); EXPECT_EQ(putOutcome2.error().Code(), "ValidateError"); EXPECT_EQ(putOutcome2.error().Message(), "The channelName param is invalid, it shouldn't contain '/' and length < 1023"); // channelName.clear(); channelName = "/test/test/test/test/aaa"; EXPECT_EQ(channelName, "/test/test/test/test/aaa"); auto putOutcome3 = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "HLS")); EXPECT_EQ(putOutcome3.isSuccess(), false); EXPECT_EQ(putOutcome3.error().Code(), "ValidateError"); EXPECT_EQ(putOutcome3.error().Message(), "The channelName param is invalid, it shouldn't contain '/' and length < 1023"); // channelName.clear(); channelName = "测试通过"; EXPECT_EQ(channelName, "测试通过"); auto putOutcome4 = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "HLS")); EXPECT_EQ(putOutcome4.isSuccess(), true); auto getOutcome = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest( BucketName, channelName)); EXPECT_EQ(getOutcome.isSuccess(), true); auto deleteOutcome = Client->DeleteLiveChannel(DeleteLiveChannelRequest( BucketName, channelName)); EXPECT_EQ(deleteOutcome.isSuccess(), true); // channelName.clear(); channelName = "test-channel"; EXPECT_EQ(channelName, "test-channel"); putOutcome = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "HLs")); EXPECT_EQ(putOutcome.isSuccess(), false); putOutcome = Client->PutLiveChannel(PutLiveChannelRequest(BucketName, channelName, "test")); EXPECT_EQ(putOutcome.isSuccess(), false); // PutLiveChannelRequest request1(BucketName, channelName, "HLS"); request1.setFragDuration(101u); putOutcome = Client->PutLiveChannel(request1); EXPECT_EQ(putOutcome.isSuccess(), false); PutLiveChannelRequest request2(BucketName, channelName, "HLS"); request2.setFragDuration(0u); putOutcome = Client->PutLiveChannel(request2); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "ValidateError"); EXPECT_EQ(putOutcome.error().Message(), "The live channel frag duration param is invalid, it should be [1,100]"); // PutLiveChannelRequest request3(BucketName, channelName, "HLS"); request3.setFragCount(1011111u); putOutcome = Client->PutLiveChannel(request1); EXPECT_EQ(putOutcome.isSuccess(), false); PutLiveChannelRequest request4(BucketName, channelName, "HLS"); request4.setFragCount(0u); putOutcome = Client->PutLiveChannel(request4); EXPECT_EQ(putOutcome.isSuccess(), false); // PutLiveChannelRequest request5(BucketName, channelName, "HLS"); request5.setPlayListName("myplay.m3"); putOutcome = Client->PutLiveChannel(request5); EXPECT_EQ(putOutcome.isSuccess(), false); PutLiveChannelRequest request6(BucketName, channelName, "HLS"); request6.setPlayListName("myplay.M3U8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), true); PutLiveChannelRequest request7(BucketName, channelName, "HLS"); request7.setStatus(LiveChannelStatus::LiveStatus); putOutcome = Client->PutLiveChannel(request7); EXPECT_EQ(putOutcome.isSuccess(), false); PutLiveChannelRequest request8(BucketName, channelName, "HLS"); std::string too_long; too_long.assign(129, 'a'); request8.setDescripition(too_long); putOutcome = Client->PutLiveChannel(request8); EXPECT_EQ(putOutcome.isSuccess(), false); getOutcome = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest( BucketName, channelName)); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().PlaylistName(), "myplay.m3u8"); auto deleteOutcome2 = Client->DeleteLiveChannel(DeleteLiveChannelRequest( BucketName, channelName)); EXPECT_EQ(deleteOutcome.isSuccess(), true); request6.setPlayListName("myplay..M3U8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "ValidateError"); EXPECT_EQ(putOutcome.error().Message(), "The live channel play list param is invalid, it should end with '.m3u8' & length in [6,128]"); request6.setPlayListName("..M3U8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), false); request6.setPlayListName("..m3u8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), false); request6.setPlayListName("a.b..m3u8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), false); request6.setPlayListName("a.b..m3u"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), false); request6.setPlayListName("a.b.m3u8"); putOutcome = Client->PutLiveChannel(request6); EXPECT_EQ(putOutcome.isSuccess(), true); getOutcome = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest( BucketName, channelName)); EXPECT_EQ(getOutcome.isSuccess(), true); EXPECT_EQ(getOutcome.result().PlaylistName(), "a.b.m3u8"); deleteOutcome2 = Client->DeleteLiveChannel(DeleteLiveChannelRequest( BucketName, channelName)); EXPECT_EQ(deleteOutcome2.isSuccess(), true); std::string longStr(1028, 'a'); longStr.append(".m3u8"); PutLiveChannelRequest request9(BucketName, channelName, "HLS"); request9.setPlayListName(longStr); putOutcome = Client->PutLiveChannel(request9); EXPECT_EQ(putOutcome.isSuccess(), false); } TEST_F(PutAndGetLiveChannelTest, PutAndGetLiveChannelResultTest) { std::string xml = R"( rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/test-channel http://test-bucket.oss-cn-hangzhou.aliyuncs.com/test-channel/playlist.m3u8 )"; PutLiveChannelResult result(xml); EXPECT_EQ(result.PublishUrl(), "rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/test-channel"); EXPECT_EQ(result.PlayUrl(), "http://test-bucket.oss-cn-hangzhou.aliyuncs.com/test-channel/playlist.m3u8"); } TEST_F(PutAndGetLiveChannelTest, GetLiveChannelInfoInvalidBucketTest) { std::string channelName; channelName.assign(1024, 'a'); auto getOutcome = Client->GetLiveChannelInfo(GetLiveChannelInfoRequest( "Invalid-bucket-test", channelName)); EXPECT_EQ(getOutcome.isSuccess(), false); EXPECT_EQ(getOutcome.error().Code(), "ValidateError"); } TEST_F(PutAndGetLiveChannelTest, LiveChannelRequestTest) { std::string channelName; channelName.assign(1024, 'a'); GetLiveChannelInfoRequest request("bucket", channelName); request.setBucket("bucket"); auto getOutcome = Client->GetLiveChannelInfo(request); } TEST_F(PutAndGetLiveChannelTest, PutLiveChannelWithInvalidResponseBodyTest) { // case 1 default std::string channelName = "test-channel-1"; std::string channelType = "HLS"; PutLiveChannelRequest plcRequest(BucketName, channelName, channelType); plcRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto putOutcome = Client->PutLiveChannel(plcRequest); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "PutLiveChannelError"); GetLiveChannelInfoRequest glcRequest(BucketName, channelName); glcRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto glcOutcome = Client->GetLiveChannelInfo(glcRequest); EXPECT_EQ(glcOutcome.isSuccess(), false); EXPECT_EQ(glcOutcome.error().Code(), "GetLiveChannelStatError"); } TEST_F(PutAndGetLiveChannelTest, PutLiveChannelResultFunctionTest) { PutLiveChannelResult result("test"); std::string xml = R"( rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/test-channel http://test-bucket.oss-cn-hangzhou.aliyuncs.com/test-channel/playlist.m3u8 )"; PutLiveChannelResult result1(xml); xml = R"( rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com/live/test-channel http://test-bucket.oss-cn-hangzhou.aliyuncs.com/test-channel/playlist.m3u8 )"; PutLiveChannelResult result2(xml); xml = R"( )"; PutLiveChannelResult result3(xml); xml = R"( )"; PutLiveChannelResult result4(xml); xml = R"()"; PutLiveChannelResult result5(xml); } TEST_F(PutAndGetLiveChannelTest, GetLiveChannelInfoResultBranchTest) { GetLiveChannelInfoResult result("test"); std::string xml = R"( )"; GetLiveChannelInfoResult result1(xml); xml = R"( )"; GetLiveChannelInfoResult result2(xml); xml = R"( )"; GetLiveChannelInfoResult result3(xml); xml = R"( )"; GetLiveChannelInfoResult result4(xml); xml = R"()"; GetLiveChannelInfoResult result5(xml); } } } ================================================ FILE: test/src/MultipartUpload/CallableTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include #include namespace AlibabaCloud { namespace OSS { class CallableTest : public ::testing::Test { protected: CallableTest() { } ~CallableTest() { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-callable"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr CallableTest::Client = nullptr; std::string CallableTest::BucketName = ""; TEST_F(CallableTest, MultipartUploadCallableBasicTest) { auto memKey = TestUtils::GetObjectKey("MultipartUploadCallable-MemObject"); auto memContent = TestUtils::GetRandomStream(102400); auto memInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitOutcome.isSuccess(), true); auto fileKey = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject"); auto tmpFile = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); { auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto fileInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitOutcome.isSuccess(), true); auto memOutcomeCallable = Client->UploadPartCallable(UploadPartRequest(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent)); auto fileOutcomeCallable = Client->UploadPartCallable(UploadPartRequest(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent)); std::cout << "Client[" << Client << "]" << "Issue MultipartUploadCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto menOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(menOutcome.isSuccess(), true); // list part auto memListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); auto fileListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(memListPartOutcome.isSuccess(), true); EXPECT_EQ(fileListPartOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartOutcome.result().PartList(), memInitOutcome.result().UploadId())); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartOutcome.result().PartList(), fileInitOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; } EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(CallableTest, MultipartUploadCopyCallableBasicTest) { // put object from buffer std::string memObjKey = TestUtils::GetObjectKey("PutObjectFromBuffer"); auto memObjContent = TestUtils::GetRandomStream(102400); auto putMemObjOutcome = Client->PutObject(PutObjectRequest(BucketName, memObjKey, memObjContent)); EXPECT_EQ(putMemObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memObjKey), true); // put object from local file std::string fileObjKey = TestUtils::GetObjectKey("PutObjectFromFile"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFile").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileObjContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto putFileObjOutcome = Client->PutObject(PutObjectRequest(BucketName, fileObjKey, fileObjContent)); EXPECT_EQ(putFileObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileObjKey), true); // close file fileObjContent->close(); // apply upload id std::string memKey = TestUtils::GetObjectKey("UploadPartCopyCallableMemObjectBasicTest"); auto memInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitObjOutcome.isSuccess(), true); EXPECT_EQ(memInitObjOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartCopyCallableFileObjectBasicTest"); auto fileInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitObjOutcome.isSuccess(), true); EXPECT_EQ(fileInitObjOutcome.result().Key(), fileKey); // upload part copy auto memOutcomeCallable = Client->UploadPartCopyCallable(UploadPartCopyRequest(BucketName, memKey, BucketName, memObjKey, memInitObjOutcome.result().UploadId(), 1)); auto fileOutcomeCallable = Client->UploadPartCopyCallable(UploadPartCopyRequest(BucketName, fileKey, BucketName, fileObjKey, fileInitObjOutcome.result().UploadId(), 1)); std::cout << "Client[" << Client << "]" << "Issue UploadPartCopyCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); // list part auto memListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitObjOutcome.result().UploadId())); auto fileListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitObjOutcome.result().UploadId())); EXPECT_EQ(memListPartOutcome.isSuccess(), true); EXPECT_EQ(fileListPartOutcome.isSuccess(), true); // complete the part auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartOutcome.result().PartList(), memInitObjOutcome.result().UploadId())); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartOutcome.result().PartList(), fileInitObjOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memObjContent = nullptr; fileObjContent = nullptr; EXPECT_EQ(RemoveFile(tmpFile), true); } } } ================================================ FILE: test/src/MultipartUpload/MultipartUploadTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include namespace AlibabaCloud { namespace OSS { class MultipartUploadTest : public ::testing::Test { protected: MultipartUploadTest() { } ~MultipartUploadTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-multipartupload"); Client->CreateBucket(CreateBucketRequest(BucketName)); TestFile = TestUtils::GetTargetFileName("cpp-sdk-multipartupload"); TestUtils::WriteRandomDatatoFile(TestFile, 1 * 1024 * 1024 + 100); TestFileMd5 = TestUtils::GetFileMd5(TestFile); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { RemoveFile(TestFile); TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static int CalculatePartCount(int64_t totalSize, int singleSize); static int64_t GetFileLength(const std::string file); public: static std::shared_ptr Client; static std::string BucketName; static std::string TestFile; static std::string TestFileMd5; }; std::shared_ptr MultipartUploadTest::Client = nullptr; std::string MultipartUploadTest::BucketName = ""; std::string MultipartUploadTest::TestFile = ""; std::string MultipartUploadTest::TestFileMd5 = ""; int64_t MultipartUploadTest::GetFileLength(const std::string file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } int MultipartUploadTest::CalculatePartCount(int64_t totalSize, int singleSize) { // Calculate the part count auto partCount = (int)(totalSize / singleSize); if (totalSize % singleSize != 0) { partCount++; } return partCount; } TEST_F(MultipartUploadTest, InitiateMultipartUploadBasicTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadBasicTest"); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); EXPECT_FALSE(initOutcome.result().RequestId().empty()); } TEST_F(MultipartUploadTest, InitiateMultipartUploadWithEncodingTypeTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadWithEncodingTypeTest"); key.push_back(0x1c); key.push_back(0x1a); key.append(".1.t"); InitiateMultipartUploadRequest request(BucketName, key); request.setEncodingType("url"); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); } TEST_F(MultipartUploadTest, InitiateMultipartUploadWithMetaDataTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadWithMetaTest"); ObjectMetaData metaData; metaData.UserMetaData()["test"] = "test"; metaData.UserMetaData()["data"] = "data"; InitiateMultipartUploadRequest request(BucketName, key, metaData); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); } TEST_F(MultipartUploadTest, InitiateMultipartUploadWithFullSettingTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadWithFullSettingTest"); ObjectMetaData metaData; metaData.setCacheControl("No-Cache"); metaData.setContentType("user/test"); metaData.setContentEncoding("myzip"); metaData.setContentDisposition("test.zip"); metaData.UserMetaData()["test"] = "test"; metaData.UserMetaData()["data"] = "data"; InitiateMultipartUploadRequest request(BucketName, key, metaData); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto content = TestUtils::GetRandomStream(100); auto uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); auto lOutcome = Client->ListParts(ListPartsRequest(BucketName, key, initOutcome.result().UploadId())); EXPECT_EQ(lOutcome.isSuccess(), true); CompleteMultipartUploadRequest cRequest(BucketName, key, lOutcome.result().PartList(), initOutcome.result().UploadId()); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().ContentLength(), 100); EXPECT_EQ(hOutcome.result().CacheControl(), "No-Cache"); EXPECT_EQ(hOutcome.result().ContentType(), "user/test"); EXPECT_EQ(hOutcome.result().ContentDisposition(), "test.zip"); EXPECT_EQ(hOutcome.result().ContentEncoding(), "myzip"); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "test"); EXPECT_EQ(hOutcome.result().UserMetaData().at("data"), "data"); } TEST_F(MultipartUploadTest, InitiateMultipartUploadWithFullSetting2Test) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadWithFullSetting2Test"); InitiateMultipartUploadRequest request(BucketName, key); request.setCacheControl("No-Cache"); request.setContentEncoding("myzip"); request.setContentDisposition("test.zip"); request.MetaData().setContentType("user/test"); request.MetaData().UserMetaData()["test"] = "test"; request.MetaData().UserMetaData()["data"] = "data"; request.setExpires(TestUtils::GetGMTString(3600)); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto content = TestUtils::GetRandomStream(100); auto uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); auto lOutcome = Client->ListParts(ListPartsRequest(BucketName, key, initOutcome.result().UploadId())); EXPECT_EQ(lOutcome.isSuccess(), true); CompleteMultipartUploadRequest cRequest(BucketName, key, lOutcome.result().PartList(), initOutcome.result().UploadId()); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().ContentLength(), 100); EXPECT_EQ(hOutcome.result().CacheControl(), "No-Cache"); EXPECT_EQ(hOutcome.result().ContentType(), "user/test"); EXPECT_EQ(hOutcome.result().ContentDisposition(), "test.zip"); EXPECT_EQ(hOutcome.result().ContentEncoding(), "myzip"); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "test"); EXPECT_EQ(hOutcome.result().UserMetaData().at("data"), "data"); } TEST_F(MultipartUploadTest, InitiateMultipartUploadResult) { std::string xml = R"( multipart_upload multipart.data 0004B9894A22E5B1888A1E29F8236E2D )"; InitiateMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), "multipart_upload"); EXPECT_EQ(result.Key(), "multipart.data"); EXPECT_EQ(result.UploadId(), "0004B9894A22E5B1888A1E29F8236E2D"); } TEST_F(MultipartUploadTest, InitiateMultipartUploadResultEncodingType) { std::string xml = R"( url multipart_upload multipart%20%2Fdata 0004B9894A22E5B1888A1E29F8236E2D )"; InitiateMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), "multipart_upload"); EXPECT_EQ(result.Key(), "multipart /data"); EXPECT_EQ(result.UploadId(), "0004B9894A22E5B1888A1E29F8236E2D"); } TEST_F(MultipartUploadTest, InitiateMultipartUploadResultEmptyNodeTest) { std::string xml = R"( )"; InitiateMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), ""); EXPECT_EQ(result.Key(), ""); EXPECT_EQ(result.UploadId(), ""); } TEST_F(MultipartUploadTest, UploadPartBasicTest) { auto key = TestUtils::GetObjectKey("UploadPartBasicTest"); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto content = TestUtils::GetRandomStream(100); auto uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); auto calcETag = ComputeContentETag(*content); EXPECT_EQ(uploadPartOutcome.result().ETag(), calcETag); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); } TEST_F(MultipartUploadTest, UploadPartNegativeTest) { auto key = TestUtils::GetObjectKey("UploadPartNegativeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, "invaliduploadid", content)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchUpload"); } TEST_F(MultipartUploadTest, UploadPartInvalidContentTest) { auto key = TestUtils::GetObjectKey("UploadPartInvalidContentTest"); std::shared_ptr content = nullptr; auto outcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, "id", content)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Request body is null."); content = TestUtils::GetRandomStream(100); content->setstate(content->badbit); outcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, "id", content)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Request body is in bad state. Read/writing error on i/o operation."); content = TestUtils::GetRandomStream(100); content->setstate(content->failbit); outcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, "id", content)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Request body is in fail state. Logical error on i/o operation."); } TEST_F(MultipartUploadTest, UploadPartInvalidContentLengthTest) { auto key = TestUtils::GetObjectKey("UploadPartInvalidContentLengthTest"); auto content = TestUtils::GetRandomStream(100); UploadPartRequest request(BucketName, key, 1, "id", content); request.setContentLength(5LL * 1024LL * 1024LL * 1024LL + 1LL); auto outcome = Client->UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "PartSize should not be less than 100*1024 or greater than 5*1024*1024*1024."); } TEST_F(MultipartUploadTest, UploadPartInvalidPartNumberTest) { auto key = TestUtils::GetObjectKey("UploadPartInvalidPartNumberTest"); auto content = TestUtils::GetRandomStream(100); UploadPartRequest request(BucketName, key, 10001, "id", content); auto outcome = Client->UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "PartNumber should not be less than 1 or greater than 10000."); request.setPartNumber(0); outcome = Client->UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "PartNumber should not be less than 1 or greater than 10000."); } TEST_F(MultipartUploadTest, UploadPartInvalidBucketObjectTest) { auto content = TestUtils::GetRandomStream(100); UploadPartRequest request("InvalidBucket", "key", 10001, "id", content); auto outcome = Client->UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); request.setBucket("bucket"); request.setKey(""); outcome = Client->UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(MultipartUploadTest, CompleteMultipartUploadNegativeTest) { auto key = TestUtils::GetObjectKey("CompleteMultipartUploadNegativeTest"); PartList partList; partList.push_back(Part(1, "invalidetag")); CompleteMultipartUploadRequest cRequest(BucketName, key, partList, "invaliduploadid"); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchUpload"); EXPECT_FALSE(outcome.error().RequestId().empty()); } TEST_F(MultipartUploadTest, CompleteMultipartUploadWithEmptyPartListTest) { auto key = TestUtils::GetObjectKey("CompleteMultipartUploadWithEmptyPartListTest"); CompleteMultipartUploadRequest cRequest(BucketName, key); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "PartList is empty."); } TEST_F(MultipartUploadTest, CompleteMultipartUploadInvalidBucketNameTest) { auto key = TestUtils::GetObjectKey("CompleteMultipartUploadInvalidBucketNameTest"); CompleteMultipartUploadRequest cRequest("InavlidBucketName", key); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The bucket name is invalid") != nullptr); } TEST_F(MultipartUploadTest, CompleteMultipartUploadWithEncodingTypeTest) { auto key = TestUtils::GetObjectKey("CompleteMultipartUploadWithEncodingTypeTest "); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto content = TestUtils::GetRandomStream(100); auto uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); PartList partList; Part part(1, uploadPartOutcome.result().ETag()); partList.push_back(part); CompleteMultipartUploadRequest completeRequest(BucketName, key); completeRequest.setPartList(partList); completeRequest.setUploadId(initOutcome.result().UploadId()); completeRequest.setEncodingType("url"); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().Key(), key); EXPECT_TRUE(strstr(cOutcome.result().Location().c_str(), key.c_str()) != nullptr); EXPECT_EQ(cOutcome.result().EncodingType(), "url"); } TEST_F(MultipartUploadTest, CompleteMultipartUploadResultTest) { std::string xml = R"( http://oss-example.oss-cn-hangzhou.aliyuncs.com/multipart.data oss-example multipart.data B864DB6A936D376F9F8D3ED3BBE540DD-3 )"; CompleteMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), "oss-example"); EXPECT_EQ(result.Location(), "http://oss-example.oss-cn-hangzhou.aliyuncs.com/multipart.data"); EXPECT_EQ(result.Key(), "multipart.data"); EXPECT_EQ(result.ETag(), "B864DB6A936D376F9F8D3ED3BBE540DD-3"); } TEST_F(MultipartUploadTest, CompleteMultipartUploadResultEncodingTypeTest) { std::string xml = R"( oss-example.oss-cn-hangzhou.aliyuncs.com oss-example multipart%2F%20.data B864DB6A936D376F9F8D3ED3BBE540DD-3 url )"; CompleteMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), "oss-example"); EXPECT_EQ(result.Location(), "oss-example.oss-cn-hangzhou.aliyuncs.com"); EXPECT_EQ(result.Key(), "multipart/ .data"); EXPECT_EQ(result.ETag(), "B864DB6A936D376F9F8D3ED3BBE540DD-3"); EXPECT_EQ(result.EncodingType(), "url"); } TEST_F(MultipartUploadTest, CompleteMultipartUploadResultEmptyNodeTest) { std::string xml = R"( )"; CompleteMultipartUploadResult result(xml); EXPECT_EQ(result.Bucket(), ""); EXPECT_EQ(result.Location(), ""); EXPECT_EQ(result.Key(), ""); EXPECT_EQ(result.ETag(), ""); } TEST_F(MultipartUploadTest, UploadPartCopyTest) { std::string xml = R"( 2014-07-17T06:27:54.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" )"; UploadPartCopyResult result(xml); EXPECT_EQ(result.LastModified(), "2014-07-17T06:27:54.000Z"); EXPECT_EQ(result.ETag(), "5B3C1A2E053D763E1B002CC607C5A0FE"); } TEST_F(MultipartUploadTest, CompleteMultipartUploadResultEmptyTest) { CompleteMultipartUploadResult result(""); EXPECT_EQ(result.Bucket(), ""); EXPECT_EQ(result.Location(), ""); EXPECT_EQ(result.Key(), ""); EXPECT_EQ(result.ETag(), ""); } TEST_F(MultipartUploadTest, ListMultipartUploadsResultTest) { std::string xml = R"( oss-example keyMarker 1104B99B8E707874FC2D692FA5D77D3F oss.avi 0004B99B8E707874FC2D692FA5D77D3F / prefix 1000 false multipart.data 0004B999EF518A1FE585B0C9360DC4C8 2012-02-23T04:18:23.000Z multipart.data 0004B999EF5A239BB9138C6227D69F95 2012-02-23T04:18:23.000Z oss.avi 0004B99B8E707874FC2D692FA5D77D3F 2012-02-23T06:14:27.000Z )"; ListMultipartUploadsResult result(xml); EXPECT_EQ(result.Bucket(), "oss-example"); EXPECT_EQ(result.KeyMarker(), "keyMarker"); EXPECT_EQ(result.UploadIdMarker(), "1104B99B8E707874FC2D692FA5D77D3F"); EXPECT_EQ(result.NextKeyMarker(), "oss.avi"); EXPECT_EQ(result.NextUploadIdMarker(), "0004B99B8E707874FC2D692FA5D77D3F"); EXPECT_EQ(result.MaxUploads(), 1000U); EXPECT_EQ(result.IsTruncated(), false); EXPECT_EQ(result.MultipartUploadList().size(), 3U); EXPECT_EQ(result.MultipartUploadList().begin()->Key, "multipart.data"); EXPECT_EQ(result.MultipartUploadList().begin()->UploadId, "0004B999EF518A1FE585B0C9360DC4C8"); EXPECT_EQ(result.MultipartUploadList().begin()->Initiated, "2012-02-23T04:18:23.000Z"); EXPECT_EQ(result.MultipartUploadList().rbegin()->Key, "oss.avi"); EXPECT_EQ(result.MultipartUploadList().rbegin()->UploadId, "0004B99B8E707874FC2D692FA5D77D3F"); EXPECT_EQ(result.MultipartUploadList().rbegin()->Initiated, "2012-02-23T06:14:27.000Z"); xml = R"( oss-example keyMarker1 1104B99B8E707874FC2D692FA5D77D3F oss.avi 0004B99B8E707874FC2D692FA5D77D3F / prefix 1000 url false multipart.data 0004B999EF518A1FE585B0C9360DC4C8 2012-02-23T04:18:23.000Z multipart.data 0004B999EF5A239BB9138C6227D69F95 2012-02-23T04:18:23.000Z oss.avi 0004B99B8E707874FC2D692FA5D77D3F 2012-02-23T06:14:27.000Z )"; result = ListMultipartUploadsResult(xml); EXPECT_EQ(result.KeyMarker(), "keyMarker1"); } TEST_F(MultipartUploadTest, ListMultipartUploadsResultEmptyNodeTest) { std::string xml = R"( )"; ListMultipartUploadsResult result(xml); EXPECT_EQ(result.Bucket(), ""); EXPECT_EQ(result.KeyMarker(), ""); EXPECT_EQ(result.UploadIdMarker(), ""); EXPECT_EQ(result.NextKeyMarker(), ""); EXPECT_EQ(result.NextUploadIdMarker(), ""); EXPECT_EQ(result.MaxUploads(), 0UL); EXPECT_EQ(result.IsTruncated(), false); EXPECT_EQ(result.MultipartUploadList().size(), 2U); EXPECT_EQ(result.MultipartUploadList().begin()->Key, ""); EXPECT_EQ(result.MultipartUploadList().begin()->UploadId, ""); EXPECT_EQ(result.MultipartUploadList().begin()->Initiated, ""); EXPECT_EQ(result.MultipartUploadList().rbegin()->Key, ""); EXPECT_EQ(result.MultipartUploadList().rbegin()->UploadId, ""); EXPECT_EQ(result.MultipartUploadList().rbegin()->Initiated, ""); xml = R"( )"; result = ListMultipartUploadsResult(xml); } TEST_F(MultipartUploadTest, ListPartsResultTest) { std::string xml = R"( multipart_upload multipart.data 0004B999EF5A239BB9138C6227D69F95 5 1000 false 1 2012-02-23T07:01:34.000Z "3349DC700140D7F86A078484278075A9" 6291456 2 2012-02-23T07:01:12.000Z "3349DC700140D7F86A078484278075A9" 6291456 5 2012-02-23T07:02:03.000Z "7265F4D211B56873A381D321F586E4A9" 1024 )"; ListPartsResult result(xml); EXPECT_EQ(result.Bucket(), "multipart_upload"); EXPECT_EQ(result.Key(), "multipart.data"); EXPECT_EQ(result.UploadId(), "0004B999EF5A239BB9138C6227D69F95"); EXPECT_EQ(result.EncodingType(), ""); EXPECT_EQ(result.NextPartNumberMarker(), 5U); EXPECT_EQ(result.MaxParts(), 1000U); EXPECT_EQ(result.IsTruncated(), false); EXPECT_EQ(result.PartList().size(), 3U); EXPECT_EQ(result.PartList().begin()->ETag(), "3349DC700140D7F86A078484278075A9"); EXPECT_EQ(result.PartList().begin()->PartNumber(), 1); EXPECT_EQ(result.PartList().begin()->LastModified(), "2012-02-23T07:01:34.000Z"); EXPECT_EQ(result.PartList().begin()->Size(), 6291456LL); EXPECT_EQ(result.PartList().rbegin()->ETag(), "7265F4D211B56873A381D321F586E4A9"); EXPECT_EQ(result.PartList().rbegin()->PartNumber(), 5); EXPECT_EQ(result.PartList().rbegin()->LastModified(), "2012-02-23T07:02:03.000Z"); EXPECT_EQ(result.PartList().rbegin()->Size(), 1024LL); } TEST_F(MultipartUploadTest, ListPartsResultEmptyTest) { std::string xml = R"( )"; ListPartsResult result(xml); EXPECT_EQ(result.Bucket(), ""); EXPECT_EQ(result.Key(), ""); EXPECT_EQ(result.UploadId(), ""); EXPECT_EQ(result.NextPartNumberMarker(), 0UL); EXPECT_EQ(result.MaxParts(), 0U); EXPECT_EQ(result.IsTruncated(), false); EXPECT_EQ(result.PartList().size(), 2U); EXPECT_EQ(result.PartList().begin()->ETag(), ""); EXPECT_EQ(result.PartList().begin()->PartNumber(), 0); EXPECT_EQ(result.PartList().begin()->LastModified(), ""); EXPECT_EQ(result.PartList().begin()->Size(), 0); EXPECT_EQ(result.PartList().rbegin()->ETag(), ""); EXPECT_EQ(result.PartList().rbegin()->PartNumber(), 0); EXPECT_EQ(result.PartList().rbegin()->LastModified(), ""); EXPECT_EQ(result.PartList().rbegin()->Size(), 0); } TEST_F(MultipartUploadTest, MultipartUploadComplexStepTest) { auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadComplexStepTest"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); // Set the part size const int partSize = 100 * 1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); // Create a list to save result PartList partETags; //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); // Save the result Part part(i + 1, uploadPartOutcome.result().ETag()); partETags.push_back(part); } } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_FALSE(lmuOutcome.result().RequestId().empty()); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_FALSE(cOutcome.result().RequestId().empty()); auto gOutcome = Client->GetObject(BucketName, targetObjectKey); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(MultipartUploadTest, MultipartUploadComplexStepTestWithoutCrc) { ClientConfiguration conf; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); OssClient *XClient = &client; auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadComplexStepTestWithoutCrc"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = XClient->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 100 * 1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); // Create a list to save result PartList partETags; //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = XClient->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); // Save the result Part part(i + 1, uploadPartOutcome.result().ETag()); partETags.push_back(part); } } auto lmuOutcome = XClient->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(uploadId); auto cOutcome = XClient->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); auto gOutcome = XClient->GetObject(BucketName, targetObjectKey); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(MultipartUploadTest, CompleteMultipartUploadWithListParts) { auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("CompleteMultipartUploadWithListParts"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 100 * 1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); // Save the result //Part part(i+1, uploadPartOutcome.result().ETag()); } } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); ListPartsRequest listRequest(BucketName, targetObjectKey); listRequest.setUploadId(uploadId); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, listOutcome.result().PartList()); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); auto gOutcome = Client->GetObject(BucketName, targetObjectKey); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(MultipartUploadTest, MultipartUploadAbortInMiddleTest) { auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadAbortInMiddleTest"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 100 * 1024;; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); //upload the file std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); EXPECT_EQ(content->good(), true); if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // Create a UploadPartRequest, uploading parts content->clear(); content->seekg(position, content->beg); UploadPartRequest request(BucketName, targetObjectKey, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setContentLength(partSize); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); } } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); auto abortOutcome = Client->AbortMultipartUpload(AbortMultipartUploadRequest(BucketName, targetObjectKey, uploadId)); EXPECT_EQ(abortOutcome.isSuccess(), true); abortOutcome = Client->AbortMultipartUpload(AbortMultipartUploadRequest(BucketName, targetObjectKey, uploadId)); EXPECT_EQ(abortOutcome.isSuccess(), false); EXPECT_EQ(abortOutcome.error().Code(), "NoSuchUpload"); } TEST_F(MultipartUploadTest, MultipartUploadPartCopyComplexStepTest) { //put test file auto testKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest-TestKey"); Client->PutObject(BucketName, testKey, TestFile); EXPECT_EQ(Client->DoesObjectExist(BucketName, testKey), true); auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 100 * 1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // calculate the part size auto size = partSize < (fileLength - skipBytes) ? partSize : fileLength - skipBytes; UploadPartCopyRequest request(BucketName, targetObjectKey, BucketName, testKey); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setCopySourceRange(position, position + size - 1); auto uploadPartOutcome = Client->UploadPartCopy(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); ListPartsRequest listRequest(BucketName, targetObjectKey); listRequest.setUploadId(uploadId); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, listOutcome.result().PartList()); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); auto gOutcome = Client->GetObject(BucketName, targetObjectKey); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(MultipartUploadTest, MultipartUploadPartCopyWithSpecialKeyNameTest) { //put test file unsigned char buff[] = { 0xE4, 0XB8, 0XAD, 0XE6, 0X96, 0X87, 0XE5, 0X90, 0X8D, 0XE5, 0XAD, 0X97, 0X2B, 0X0 }; std::string u8_str((char *)buff); auto testKey = u8_str; Client->PutObject(BucketName, testKey, TestFile); EXPECT_EQ(Client->DoesObjectExist(BucketName, testKey), true); auto sourceFile = TestFile; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 100 * 1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); //upload the file //std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); //EXPECT_EQ(content->good(), true); //if (content->good()) { for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // calculate the part size auto size = partSize < (fileLength - skipBytes) ? partSize : fileLength - skipBytes; // Create a UploadPartRequest, uploading parts //content->clear(); //content->seekg(position, content->beg); UploadPartCopyRequest request(BucketName, targetObjectKey, BucketName, testKey); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setCopySourceRange(position, position + size - 1); auto uploadPartOutcome = Client->UploadPartCopy(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); } } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); ListPartsRequest listRequest(BucketName, targetObjectKey); listRequest.setUploadId(uploadId); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, listOutcome.result().PartList()); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); auto gOutcome = Client->GetObject(BucketName, targetObjectKey); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); auto calcMd5 = ComputeContentMD5(*gOutcome.result().Content()); EXPECT_EQ(calcMd5, TestFileMd5); } TEST_F(MultipartUploadTest, UploadPartCopyWithSourceIfMatchTest) { std::string sourceKey = TestUtils::GetObjectKey("upload-part-copy-object-source"); std::string targetKey = TestUtils::GetObjectKey("upload-part-copy-object-target"); // put the source obj auto putObjectContent = TestUtils::GetRandomStream(102400); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); std::string eTag = putObjectOutcome.result().ETag(); // apply upload id auto uploadPartCopyInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, targetKey)); EXPECT_EQ(uploadPartCopyInitOutcome.isSuccess(), true); auto uploadId = uploadPartCopyInitOutcome.result().UploadId(); { UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfMatchETag("ErrorETag"); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); // http status code : 412 EXPECT_EQ(outcome.error().Code(), "PreconditionFailed"); } // success upload part copy with the real ETag UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfMatchETag(eTag); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(MultipartUploadTest, UploadPartCopyWithSourceIfNoneMatchTest) { std::string sourceKey = TestUtils::GetObjectKey("upload-part-copy-object-source"); std::string targetKey = TestUtils::GetObjectKey("upload-part-copy-object-target"); // put the source obj auto putObjectContent = TestUtils::GetRandomStream(102400); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); std::string eTag = putObjectOutcome.result().ETag(); // apply upload id auto uploadPartCopyInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, targetKey)); EXPECT_EQ(uploadPartCopyInitOutcome.isSuccess(), true); auto uploadId = uploadPartCopyInitOutcome.result().UploadId(); { UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfNotMatchETag(eTag); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ServerError:304"); } // success upload part copy with the real ETag UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfNotMatchETag("ErrorETag"); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(MultipartUploadTest, UploadPartCopyWithIfUnmodifiedSinceTest) { std::string sourceKey = TestUtils::GetObjectKey("upload-part-copy-object-source"); std::string targetKey = TestUtils::GetObjectKey("upload-part-copy-object-target"); // put the source obj auto putObjectContent = TestUtils::GetRandomStream(102400); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); std::string eTag = putObjectOutcome.result().ETag(); // apply upload id auto uploadPartCopyInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, targetKey)); EXPECT_EQ(uploadPartCopyInitOutcome.isSuccess(), true); auto uploadId = uploadPartCopyInitOutcome.result().UploadId(); std::string beforeChangeTime = TestUtils::GetGMTString(-100); std::string afterChangeTime = TestUtils::GetGMTString(100); // the target time before the last modified time of sourceObj { UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfUnModifiedSince(beforeChangeTime); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); // http status code : 412 EXPECT_EQ(outcome.error().Code(), "PreconditionFailed"); } // the target time equals the last modified time of sourceObj { auto objectMetaOutcome = Client->GetObjectMeta(BucketName, sourceKey); EXPECT_EQ(objectMetaOutcome.isSuccess(), true); UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfUnModifiedSince(objectMetaOutcome.result().LastModified()); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), true); } // the target time after the last modified time of sourceObj UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfUnModifiedSince(afterChangeTime); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(MultipartUploadTest, UploadPartCopyWithIfModifiedSinceTest) { std::string sourceKey = TestUtils::GetObjectKey("upload-part-copy-object-source"); std::string targetKey = TestUtils::GetObjectKey("upload-part-copy-object-target"); // put the source obj auto putObjectContent = TestUtils::GetRandomStream(102400); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); // apply upload id auto uploadPartCopyInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, targetKey)); EXPECT_EQ(uploadPartCopyInitOutcome.isSuccess(), true); auto uploadId = uploadPartCopyInitOutcome.result().UploadId(); // time std::string beforeChangeTime = TestUtils::GetGMTString(-100); std::string afterChangeTime = TestUtils::GetGMTString(100); { UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfModifiedSince(beforeChangeTime); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), true); } { UploadPartCopyRequest request(BucketName, targetKey); request.SetCopySource(BucketName, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); request.SetSourceIfModifiedSince(afterChangeTime); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ServerError:304"); } } TEST_F(MultipartUploadTest, UnormalUploadPartCopyTest) { std::string sourceBucket = TestUtils::GetBucketName("unormal-upload-part-copy-bucket-source"); std::string targetBucket = TestUtils::GetBucketName("unormal-upload-part-copy-bucket-target"); std::string sourceKey = TestUtils::GetObjectKey("unormal-upload-part-copy-object-source"); std::string targetKey = TestUtils::GetObjectKey("unormal-upload-part-copy-object-target"); // Set length of parts less than minimum limit(100KB) EXPECT_EQ(Client->CreateBucket(sourceBucket).isSuccess(), true); EXPECT_EQ(Client->CreateBucket(targetBucket).isSuccess(), true); // put object into source bucket auto putObjectContent = TestUtils::GetRandomStream(102400); auto putObjectOutcome = Client->PutObject(PutObjectRequest(sourceBucket, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); std::string eTag = putObjectOutcome.result().ETag(); // apply upload id for target bucket auto uploadPartCopyInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(targetBucket, targetKey)); EXPECT_EQ(uploadPartCopyInitOutcome.isSuccess(), true); auto uploadId = uploadPartCopyInitOutcome.result().UploadId(); // Copy part to non-existent target bucket { std::string nonexistentTargetBucket = TestUtils::GetBucketName("nonexistent-target-key"); UploadPartCopyRequest request(nonexistentTargetBucket, targetKey); request.SetCopySource(sourceBucket, sourceKey); request.setUploadId(uploadId); request.setPartNumber(1); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } // Copy part from non-existent source bucket { std::string nonexistentSourceBucket = TestUtils::GetBucketName("nonexistent-source-bucket"); UploadPartCopyRequest request(targetBucket, targetKey, nonexistentSourceBucket, sourceKey, uploadId, 1); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } // Copy part with non-existent source key { std::string nonexistentSourceKey = "nonexistent-source-key"; UploadPartCopyRequest request(targetBucket, targetKey, sourceBucket, nonexistentSourceKey, uploadId, 1); auto outcome = Client->UploadPartCopy(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchKey"); } // Copy part with non-existent upload id { auto outcome = Client->UploadPartCopy(UploadPartCopyRequest(targetBucket, targetKey, sourceBucket, sourceKey, "id", 1)); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchUpload"); } // Upload part copy PartList partETags; auto firstUploadOutcome = Client->UploadPartCopy(UploadPartCopyRequest(targetBucket, targetKey, sourceBucket, sourceKey, uploadId, 1)); EXPECT_EQ(firstUploadOutcome.isSuccess(), true); // EXPECT_EQ(firstUploadOutcome.result().ETag(), eTag); // partETags.push_back(Part(1, firstUploadOutcome.result().ETag())); auto secondUploadOutcome = Client->UploadPartCopy(UploadPartCopyRequest(targetBucket, targetKey, sourceBucket, sourceKey, uploadId, 2)); EXPECT_EQ(secondUploadOutcome.isSuccess(), true); // EXPECT_EQ(secondUploadOutcome.result().ETag(), eTag); // partETags.push_back(Part(2, secondUploadOutcome.result().ETag())); auto partListOutcome = Client->ListParts(ListPartsRequest(targetBucket, targetKey, uploadId)); EXPECT_EQ(partListOutcome.isSuccess(), true); EXPECT_EQ(partListOutcome.result().PartList().size(), 2U); // Try to complete multipart upload with all uploaded parts CompleteMultipartUploadRequest request(targetBucket, targetKey, partListOutcome.result().PartList(), uploadId); auto completeOutcome = Client->CompleteMultipartUpload(request); EXPECT_EQ(completeOutcome.isSuccess(), true); // get the source object EXPECT_EQ(Client->DoesObjectExist(targetBucket, targetKey), true); // delete source bucket and target bucket EXPECT_EQ(Client->DeleteObject(sourceBucket, sourceKey).isSuccess(), true); EXPECT_EQ(Client->DeleteObject(targetBucket, targetKey).isSuccess(), true); EXPECT_EQ(Client->DeleteBucket(sourceBucket).isSuccess(), true); EXPECT_EQ(Client->DeleteBucket(targetBucket).isSuccess(), true); } TEST_F(MultipartUploadTest, ListMultipartUploadsTest) { //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsTest"); for (size_t i = 0; i < 20; i++) { auto key = targetObjectKey; key.append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_TRUE(lmuOutcome.result().MultipartUploadList().size() >= 20UL); } TEST_F(MultipartUploadTest, ListMultipartUploadsByPrefixTest) { const size_t TestLoop = 10; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsByPrefixTest"); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_TRUE(lmuOutcome.result().MultipartUploadList().size() >= TestLoop); ListMultipartUploadsRequest request(BucketName); request.setPrefix("ListMultipartUploadsByPrefixTest"); request.setMaxUploads(1U); size_t cnt = 0; do { lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 1U); request.setKeyMarker(lmuOutcome.result().NextKeyMarker()); request.setUploadIdMarker(lmuOutcome.result().NextUploadIdMarker()); cnt++; } while (lmuOutcome.result().IsTruncated()); EXPECT_EQ(cnt, TestLoop); } TEST_F(MultipartUploadTest, ListMultipartUploadsByPrefixAndKeyMarkerTest) { const size_t TestLoop = 10; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsByPrefixAndKeyMarkerTest"); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } auto index = TestLoop / 2; auto keyMarker = targetObjectKey.append("-").append(std::to_string(index)); index = TestLoop - index - 1; ListMultipartUploadsRequest request(BucketName); request.setPrefix("ListMultipartUploadsByPrefixAndKeyMarkerTest"); request.setMaxUploads(TestLoop); request.setKeyMarker(keyMarker); auto lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), index); } TEST_F(MultipartUploadTest, ListMultipartUploadsByPrefixWithEncodingTypeTest) { const size_t TestLoop = 5; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsWithEncodingTypeTest"); targetObjectKey.push_back(0x1c); targetObjectKey.push_back(0x1a); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } ListMultipartUploadsRequest request(BucketName); request.setPrefix(targetObjectKey); request.setEncodingType("url"); request.setMaxUploads(1U); auto lmuOutcome = Client->ListMultipartUploads(request); size_t cnt = 0; do { lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 1U); EXPECT_EQ(lmuOutcome.result().NextKeyMarker().compare(0, targetObjectKey.size(), targetObjectKey), 0); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().begin()->Key.compare(0, targetObjectKey.size(), targetObjectKey), 0); request.setKeyMarker(lmuOutcome.result().NextKeyMarker()); request.setUploadIdMarker(lmuOutcome.result().NextUploadIdMarker()); cnt++; } while (lmuOutcome.result().IsTruncated()); EXPECT_EQ(cnt, TestLoop); } TEST_F(MultipartUploadTest, ListMultipartUploadsWithDelimiterTest) { const size_t TestLoop = 10; std::vector commonPrefixs; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsWithDelimiterTest"); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("/").append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } targetObjectKey.append("/"); commonPrefixs.push_back(targetObjectKey); targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsWithDelimiterTest"); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("/").append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } targetObjectKey.append("/"); commonPrefixs.push_back(targetObjectKey); ListMultipartUploadsRequest request(BucketName); request.setPrefix("ListMultipartUploadsWithDelimiterTest"); request.setDelimiter("/"); auto lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().CommonPrefixes().size(), 2U); size_t index = 0; auto first = commonPrefixs.begin(); for (auto const &prefix : lmuOutcome.result().CommonPrefixes()) { EXPECT_EQ(prefix, *first); first++; index++; } EXPECT_EQ(index, 2U); } TEST_F(MultipartUploadTest, ListMultipartUploadsWithDelimiterAndEncodingTypeTest) { const size_t TestLoop = 5; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsWithDelimiterAndEncodingTypeTest"); targetObjectKey.push_back(0x1c); targetObjectKey.push_back(0x1a); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("/-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } auto commonKey = targetObjectKey; commonKey.append("/"); ListMultipartUploadsRequest request(BucketName); request.setPrefix(targetObjectKey); request.setEncodingType("url"); request.setDelimiter("/"); auto lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().CommonPrefixes().size(), 1U); EXPECT_EQ(*lmuOutcome.result().CommonPrefixes().begin(), commonKey); } TEST_F(MultipartUploadTest, ListMultipartUploadsWithMuiltiUploadForSameKeyTest) { const size_t TestLoop = 10; //get target object name auto targetObjectKey = TestUtils::GetObjectKey("ListMultipartUploadsWithMuiltiUploadForSameKeyTest"); for (size_t i = 0; i < TestLoop; i++) { auto key = targetObjectKey; key.append("-").append(std::to_string(i)); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); } ListMultipartUploadsRequest request(BucketName); request.setPrefix("ListMultipartUploadsWithMuiltiUploadForSameKeyTest"); auto lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 2 * TestLoop); auto prefixKey = targetObjectKey; prefixKey.append("-0"); request.setPrefix(prefixKey); lmuOutcome = Client->ListMultipartUploads(request); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 2UL); for (auto const &upload : lmuOutcome.result().MultipartUploadList()) { EXPECT_EQ(upload.Key, prefixKey); } } TEST_F(MultipartUploadTest, ListMultipartUploadsNegativeTest) { //get target object name auto bucket = TestUtils::GetBucketName("cpp-sdk-multipartuploadtest"); ListMultipartUploadsRequest request(bucket); auto outcome = Client->ListMultipartUploads(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } TEST_F(MultipartUploadTest, ListPartsTest) { const size_t TestLoop = 10; //get target object name auto key = TestUtils::GetObjectKey("ListPartsTest"); InitiateMultipartUploadRequest imuRequest(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); for (int i = 0; i < static_cast(TestLoop); i++) { std::shared_ptr content = TestUtils::GetRandomStream(100 * 1024 + i); UploadPartRequest request(BucketName, key, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); } ListPartsRequest listRequest(BucketName, key, initOutcome.result().UploadId()); auto outcome = Client->ListParts(listRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().PartList().size(), TestLoop); } TEST_F(MultipartUploadTest, ListPartsSetpTest) { const size_t TestLoop = 10; //get target object name auto key = TestUtils::GetObjectKey("ListPartsSetpTest"); InitiateMultipartUploadRequest imuRequest(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); for (int i = 0; i < static_cast(TestLoop); i++) { std::shared_ptr content = TestUtils::GetRandomStream(100 * 1024 + i); UploadPartRequest request(BucketName, key, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); } ListPartsRequest listRequest(BucketName, key, initOutcome.result().UploadId()); listRequest.setMaxParts(1); auto outcome = Client->ListParts(listRequest); size_t cnt = 0; do { outcome = Client->ListParts(listRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().PartList().size(), 1U); EXPECT_EQ(outcome.result().PartNumberMarker(), cnt); listRequest.setPartNumberMarker(outcome.result().NextPartNumberMarker()); cnt++; } while (outcome.result().IsTruncated()); EXPECT_EQ(cnt, TestLoop); } TEST_F(MultipartUploadTest, ListPartsSetpUseEncodingTypeTest) { const size_t TestLoop = 5; //get target object name auto key = TestUtils::GetObjectKey("ListPartsSetpUseEncodingTypeTest"); key.push_back(0x1c); key.push_back(0x1a); key.append(".1.cd"); InitiateMultipartUploadRequest imuRequest(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); for (int i = 0; i < static_cast(TestLoop); i++) { std::shared_ptr content = TestUtils::GetRandomStream(100 * 1024 + i); UploadPartRequest request(BucketName, key, content); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); } ListPartsRequest listRequest(BucketName, key, initOutcome.result().UploadId()); listRequest.setMaxParts(1U); listRequest.setEncodingType("url"); auto outcome = Client->ListParts(listRequest); size_t cnt = 0; do { outcome = Client->ListParts(listRequest); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().PartList().size(), 1U); EXPECT_EQ(outcome.result().Key(), key); EXPECT_EQ(outcome.result().MaxParts(), 1U); listRequest.setPartNumberMarker(outcome.result().NextPartNumberMarker()); cnt++; } while (outcome.result().IsTruncated()); EXPECT_EQ(cnt, TestLoop); } TEST_F(MultipartUploadTest, ListPartsNegativeTest) { //get target object name auto key = TestUtils::GetObjectKey("ListPartsNegativeTest"); ListPartsRequest listRequest(BucketName, key, "asdadf"); listRequest.setMaxParts(1U); auto outcome = Client->ListParts(listRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchUpload"); } TEST_F(MultipartUploadTest, MultipartUploadWithInvalidResponseBodyTest) { auto key = TestUtils::GetObjectKey("MultipartUploadWithInvalidResponseBodyTest"); //test init InitiateMultipartUploadRequest imuRequest(BucketName, key); imuRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "InitiateMultipartUploadError"); InitiateMultipartUploadRequest request(BucketName, key); initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); std::shared_ptr content = TestUtils::GetRandomStream(100); UploadPartRequest upRequest(BucketName, key, content); upRequest.setPartNumber(1); upRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(upRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); //test listParts ListPartsRequest listRequest(BucketName, key, initOutcome.result().UploadId()); listRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "ListParts"); //test listUploads ListMultipartUploadsRequest lmuRequest(BucketName); lmuRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto lmuOutcome = Client->ListMultipartUploads(lmuRequest); EXPECT_EQ(lmuOutcome.isSuccess(), false); EXPECT_EQ(lmuOutcome.error().Code(), "ListMultipartUploads"); //test compelete PartList partList; Part part(1, uploadPartOutcome.result().ETag()); partList.push_back(part); CompleteMultipartUploadRequest completeRequest(BucketName, key); completeRequest.setPartList(partList); completeRequest.setUploadId(initOutcome.result().UploadId()); completeRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), false); EXPECT_EQ(cOutcome.error().Code(), "CompleteMultipartUpload"); } TEST_F(MultipartUploadTest, UploadPartCopyRequestValidateNegativeTest) { UploadPartCopyRequest request1("INVALIDNAME", "test1", BucketName, "test2"); auto uploadPartOutcome = Client->UploadPartCopy(request1); UploadPartCopyRequest request2(BucketName, "test1", "INVALIDNAME", "test2"); uploadPartOutcome = Client->UploadPartCopy(request2); UploadPartCopyRequest request3(BucketName, "test1", BucketName, "/invalidkey"); uploadPartOutcome = Client->UploadPartCopy(request3); CompleteMultipartUploadRequest request4(BucketName, "test1"); std::string str; request4.setCallback(str, "test"); std::string text = "hellowworld"; HeaderCollection header; CompleteMultipartUploadResult result(std::make_shared(text), header); CompleteMultipartUploadResult result1("test"); std::string xml = R"( )"; CompleteMultipartUploadResult result2(xml); xml = R"( )"; CompleteMultipartUploadResult result3(xml); xml = R"()"; CompleteMultipartUploadResult result4(xml); } TEST_F(MultipartUploadTest, InitiateMultipartUploadResultBranchTest) { InitiateMultipartUploadResult result("test"); std::string xml = R"( multipart_upload multipart.data 0004B9894A22E5B1888A1E29F8236E2D )"; InitiateMultipartUploadResult result1(xml); xml = R"( )"; InitiateMultipartUploadResult result2(xml); xml = R"( )"; InitiateMultipartUploadResult result3(xml); xml = R"()"; InitiateMultipartUploadResult result4(xml); } TEST_F(MultipartUploadTest, ListMultipartUploadsResultBranchTest) { ListMultipartUploadsResult result("test"); std::string xml = R"( )"; ListMultipartUploadsResult result1(xml); xml = R"( )"; ListMultipartUploadsResult result2(xml); xml = R"( )"; ListMultipartUploadsResult result3(xml); xml = R"( )"; ListMultipartUploadsResult result4(xml); xml = R"()"; ListMultipartUploadsResult result5(xml); } TEST_F(MultipartUploadTest, ListPartsResultBranchTest) { ListPartsResult result("test"); std::string xml = R"( )"; ListPartsResult result1(xml); xml = R"( )"; ListPartsResult result2(xml); xml = R"( )"; ListPartsResult result3(xml); xml = R"( )"; ListPartsResult result4(xml); xml = R"()"; ListPartsResult result5(xml); } TEST_F(MultipartUploadTest, UploadPartCopyResultBranchTest) { HeaderCollection header; std::shared_ptr content = std::make_shared(); *content << "test"; UploadPartCopyResult result1(content, header); UploadPartCopyResult result("test"); std::string xml = R"( )"; UploadPartCopyResult result2(xml); xml = R"( )"; UploadPartCopyResult result3(xml); xml = R"( )"; UploadPartCopyResult result4(xml); xml = R"()"; UploadPartCopyResult result5(xml); } TEST_F(MultipartUploadTest, MultiUploadWithSequentialTest) { auto key = TestUtils::GetObjectKey("MultiUploadWithSequentialTest"); auto content = TestUtils::GetRandomStream(100); auto calcETag = ComputeContentETag(*content); //default InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 2, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_EQ(uploadPartOutcome.result().ETag(), calcETag); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); //set true InitiateMultipartUploadRequest request1(BucketName, key); request1.setSequential(true); initOutcome = Client->InitiateMultipartUpload(request1); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 2, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), false); uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 1, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_EQ(uploadPartOutcome.result().ETag(), calcETag); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); //set false request1.setSequential(false); initOutcome = Client->InitiateMultipartUpload(request1); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); uploadPartOutcome = Client->UploadPart(UploadPartRequest(BucketName, key, 2, initOutcome.result().UploadId(), content)); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_EQ(uploadPartOutcome.result().ETag(), calcETag); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); } TEST_F(MultipartUploadTest, UploadPartWithContentMd5Test) { std::string key = TestUtils::GetObjectKey("UploadPartWithContentMd5Test"); InitiateMultipartUploadRequest initUploadRequest(BucketName, key); auto ulOutcome = Client->InitiateMultipartUpload(initUploadRequest); EXPECT_EQ(ulOutcome.isSuccess(), true); auto uploadId = ulOutcome.result().UploadId(); PartList partETagList; // Upload multiparts to bucket std::shared_ptr content = std::make_shared("hello"); UploadPartRequest uploadPartRequest(BucketName, key, content); uploadPartRequest.setUploadId(uploadId); uploadPartRequest.setPartNumber(1); uploadPartRequest.setContentMd5(ComputeContentMD5("hello", 5)); auto upOutcome = Client->UploadPart(uploadPartRequest); EXPECT_EQ(upOutcome.isSuccess(), true); partETagList.push_back(Part(1, upOutcome.result().ETag())); // Complete to upload multiparts CompleteMultipartUploadRequest request(BucketName, key); request.setUploadId(uploadId); request.setPartList(partETagList); auto cmOutcome = Client->CompleteMultipartUpload(request); EXPECT_EQ(cmOutcome.isSuccess(), true); } } } ================================================ FILE: test/src/MultipartUpload/ObjectAsyncTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include #ifdef _WIN32 #include #else #include #endif namespace AlibabaCloud { namespace OSS { class ObjectAsyncTest : public ::testing::Test { protected: ObjectAsyncTest() { } ~ObjectAsyncTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-multipartupload"); Client->CreateBucket(CreateBucketRequest(BucketName)); TestFile = TestUtils::GetTargetFileName("cpp-sdk-multipartupload"); TestUtils::WriteRandomDatatoFile(TestFile, 1 * 1024 * 1024 + 100); TestFileMd5 = TestUtils::GetFileMd5(TestFile); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { RemoveFile(TestFile); TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string TestFile; static std::string TestFileMd5; }; std::shared_ptr ObjectAsyncTest::Client = nullptr; std::string ObjectAsyncTest::BucketName = ""; std::string ObjectAsyncTest::TestFile = ""; std::string ObjectAsyncTest::TestFileMd5 = ""; class UploadPartAsyncContext : public AsyncCallerContext { public: UploadPartAsyncContext() :ready(false) {} virtual ~UploadPartAsyncContext() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; void UploadPartInvalidHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartInvalidHandler, tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), false); std::cout << __FUNCTION__ << " InvalidHandler, code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } void UploadPartHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartHandler,tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectAsyncTest, UploadPartAsyncBasicTest) { std::string memKey = TestUtils::GetObjectKey("UploadPartMemObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); InitiateMultipartUploadRequest memInitRequest(BucketName, memKey); auto memInitOutcome = Client->InitiateMultipartUpload(memInitRequest); EXPECT_EQ(memInitOutcome.isSuccess(), true); EXPECT_EQ(memInitOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartFileObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("UploadPartFileObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); InitiateMultipartUploadRequest fileInitRequest(BucketName, fileKey); auto fileInitOutcome = Client->InitiateMultipartUpload(fileInitRequest); EXPECT_EQ(fileInitOutcome.isSuccess(), true); EXPECT_EQ(fileInitOutcome.result().Key(), fileKey); UploadPartAsyncHandler handler = UploadPartHandler; UploadPartRequest memRequest(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("UploadPartAsyncFromMem"); UploadPartRequest fileRequest(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("UploadPartAsyncFromFile"); Client->UploadPartAsync(memRequest, handler, memContext); Client->UploadPartAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue UploadPartAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); auto memListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); EXPECT_EQ(memListPartsOutcome.isSuccess(), true); auto fileListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(fileListPartsOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartsOutcome.result().PartList(), memInitOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartsOutcome.result().PartList(), fileInitOutcome.result().UploadId())); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectAsyncTest, UploadPartAsyncInvalidContentTest) { std::string key = TestUtils::GetObjectKey("UploadPartCopyAsyncInvalidContentTest"); UploadPartAsyncHandler handler = UploadPartInvalidHandler; std::shared_ptr content = nullptr; UploadPartRequest request(BucketName, key, 1, "id", content); std::shared_ptr context = std::make_shared(); context->setUuid("UploadPartCopyAsyncInvalidContent"); Client->UploadPartAsync(request, handler, context); #ifdef _WIN32 Sleep(1 * 1000); #else sleep(1); #endif content = TestUtils::GetRandomStream(100); request.setConetent(content); Client->UploadPartAsync(request, handler, context); #ifdef _WIN32 Sleep(1 * 1000); #else sleep(1); #endif request.setContentLength(5LL * 1024LL * 1024LL * 1024LL + 1LL); Client->UploadPartAsync(request, handler, context); request.setContentLength(100); #ifdef _WIN32 Sleep(1 * 1000); #else sleep(1); #endif request.setBucket("non-existent-bucket"); Client->UploadPartAsync(request, handler, context); request.setBucket(BucketName); } void UploadPartCopyHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartCopyRequest& request, const UploadPartCopyOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "UploadPartCopyHandler, tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectAsyncTest, UploadPartCopyAsyncBasicTest) { // put object from buffer std::string memObjKey = TestUtils::GetObjectKey("PutObjectFromBuffer"); auto memObjContent = TestUtils::GetRandomStream(102400); auto putMemObjOutcome = Client->PutObject(PutObjectRequest(BucketName, memObjKey, memObjContent)); EXPECT_EQ(putMemObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memObjKey), true); // put object from local file std::string fileObjKey = TestUtils::GetObjectKey("PutObjectFromFile"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFile").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileObjContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); auto putFileObjOutcome = Client->PutObject(PutObjectRequest(BucketName, fileObjKey, fileObjContent)); EXPECT_EQ(putFileObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileObjKey), true); // close the file fileObjContent->close(); // apply the upload id std::string memKey = TestUtils::GetObjectKey("UploadPartCopyMemObjectAsyncBasicTest"); auto memInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitObjOutcome.isSuccess(), true); EXPECT_EQ(memInitObjOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartCopyFileObjectAsyncBasicTest"); auto fileInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitObjOutcome.isSuccess(), true); EXPECT_EQ(fileInitObjOutcome.result().Key(), fileKey); // construct parameter UploadPartCopyAsyncHandler handler = UploadPartCopyHandler; UploadPartCopyRequest memRequest(BucketName, memKey, BucketName, memObjKey, memInitObjOutcome.result().UploadId(), 1); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("UploadPartCopyAsyncFromMem"); UploadPartCopyRequest fileRequest(BucketName, fileKey, BucketName, fileObjKey, fileInitObjOutcome.result().UploadId(), 1); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("UploadPartCopyAsyncFromFile"); Client->UploadPartCopyAsync(memRequest, handler, memContext); Client->UploadPartCopyAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue UploadPartCopyAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if(!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } // list parts auto memListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitObjOutcome.result().UploadId())); EXPECT_EQ(memListPartsOutcome.isSuccess(), true); auto fileListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitObjOutcome.result().UploadId())); EXPECT_EQ(fileListPartsOutcome.isSuccess(), true); // complete CompleteMultipartUploadRequest memCompleteRequest(BucketName, memKey, memListPartsOutcome.result().PartList()); memCompleteRequest.setUploadId(memInitObjOutcome.result().UploadId()); auto memCompleteOutcome = Client->CompleteMultipartUpload(memCompleteRequest); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); CompleteMultipartUploadRequest fileCompleteRequest(BucketName, fileKey, fileListPartsOutcome.result().PartList()); fileCompleteRequest.setUploadId(fileInitObjOutcome.result().UploadId()); auto fileCompleteOutcome = Client->CompleteMultipartUpload(fileCompleteRequest); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); fileObjContent = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } class ListObjectsAsyncContext : public AsyncCallerContext { public: ListObjectsAsyncContext() :ready(false) {} virtual ~ListObjectsAsyncContext() { } const ObjectSummaryList& ObjectSummarys() const { return objectSummarys_; } void setObjectSummaryList(const AlibabaCloud::OSS::ObjectSummaryList& objectSummarys) const { objectSummarys_ = objectSummarys; } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; mutable AlibabaCloud::OSS::ObjectSummaryList objectSummarys_; }; void ListObjectsHandler(const AlibabaCloud::OSS::OssClient* client, const ListObjectsRequest& request, const ListObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "Client[" << client << "]" << "ListObjectsHandler" << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ObjectSummarys().size(), 20U); EXPECT_EQ(outcome.result().IsTruncated(), false); ctx->setObjectSummaryList(outcome.result().ObjectSummarys()); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectAsyncTest, ListObjectsAsyncBasicTest) { auto ListObjectBucketName = TestUtils::GetBucketName("list-object-async-bucket"); auto bucketOutcome = Client->CreateBucket(CreateBucketRequest(ListObjectBucketName)); EXPECT_EQ(bucketOutcome.isSuccess(), true); // create test file for (int i = 0; i < 20; i++) { std::string key = TestUtils::GetObjectKey("ListAllObjectsAsync"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(ListObjectBucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } // list objects async ListObjectsRequest request(ListObjectBucketName); ListObjectAsyncHandler handler = ListObjectsHandler; std::shared_ptr content = std::make_shared(); Client->ListObjectsAsync(request, handler, content); std::cout << "Client[" << Client << "]" << "Issue ListObjectsAsync done." << std::endl; { std::unique_lock lck(content->mtx); if (!content->ready) content->cv.wait(lck); } int i = 0; for (auto const &obj : content->ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); i++; } EXPECT_EQ(i, 20); TestUtils::CleanBucket(*Client, ListObjectBucketName); EXPECT_EQ(Client->DoesBucketExist(ListObjectBucketName), false); } TEST_F(ObjectAsyncTest, AsyncCallerContextClassTest) { AsyncCallerContext context("AsyncCallerContextClassTest"); } } } ================================================ FILE: test/src/MultipartUpload/ResumableObjectTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include "src/external/json/json.h" #include #include #ifdef _WIN32 #include // std::codecvt_utf8 #endif namespace AlibabaCloud { namespace OSS { class ResumableObjectTest : public::testing::Test { protected: ResumableObjectTest() { } ~ResumableObjectTest()override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-resumableobject"); Client->CreateBucket(CreateBucketRequest(BucketName)); UploadPartFailedFlag = 1 << 30; DownloadPartFailedFlag = 1 << 30; CopyPartFailedFlag = 1 << 30; } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static std::string GetCheckpointFileByResumableUploader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath); static std::string GetCheckpointFileByResumableDownloader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath); static std::string GetCheckpointFileByResumableCopier(std::string bucket, std::string key, std::string srcBucket, std::string srcKey, std::string checkpointDir); static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData); public: static std::shared_ptr Client; static std::string BucketName; static int UploadPartFailedFlag; static int DownloadPartFailedFlag; static int CopyPartFailedFlag; }; std::string ResumableObjectTest::GetCheckpointFileByResumableUploader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(filePath) + "--" + ComputeContentETag(destPath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } std::string ResumableObjectTest::GetCheckpointFileByResumableDownloader(std::string bucket, std::string key, std::string checkpointDir, std::string filePath) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto srcPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(filePath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } std::string ResumableObjectTest::GetCheckpointFileByResumableCopier(std::string bucket, std::string key, std::string srcBucket, std::string srcKey, std::string checkpointDir) { if (!checkpointDir.empty()) { std::stringstream ss; ss << "oss://" << srcBucket << "/" << srcKey; auto srcPath = ss.str(); ss.str(""); ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); return checkpointDir + PATH_DELIMITER + safeFileName; } return ""; } void ResumableObjectTest::ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { std::cout << "ProgressCallback[" << userData << "] => " << increment << "," << transfered << "," << total << std::endl; } std::shared_ptr ResumableObjectTest::Client = nullptr; std::string ResumableObjectTest::BucketName = ""; int ResumableObjectTest::UploadPartFailedFlag = 0; int ResumableObjectTest::DownloadPartFailedFlag = 0; int ResumableObjectTest::CopyPartFailedFlag = 0; TEST_F(ResumableObjectTest, NormalResumableUploadWithSizeOverPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectOverPartSize").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); auto getoutcome = Client->GetObject(GetObjectRequest(BucketName, key)); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithSizeUnderPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSize").append(".tmp"); int num = rand() % 8; TestUtils::WriteRandomDatatoFile(tmpFile, 10240 * num); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableObjectWithDisableRequest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithDisableRequest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); Client->DisableRequest(); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); Client->EnableRequest(); } TEST_F(ResumableObjectTest, MultiResumableUploadWithSizeOverPartSizeTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectOverPartSize").append(".tmp"); int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadSetMinPartSizeTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectSetMinPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectSetMinPartSize").append(".tmp"); int num = 1 + rand() % 20; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int partSize = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(partSize * 102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithoutSourceFilePathTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePath"); std::string tmpFile; UploadObjectRequest request(BucketName, key, tmpFile); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithoutRealFileTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutRealFile"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutRealFile").append(".tmp"); UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithNotExitsCheckpointTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithNotExitsCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithNotExitsCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 100); std::string checkPoint = "NotExistDir"; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkPoint); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, MultiResumableUploadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setCheckpointDir(checkpointDir); request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithFailedPartUploadTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(1024); auto failOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(failOutcome.isSuccess(), false); request.setPartSize(102400); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryAfterFailedPartTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, MultiResumableUploadRetryAfterFailedPartTest) { std::string key = TestUtils::GetObjectKey("NormalMultiUploadObjectWithFailedPart"); std::string tmpFile = TestUtils::GetTargetFileName("NormalMultiUploadObjectWithFailedPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryWithUploadPartTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectRetryWithUploadPart"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUploadObjectRetryWithUploadPart").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // read the checkpoint json file std::string filename = GetCheckpointFileByResumableUploader(BucketName, key, checkpointKey, tmpFile); auto listMultipartOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(listMultipartOutcome.isSuccess(), true); auto multipartUpload = listMultipartOutcome.result().MultipartUploadList()[0]; // resend the NO.2 part data std::shared_ptr content = std::make_shared(tmpFile, std::ios::in | std::ios::binary); content->seekg(102400, content->beg); UploadPartRequest uploadPartRequest(BucketName, multipartUpload.Key, 2, multipartUpload.UploadId, content); uploadPartRequest.setContentLength(102400); auto reuploadOutcome = Client->UploadPart(uploadPartRequest); content = nullptr; uploadPartRequest.setConetent(content); EXPECT_EQ(reuploadOutcome.isSuccess(), true); // Complete object auto listpartsOutcome = Client->ListParts(ListPartsRequest(BucketName, multipartUpload.Key, multipartUpload.UploadId)); EXPECT_EQ(listpartsOutcome.isSuccess(), true); auto partlist = listpartsOutcome.result().PartList(); CompleteMultipartUploadRequest completeRequest(BucketName, multipartUpload.Key, partlist, multipartUpload.UploadId); auto completeOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(completeOutcome.isSuccess(), true); // download the file EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); std::string targetFile = TestUtils::GetObjectKey("DownloadUploadPartObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(filename), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryWithSourceFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithSourceFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithSourceFileChanged").append(".tmp"); int num = 2 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); request.setPartSize(102400); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change source file EXPECT_EQ(RemoveFile(tmpFile), true); // TODO: API only check file size, don't check the contents of file TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (num + 1)); std::string newSourceFileMd5 = TestUtils::GetFileMd5(tmpFile); EXPECT_NE(sourceFileMd5, newSourceFileMd5); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download target object std::string targetFile = TestUtils::GetObjectKey("DownloadResumableUploadObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(targetFileMd5, newSourceFileMd5); EXPECT_NE(targetFileMd5, sourceFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, MultiResumableUploadRetryWithSourceFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithSourceFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithSourceFileChanged").append(".tmp"); int num = 2 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile, checkpointKey, 102400, threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change source file EXPECT_EQ(RemoveFile(tmpFile), true); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 100); std::string newSourceFileMd5 = TestUtils::GetFileMd5(tmpFile); EXPECT_NE(sourceFileMd5, newSourceFileMd5); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::string targetFile = TestUtils::GetObjectKey("DownloadResumableUploadObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(targetFileMd5, newSourceFileMd5); EXPECT_NE(targetFileMd5, sourceFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFilename = GetCheckpointFileByResumableUploader(BucketName, key, checkpointKey, tmpFile); std::string checkpointTmpFile = std::string(checkpointFilename).append(".tmp"); std::ifstream jsonStream(checkpointFilename, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadId = "InvaliedUploadID"; //if (reader.parse(jsonStream, readRoot)) { if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadId; writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["size"] = readRoot["size"].asInt64(); writeRoot["partSize"] = readRoot["partSize"].asInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFilename), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFilename), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, MultiResumableUploadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string checkpointKey = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed int threadNum = 1 + rand() % 100; UploadObjectRequest request(BucketName, key, tmpFile, checkpointKey, 102400, threadNum); request.setFlags(request.Flags() | UploadPartFailedFlag); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFilename = GetCheckpointFileByResumableUploader(BucketName, key, checkpointKey, tmpFile); std::string checkpointTmpFile = std::string(checkpointFilename).append(".tmp"); std::ifstream jsonStream(checkpointFilename, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadId = "InvaliedUploadID"; //if (reader.parse(jsonStream, readRoot)) { if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadId; writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["size"] = readRoot["size"].asInt64(); writeRoot["partSize"] = readRoot["partSize"].asInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFilename), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFilename), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryWithUploadIdAbortTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadRetryWithUploadIdAbortTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadRetryWithUploadIdAbortTest").append(".tmp"); int num = 2 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string checkpointKey = TestUtils::GetObjectKey("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); request.setPartSize(102400); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // abort upload Id ListMultipartUploadsRequest lmuRequest(BucketName); lmuRequest.setPrefix(key); auto lmuOutcome = Client->ListMultipartUploads(lmuRequest); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 1UL); auto uploadId = lmuOutcome.result().MultipartUploadList()[0].UploadId; AbortMultipartUploadRequest abortRequest(BucketName, key, uploadId); auto abortOutcome = Client->AbortMultipartUpload(abortRequest); EXPECT_EQ(abortOutcome.isSuccess(), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download target object std::string targetFile = TestUtils::GetObjectKey("DownloadResumableUploadObject"); auto getObjectOutcome = Client->GetObject(BucketName, key, targetFile); std::shared_ptr getObjectContent = nullptr; getObjectOutcome.result().setContent(getObjectContent); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(targetFileMd5, sourceFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithProgressCallbackTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); std::cout << "this ptr:" << this << std::endl; TransferProgress progressCallback = { ProgressCallback, this }; UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableUploadProgressCallbackWithUploadPartFailedTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); TransferProgress progressCallback = { ProgressCallback, this }; UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry std::cout << "Retry : " << std::endl; request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableUploadWithThreadNumberOverPartNumber) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectWithThreadNumberOverPartNumber"); std::string tmpFile = TestUtils::GetTargetFileName("MultiUploadObjectWithThreadNumberOverPartNumber").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); int threadNum = 0; UploadObjectRequest request(BucketName, key, tmpFile, ""); request.setPartSize(102400); request.setThreadNum(threadNum); auto invalidateOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(invalidateOutcome.isSuccess(), false); // the thread num over part num threadNum = 20; request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithObjectMetaDataSetTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithObjectMetaDateSetTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithObjectMetaDateSetTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); ObjectMetaData meta; meta.setCacheControl("No-Cache"); meta.setExpirationTime("Fri, 09 Nov 2018 05:57:16 GMT"); // upload object UploadObjectRequest request(BucketName, key, tmpFile, "", meta); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().CacheControl(), "No-Cache"); EXPECT_EQ(hOutcome.result().ExpirationTime(), "Fri, 09 Nov 2018 05:57:16 GMT"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithUserMetaDataTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithUserDataTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalUploadObjectWithUserDataTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); // upload object ObjectMetaData metaDate; metaDate.UserMetaData()["test"] = "testvalue"; UploadObjectRequest request(BucketName, key, tmpFile, "", 102400, 1, metaDate); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithObjectAclSetTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectWithObjectAclSetTest"); std::string tmpFile = TestUtils::GetTargetFileName("").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); // upload object UploadObjectRequest request(BucketName, key, tmpFile, "", 102400, 1); CannedAccessControlList acl = CannedAccessControlList::PublicReadWrite; request.setAcl(acl); request.setEncodingType("url"); EXPECT_EQ(request.EncodingType(), "url"); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, key)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadObjectWithDisableRequest) { // upload object std::string key = TestUtils::GetObjectKey("UnnormalResumableDownloadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalResumableDownloadObjectWithDisableRequest").append(".tmp"); std::string targetKey = TestUtils::GetObjectKey("UnnormalResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (1 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); // download object Client->DisableRequest(); DownloadObjectRequest request(BucketName, key, targetKey); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetKey.append(".temp")), true); Client->EnableRequest(); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithSizeOverPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectOverPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithSizeUnderPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectUnderPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 10 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, MultiResumableDownloadWithSizeOverPartSizeTest) { // upload std::string key = TestUtils::GetObjectKey("MultiResumableDownloadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("MultiResumableDownloadObjectOverPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 100; auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadSetMinPartSizeTest) { // upload std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectSetMinPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectSetMinPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download int partSize = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(partSize * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); request.setPartSize(102400); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithoutTargetFilePathTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePath"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutFilePath").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::string targetFile; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithNotExitsCheckpointTest) { std::string key = TestUtils::GetObjectKey("UnnormalDownloadObjectWithNotExistCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalDownloadObjectWithNotExistCheckpoint").append(".tmp"); std::string checkpointDir = "NotExistDir"; std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); std::shared_ptr content = nullptr; outcome.result().setContent(content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Checkpoint directory is not exist."); EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(targetFile.append(".temp")); } TEST_F(ResumableObjectTest, MultiResumableDownloadWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectWithCheckpoint").append(".tmp"); std::string checkpointDir = TestUtils::GetExecutableDirectory(); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download int threadNum = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithDownloadPartFailedTest) { std::string key = TestUtils::GetObjectKey("UnnormalDownloadObjectWithPartFailed"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalDownloadObjectWithPartFailed").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string failedDownloadFile = targetFile.append(".temp"); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(failedDownloadFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableDownloadRetryWithCheckpointTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectRetryWithCheckpoint"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectRetryWithCheckpoint").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object int threadNum = 1 + rand() % 100; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadRetryWithSourceObjectDeletedTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithSourceObjectDeleted"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithSourceObjectDeleted").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // put object auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // delete source object auto deleteObjectOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(deleteObjectOutcome.isSuccess(), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), false); std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile.append(".temp")), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectRetryWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectRetryWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string invaliedKey = "InvaliedKey"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = invaliedKey; writeRoot["filePath"] = readRoot["filePath"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["sizesize"] = readRoot["size"].asUInt64(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); for (uint32_t i = 0; i < readRoot["parts"].size(); i++) { Json::Value partValue = readRoot["parts"][i]; writeRoot["parts"][i]["partNumber"] = partValue["partNumber"].asInt(); writeRoot["parts"][i]["size"] = partValue["size"].asInt64(); writeRoot["parts"][i]["crc64"] = partValue["crc64"].asUInt64(); } writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); if (readRoot["rangeStart"] != Json::nullValue && readRoot["rangeEnd"] != Json::nullValue) { writeRoot["rangeStart"] = readRoot["rangeStart"].asInt64(); writeRoot["rangeEnd"] = readRoot["rangeEnd"].asInt64(); } } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(sourceFileMd5, targetFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableDownloadRetryWithCheckpointFileChangedTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectRetryWithCheckpointFileChanged"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectRetryWithCheckpointFileChanged").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (2 + rand() % 10)); std::string targetFile = TestUtils::GetObjectKey("ResumableDownloadTargetObject"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object int threadNum = 1 + rand() % 100; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); // change the checkpoint file std::string checkpointFile = GetCheckpointFileByResumableDownloader(BucketName, key, checkpointDir, targetFile); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string invaliedKey = "InvaliedKey"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = invaliedKey; writeRoot["filePath"] = readRoot["filePath"].asString(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["sizesize"] = readRoot["size"].asUInt64(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); for (uint32_t i = 0; i < readRoot["parts"].size(); i++) { Json::Value partValue = readRoot["parts"][i]; writeRoot["parts"][i]["partNumber"] = partValue["partNumber"].asInt(); writeRoot["parts"][i]["size"] = partValue["size"].asInt64(); writeRoot["parts"][i]["crc64"] = partValue["crc64"].asUInt64(); } writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); if (readRoot["rangeStart"] != Json::nullValue && readRoot["rangeEnd"] != Json::nullValue) { writeRoot["rangeStart"] = readRoot["rangeStart"].asInt64(); writeRoot["rangeEnd"] = readRoot["rangeEnd"].asInt64(); } } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string sourceFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string targetFileMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(sourceFileMd5, targetFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithProgressCallbackTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithProgressCallback"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithProgressCallback"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); std::cout << "this ptr:" << this << std::endl; TransferProgress progressCallback = { ProgressCallback, this }; DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setTransferProgress(progressCallback); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadProgressCallbackWithDownloadPartFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectProgressCallbackWithPartFailed"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectProgressCallbackWithPartFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setCheckpointDir(checkpointDir); request.setTransferProgress(progressCallback); request.setFlags(request.Flags() | DownloadPartFailedFlag); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); std::cout << "Retry : " << std::endl; request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithRangeLength"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithRangeLength"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(20, 30); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), 30 - 20 + 1); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithErrorRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithErrorRangeLength"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithErrorRangeLength"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(20, -1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(targetKey), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length - 20); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithErrorRangeLength) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalDownloadSourceObjectWithErrorRangeLength"); std::string targetKey = TestUtils::GetObjectKey("UnnormalDownloadTargetObjectWithErrorRangeLength"); auto putObjectContent = TestUtils::GetRandomStream(102400 * 2); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(102400, 20); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, MultiResumableDwoanloadWithThreadNumberOverPartNumber) { std::string sourceKey = TestUtils::GetObjectKey("MultiDownloadSourceObjectWithThreadNumberOverPartNumber"); std::string targetKey = TestUtils::GetObjectKey("MultiDownloadTargetObjectWithThreadNumberOverPartNumber"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download int threadNum = 0; DownloadObjectRequest request(BucketName, sourceKey, targetKey, ""); request.setPartSize(102400); request.setThreadNum(threadNum); auto invalidateOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(invalidateOutcome.isSuccess(), false); threadNum = 20; request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDwoanloadWithResponseHeadersSetTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiDownloadSourceObjectWithResponseHeadersSetTest"); std::string targetKey = TestUtils::GetObjectKey("MultiDownloadTargetObjectWithResponseHeadersSetTest"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setThreadNum(1); request.addResponseHeaders(RequestResponseHeader::CacheControl, "max-age=3"); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CacheControl(), "max-age=3"); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithModifiedSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithModifiedSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithModifiedSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); // error set Modified-Since time request.setModifiedSinceConstraint(TestUtils::GetGMTString(100)); auto modifiedOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(modifiedOutcome.isSuccess(), false); EXPECT_EQ(modifiedOutcome.error().Code(), "ServerError:304"); // error set Unmodified-Since time request.setModifiedSinceConstraint(TestUtils::GetGMTString(0)); request.setUnmodifiedSinceConstraint(TestUtils::GetGMTString(-100)); auto unmodifiedOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(unmodifiedOutcome.isSuccess(), false); EXPECT_EQ(unmodifiedOutcome.error().Code(), "PreconditionFailed"); // normal download request.setModifiedSinceConstraint(TestUtils::GetGMTString(-100)); request.setUnmodifiedSinceConstraint(TestUtils::GetGMTString(100)); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithMatchSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithMatchSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithMatchSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); auto hOutcom = Client->HeadObject(BucketName, sourceKey); EXPECT_EQ(hOutcom.isSuccess(), true); std::string realETag = hOutcom.result().ETag(); std::vector eTagMatchList; std::vector eTagNoneMatchList; // download DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); // error set If-Match eTagMatchList.push_back("invalidateETag"); request.setMatchingETagConstraints(eTagMatchList); auto matchOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(matchOutcome.isSuccess(), false); EXPECT_EQ(matchOutcome.error().Code(), "PreconditionFailed"); // error set If-None-Match eTagMatchList.clear(); eTagNoneMatchList.push_back(realETag); request.setMatchingETagConstraints(eTagMatchList); request.setNonmatchingETagConstraints(eTagNoneMatchList); auto noneMatchOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(noneMatchOutcome.isSuccess(), false); EXPECT_EQ(noneMatchOutcome.error().Code(), "ServerError:304"); // normal download eTagNoneMatchList.clear(); eTagMatchList.push_back(realETag); eTagNoneMatchList.push_back("invalidateETag"); request.setMatchingETagConstraints(eTagMatchList); request.setNonmatchingETagConstraints(eTagNoneMatchList); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), hOutcom.result().ContentLength()); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableDwoanloadWithoutCRCCheckTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalResumableDwoanloadWithoutCRCCheckTest"); std::string targetKey = TestUtils::GetObjectKey("NormalResumableDwoanloadWithoutCRCCheckTest"); int length = 102400 * (2 + rand() % 10); auto putObjectContent = TestUtils::GetRandomStream(length); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // download ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setThreadNum(1); request.addResponseHeaders(RequestResponseHeader::CacheControl, "max-age=3"); auto outcome = client.ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CacheControl(), "max-age=3"); EXPECT_EQ(outcome.result().Metadata().ContentLength(), length); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, UnnormalResumableCopyObjectWithDisableRequest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalResumableCopyObjectSourceKey"); std::string targetKey = TestUtils::GetObjectKey("UnnormalResumableCopyObjectTargetKey"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalResumableCopyObject").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400 * (1 + rand() % 10)); // upload object auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy object Client->DisableRequest(); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); Client->EnableRequest(); } TEST_F(ResumableObjectTest, UnnormalResumableCopyOperationTest) { std::string sourceBucket = TestUtils::GetBucketName("unormal-resumable-copy-bucket-source"); std::string targetBucket = TestUtils::GetBucketName("unormal-resumable-copy-bucket-target"); std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopyObjectSourceKey"); std::string targetKey = TestUtils::GetObjectKey("UnnormalCopyObjectTargetKey"); EXPECT_EQ(Client->CreateBucket(sourceBucket).isSuccess(), true); EXPECT_EQ(Client->CreateBucket(targetBucket).isSuccess(), true); // put object into source bucket auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(sourceBucket, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); // Copy Object to non-existent target bucket { MultiCopyObjectRequest request("notexist-target-bucket", targetKey, sourceBucket, sourceKey); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } // Copy Object to non-existent source bucket { MultiCopyObjectRequest request(targetBucket, targetKey, "notexist-source-bucket", sourceKey); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); } // Copy Object with non-existent source key { MultiCopyObjectRequest request(targetBucket, targetKey, sourceBucket, "notexist-source-key"); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); } // set illegal partsize parameter { MultiCopyObjectRequest request(targetBucket, targetKey, sourceBucket, sourceKey); request.setPartSize(rand() % 102400 - 1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); } TestUtils::CleanBucket(*Client, sourceBucket); TestUtils::CleanBucket(*Client, targetBucket); } TEST_F(ResumableObjectTest, NormalResumableCopyWithSizeOverPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectOverPartSize"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectOverPartSize"); // put object into bucket int num = 1 + rand() % 10; auto putObjectContent = TestUtils::GetRandomStream(102400 * num); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // Copy Object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithSizeUnderPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectUnderPartSize"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectUnderPartSize"); // put Object into bucket auto putObjectContent = TestUtils::GetRandomStream(1024 * (rand() % 100)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(100 * 1024 + 1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, MultiResumableCopyWithSizeOverPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectOverPartSize"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectOverPartSize"); // put object auto putObjectContent = TestUtils::GetRandomStream(1024 * 100 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy object int threadNum = 1 + rand() % 100; std::string checkpointDir = TestUtils::GetExecutableDirectory(); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(1024 * 100 + 1); request.setThreadNum(threadNum); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, UnnormalResumableCopyWithEmptyTargetKeyTest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopyObjectSourceKeyWithEmptyTargetKey"); std::string targetKey; // put object into source bucket auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102401); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, UnnormalResumableCopyWithNotExistCheckpointTest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopySourceObjectWithNotExistCheckpoint"); std::string targetKey = TestUtils::GetObjectKey("UnnormalCopyTargetObjectWithNotExistCheckpoint"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); std::string checkpointDir = "NotExistCheckpointDir"; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102401); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, NormalResumableCopyWithCheckpointTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithCheckpoint"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithCheckpoint"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102400); request.setThreadNum(1); request.setCheckpointDir(TestUtils::GetExecutableDirectory()); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, MultiResumableCopyWithCheckpointTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectWithCheckpoint"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectWithCheckpoint"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, (2 + rand() % 10)); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, UnnormalResumableCopyWithUploadPartCopyFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopySourceObjectWithUploadPartCopyFailed"); std::string targetKey = TestUtils::GetObjectKey("UnnormalCopyTargetObjectWithUploadPartCopyFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, UnMultiResumableCopyWithUploadPartCopyFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectWithUploadPartCopyFailed"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectWithUploadPartCopyFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); int threadNum = 1 + rand() % 100; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102400, threadNum); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableCopyRetryWithUploadPartCopyFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectRetryWithUploadPartCopyFailed"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectRetryWithUploadPartCopyFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableCopyRetryWithUploadPartCopyFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectRetryWithUploadPartCopyFailed"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectRetryWithUploadPartCopyFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); int threadNum = 1 + rand() % 100; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, threadNum); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, UnnormalResumableCopyRetryWithSourceObjectDeletedTest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopySourceObjectRetryWithSourceObjectDeleted"); std::string targetKey = TestUtils::GetObjectKey("UnnormalCopyTargetObjectRetryWithSourceObjectDeleted"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // delete the source object auto deleteObjectOutcome = Client->DeleteObject(BucketName, sourceKey); EXPECT_EQ(deleteObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), false); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, UnMultiResumableCopyRetryWithSourceObjectDeletedTest) { std::string sourceKey = TestUtils::GetObjectKey("UnMultiCopySourceObjectRetryWithSourceObjectDeleted"); std::string targetKey = TestUtils::GetObjectKey("UnMultiCopyTargetObjectRetryWithSourceObjectDeleted"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); int threadNum = 1 + rand() % 100; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, threadNum); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // delete the source object auto deleteObjectOutcome = Client->DeleteObject(BucketName, sourceKey); EXPECT_EQ(deleteObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), false); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableCopyRetryWithCheckpointFileChangedTest) { std::string sourceKey = TestUtils::GetObjectKey("source"); std::string targetKey = TestUtils::GetObjectKey("target"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // modify checkpoint file std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadID = "InvaliedUploadID"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadID; writeRoot["srcBucket"] = readRoot["srcBucket"].asString(); writeRoot["srcKey"] = readRoot["srckey"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["size"] = readRoot["size"].asUInt64(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableCopyRetryWithCheckpointFileChangedTest) { std::string sourceKey = TestUtils::GetObjectKey("source"); std::string targetKey = TestUtils::GetObjectKey("target"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); int threadNum = 1 + rand() % 100; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, threadNum); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // modify checkpoint file std::string checkpointFile = GetCheckpointFileByResumableCopier(BucketName, targetKey, BucketName, sourceKey, checkpointDir); std::string checkpointTmpFile = std::string(checkpointFile).append(".tmp"); std::ifstream jsonStream(checkpointFile, std::ios::in | std::ios::binary); Json::CharReaderBuilder rbuilder; Json::Value readRoot; Json::Value writeRoot; std::string uploadID = "InvaliedUploadID"; if (Json::parseFromStream(rbuilder, jsonStream, &readRoot, nullptr)) { //if (reader.parse(jsonStream, readRoot)) { writeRoot["opType"] = readRoot["opType"].asString(); writeRoot["uploadID"] = uploadID; writeRoot["srcBucket"] = readRoot["srcBucket"].asString(); writeRoot["srcKey"] = readRoot["srckey"].asString(); writeRoot["bucket"] = readRoot["bucket"].asString(); writeRoot["key"] = readRoot["key"].asString(); writeRoot["size"] = readRoot["size"].asUInt64(); writeRoot["mtime"] = readRoot["mtime"].asString(); writeRoot["partSize"] = readRoot["partSize"].asUInt64(); writeRoot["md5Sum"] = readRoot["md5Sum"].asString(); } jsonStream.close(); std::fstream recordStream(checkpointTmpFile, std::ios::out); if (recordStream.is_open()) { recordStream << writeRoot; } recordStream.close(); EXPECT_EQ(RemoveFile(checkpointFile), true); EXPECT_EQ(RenameFile(checkpointTmpFile, checkpointFile), true); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableCopyRetryWithUploadAbortTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalResumableCopyRetryWithUploadAbortTest"); std::string targetKey = TestUtils::GetObjectKey("NormalResumableCopyRetryWithUploadAbortTest-target"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); // abort upload Id ListMultipartUploadsRequest lmuRequest(BucketName); lmuRequest.setPrefix(targetKey); auto lmuOutcome = Client->ListMultipartUploads(lmuRequest); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 1UL); auto uploadId = lmuOutcome.result().MultipartUploadList()[0].UploadId; AbortMultipartUploadRequest abortRequest(BucketName, targetKey, uploadId); auto abortOutcome = Client->AbortMultipartUpload(abortRequest); EXPECT_EQ(abortOutcome.isSuccess(), true); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithProgressCallbackTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithProgressCallback"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithProgressCallback"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setTransferProgress(progressCallback); request.setPartSize(102400); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableCopyProgressCallbackWithCopyPartFailedTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectProgressCallbackWithPartFailed"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectProgressCallbackWithPartFailed"); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setTransferProgress(progressCallback); request.setFlags(request.Flags() | CopyPartFailedFlag); request.setCheckpointDir(checkpointDir); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); // retry std::cout << "Retry : " << std::endl; request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, MultiResumableCopyWithThreadNumberOverPartNumber) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectWithThreadNumberOverPartNumber"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectWithThreadNumberOverPartNumber"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy int threadNum = 0; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, ""); request.setPartSize(102400); request.setThreadNum(threadNum); auto invalidateOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(invalidateOutcome.isSuccess(), false); threadNum = 20; request.setThreadNum(threadNum); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithObjectMetaDataSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithObjectMetaDataSet"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithObjectMetaDataSet"); // put object auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); ObjectMetaData meta; meta.setCacheControl("max-age=3"); meta.setExpirationTime("Fri, 09 Nov 2018 05:57:16 GMT"); // copy object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, "", meta); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); auto hOutcome = Client->HeadObject(BucketName, targetKey); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().CacheControl(), "max-age=3"); EXPECT_EQ(hOutcome.result().ExpirationTime(), "Fri, 09 Nov 2018 05:57:16 GMT"); } TEST_F(ResumableObjectTest, NormalResumableCopyWithUserMetaDataSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithUserMetaDataSet"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithUserMetaDataSet"); // put object ObjectMetaData meta; meta.UserMetaData()["test"] = "testvalue"; auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent, meta); EXPECT_EQ(putObjectOutcome.isSuccess(), true); auto putObjectHeadOutcome = Client->HeadObject(BucketName, sourceKey); EXPECT_EQ(putObjectHeadOutcome.isSuccess(), true); EXPECT_EQ(putObjectHeadOutcome.result().UserMetaData().at("test"), "testvalue"); // copy object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, "", 102400, 1, meta); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); auto hOutcome = Client->HeadObject(BucketName, targetKey); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); } TEST_F(ResumableObjectTest, NormalResumableCopyWithModifiedSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithModifiedSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithModifiedSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102400); request.setThreadNum(1); // error set Modified-Since time request.setSourceIfModifiedSince(TestUtils::GetGMTString(100)); auto modifiedOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(modifiedOutcome.isSuccess(), false); EXPECT_EQ(modifiedOutcome.error().Code(), "ServerError:304"); // error set Unmodifird-Since time request.setSourceIfModifiedSince(TestUtils::GetGMTString(0)); request.setSourceIfUnModifiedSince(TestUtils::GetGMTString(-100)); auto unmodifiedOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(unmodifiedOutcome.isSuccess(), false); EXPECT_EQ(unmodifiedOutcome.error().Code(), "PreconditionFailed"); // normal copy request.setSourceIfModifiedSince(TestUtils::GetGMTString(-100)); request.setSourceIfUnModifiedSince(TestUtils::GetGMTString(100)); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithMatchSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithMatchSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithMatchSetTest"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); auto hOutcome = Client->HeadObject(BucketName, sourceKey); EXPECT_EQ(hOutcome.isSuccess(), true); std::string realETag = hOutcome.result().ETag(); std::vector eTagMatchList; std::vector eTagNoneMatchList; // copy MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102400); request.setThreadNum(1); // error set If-Match request.setSourceIfMatchEtag("invalidateETag"); auto matchOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(matchOutcome.isSuccess(), false); EXPECT_EQ(matchOutcome.error().Code(), "PreconditionFailed"); // error set If-None-Match request.setSourceIfMatchEtag(realETag); request.setSourceIfNotMatchEtag(realETag); auto noneMatchOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(noneMatchOutcome.isSuccess(), false); EXPECT_EQ(noneMatchOutcome.error().Code(), "ServerError:304"); // normal copy request.setSourceIfMatchEtag(realETag); request.setSourceIfNotMatchEtag("invalidateETag"); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithMetadataDirectiveTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithMetadataDirectiveTest"); std::string copyTargetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithCopyMetadataTest"); std::string replaceTargetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithReplaceMetadataDirectiveTest"); // put object ObjectMetaData meta; meta.UserMetaData()["copy"] = "copyvalue"; auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent, meta); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // normal copy meta MultiCopyObjectRequest copyRequest(BucketName, copyTargetKey, BucketName, sourceKey); copyRequest.setPartSize(102400); copyRequest.setThreadNum(1); copyRequest.setMetadataDirective(CopyActionList::Copy); auto copyOutcome = Client->ResumableCopyObject(copyRequest); EXPECT_EQ(copyOutcome.isSuccess(), true); auto copyHeadOutcome = Client->HeadObject(HeadObjectRequest(BucketName, copyTargetKey)); EXPECT_EQ(copyHeadOutcome.isSuccess(), true); EXPECT_EQ(copyHeadOutcome.result().UserMetaData().at("copy"), "copyvalue"); // replace ObjectMetaData replaceMeta; replaceMeta.UserMetaData()["replace"] = "replacevalue"; MultiCopyObjectRequest replaceRequest(BucketName, replaceTargetKey, BucketName, sourceKey, "", replaceMeta); replaceRequest.setPartSize(102400); replaceRequest.setMetadataDirective(CopyActionList::Replace); auto replaceOutcome = Client->ResumableCopyObject(replaceRequest); EXPECT_EQ(replaceOutcome.isSuccess(), true); auto replaceHeadOutcome = Client->HeadObject(HeadObjectRequest(BucketName, replaceTargetKey)); EXPECT_EQ(replaceHeadOutcome.isSuccess(), true); EXPECT_EQ(replaceHeadOutcome.result().UserMetaData().at("replace"), "replacevalue"); EXPECT_EQ(replaceHeadOutcome.result().UserMetaData().find("copy") == replaceHeadOutcome.result().UserMetaData().end(), true); } TEST_F(ResumableObjectTest, NormalResumableCopyWithObjectAclSetTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithObjectAclSetTest"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithObjectAclSetTest"); // put object auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // set acl auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, sourceKey)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Default); // copy MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(102400); request.setAcl(CannedAccessControlList::PublicReadWrite); request.setEncodingType("url"); EXPECT_EQ(request.EncodingType(), "url"); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); auto copyAclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, targetKey)); EXPECT_EQ(copyAclOutcome.isSuccess(), true); EXPECT_EQ(copyAclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); } TEST_F(ResumableObjectTest, ResumableUploadWithProgressCallbackTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); std::cout << "this ptr:" << this << std::endl; TransferProgress progressCallback = { ProgressCallback, this }; UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithRangeAndProgressCallbackTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalDownloadSourceObjectWithRangeLength"); std::string targetKey = TestUtils::GetObjectKey("NormalDownloadTargetObjectWithRangeLength"); auto putObjectContent = TestUtils::GetRandomStream(102400 - 1); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); TransferProgress progressCallback = { ProgressCallback, this }; DownloadObjectRequest request(BucketName, sourceKey, targetKey); request.setPartSize(102400); request.setRange(20, 30); request.setThreadNum(1); request.setTransferProgress(progressCallback); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().ContentLength(), 30 - 20 + 1); EXPECT_EQ(RemoveFile(targetKey), true); } TEST_F(ResumableObjectTest, OssResumableBaseRequestTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadObjectWithCallback"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableUploadObjectWithCallback").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 102400); std::string checkpointDir = TestUtils::GetTargetFileName("checkpoint"); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); UploadObjectRequest request(BucketName, key, tmpFile, checkpointDir, 102400, 1); request.setBucket(BucketName); request.setKey(key); request.setObjectSize(102400); request.setObjectMtime("invalid"); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, ResumableCopierTrafficLimitTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithMetadataDirectiveTest"); std::string copyTargetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithCopyMetadataTest"); std::string replaceTargetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithReplaceMetadataDirectiveTest"); // put object ObjectMetaData meta; meta.UserMetaData()["copy"] = "copyvalue"; auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent, meta); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // normal copy meta MultiCopyObjectRequest copyRequest(BucketName, copyTargetKey, BucketName, sourceKey); copyRequest.setPartSize(102400); copyRequest.setThreadNum(1); copyRequest.setTrafficLimit(819201); auto copyOutcome = Client->ResumableCopyObject(copyRequest); EXPECT_EQ(copyOutcome.isSuccess(), true); } TEST_F(ResumableObjectTest, DownloadObjectRequestBranchTest) { DownloadObjectRequest request(BucketName, "test", "test"); request.setRange(1,1); Client->ResumableDownloadObject(request); OssResumableBaseRequest request1("test","test","test",1,0); } #ifdef _WIN32 static std::wstring StringToWString(std::string& str) { //just cover 0x00~0x7f char std::wstring_convert> converter; return converter.from_bytes(str); } static std::string WStringToString(std::wstring& str) { //just cover 0x00~0x7f char std::wstring_convert> converter; return converter.to_bytes(str); } static void WriteRandomDatatoFile(const std::wstring &file, int length) { std::fstream of(file, std::ios::out | std::ios::binary | std::ios::trunc); of << TestUtils::GetRandomString(length); of.close(); } static std::string GetFileMd5(const std::wstring file) { std::shared_ptr content = std::make_shared(file, std::ios::in | std::ios::binary); return ComputeContentMD5(*content); } std::wstring GetCheckpointFileByResumableUploaderW(std::string bucket, std::string key, std::wstring checkpointDir, std::wstring filePath) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(WStringToString(filePath)) + "--" + ComputeContentETag(destPath); return checkpointDir + WPATH_DELIMITER + StringToWString(safeFileName); } static std::wstring GetCheckpointFileByResumableDownloaderW(std::string bucket, std::string key, std::wstring checkpointDir, std::wstring filePath) { std::stringstream ss; ss << "oss://" << bucket << "/" << key; auto srcPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(WStringToString(filePath)); return checkpointDir + WPATH_DELIMITER + StringToWString(safeFileName); } static std::wstring GetCheckpointFileByResumableCopierW(std::string bucket, std::string key, std::string srcBucket, std::string srcKey, std::wstring checkpointDir) { std::stringstream ss; ss << "oss://" << srcBucket << "/" << srcKey; auto srcPath = ss.str(); ss.str(""); ss << "oss://" << bucket << "/" << key; auto destPath = ss.str(); auto safeFileName = ComputeContentETag(srcPath) + "--" + ComputeContentETag(destPath); return checkpointDir + WPATH_DELIMITER + StringToWString(safeFileName); } //wstring path TEST_F(ResumableObjectTest, NormalResumableUploadWithSizeOverPartSizeWTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectOverPartSizeW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("ResumableUploadObjectOverPartSizeW").append(".tmp")); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); auto getoutcome = Client->GetObject(GetObjectRequest(BucketName, key)); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadWithSizeUnderPartSizeWTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSizeW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSizeW").append(".tmp")); int num = rand() % 8; WriteRandomDatatoFile(tmpFile, 10240 * num); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableObjectWithDisableRequestWTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithDisableRequestW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("UnnormalUploadObjectWithDisableRequestW").append(".tmp")); WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); Client->DisableRequest(); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); EXPECT_EQ(RemoveFile(tmpFile), true); Client->EnableRequest(); } TEST_F(ResumableObjectTest, MultiResumableUploadWithSizeOverPartSizeWTest) { std::string key = TestUtils::GetObjectKey("MultiUploadObjectOverPartSizeW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("MultiUploadObjectOverPartSizeW").append(".tmp")); int num = 8 + rand() % 12; WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadSetMinPartSizeWTest) { std::string key = TestUtils::GetObjectKey("NormalUploadObjectSetMinPartSizeW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("NormalUploadObjectSetMinPartSizeW").append(".tmp")); int num = 1 + rand() % 20; WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int partSize = 1 + rand() % 99; UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(partSize * 102400); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithoutSourceFilePathWTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePathW"); std::wstring tmpFile; UploadObjectRequest request(BucketName, key, tmpFile); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithoutRealFileWTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutRealFileW"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutRealFileW").append(".tmp")); UploadObjectRequest request(BucketName, key, tmpFile); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, UnnormalResumableUploadWithNotExitsCheckpointWTest) { std::string key = TestUtils::GetObjectKey("UnnormalUploadObjectWithNotExitsCheckpoint"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("UnnormalUploadObjectWithNotExitsCheckpoint").append(".tmp")); WriteRandomDatatoFile(tmpFile, 100); UploadObjectRequest request(BucketName, key, tmpFile, L"NotExistDir"); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableUploadRetryAfterFailedPartWTest) { std::string key = TestUtils::GetObjectKey("NormalResumableUploadRetryAfterFailedPartWTest"); std::wstring tmpFile = StringToWString(TestUtils::GetTargetFileName("NormalResumableUploadRetryAfterFailedPartWTest").append(".tmp")); WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::wstring checkpointKey = StringToWString(TestUtils::GetObjectKey("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointKey), true); EXPECT_EQ(IsDirectoryExist(checkpointKey), true); // resumable upload object failed UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(102400); request.setThreadNum(1); request.setFlags(request.Flags() | UploadPartFailedFlag); request.setCheckpointDir(checkpointKey); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(IsFileExist(GetCheckpointFileByResumableUploaderW(BucketName, key, checkpointKey, tmpFile)), true); // retry request.setFlags(request.Flags() ^ UploadPartFailedFlag); auto retryOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveDirectory(checkpointKey), true); } TEST_F(ResumableObjectTest, ResumableUploadWithMixPathTypeTest) { std::wstring checkpointDir = StringToWString(TestUtils::GetTargetFileName("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointDir), true); UploadObjectRequest request(BucketName, "targetKey", "filePath"); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The type of filePath and checkpointDir should be the same, either string or wstring."); UploadObjectRequest request1(BucketName, "targetKey", L"filePath"); request1.setCheckpointDir(WStringToString(checkpointDir)); outcome = Client->ResumableUploadObject(request1); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The type of filePath and checkpointDir should be the same, either string or wstring."); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithSizeOverPartSizeWTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectOverPartSizeW"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectOverPartSizeW").append(".tmp"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithSizeUnderPartSizeWTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectUnderPartSize").append(".tmp"); int num = 10 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); DownloadObjectRequest request(BucketName, key, targetFile); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, MultiResumableDownloadWithSizeOverPartSizeWTest) { // upload std::string key = TestUtils::GetObjectKey("MultiResumableDownloadObjectOverPartSizeW"); std::string tmpFile = TestUtils::GetTargetFileName("MultiResumableDownloadObjectOverPartSizeW").append(".tmp"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); int threadNum = 1 + rand() % 100; auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadSetMinPartSizeWTest) { // upload std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectSetMinPartSizeW"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectSetMinPartSizeW").append(".tmp"); int num = 1 + rand() % 10; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); int partSize = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(partSize * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); request.setPartSize(102400); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithoutTargetFilePathWTest) { std::string key = TestUtils::GetObjectKey("UnnormalUplloadObjectWithoutFilePathW"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalUplloadObjectWithoutFilePathW").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring targetFile; DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadWithCheckpointWTest) { std::string key = TestUtils::GetObjectKey("NormalDownloadObjectWithCheckpointW"); std::string tmpFile = TestUtils::GetTargetFileName("NormalDownloadObjectWithCheckpointW").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring checkpointDir = TestUtils::GetExecutableDirectoryW(); std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, UnnormalResumableDownloadWithNotExitsCheckpointWTest) { std::string key = TestUtils::GetObjectKey("UnnormalDownloadObjectWithNotExistCheckpointW"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalDownloadObjectWithNotExistCheckpointW").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring checkpointDir = L"NotExistDir"; std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir); request.setPartSize(100 * 1024); auto outcome = Client->ResumableDownloadObject(request); std::shared_ptr content = nullptr; outcome.result().setContent(content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Checkpoint directory is not exist."); EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(targetFile.append(L".temp")); } TEST_F(ResumableObjectTest, MultiResumableDownloadWithCheckpointWTest) { std::string key = TestUtils::GetObjectKey("MultiDownloadObjectWithCheckpointW"); std::string tmpFile = TestUtils::GetTargetFileName("MultiDownloadObjectWithCheckpointW").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (1 + rand() % 10)); // upload auto uploadOutcome = Client->ResumableUploadObject(UploadObjectRequest(BucketName, key, tmpFile)); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download std::wstring checkpointDir = TestUtils::GetExecutableDirectoryW(); std::wstring targetFile = StringToWString(TestUtils::GetTargetFileName("ResumableDownloadTargetObjectW")); int threadNum = 1 + rand() % 99; DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir); request.setPartSize(100 * 1024); request.setThreadNum(threadNum); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ResumableObjectTest, NormalResumableDownloadRetryWithCheckpointWTest) { std::string key = TestUtils::GetObjectKey("NormalResumableDownloadRetryWithCheckpointWTest"); std::string tmpFile = TestUtils::GetTargetFileName("NormalResumableDownloadRetryWithCheckpointWTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * (2 + rand() % 10)); std::wstring targetFile = StringToWString(TestUtils::GetObjectKey("ResumableDownloadTargetObject")); std::wstring checkpointDir = StringToWString(TestUtils::GetTargetFileName("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); // upload object auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile, checkpointDir, 102400, 1); request.setFlags(request.Flags() | DownloadPartFailedFlag); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(IsFileExist(GetCheckpointFileByResumableDownloaderW(BucketName, key, checkpointDir, targetFile)), true); // retry request.setFlags(request.Flags() ^ DownloadPartFailedFlag); auto retryOutcome = Client->ResumableDownloadObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); std::string uploadFileMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadFileMd5 = GetFileMd5(targetFile); EXPECT_EQ(uploadFileMd5, downloadFileMd5); EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, ResumableDownloadWithMixPathTypeTest) { std::wstring checkpointDir = StringToWString(TestUtils::GetTargetFileName("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointDir), true); DownloadObjectRequest request(BucketName, "targetKey", "filePath"); request.setCheckpointDir(checkpointDir); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The type of filePath and checkpointDir should be the same, either string or wstring."); DownloadObjectRequest request1(BucketName, "targetKey", L"filePath"); request1.setCheckpointDir(WStringToString(checkpointDir)); outcome = Client->ResumableDownloadObject(request1); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "The type of filePath and checkpointDir should be the same, either string or wstring."); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, UnnormalResumableCopyWithNotExistCheckpointWTest) { std::string sourceKey = TestUtils::GetObjectKey("UnnormalCopySourceObjectWithNotExistCheckpointW"); std::string targetKey = TestUtils::GetObjectKey("UnnormalCopyTargetObjectWithNotExistCheckpointW"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); std::wstring checkpointDir = L"NotExistCheckpointDir"; MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir); request.setPartSize(102401); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, NormalResumableCopyWithCheckpointWTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectWithCheckpointW"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectWithCheckpointW"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, TestUtils::GetExecutableDirectoryW()); request.setPartSize(102400); request.setThreadNum(1); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ResumableObjectTest, MultiResumableCopyWithCheckpointWTest) { std::string sourceKey = TestUtils::GetObjectKey("MultiCopySourceObjectWithCheckpointW"); std::string targetKey = TestUtils::GetObjectKey("MultiCopyTargetObjectWithCheckpointW"); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjcetOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjcetOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); std::wstring checkpointDir = StringToWString(TestUtils::GetTargetFileName("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, (2 + rand() % 10)); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, NormalResumableCopyRetryWithCheckpointWTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalResumableCopyRetryWithCheckpointWTest"); std::string targetKey = TestUtils::GetObjectKey("NormalResumableCopyRetryWithCheckpointWTest-1"); std::wstring checkpointDir = StringToWString(TestUtils::GetTargetFileName("checkpoint")); EXPECT_EQ(CreateDirectory(checkpointDir), true); EXPECT_EQ(IsDirectoryExist(checkpointDir), true); auto putObjectContent = TestUtils::GetRandomStream(102400 * (2 + rand() % 10)); auto putObjectOutcome = Client->PutObject(BucketName, sourceKey, putObjectContent); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, checkpointDir, 102401, 1); request.setFlags(request.Flags() | CopyPartFailedFlag); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), false); EXPECT_EQ(IsFileExist(GetCheckpointFileByResumableCopierW(BucketName, targetKey, BucketName, sourceKey, checkpointDir)), true); // retry request.setFlags(request.Flags() ^ CopyPartFailedFlag); auto retryOutcome = Client->ResumableCopyObject(request); EXPECT_EQ(retryOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); EXPECT_EQ(RemoveDirectory(checkpointDir), true); } TEST_F(ResumableObjectTest, ResumableCopyWithMixPathTypeTest) { MultiCopyObjectRequest request(BucketName, "targetKey", BucketName, "sourceKey", "checkPoint"); EXPECT_EQ(request.CheckpointDirW().empty(), true); EXPECT_EQ(request.CheckpointDir(), "checkPoint"); request.setCheckpointDir(L"check"); EXPECT_EQ(request.CheckpointDirW(), L"check"); EXPECT_EQ(request.CheckpointDir().empty(), true); } #else //not support wstring path in non-windows TEST_F(ResumableObjectTest, NormalResumableUploadWithSizeOverPartSizeWTest) { UploadObjectRequest request(BucketName, "key", L"TestKey"); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Only support wstring path in windows os."); UploadObjectRequest request1(BucketName, "key", L"testFile", L"TestDir"); request1.setPartSize(100 * 1024); request1.setThreadNum(1); outcome = Client->ResumableUploadObject(request1); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Only support wstring path in windows os."); } TEST_F(ResumableObjectTest, MultiResumableDownloadWithCheckpointWTest) { DownloadObjectRequest request(BucketName, "key", L"TestKey"); request.setPartSize(100 * 1024); request.setThreadNum(2); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Only support wstring path in windows os."); DownloadObjectRequest request1(BucketName, "key", L"TestKey", L"TestDir"); request1.setPartSize(100 * 1024); request1.setThreadNum(2); outcome = Client->ResumableDownloadObject(request1); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Only support wstring path in windows os."); } TEST_F(ResumableObjectTest, MultiResumableCopyWithWPathTest) { MultiCopyObjectRequest request(BucketName, "key", BucketName, "srcKey", L"checkpoint", 102401, (2 + rand() % 10)); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_EQ(outcome.error().Message(), "Only support wstring path in windows os."); } #endif TEST_F(ResumableObjectTest, MultiResumableInvalidBucketNameTest) { DownloadObjectRequest request("Invalid-Bucket", "key", L"filePath", L"TestKey"); EXPECT_EQ(request.CheckpointDir().empty(), true); EXPECT_EQ(request.CheckpointDirW(), L"TestKey"); request.setCheckpointDir("TestKey"); EXPECT_EQ(request.CheckpointDir(), "TestKey"); EXPECT_EQ(request.CheckpointDirW().empty(), true); request.setPartSize(100 * 1024); request.setThreadNum(2); auto outcome = Client->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ResumableObjectTest, MultiCopyObjectRequestTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObject"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObject"); // copy MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey, L"CheckPoint"); EXPECT_EQ(request.CheckpointDirW(), L"CheckPoint"); MultiCopyObjectRequest request1(BucketName, targetKey, BucketName, sourceKey, L"CheckPoint1", ObjectMetaData()); EXPECT_EQ(request1.CheckpointDirW(), L"CheckPoint1"); MultiCopyObjectRequest request2(BucketName, targetKey, BucketName, sourceKey, L"CheckPoint2", 100*1024, 2, ObjectMetaData()); EXPECT_EQ(request2.CheckpointDirW(), L"CheckPoint2"); } TEST_F(ResumableObjectTest, UploadObjectRequestTest) { std::string key = TestUtils::GetObjectKey("UploadObjectRequestTest"); UploadObjectRequest reqeust(BucketName, key, L"filePath1", L"checkPoint1", 100 * 1024, 2, ObjectMetaData()); EXPECT_EQ(reqeust.CheckpointDirW(), L"checkPoint1"); UploadObjectRequest reqeust1(BucketName, key, L"filePath2", L"checkPoint2", ObjectMetaData()); EXPECT_EQ(reqeust1.CheckpointDirW(), L"checkPoint2"); } } } ================================================ FILE: test/src/Object/ObjectAclTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class ObjectAclTest : public ::testing::Test { protected: ObjectAclTest() { } ~ObjectAclTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectacl"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectAclTest::Client = nullptr; std::string ObjectAclTest::BucketName = ""; TEST_F(ObjectAclTest, SetAndGetObjectAclSuccessTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectacl"); std::string text = "hellowworld"; auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Default); auto setOutCome = Client->SetObjectAcl(SetObjectAclRequest(BucketName, objName, CannedAccessControlList::PublicRead)); EXPECT_EQ(aclOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicRead); //set to readwrite Client->SetObjectAcl(SetObjectAclRequest(BucketName, objName, CannedAccessControlList::PublicReadWrite)); TestUtils::WaitForCacheExpire(2); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); //set to private Client->SetObjectAcl(SetObjectAclRequest(BucketName, objName, CannedAccessControlList::Private)); TestUtils::WaitForCacheExpire(2); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Private); // set to default Client->SetObjectAcl(SetObjectAclRequest(BucketName, objName, CannedAccessControlList::Default)); TestUtils::WaitForCacheExpire(2); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Default); // set to private TestUtils::WaitForCacheExpire(2); SetObjectAclRequest aclRequest(BucketName, objName); aclRequest.setAcl(CannedAccessControlList::Private); Client->SetObjectAcl(aclRequest); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Private); // set to void TestUtils::WaitForCacheExpire(2); SetObjectAclRequest aclRequest1(BucketName, objName); auto setOutcom = Client->SetObjectAcl(aclRequest1); EXPECT_EQ(setOutcom.isSuccess(), false); TestUtils::WaitForCacheExpire(5); aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Private); } TEST_F(ObjectAclTest, SetAndGetObjectAclErrorTest) { auto aclOutcome1 = Client->SetObjectAcl(SetObjectAclRequest(BucketName, "test-void", CannedAccessControlList::PublicRead)); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(aclOutcome1.isSuccess(), false); EXPECT_EQ(aclOutcome1.error().Code().size()>0, true); auto aclOutcome2 = Client->GetObjectAcl(GetObjectAclRequest(BucketName, "test-void")); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(aclOutcome2.isSuccess(), false); EXPECT_EQ(aclOutcome2.error().Code().size()>0, true); } TEST_F(ObjectAclTest, GetObjectAclWithInvalidResponseBodyTest) { std::string objName = TestUtils::GetObjectKey("GetObjectAclWithInvalidResponseBodyTest"); std::string text = "hellowworld"; auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); GetObjectAclRequest gaclRequest(BucketName, objName); gaclRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gaclOutcome = Client->GetObjectAcl(gaclRequest); EXPECT_EQ(gaclOutcome.isSuccess(), false); EXPECT_EQ(gaclOutcome.error().Code(), "ParseXMLError"); } TEST_F(ObjectAclTest, GetObjectAclResultTest) { std::string xml = R"( 00220120222 00220120222 public-read )"; GetObjectAclResult result(xml); EXPECT_EQ(result.Owner().DisplayName(), "00220120222"); EXPECT_EQ(result.Owner().Id(), "00220120222"); EXPECT_EQ(result.Acl(), CannedAccessControlList::PublicRead); } TEST_F(ObjectAclTest, GetObjectAclResultBranchTest) { GetObjectAclResult result("test"); std::string xml = R"( )"; GetObjectAclResult result1(xml); xml = R"( 00220120222 00220120222 public-read )"; GetObjectAclResult result2(xml); xml = R"( )"; GetObjectAclResult result3(xml); xml = R"( )"; GetObjectAclResult result4(xml); xml = R"()"; GetObjectAclResult result5(xml); } } } ================================================ FILE: test/src/Object/ObjectAppendTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud{ namespace OSS { class ObjectAppendTest : public ::testing::Test { protected: ObjectAppendTest() { } ~ObjectAppendTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectappend"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectAppendTest::Client = nullptr; std::string ObjectAppendTest::BucketName = ""; TEST_F(ObjectAppendTest, appendDataNormalTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // put object std::string text = "hellowworld"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text)); appendRequest.setExpires(TestUtils::GetGMTString(100)); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); auto testOutcome = Client->GetObject(BucketName, objName); AppendObjectRequest requestOther(BucketName, objName, std::make_shared(text)); requestOther.setPosition(text.size()); appendOutcome = Client->AppendObject(requestOther); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()*2); // read object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData ; (*getOutcome.result().Content().get())>>strData; EXPECT_EQ(strData, text+text); } TEST_F(ObjectAppendTest, appendDataPositionErrorTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // put object std::string text = "hellowworld"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text)); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); AppendObjectRequest requestOther(BucketName, objName, std::make_shared(text)); appendOutcome = Client->AppendObject(requestOther); EXPECT_EQ(appendOutcome.isSuccess(), false); // read object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); } TEST_F(ObjectAppendTest, appendDataNormalMeta1Test) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // put object std::string text = "helloworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author1"] = "chanju1-src"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text), MetaInfo); appendRequest.setCacheControl("max-age=3"); appendRequest.setContentDisposition("append-object-disposition"); appendRequest.setContentEncoding("myzip"); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); // read object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"), "chanju1-src"); EXPECT_EQ(getOutcome.result().Metadata().HttpMetaData().at("Cache-Control"), "max-age=3"); EXPECT_EQ(getOutcome.result().Metadata().HttpMetaData().at("Content-Disposition"), "append-object-disposition"); EXPECT_EQ(getOutcome.result().Metadata().HttpMetaData().at("Content-Encoding"), "myzip"); } TEST_F(ObjectAppendTest, appendDataNormalMeta2Test) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // put object std::string text = "hellowworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author1"] = "chanju1-src"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text), MetaInfo); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); // read object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"), "chanju1-src"); MetaInfo.UserMetaData()["author1"] = "chanju1-diffrent"; MetaInfo.UserMetaData()["author2"] = "chanju2"; AppendObjectRequest requestOther(BucketName, objName, std::make_shared(text), MetaInfo); requestOther.setPosition(text.size()); appendOutcome = Client->AppendObject(requestOther); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size() * 2); // read object getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text + text); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"), "chanju1-src"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author2"), getOutcome.result().Metadata().UserMetaData().end()); } TEST_F(ObjectAppendTest, appendDataAclTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // put object std::string text = "hellowworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author1"] = "chanju1-src"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text), MetaInfo); appendRequest.setAcl(CannedAccessControlList::PublicReadWrite); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); // get acl auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, objName)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); } TEST_F(ObjectAppendTest, appendNormalObjectTest) { // put object std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); std::string text = "hellowworld"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); // append failure AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text)); auto appendOutcome = Client->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), false); } TEST_F(ObjectAppendTest, AppendObjectResultTest) { HeaderCollection header; AppendObjectResult result(header); EXPECT_EQ(result.CRC64(), 0UL); EXPECT_EQ(result.Length(), 0UL); } TEST_F(ObjectAppendTest, AppendObjectFuntionTest) { std::string objName = std::string("test-cpp-sdk-objectappend"); std::string text = "hellowworld"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text)); appendRequest.setContentMd5("test"); appendRequest.setExpires("1"); appendRequest.setExpires(1); ObjectMetaData meta; meta.setContentType("test"); AppendObjectRequest appendRequest1(BucketName, objName, std::make_shared(text), meta); Client->AppendObject(appendRequest1); } } } ================================================ FILE: test/src/Object/ObjectBasicOperationTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include #include namespace AlibabaCloud { namespace OSS { class ObjectBasicOperationTest : public ::testing::Test { protected: ObjectBasicOperationTest() { } ~ObjectBasicOperationTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectbasicoperation"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucketsByPrefix(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectBasicOperationTest::Client = nullptr; std::string ObjectBasicOperationTest::BucketName = ""; TEST_F(ObjectBasicOperationTest, InvalidBucketNameTest) { auto content = TestUtils::GetRandomStream(100); for (auto const& invalidBucketName : TestUtils::InvalidBucketNamesList()) { auto outcome = Client->PutObject(invalidBucketName, "InvalidBucketNameTest", content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(ObjectBasicOperationTest, InvalidObjectKeyTest) { auto content = TestUtils::GetRandomStream(100); for (auto const& invalidKeyName : TestUtils::InvalidObjectKeyNamesList()) { auto outcome = Client->PutObject(BucketName, invalidKeyName, content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); } } TEST_F(ObjectBasicOperationTest, UserMetaDataTest) { ObjectMetaData meta; meta.addHeader("x-oss-copy-source", "11111"); meta.addHeader("x-oss-copy-source-if-match", "22222"); meta.addHeader("x", "aaaaaa"); meta.addHeader("x1", "bbb"); meta.addHeader("aa", "aaaaa"); meta.addHeader("AA", "bbbbb"); meta.addHeader("ab", "aaaa"); meta.addHeader("Ab", "bbbb"); EXPECT_EQ(meta.HttpMetaData().size(), 6UL); static const char *keys[] = { "aa", "ab", "x", "x-oss-copy-source", "x-oss-copy-source-if-match", "x1" }; static const char *values[] = { "bbbbb", "bbbb", "aaaaaa", "11111", "22222", "bbb" }; int i = 0; for (auto const &header : meta.HttpMetaData()) { EXPECT_STREQ(header.first.c_str(), keys[i]); EXPECT_STREQ(header.second.c_str(), values[i]); i++; } } TEST_F(ObjectBasicOperationTest, ListAllObjectsTest) { //create test file for (int i = 0; i < 20; i++) { std::string key = TestUtils::GetObjectKey("ListAllObjectsTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } //list object use default auto listOutcome = Client->ListObjects(BucketName); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys().size(), 20UL); EXPECT_EQ(listOutcome.result().IsTruncated(), false); int i = 0; for (auto const &obj : listOutcome.result().ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); EXPECT_EQ(obj.StorageClass(), "Standard"); i++; } EXPECT_EQ(i, 20); } TEST_F(ObjectBasicOperationTest, ListObjectsWithPrefixTest) { //create test file for (int i = 0; i < 30; i++) { std::string key = TestUtils::GetObjectKey("ListObjectsWithPrefixTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } //list object by prefix ListObjectsRequest request(BucketName); request.setMaxKeys(2); request.setPrefix("ListObjectsWithPrefixTest"); bool IsTruncated = false; size_t total = 0; do { auto outcome = Client->ListObjects(request); EXPECT_EQ(outcome.isSuccess(), true); request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); total += outcome.result().ObjectSummarys().size(); } while (IsTruncated); EXPECT_EQ(30UL, total); auto lOutcome = Client->ListObjects(BucketName, "ListObjectsWithPrefixTest"); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 30UL); } TEST_F(ObjectBasicOperationTest, ListObjectsWithIllegalMaxKeys) { ListObjectsRequest request(BucketName); request.setMaxKeys(1000 + 1); auto outcome = Client->ListObjects(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); } TEST_F(ObjectBasicOperationTest, ListObjectsWithDelimiterTest) { std::string folder = TestUtils::GetObjectKey("ListObjectsWithDelimiterTest").append("folder/"); for (int i = 0; i < 5; i++) { std::string key = folder; key.append(std::to_string(i)).append("-empty.txt"); std::shared_ptr ss = std::make_shared(); auto outcome = Client->PutObject(BucketName, key, ss); EXPECT_EQ(outcome.isSuccess(), true); } std::string folder2 = TestUtils::GetObjectKey("ListObjectsWithDelimiterTest").append("folder/"); for (int i = 0; i < 5; i++) { std::string key = folder2; std::shared_ptr ss = std::make_shared(); key.append(std::to_string(i)).append("-empty.txt"); auto outcome = Client->PutObject(BucketName, key, ss); EXPECT_EQ(outcome.isSuccess(), true); } //list object by prefix ListObjectsRequest request(BucketName); request.setPrefix("ListObjectsWithDelimiterTest"); request.setDelimiter("/"); auto outcome = Client->ListObjects(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CommonPrefixes().size(), 2UL); } TEST_F(ObjectBasicOperationTest, ListAllObjectsCallableTest) { //create test file for (int i = 0; i < 20; i++) { std::string key = TestUtils::GetObjectKey("ListAllObjectsCallableTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } //list object use default ListObjectsRequest request(BucketName); request.setPrefix("ListAllObjectsCallableTest"); auto listOutcomeCallable = Client->ListObjectsCallable(request); auto listOutcome = listOutcomeCallable.get(); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys().size(), 20UL); EXPECT_EQ(listOutcome.result().IsTruncated(), false); int i = 0; for (auto const &obj : listOutcome.result().ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); i++; } EXPECT_EQ(i, 20); } TEST_F(ObjectBasicOperationTest, ListObjectsNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-listobject"); auto outcome = Client->ListObjects(name); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } /*Get Object Test*/ TEST_F(ObjectBasicOperationTest, GetAndDeleteNonExistObjectTest) { std::string key = TestUtils::GetObjectKey("GetAndDeleteNonExistObjectTest"); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), false); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), false); EXPECT_EQ(outome.error().Code(), "NoSuchKey"); auto dOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(dOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, GetObjectBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); auto fOutcome = Client->GetObject(BucketName, key, tmpFile); EXPECT_EQ(fOutcome.isSuccess(), true); fOutcome = dummy; std::shared_ptr fileContent = std::make_shared(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*outome.result().Content().get()); std::string fileMd5 = ComputeContentMD5(*fileContent.get()); EXPECT_STREQ(oriMd5.c_str(), memMd5.c_str()); EXPECT_STREQ(oriMd5.c_str(), fileMd5.c_str()); fileContent = nullptr; EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, GetObjectToFileTest) { std::string key = TestUtils::GetObjectKey("GetObjectToFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); auto fOutcome = Client->GetObject(BucketName, key, tmpFile); EXPECT_EQ(fOutcome.isSuccess(), true); //EXPECT_EQ(RemoveFile(tmpFile), false); auto fileETag = TestUtils::GetFileETag(tmpFile); EXPECT_EQ(fileETag, pOutcome.result().ETag()); fOutcome.result().setContent(std::shared_ptr()); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, GetObjectToNullContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToNullContentTest"); std::shared_ptr content = nullptr; auto outome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outome.isSuccess(), false); } TEST_F(ObjectBasicOperationTest, GetObjectToFailContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToFailContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicNegativeTest").append(".tmp"); std::shared_ptr content = std::make_shared(tmpFile, std::ios::in| std::ios::binary); auto outome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outome.isSuccess(), false); } TEST_F(ObjectBasicOperationTest, GetObjectToBadContentTest) { std::string key = TestUtils::GetObjectKey("GetObjectToBadContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectBasicNegativeTest").append(".tmp"); std::shared_ptr content = std::make_shared(); content->setstate(content->badbit); auto outome = Client->GetObject(BucketName, key, content); EXPECT_EQ(outome.isSuccess(), false); } TEST_F(ObjectBasicOperationTest, GetObjectToBadKeyTest) { std::string key = "/InvalidObjectName"; auto outcome = Client->GetObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), false); } TEST_F(ObjectBasicOperationTest, GetObjectUsingRangeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUsingRangeTest"); auto content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); request.setRange(10, 19); auto outome = Client->GetObject(request); EXPECT_EQ(outome.isSuccess(), true); char buffer[10]; content->clear(); content->seekg(10, content->beg); EXPECT_EQ(content->good(), true); content->read(buffer, 10); std::string oriMd5 = ComputeContentMD5(buffer, 10); std::string memMd5 = ComputeContentMD5(*outome.result().Content().get()); EXPECT_STREQ(oriMd5.c_str(), memMd5.c_str()); } TEST_F(ObjectBasicOperationTest, GetObjectUsingRangeNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUsingRangeNegativeTest"); GetObjectRequest request(BucketName, key); request.setRange(10, 9); auto outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); request.setRange(10, -2); outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); request.setRange(-1, 9); outcome = Client->GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); EXPECT_TRUE(strstr(outcome.error().Message().c_str(), "The range is invalid.") != nullptr); } TEST_F(ObjectBasicOperationTest, GetObjectMatchingETagPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); reqeust.addMatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ETag().c_str(), eTag.c_str()); } TEST_F(ObjectBasicOperationTest, GetObjectMatchingETagsPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagsPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); std::vector eTagList; eTagList.push_back(eTag); reqeust.addMatchingETagConstraint("invalidETag"); reqeust.setMatchingETagConstraints(eTagList); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ETag().c_str(), eTag.c_str()); } TEST_F(ObjectBasicOperationTest, GetObjectMatchingETagNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectMatchingETagNegativeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.addMatchingETagConstraint("Dummy1"); reqeust.addMatchingETagConstraint("Dummy2"); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "PreconditionFailed"); } TEST_F(ObjectBasicOperationTest, GetObjectModifiedSincePositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectModifiedSincePositiveTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(-10); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setModifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, GetObjectModifiedSinceNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectModifiedSinceNegativeTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setModifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "ServerError:304"); } TEST_F(ObjectBasicOperationTest, GetObjectNonMatchingETagPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = "Dummy"; GetObjectRequest reqeust(BucketName, key); reqeust.addNonmatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, GetObjectNonMatchingETagsPositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagsPositiveTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); std::vector eTagList; eTagList.push_back("Dummy1"); eTagList.push_back("Dummy2"); reqeust.setNonmatchingETagConstraints(eTagList); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, GetObjectNonMatchingETagNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectNonMatchingETagNegativeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); std::string eTag = outcome.result().ETag(); GetObjectRequest reqeust(BucketName, key); reqeust.addNonmatchingETagConstraint(eTag); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "ServerError:304"); } TEST_F(ObjectBasicOperationTest, GetObjectUnmodifiedSincePositiveTest) { std::string key = TestUtils::GetObjectKey("GetObjectUnmodifiedSincePositiveTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setUnmodifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, GetObjectUnmodifiedSinceNegativeTest) { std::string key = TestUtils::GetObjectKey("GetObjectUnmodifiedSinceNegativeTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(-10); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); reqeust.setUnmodifiedSinceConstraint(timeStr); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "PreconditionFailed"); } /* no supported TEST_F(ObjectBasicOperationTest, GetObjectWithResponseHeadersSettingTest) { std::string key = TestUtils::GetObjectKey("GetObjectWithResponseHeadersSettingTest"); auto content = TestUtils::GetRandomStream(100); std::string timeStr = TestUtils::GetGMTString(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest reqeust(BucketName, key); auto gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentType(), "application/octet-stream"); reqeust.addResponseHeaders(RequestResponseHeader::ContentType, "test/haah"); gOutcome = Client->GetObject(reqeust); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentType(), "test/haah"); } */ class GetObjectAsyncContex : public AsyncCallerContext { public: GetObjectAsyncContex():ready(false) {} ~GetObjectAsyncContex() {} mutable std::mutex mtx; mutable std::condition_variable cv; mutable std::string md5; mutable bool ready; }; void GetObjectHandler(const AlibabaCloud::OSS::OssClient* client, const GetObjectRequest& request, const GetObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "Client[" << client << "]" << "GetObjectHandler" << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); ctx->md5 = memMd5; std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectBasicOperationTest, GetObjectAsyncBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectAsyncBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectAsyncHandler handler = GetObjectHandler; GetObjectRequest request(BucketName, key); std::shared_ptr memContext = std::make_shared (); GetObjectRequest fileRequest(BucketName, key); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); std::shared_ptr fileContext = std::make_shared(); Client->GetObjectAsync(request, handler, memContext); Client->GetObjectAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue GetObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } std::string oriMd5 = ComputeContentMD5(*content.get()); EXPECT_EQ(oriMd5, memContext->md5); EXPECT_EQ(oriMd5, fileContext->md5); memContext = nullptr; fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, GetObjectCallableBasicTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectCallableBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); std::shared_ptr memContext = std::make_shared(); GetObjectRequest fileRequest(BucketName, key); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); auto memOutcomeCallable = Client->GetObjectCallable(request); auto fileOutcomeCallable = Client->GetObjectCallable(fileRequest); std::cout << "Client[" << Client << "]" << "Issue GetObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*memOutcome.result().Content()); std::string fileMd5 = ComputeContentMD5(*fileOutcome.result().Content()); EXPECT_EQ(oriMd5, fileMd5); EXPECT_EQ(oriMd5, fileMd5); memOutcome = dummy; fileOutcome = dummy; //EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, PutObjectBasicTest) { std::string key = TestUtils::GetObjectKey("PutObjectBasicTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectBasicOperationTest, PutObjectWithExpiresTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithExpiresTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); request.MetaData().setContentType("application/x-test"); request.setExpires(TestUtils::GetGMTString(120)); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectBasicOperationTest, PutObjectUsingContentLengthTest) { std::string key = TestUtils::GetObjectKey("PutObjectUsingContentLengthTest"); std::shared_ptr content = std::make_shared(); *content << "123456789"; PutObjectRequest request(BucketName, key, content); request.MetaData().setContentLength(2); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5("12", 2); std::string memMd5 = ComputeContentMD5(*outome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectBasicOperationTest, PutObjectFullSettingsTest) { std::string key = TestUtils::GetObjectKey("PutObjectFullSettingsTest"); auto content = TestUtils::GetRandomStream(1024); key.append("/attachement_test.data"); std::string saveAs = "abc123.zip"; std::string contentDisposition = "attachment;filename*=utf-8''"; contentDisposition.append(UrlEncode(saveAs)); PutObjectRequest request(BucketName, key, content); request.setCacheControl("no-cache"); request.setContentDisposition(contentDisposition); request.setContentEncoding("gzip"); std::string contentMd5 = ComputeContentMD5(*content); request.setContentMd5(contentMd5); //user metadata request.MetaData().UserMetaData()["MyKey1"] = "MyValue1"; request.MetaData().UserMetaData()["MyKey2"] = "MyValue2"; request.MetaData().UserMetaData()["MyKey3"] = ""; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().CacheControl(), "no-cache"); EXPECT_EQ(metaOutcome.result().ContentDisposition(), contentDisposition); EXPECT_EQ(metaOutcome.result().ContentEncoding(), "gzip"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey1"), "MyValue1"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey2"), "MyValue2"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey3"), ""); } TEST_F(ObjectBasicOperationTest, PutObjectDefaultMetadataTest) { std::string key = TestUtils::GetObjectKey("PutObjectDefaultMetadataTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); } TEST_F(ObjectBasicOperationTest, PutObjectFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, PutObjectUsingContentLengthFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectUsingContentLengthFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUsingContentLengthFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared (tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); file->seekg(0, file->end); auto content_length = file->tellg(); EXPECT_EQ(content_length, 1024LL); file->seekg(content_length / 2, file->beg); PutObjectRequest request(BucketName, key, file); request.MetaData().setContentLength(content_length / 2); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); char buff[2048]; file->clear(); file->seekg(content_length / 2, file->beg); file->read(buff, 2048); size_t readSize = static_cast(file->gcount()); std::string oriMd5 = ComputeContentMD5(buff, readSize); std::string memMd5 = ComputeContentMD5(*outome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); file->close(); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, PutObjectFullSettingsFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectFullSettingsFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFullSettingsFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); key.append("/attachement_test.data"); std::string saveAs = "abc123.zip"; std::string contentDisposition = "attachment;filename*=utf-8''"; contentDisposition.append(UrlEncode(saveAs)); PutObjectRequest request(BucketName, key, file); request.setCacheControl("no-cache"); request.setContentDisposition(contentDisposition); request.setContentEncoding("gzip"); std::string contentMd5 = ComputeContentMD5(*file); request.setContentMd5(contentMd5); //user metadata request.MetaData().UserMetaData()["MyKey1"] = "MyValue1"; request.MetaData().UserMetaData()["MyKey2"] = "MyValue2"; auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().CacheControl(), "no-cache"); EXPECT_EQ(metaOutcome.result().ContentDisposition(), contentDisposition); EXPECT_EQ(metaOutcome.result().ContentEncoding(), "gzip"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey1"), "MyValue1"); EXPECT_EQ(metaOutcome.result().UserMetaData().at("MyKey2"), "MyValue2"); file->close(); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, PutObjectDefaultMetadataFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectDefaultMetadataFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectDefaultMetadataFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); auto outcome = Client->PutObject(BucketName, key, file); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); file->close(); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, PutObjectUserMetadataFromFileContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectUserMetadataFromFileContentTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUserMetadataFromFileContentTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); std::shared_ptr file = std::make_shared(tmpFile, std::ios::in | std::ios::binary); EXPECT_EQ(file->good(), true); ObjectMetaData metaData; metaData.UserMetaData()["test"] = "testvalue"; auto outcome = Client->PutObject(BucketName, key, file, metaData); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); file->close(); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, PutObjectUserMetadataFromFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectUserMetadataFromFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectUserMetadataFromFileTest").append("-put.tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); ObjectMetaData metaData; metaData.UserMetaData()["test"] = "testvalue"; auto outcome = Client->PutObject(BucketName, key, tmpFile, metaData); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "testvalue"); EXPECT_EQ(hOutcome.result().ContentLength(), 1024LL); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, PutObjectWithNotExistFileTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNotExistFileTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFileTest").append("-put.tmp"); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is in fail state. Logical error on i/o operation."); } TEST_F(ObjectBasicOperationTest, PutObjectWithNullContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNullContentTest"); std::shared_ptr content = nullptr; auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is null."); } TEST_F(ObjectBasicOperationTest, PutObjectWithBadContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithNullContentTest"); std::shared_ptr content = std::make_shared(); content->setstate(content->badbit); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ValidateError"); EXPECT_EQ(pOutcome.error().Message(), "Request body is in bad state. Read/writing error on i/o operation."); } TEST_F(ObjectBasicOperationTest, PutObjectWithSameContentTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithSameContentTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } class PutObjectAsyncContex : public AsyncCallerContext { public: PutObjectAsyncContex() :ready(false) {} virtual ~PutObjectAsyncContex() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; void PutObjectHandler(const AlibabaCloud::OSS::OssClient* client, const PutObjectRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "Client[" << client << "]" << "PutObjectHandler, tag:" << context->Uuid() << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectBasicOperationTest, PutObjectAsyncBasicTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); PutObjectAsyncHandler handler = PutObjectHandler; PutObjectRequest memRequest(BucketName, memKey, memContent); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("PutobjectasyncFromMem"); PutObjectRequest fileRequest(BucketName, fileKey, fileContent); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("PutobjectasyncFromFile"); Client->PutObjectAsync(memRequest, handler, memContext); Client->PutObjectAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue PutObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectBasicOperationTest, PutObjectCallableBasicTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectCallableBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto memOutcomeCallable = Client->PutObjectCallable(PutObjectRequest(BucketName, memKey, memContent)); auto fileOutcomeCallable = Client->PutObjectCallable(PutObjectRequest(BucketName, fileKey, fileContent)); std::cout << "Client[" << Client << "]" << "Issue PutObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; //EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(tmpFile); } TEST_F(ObjectBasicOperationTest, ListObjectsResult) { std::string xml = R"( oss-example 100 false fun/movie/001.avi 2012-02-24T08:43:07.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 5368709120 Standard 00220120222 user-example fun/movie/007.avi 2012-02-24T08:43:27.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 IA 00220120222 user-example fun/test.jpg 2012-02-24T08:42:32.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard 00220120222 user-example oss.jpg 2012-02-24T06:07:48.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard ongoing-request="true" 00220120222 user-example )"; ListObjectsResult result(xml); EXPECT_EQ(result.ObjectSummarys().size(), 4UL); EXPECT_EQ(result.ObjectSummarys()[0].ETag(), "5B3C1A2E053D763E1B002CC607C5A0FE"); EXPECT_EQ(result.ObjectSummarys()[0].Size(), 5368709120LL); EXPECT_EQ(result.ObjectSummarys()[0].StorageClass(), "Standard"); EXPECT_EQ(result.ObjectSummarys()[1].StorageClass(), "IA"); EXPECT_EQ(result.ObjectSummarys()[3].Key(), "oss.jpg"); EXPECT_EQ(result.ObjectSummarys()[3].LastModified(), "2012-02-24T06:07:48.000Z"); EXPECT_EQ(result.ObjectSummarys()[3].Type(), "Normal"); EXPECT_EQ(result.ObjectSummarys()[3].StorageClass(), "Standard"); EXPECT_EQ(result.ObjectSummarys()[3].Owner().Id(), "00220120222"); EXPECT_EQ(result.ObjectSummarys()[3].Owner().DisplayName(), "user-example"); EXPECT_EQ(result.ObjectSummarys()[3].RestoreInfo(), "ongoing-request=\"true\""); } TEST_F(ObjectBasicOperationTest, ListObjectsResultWithEncodingType) { std::string xml = R"( oss-example hello%20world%21 hello%20 100 hello%20%21world false url fun/movie/001.avi 2012-02-24T08:43:07.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard 00220120222 user-example fun/movie/007.avi 2012-02-24T08:43:27.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard 00220120222 user-example fun/test.jpg 2012-02-24T08:42:32.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard 00220120222 user-example oss.jpg 2012-02-24T06:07:48.000Z "5B3C1A2E053D763E1B002CC607C5A0FE" Normal 344606 Standard 00220120222 user-example )"; ListObjectsResult result(xml); EXPECT_EQ(result.ObjectSummarys().size(), 4UL); EXPECT_EQ(result.ObjectSummarys()[0].ETag(), "5B3C1A2E053D763E1B002CC607C5A0FE"); EXPECT_EQ(result.Marker(), "hello "); EXPECT_EQ(result.Prefix(), "hello world!"); EXPECT_EQ(result.Delimiter(), "hello !world"); } TEST_F(ObjectBasicOperationTest, DeleteObjectsResult) { std::string xml = R"( multipart.data test.jpg demo.jpg )"; DeleteObjectsResult result(xml); EXPECT_EQ(result.keyList().size(), 3UL); EXPECT_EQ(result.Quiet(), false); } TEST_F(ObjectBasicOperationTest, DeleteObjectsResultWithEmtpy) { std::string xml = ""; DeleteObjectsResult result(xml); EXPECT_EQ(result.keyList().size(), 0UL); EXPECT_EQ(result.Quiet(), true); } TEST_F(ObjectBasicOperationTest, DeleteObjectsBasicTest) { const size_t TestKeysCnt = 10; auto keyPrefix = TestUtils::GetObjectKey("DeleteObjectsBasicTest"); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; auto content = TestUtils::GetRandomStream(100); key.append(std::to_string(i)).append(".txt"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } DeleteObjectsRequest delRequest(BucketName); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), TestKeysCnt); EXPECT_EQ(delOutcome.result().Quiet(), false); } TEST_F(ObjectBasicOperationTest, DeleteObjectsQuietTest) { const size_t TestKeysCnt = 10; auto keyPrefix = TestUtils::GetObjectKey("DeleteObjectsQuietTest"); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; auto content = TestUtils::GetRandomStream(100); key.append(std::to_string(i)).append(".txt"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } DeleteObjectsRequest delRequest(BucketName); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } delRequest.setQuiet(true); EXPECT_EQ(delRequest.Quiet(), true); auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), 0UL); EXPECT_EQ(delOutcome.result().Quiet(), true); } TEST_F(ObjectBasicOperationTest, DeleteObjectsByStepTest) { const size_t TestKeysCnt = 10; EXPECT_TRUE(TestKeysCnt > 8); auto keyPrefix = TestUtils::GetObjectKey("DeleteObjectsByStepTest"); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; auto content = TestUtils::GetRandomStream(100); key.append(std::to_string(i)).append(".txt"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } ListObjectsRequest lRequest(BucketName); lRequest.setPrefix(keyPrefix); auto lOutcome = Client->ListObjects(lRequest); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), TestKeysCnt); //Delete 0, 1 objects DeleteObjectsRequest delRequest(BucketName); for (size_t i = 0; i < 2; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } EXPECT_EQ(delRequest.KeyList().size(), 2UL); auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), 2UL); //delete 2, 3, 4 delRequest.clearKeyList(); for (int i = 2; i < 5; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), 3UL); DeletedKeyList keyList; for (size_t i = 5; i < TestKeysCnt; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); keyList.push_back(key); } delRequest.setKeyList(keyList); delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), (TestKeysCnt-5)); lOutcome = Client->ListObjects(lRequest); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 0UL); } TEST_F(ObjectBasicOperationTest, DeleteObjectsWithEncodingTypeTest) { const size_t TestKeysCnt = 10; auto keyPrefix = TestUtils::GetObjectKey("DeleteObjectsWithEncodingTypeTest"); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; auto content = TestUtils::GetRandomStream(100); key.append(std::to_string(i)).append(".txt"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } DeleteObjectsRequest delRequest(BucketName); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } delRequest.setEncodingType("url"); EXPECT_EQ(delRequest.EncodingType(), "url"); auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), TestKeysCnt); EXPECT_EQ(delOutcome.result().Quiet(), false); } TEST_F(ObjectBasicOperationTest, DeleteObjectsInvalidBucketNameTest) { DeletedKeyList keyList; keyList.push_back("key"); auto outcome = Client->DeleteObjects("InvalidBucketName", keyList); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ObjectBasicOperationTest, DeleteObjectInvalidBucketNameTest) { auto outcome = Client->DeleteObject("InvalidBucketName", "key"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ObjectBasicOperationTest, DeleteObjectInvalidKeyTest) { auto outcome = Client->DeleteObject("bucketname", ""); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ObjectBasicOperationTest, PutObjectMultiTimesUseTheSameContentTest) { const size_t TestKeysCnt = 5; auto keyPrefix = TestUtils::GetObjectKey("PutObjectMultiTimesUseTheSameContentTest"); std::shared_ptr content = std::make_shared(); *content << "123456789"; for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; content->clear(); content->seekg(0, content->beg); key.append(std::to_string(i)).append(".txt"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } } TEST_F(ObjectBasicOperationTest, HeadObjectsNegativeTest) { auto outcome = Client->HeadObject("no-exist-bucket", "object"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); outcome = Client->HeadObject(BucketName, "object"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchKey"); EXPECT_EQ(outcome.error().RequestId().empty(), false); } TEST_F(ObjectBasicOperationTest, ObjectMetaDataDefaultTest) { ObjectMetaData meta; EXPECT_EQ(meta.LastModified(), ""); EXPECT_EQ(meta.ExpirationTime(), ""); EXPECT_EQ(meta.ContentLength(), -1LL); EXPECT_EQ(meta.ContentType(), ""); EXPECT_EQ(meta.ContentEncoding(), ""); EXPECT_EQ(meta.CacheControl(), ""); EXPECT_EQ(meta.ContentDisposition(), ""); EXPECT_EQ(meta.ETag(), ""); EXPECT_EQ(meta.ContentMd5(), ""); EXPECT_EQ(meta.CRC64(), 0ULL); EXPECT_EQ(meta.ObjectType(), ""); } TEST_F(ObjectBasicOperationTest, ObjectMetaDataSetTest) { ObjectMetaData meta; meta.setCacheControl("No-Cache"); meta.setExpirationTime("Fri, 09 Nov 2018 05:57:16 GMT"); meta.setContentLength(10000LL); meta.setContentType("application/xml"); meta.setContentEncoding("url"); meta.setContentDisposition(".zip"); meta.setETag("ETAG"); meta.setContentMd5("MD5"); meta.setCrc64(1000ULL); EXPECT_EQ(meta.CacheControl(), "No-Cache"); EXPECT_EQ(meta.ExpirationTime(), "Fri, 09 Nov 2018 05:57:16 GMT"); EXPECT_EQ(meta.ContentLength(), 10000LL); EXPECT_EQ(meta.ContentType(), "application/xml"); EXPECT_EQ(meta.ContentEncoding(), "url"); EXPECT_EQ(meta.ContentDisposition(), ".zip"); EXPECT_EQ(meta.ETag(), "ETAG"); EXPECT_EQ(meta.ContentMd5(), "MD5"); EXPECT_EQ(meta.CRC64(), 1000ULL); } TEST_F(ObjectBasicOperationTest, GetObjectResultTest) { std::string bucketName = TestUtils::GetBucketName("get-object-result-test"); std::string key = TestUtils::GetObjectKey("GetObjectResultTestKey"); ObjectMetaData meta; GetObjectResult result(bucketName, key, meta); EXPECT_EQ(result.RequestId(), ""); } TEST_F(ObjectBasicOperationTest, UtilsfunctionTest) { auto md5 = ComputeContentMD5("test"); std::string invalidKey; IsValidTagKey(invalidKey); ToRequestPayer(invalidKey.c_str()); DeleteObjectsResult result("test"); std::string xml = R"( )"; DeleteObjectsResult result1(xml); xml = R"( )"; DeleteObjectsResult result2(xml); xml = R"( )"; DeleteObjectsResult result3(xml); xml = R"()"; DeleteObjectsResult result4(xml); } TEST_F(ObjectBasicOperationTest, ListObjectsResultBranchTest) { ListObjectsResult result("test"); std::string xml = R"( )"; ListObjectsResult result1(xml); xml = R"( )"; ListObjectsResult result2(xml); xml = R"( )"; ListObjectsResult result3(xml); xml = R"( )"; ListObjectsResult result4(xml); xml = R"()"; ListObjectsResult result5(xml); xml = R"( )"; ListObjectsResult result6(xml); } TEST_F(ObjectBasicOperationTest, PutObjectResultBranchTest) { HeaderCollection header; std::shared_ptr content = std::make_shared(); *content << "test"; PutObjectResult result(header, content); } TEST_F(ObjectBasicOperationTest, GetObjectWithOssDateHeaderTest) { std::string key = TestUtils::GetObjectKey("GetObjectWithOssDateHeaderTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); std::time_t t = std::time(nullptr); request.MetaData().addHeader("x-oss-date", ToGmtTime(t)); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); } TEST_F(ObjectBasicOperationTest, DeleteObjectsWithSpecialCharsTest) { std::string key = "bswodnvsttpqvnzwsgifetwe\n\n\t@#$!\tPutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); DeleteObjectsRequest delRequest(BucketName); delRequest.addKey(key); auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), 1U); EXPECT_EQ(delOutcome.result().Quiet(), false); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), false); } TEST_F(ObjectBasicOperationTest, DeleteObjectsWithInvalidResponseBodyTest) { std::string key = "bswodnvsttpqvnzwsgifetwe\n\n\t@#$!\tPutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); DeleteObjectsRequest delRequest(BucketName); delRequest.addKey(key); delRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto delOutcome = Client->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), false); EXPECT_EQ(delOutcome.error().Code(), "ParseXMLError"); } TEST_F(ObjectBasicOperationTest, ListObjectsWithInvalidResponseBodyTest) { std::string key = TestUtils::GetObjectKey("ListObjectsWithInvalidResponseBodyTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); ListObjectsRequest lsRequest(BucketName); lsRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto listOutcome = Client->ListObjects(lsRequest); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "ParseXMLError"); } TEST_F(ObjectBasicOperationTest, GetObjectRequestStandardModeTest) { std::string key = TestUtils::GetObjectKey("GetObjectRequestStandardModeTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); auto getRequet = GetObjectRequest(BucketName, key); getRequet.setRange(10, 200); auto getOutcome = Client->GetObject(getRequet); EXPECT_EQ(getOutcome.result().Metadata().ContentLength(), 100); getRequet = GetObjectRequest(BucketName, key); getRequet.setRange(10, 200, true); getOutcome = Client->GetObject(getRequet); EXPECT_EQ(getOutcome.result().Metadata().ContentLength(), 90); std::vector etags; std::map maps; getRequet = GetObjectRequest(BucketName, key, "", "", etags, etags, maps); getRequet.setRange(10, 200); getOutcome = Client->GetObject(getRequet); EXPECT_EQ(getOutcome.result().Metadata().ContentLength(), 100); getRequet = GetObjectRequest(BucketName, key, "", "", etags, etags, maps); getRequet.setRange(10, 200, true); getOutcome = Client->GetObject(getRequet); EXPECT_EQ(getOutcome.result().Metadata().ContentLength(), 90); } //listobject2V2 TEST_F(ObjectBasicOperationTest, ListObjectsV2Test) { auto bucketName = BucketName + "-v2"; Client->CreateBucket(CreateBucketRequest(bucketName)); std::vector keyArray; //create test file for (int i = 0; i < 10; i++) { std::string key = TestUtils::GetObjectKey("folder/ListAllObjectsV2Test"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(bucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); keyArray.push_back(key); } for (int i = 0; i < 8; i++) { std::string key = TestUtils::GetObjectKey("sub/ListAllObjectsV2Test"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(bucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } for (int i = 0; i < 5; i++) { std::string key = TestUtils::GetObjectKey("list/ListAllObjectsV2Test"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(bucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } //list object use default auto request = ListObjectsV2Request(bucketName); auto listOutcome = Client->ListObjectsV2(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys().size(), 23UL); EXPECT_EQ(listOutcome.result().KeyCount(), 23L); EXPECT_EQ(listOutcome.result().MaxKeys(), 100L); EXPECT_EQ(listOutcome.result().Prefix(), ""); EXPECT_EQ(listOutcome.result().Delimiter(), ""); EXPECT_EQ(listOutcome.result().IsTruncated(), false); int i = 0; for (auto const &obj : listOutcome.result().ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); i++; } EXPECT_EQ(i, 23L); //list object with prefix request = ListObjectsV2Request(bucketName); request.setMaxKeys(2); request.setPrefix("folder"); bool IsTruncated = false; size_t total = 0; do { auto outcome = Client->ListObjectsV2(request); EXPECT_EQ(outcome.isSuccess(), true); request.setContinuationToken(outcome.result().NextContinuationToken()); IsTruncated = outcome.result().IsTruncated(); total += outcome.result().ObjectSummarys().size(); EXPECT_EQ(outcome.result().KeyCount(), 2L); EXPECT_EQ(outcome.result().MaxKeys(), 2L); EXPECT_EQ(outcome.result().Prefix(), "folder"); } while (IsTruncated); EXPECT_EQ(total, 10UL); //with Delimiter request = ListObjectsV2Request(bucketName); request.setDelimiter("/"); listOutcome = Client->ListObjectsV2(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().CommonPrefixes().size(), 3UL); EXPECT_EQ(listOutcome.result().KeyCount(), 3L); //start-After request = ListObjectsV2Request(bucketName); request.setStartAfter(keyArray.at(3)); request.setPrefix("folder"); listOutcome = Client->ListObjectsV2(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().KeyCount(), 6L); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Key(), keyArray.at(4)); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().DisplayName().empty(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().Id().empty(), true); //Fetch Owner request = ListObjectsV2Request(bucketName); request.setStartAfter(keyArray.at(4)); request.setPrefix("folder"); request.setFetchOwner(true); listOutcome = Client->ListObjectsV2(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().KeyCount(), 5L); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Key(), keyArray.at(5)); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().DisplayName().empty(), false); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().Id().empty(), false); //encoding type request = ListObjectsV2Request(bucketName); request.setStartAfter(keyArray.at(5)); request.setPrefix("folder/ListAllObjectsV2Test"); request.setEncodingType("url"); listOutcome = Client->ListObjectsV2(request); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().EncodingType(), "url"); EXPECT_EQ(listOutcome.result().KeyCount(), 4L); EXPECT_EQ(listOutcome.result().Prefix(), "folder/ListAllObjectsV2Test"); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Key(), keyArray.at(6)); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().DisplayName().empty(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys()[0].Owner().Id().empty(), true); } TEST_F(ObjectBasicOperationTest, ListObjectsV2ResultTest) { ListObjectsV2Result result("test"); std::string xml = R"( )"; ListObjectsV2Result result1(xml); xml = R"( )"; ListObjectsV2Result result2(xml); xml = R"( )"; ListObjectsV2Result result3(xml); xml = R"( )"; ListObjectsV2Result result4(xml); xml = R"()"; ListObjectsV2Result result5(xml); xml = R"( )"; ListObjectsV2Result result6(xml); xml = R"( name prefix start 20 / true next current type com-prefix key last tag type 100 class id display 3 )"; ListObjectsV2Result result7(xml); EXPECT_EQ(result7.Name(), "name"); EXPECT_EQ(result7.Prefix(), "prefix"); EXPECT_EQ(result7.MaxKeys(), 20L); EXPECT_EQ(result7.Delimiter(), "/"); EXPECT_EQ(result7.IsTruncated(), true); EXPECT_EQ(result7.NextContinuationToken(), "next"); EXPECT_EQ(result7.ContinuationToken(), "current"); EXPECT_EQ(result7.EncodingType(), "type"); EXPECT_EQ(result7.CommonPrefixes().size(), 1UL); EXPECT_EQ(result7.CommonPrefixes()[0], "com-prefix"); EXPECT_EQ(result7.ObjectSummarys().size(), 1UL); EXPECT_EQ(result7.ObjectSummarys()[0].Key(), "key"); EXPECT_EQ(result7.ObjectSummarys()[0].LastModified(), "last"); EXPECT_EQ(result7.ObjectSummarys()[0].ETag(), "tag"); EXPECT_EQ(result7.ObjectSummarys()[0].Type(), "type"); EXPECT_EQ(result7.ObjectSummarys()[0].Size(), 100LL); EXPECT_EQ(result7.ObjectSummarys()[0].StorageClass(), "class"); EXPECT_EQ(result7.ObjectSummarys()[0].Owner().DisplayName(), "display"); EXPECT_EQ(result7.ObjectSummarys()[0].Owner().Id(), "id"); xml = R"( name prefix start 20 / true next current type com-prefix key last tag type 100 class id display ongoing-request="true" 3 )"; result7 = ListObjectsV2Result(xml); EXPECT_EQ(result7.Name(), "name"); EXPECT_EQ(result7.Prefix(), "prefix"); EXPECT_EQ(result7.MaxKeys(), 20L); EXPECT_EQ(result7.Delimiter(), "/"); EXPECT_EQ(result7.IsTruncated(), true); EXPECT_EQ(result7.NextContinuationToken(), "next"); EXPECT_EQ(result7.ContinuationToken(), "current"); EXPECT_EQ(result7.EncodingType(), "type"); EXPECT_EQ(result7.CommonPrefixes().size(), 1UL); EXPECT_EQ(result7.CommonPrefixes()[0], "com-prefix"); EXPECT_EQ(result7.ObjectSummarys().size(), 1UL); EXPECT_EQ(result7.ObjectSummarys()[0].Key(), "key"); EXPECT_EQ(result7.ObjectSummarys()[0].LastModified(), "last"); EXPECT_EQ(result7.ObjectSummarys()[0].ETag(), "tag"); EXPECT_EQ(result7.ObjectSummarys()[0].Type(), "type"); EXPECT_EQ(result7.ObjectSummarys()[0].Size(), 100LL); EXPECT_EQ(result7.ObjectSummarys()[0].StorageClass(), "class"); EXPECT_EQ(result7.ObjectSummarys()[0].Owner().DisplayName(), "display"); EXPECT_EQ(result7.ObjectSummarys()[0].Owner().Id(), "id"); EXPECT_EQ(result7.ObjectSummarys()[0].RestoreInfo(), "ongoing-request=\"true\""); } } } ================================================ FILE: test/src/Object/ObjectCallbackTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" #include #include #include "src/external/json/json.h" namespace AlibabaCloud { namespace OSS { class ObjectCallbackTest : public ::testing::Test { protected: ObjectCallbackTest() { } ~ObjectCallbackTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; Client = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); BucketName = TestUtils::GetBucketName("cpp-sdk-objectcallback"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectCallbackTest::Client = nullptr; std::string ObjectCallbackTest::BucketName = ""; TEST_F(ObjectCallbackTest, PutObjectCallbackTest) { std::string key = TestUtils::GetObjectKey("PutObjectCallbackTest"); auto content = TestUtils::GetRandomStream(1024); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); PutObjectRequest request(BucketName, key, content); request.setCallback(value); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectCallbackTest, PutObjectCallbackVarTest) { std::string key = TestUtils::GetObjectKey("PutObjectCallbackVarTest"); auto content = TestUtils::GetRandomStream(1024); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody, "", ObjectCallbackBuilder::URL); std::string value = builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("x:var1", "value1"); varBuilder.addCallbackVariable("x:var2", "value2"); std::string varValue = varBuilder.build(); PutObjectRequest request(BucketName, key, content); request.setCallback(value, varValue); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectCallbackTest, MultipartUploadCallbackTest) { //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadCallbackTest"); InitiateMultipartUploadRequest request(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); PartList partETags; auto content = TestUtils::GetRandomStream(1024); UploadPartRequest uRequest(BucketName, targetObjectKey, content); uRequest.setPartNumber(1); uRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); Part part(1, uploadPartOutcome.result().ETag()); partETags.push_back(part); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(initOutcome.result().UploadId()); completeRequest.setCallback(value); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_TRUE(cOutcome.result().Content() != nullptr); } TEST_F(ObjectCallbackTest, MultipartUploadCallbackVarTest) { //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadCallbackTest"); InitiateMultipartUploadRequest request(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); PartList partETags; auto content = TestUtils::GetRandomStream(1024); UploadPartRequest uRequest(BucketName, targetObjectKey, content); uRequest.setPartNumber(1); uRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); Part part(1, uploadPartOutcome.result().ETag()); partETags.push_back(part); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody, "", ObjectCallbackBuilder::URL); std::string value = builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("x:var1", "value1"); varBuilder.addCallbackVariable("x:var2", "value2"); std::string varValue = varBuilder.build(); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(initOutcome.result().UploadId()); completeRequest.setCallback(value, varValue); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_TRUE(cOutcome.result().Content() != nullptr); } TEST_F(ObjectCallbackTest, ResumableUploadCallbackTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadCallbackTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadCallbackTest"); TestUtils::WriteRandomDatatoFile(file, 204800); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); //simple mode UploadObjectRequest request(BucketName, key, file); request.setPartSize(309600); request.setCallback(value); auto pOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); std::string fileETag = TestUtils::GetFileETag(file); EXPECT_EQ(fileETag, pOutcome.result().ETag()); //multiprat mode request.setPartSize(102400); auto pOutcome2 = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome2.isSuccess(), true); EXPECT_TRUE(pOutcome2.result().Content() != nullptr); EXPECT_EQ(pOutcome2.result().CRC64(), pOutcome.result().CRC64()); EXPECT_NE(pOutcome2.result().ETag(), pOutcome.result().ETag()); EXPECT_EQ(RemoveFile(file), true); } TEST_F(ObjectCallbackTest, ResumableUploadCallbackVarTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadCallbackVarTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadCallbackVarTest"); TestUtils::WriteRandomDatatoFile(file, 204800); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("x:var1", "value1"); varBuilder.addCallbackVariable("x:var2", "value2"); std::string varValue = varBuilder.build(); //simple mode UploadObjectRequest request(BucketName, key, file); request.setPartSize(309600); request.setCallback(value, varValue); auto pOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); std::string fileETag = TestUtils::GetFileETag(file); EXPECT_EQ(fileETag, pOutcome.result().ETag()); //multiprat mode request.setPartSize(102400); auto pOutcome2 = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome2.isSuccess(), true); EXPECT_TRUE(pOutcome2.result().Content() != nullptr); EXPECT_EQ(pOutcome2.result().CRC64(), pOutcome.result().CRC64()); EXPECT_NE(pOutcome2.result().ETag(), pOutcome.result().ETag()); EXPECT_EQ(RemoveFile(file), true); } TEST_F(ObjectCallbackTest, PutPreSignedCallbackTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedCallbackTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.addParameter("callback", value); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); auto outcome = Client->HeadObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ContentLength(), 1024LL); } TEST_F(ObjectCallbackTest, PutPreSignedCallbackVarTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedCallbackVarTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); std::string callbackUrl = Config::CallbackServer; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("x:var1", "value1"); varBuilder.addCallbackVariable("x:var2", "value2"); std::string varValue = varBuilder.build(); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.addParameter("callback", value); request.addParameter("callback-var", varValue); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() != nullptr); auto outcome = Client->HeadObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ContentLength(), 1024LL); } TEST_F(ObjectCallbackTest, ResumableUploadCallbackUrlNegativeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadCallbackUrlNegativeTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadCallbackUrlNegativeTest"); TestUtils::WriteRandomDatatoFile(file, 204800); std::string callbackUrl = "http://192.168.1.1"; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); //simple mode UploadObjectRequest request(BucketName, key, file); request.setPartSize(309600); request.setCallback(value); auto pOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "InvalidArgument"); EXPECT_EQ(pOutcome.error().Message(), "Private address is forbidden to callback."); EXPECT_TRUE(pOutcome.error().RequestId().size() > 0); //multiprat mode request.setPartSize(102400); auto pOutcome2 = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome2.isSuccess(), false); EXPECT_EQ(pOutcome2.error().Code(), "InvalidArgument"); EXPECT_EQ(pOutcome.error().Message(), "Private address is forbidden to callback."); EXPECT_TRUE(pOutcome.error().RequestId().size() > 0); //simple mode builder.setCallbackUrl("http://oss-cn-hangzhou.aliyuncs.com"); value = builder.build(); request.setPartSize(309600); request.setCallback(value); pOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "CallbackFailed"); EXPECT_TRUE(pOutcome.error().RequestId().size() > 0); request.setPartSize(102400); pOutcome2 = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome2.isSuccess(), false); EXPECT_EQ(pOutcome2.error().Code(), "CallbackFailed"); EXPECT_TRUE(pOutcome.error().RequestId().size() > 0); EXPECT_EQ(RemoveFile(file), true); } TEST_F(ObjectCallbackTest, PutObjectCallbackNegativeTest) { std::string key = TestUtils::GetObjectKey("PutObjectCallbackBodyNegativeTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); request.setCallback("error argument"); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "InvalidArgument"); EXPECT_EQ(pOutcome.error().Message(), "The callback configuration is not base64 encoded."); request.setCallback(Base64Encode("error argument")); pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "InvalidArgument"); EXPECT_EQ(pOutcome.error().Message(), "The callback configuration is not json format."); } TEST_F(ObjectCallbackTest, PutPreSignedCallbackNegativeTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedCallbackNegativeTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.addParameter("callback", Base64Encode("error argument")); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "InvalidArgument"); EXPECT_EQ(pOutcome.error().Message(), "The callback configuration is not json format."); //invalid callback server std::string callbackUrl = "http://oss-cn-hangzhou.aliyuncs.com"; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); request.addParameter("callback", value); urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "CallbackFailed"); EXPECT_TRUE(pOutcome.error().RequestId().size() > 0); } TEST_F(ObjectCallbackTest, ObjectCallbackBuilderTest) { ObjectCallbackBuilder builder("192.168.1.100", "11111"); std::stringstream ss; std::string value; Json::CharReaderBuilder rbuilder; Json::Value readRoot; std::string errMessage; builder.setCallbackUrl("192.168.1.1"); builder.setCallbackBody("123456"); value = TestUtils::Base64Decode(builder.build()); ss << value; if (Json::parseFromStream(rbuilder, ss, &readRoot, &errMessage)) { EXPECT_EQ(readRoot["callbackUrl"].asString(), "192.168.1.1"); EXPECT_EQ(readRoot["callbackHost"].asString(), ""); EXPECT_EQ(readRoot["callbackBody"].asString(), "123456"); EXPECT_EQ(readRoot["callbackBodyType"].asString(), ""); } else { EXPECT_EQ(errMessage, ""); } builder.setCallbackHost("demo.com"); ss.str(""); value = TestUtils::Base64Decode(builder.build()); ss << value; if (Json::parseFromStream(rbuilder, ss, &readRoot, &errMessage)) { EXPECT_EQ(readRoot["callbackUrl"].asString(), "192.168.1.1"); EXPECT_EQ(readRoot["callbackHost"].asString(), "demo.com"); EXPECT_EQ(readRoot["callbackBody"].asString(), "123456"); EXPECT_EQ(readRoot["callbackBodyType"].asString(), ""); } else { EXPECT_EQ(errMessage, ""); } builder.setCallbackBodyType(ObjectCallbackBuilder::JSON); ss.str(""); value = TestUtils::Base64Decode(builder.build()); ss << value; if (Json::parseFromStream(rbuilder, ss, &readRoot, &errMessage)) { EXPECT_EQ(readRoot["callbackUrl"].asString(), "192.168.1.1"); EXPECT_EQ(readRoot["callbackHost"].asString(), "demo.com"); EXPECT_EQ(readRoot["callbackBody"].asString(), "123456"); EXPECT_EQ(readRoot["callbackBodyType"].asString(), "application/json"); } else { EXPECT_EQ(errMessage, ""); } } TEST_F(ObjectCallbackTest, ObjectCallbackVariableBuilderTest) { ObjectCallbackVariableBuilder builder; builder.addCallbackVariable("x:var1", "value1"); builder.addCallbackVariable("x:var2", "value2"); std::stringstream ss; std::string value; Json::CharReaderBuilder rbuilder; Json::Value readRoot; std::string errMessage; value = TestUtils::Base64Decode(builder.build()); ss << value; if (Json::parseFromStream(rbuilder, ss, &readRoot, &errMessage)) { EXPECT_EQ(readRoot["x:var1"].asString(), "value1"); EXPECT_EQ(readRoot["x:var2"].asString(), "value2"); } else { EXPECT_EQ(errMessage, ""); } } TEST_F(ObjectCallbackTest, PutObjectWithoutCallbackTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithoutCallbackTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(ObjectCallbackTest, MultipartUploadWitoutCallbackTest) { //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadWitoutCallbackTest"); InitiateMultipartUploadRequest request(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); PartList partETags; auto content = TestUtils::GetRandomStream(1024); UploadPartRequest uRequest(BucketName, targetObjectKey, content); uRequest.setPartNumber(1); uRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); Part part(1, uploadPartOutcome.result().ETag()); partETags.push_back(part); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, partETags); completeRequest.setUploadId(initOutcome.result().UploadId()); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_TRUE(cOutcome.result().Content() == nullptr); } TEST_F(ObjectCallbackTest, ResumableUploadWithoutCallbackTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadWithoutCallbackTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithoutCallbackTest"); TestUtils::WriteRandomDatatoFile(file, 204800); //simple mode UploadObjectRequest request(BucketName, key, file); request.setPartSize(309600); auto pOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); std::string fileETag = TestUtils::GetFileETag(file); EXPECT_EQ(fileETag, pOutcome.result().ETag()); //multiprat mode request.setPartSize(102400); auto pOutcome2 = Client->ResumableUploadObject(request); EXPECT_EQ(pOutcome2.isSuccess(), true); EXPECT_TRUE(pOutcome2.result().Content() == nullptr); EXPECT_EQ(pOutcome2.result().CRC64(), pOutcome.result().CRC64()); EXPECT_NE(pOutcome2.result().ETag(), pOutcome.result().ETag()); EXPECT_EQ(RemoveFile(file), true); } TEST_F(ObjectCallbackTest, PutPreSignedWithoutCallbackTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedWithoutCallbackTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_TRUE(pOutcome.result().Content() == nullptr); auto outcome = Client->HeadObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ContentLength(), 1024LL); } TEST_F(ObjectCallbackTest, ObjectCallbackBuilderFunctionTest) { std::string callbackUrl; std::string callbackBody; ObjectCallbackBuilder builder(callbackUrl, callbackBody); builder.build(); ObjectCallbackVariableBuilder varBuilder; varBuilder.addCallbackVariable("var1", "value1"); varBuilder.build(); } TEST_F(ObjectCallbackTest, PutPreSignedCallbackWithInvalidResponseTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedCallbackWithInvalidResponseTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); //invalid callback server std::string callbackUrl = "http://oss-cn-hangzhou.aliyuncs.com"; std::string callbackBody = "bucket=${bucket}&object=${object}&etag=${etag}&size=${size}&mimeType=${mimeType}&my_var1=${x:var1}"; ObjectCallbackBuilder builder(callbackUrl, callbackBody); std::string value = builder.build(); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.addParameter("callback", value); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); PutObjectByUrlRequest poRequest(urlOutcome.result(), content); poRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); data->write("invlid data", 11); return data; }); auto pOutcome = Client->PutObjectByUrl(poRequest); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_EQ(pOutcome.error().Code(), "ParseXMLError:13"); } } } ================================================ FILE: test/src/Object/ObjectCopyTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud{ namespace OSS { class ObjectCopyTest : public ::testing::Test { protected: ObjectCopyTest() { } ~ObjectCopyTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); ListBucketsRequest request; request.setPrefix("cpp-sdk-objectcopy"); request.setMaxKeys(200); auto outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); BucketName1 = TestUtils::GetBucketName("cpp-sdk-objectcopy1"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName1)); EXPECT_EQ(outCome.isSuccess(), true); BucketName2 = TestUtils::GetBucketName("cpp-sdk-objectcopy2"); outCome = Client->CreateBucket(CreateBucketRequest(BucketName2)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName1); TestUtils::CleanBucket(*Client, BucketName2); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName1; static std::string BucketName2; }; std::shared_ptr ObjectCopyTest::Client = nullptr; std::string ObjectCopyTest::BucketName1 = ""; std::string ObjectCopyTest::BucketName2 = ""; TEST_F(ObjectCopyTest, ObjectCopyNewObject) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyNewObjectWithSrcMeta) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author"] = "chanju"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); std::string metaValue = getOutcome.result().Metadata().UserMetaData().at("author"); EXPECT_EQ(metaValue, "chanju"); } TEST_F(ObjectCopyTest, ObjectCopyNewObjectNotCreateNewMetaCopy) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author"] = "chanju"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Copy); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author"), "chanju"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author1"), getOutcome.result().Metadata().UserMetaData().end()); } TEST_F(ObjectCopyTest, ObjectCopyNewObjectNotCreateNewMetaReplace) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author"] = "chanju"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Replace); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author"), getOutcome.result().Metadata().UserMetaData().end()); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2"); } TEST_F(ObjectCopyTest, ObjectCopyExistObject) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ(etag1!=etag2, true); CopyObjectRequest copyRequest(BucketName2,objName2); copyRequest.setCopySource(BucketName1,objName1); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData ; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyETagMatch) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); // set etag invalid CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setSourceIfMatchETag("aaa"); //begin copy object CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), false); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text2); // set valid etag copyRequest.setSourceIfMatchETag(etag1); copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyETagNotMatch) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); // set valid etag copyRequest.setSourceIfNotMatchETag(etag1); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), false); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text2); // set etag invalid copyRequest.setSourceIfNotMatchETag("aaa"); //begin copy object copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyUnModifiedSince) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); TestUtils::WaitForCacheExpire(2); // set early time,not copy CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); std::string earlyDate = TestUtils::GetGMTString(-100); copyRequest.setSourceIfUnModifiedSince(earlyDate); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), false); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text2); // set later date,copy std::string laterDate = TestUtils::GetGMTString(100); copyRequest.setSourceIfUnModifiedSince(laterDate); //begin copy object copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyModifiedSince) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); TestUtils::WaitForCacheExpire(2); // set later time,not copy CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); std::string laterDate = TestUtils::GetGMTString(100); copyRequest.setSourceIfModifiedSince(laterDate); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), false); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text2); // set early date,copy std::string earlyDate = TestUtils::GetGMTString(-100); copyRequest.setSourceIfModifiedSince(earlyDate); //begin copy object copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); } TEST_F(ObjectCopyTest, ObjectCopyAclPrivate) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text = "hellowworld"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setAcl(CannedAccessControlList::Private); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); // get acl auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName2, objName2)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Private); } TEST_F(ObjectCopyTest, ObjectCopyAclPublicRead) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text = "hellowworld"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setAcl(CannedAccessControlList::PublicRead); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); // get acl auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName2, objName2)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicRead); } TEST_F(ObjectCopyTest, ObjectCopyAclPublicReadWrite) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text = "hellowworld"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setAcl(CannedAccessControlList::PublicReadWrite); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); // get acl auto aclOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName2, objName2)); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); } TEST_F(ObjectCopyTest, ObjectCopyExistObjectMeta) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); ObjectMetaData MetaInfo2; MetaInfo1.UserMetaData()["author1"] = "chanju1-dest"; MetaInfo1.UserMetaData()["author3"] = "chanju3-dest"; putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2),MetaInfo2)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); TestUtils::WaitForCacheExpire(2); //ObjectMetaData MetaInfoCopy; //MetaInfoCopy.UserMetaData()["author1"] = "chanju1-dest"; //MetaInfoCopy.UserMetaData()["author2"] = "chanju2-dest"; //MetaInfoCopy.UserMetaData()["author3"] = "chanju3-dest"; CopyObjectRequest copyRequest(BucketName2, objName2); copyRequest.setCopySource(BucketName1, objName1); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-src"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-src"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author3"), getOutcome.result().Metadata().UserMetaData().end()); } TEST_F(ObjectCopyTest, ObjectCopyExistObjectMetaCopy) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); ObjectMetaData MetaInfo2; MetaInfo1.UserMetaData()["author1"] = "chanju1-dest"; MetaInfo1.UserMetaData()["author3"] = "chanju3-dest"; putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2),MetaInfo2)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1-copy"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2-copy"; MetaInfoCopy.UserMetaData()["author3"] = "chanju3-copy"; CopyObjectRequest copyRequest(BucketName2, objName2,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Copy); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-src"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-src"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author3"), getOutcome.result().Metadata().UserMetaData().end()); } TEST_F(ObjectCopyTest, ObjectCopyExistObjectMetaReplace) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); std::string text1 = "hellowworld"; std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); std::string text2 = text1 + text1; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); ObjectMetaData MetaInfo2; MetaInfo1.UserMetaData()["author1"] = "chanju1-dest"; MetaInfo1.UserMetaData()["author3"] = "chanju3-dest"; putOutcome = Client->PutObject(PutObjectRequest(BucketName2, objName2, std::make_shared(text2),MetaInfo2)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag2 = putOutcome.result().ETag(); EXPECT_EQ((etag1 != etag2), true); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1-copy"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2-copy"; MetaInfoCopy.UserMetaData()["author3"] = "chanju3-copy"; CopyObjectRequest copyRequest(BucketName2, objName2,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Replace); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName2, objName2)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author3"),"chanju3-copy"); } TEST_F(ObjectCopyTest, ObjectCopySameObjectMetaCopy) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-ObjectCopySameObjectMetaCopy"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1-copy"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2-copy"; MetaInfoCopy.UserMetaData()["author3"] = "chanju3-copy"; CopyObjectRequest copyRequest(BucketName1, objName1,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Copy); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName1, objName1)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author3"),"chanju3-copy"); } TEST_F(ObjectCopyTest, ObjectCopySameObjectMetaReplace) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-ObjectCopySameObjectMetaReplace"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1-copy"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2-copy"; MetaInfoCopy.UserMetaData()["author3"] = "chanju3-copy"; CopyObjectRequest copyRequest(BucketName1, objName1,MetaInfoCopy); copyRequest.setCopySource(BucketName1, objName1); copyRequest.setMetadataDirective(CopyActionList::Replace); CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName1, objName1)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author3"),"chanju3-copy"); } TEST_F(ObjectCopyTest, ObjectCopyUpdateUserMeta1) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-ObjectCopyUpdateUserMeta1"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; MetaInfoCopy.UserMetaData()["author1"] = "chanju1-copy"; MetaInfoCopy.UserMetaData()["author2"] = "chanju2-copy"; MetaInfoCopy.UserMetaData()["author3"] = "chanju3-copy"; CopyObjectOutcome copyOutCome = Client->ModifyObjectMeta(BucketName1, objName1, MetaInfoCopy); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName1, objName1)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author1"),"chanju1-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author2"),"chanju2-copy"); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().at("author3"),"chanju3-copy"); } TEST_F(ObjectCopyTest, ObjectCopyUpdateUserMeta2) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-ObjectCopyUpdateUserMeta2"); std::string text1 = "hellowworld"; ObjectMetaData MetaInfo1; MetaInfo1.UserMetaData()["author1"] = "chanju1-src"; MetaInfo1.UserMetaData()["author2"] = "chanju2-src"; PutObjectOutcome putOutcome = Client->PutObject(PutObjectRequest(BucketName1, objName1, std::make_shared(text1),MetaInfo1)); EXPECT_EQ(putOutcome.isSuccess(), true); std::string etag1 = putOutcome.result().ETag(); TestUtils::WaitForCacheExpire(2); ObjectMetaData MetaInfoCopy; CopyObjectOutcome copyOutCome = Client->ModifyObjectMeta(BucketName1, objName1, MetaInfoCopy); // get object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName1, objName1)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text1); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author1"), getOutcome.result().Metadata().UserMetaData().end()); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author2"), getOutcome.result().Metadata().UserMetaData().end()); EXPECT_EQ(getOutcome.result().Metadata().UserMetaData().find("author3"), getOutcome.result().Metadata().UserMetaData().end()); } TEST_F(ObjectCopyTest, CopyObjectResultTest) { std::string xml = R"( Fri, 24 Feb 2012 07:18:48 GMT "5B3C1A2E053D763E1B002CC607C5A0FE" )"; CopyObjectResult result(std::make_shared(xml)); EXPECT_EQ(result.LastModified(), "Fri, 24 Feb 2012 07:18:48 GMT"); EXPECT_EQ(result.ETag(), "5B3C1A2E053D763E1B002CC607C5A0FE"); } TEST_F(ObjectCopyTest, CopyObjectWithSpecialKeyNameTest) { //put test file unsigned char buff[] = { 0xE4, 0XB8, 0XAD, 0XE6, 0X96, 0X87, 0XE5, 0X90, 0X8D, 0XE5, 0XAD, 0X97, 0X2B, 0X0 }; std::string u8_str((char *)buff); auto testKey = u8_str; auto content = TestUtils::GetRandomStream(100); Client->PutObject(BucketName1, testKey, content); EXPECT_EQ(Client->DoesObjectExist(BucketName1, testKey), true); //get target object name auto targetObjectKey = TestUtils::GetObjectKey("CopyObjectWithSpecialKeyNameTest"); CopyObjectRequest request(BucketName1, targetObjectKey); request.setCopySource(BucketName1, testKey); auto outcome = Client->CopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(ObjectCopyTest, CopyObjectRequestBranchTest) { ObjectMetaData meta; meta.setContentType("test"); CopyObjectRequest request(BucketName1,"test", meta); Client->CopyObject(request); CopyObjectResult result("test"); std::string xml = R"( Fri, 24 Feb 2012 07:18:48 GMT "5B3C1A2E053D763E1B002CC607C5A0FE" )"; CopyObjectResult result1(xml); xml = R"( )"; CopyObjectResult result2(xml); xml = R"( )"; CopyObjectResult result3(xml); xml = R"()"; CopyObjectResult result4(xml); } } } ================================================ FILE: test/src/Object/ObjectEncodingTypeTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include namespace AlibabaCloud { namespace OSS { class ObjectEncodingTypeTest : public ::testing::Test { protected: ObjectEncodingTypeTest() { } ~ObjectEncodingTypeTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectencodingtype"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectEncodingTypeTest::Client = nullptr; std::string ObjectEncodingTypeTest::BucketName = ""; TEST_F(ObjectEncodingTypeTest, DeleteObjectsWithHiddenCharacters) { std::string key = TestUtils::GetObjectKey("DeleteObjectsWithHiddenCharacters"); std::string newKey1 = key; newKey1.push_back(0x1c); newKey1.push_back(0x1a); newKey1.append(".1.cd"); std::string newKey2 = key; newKey2.push_back(0x1c); newKey2.push_back(0x1a); newKey2.append(".2.cd"); std::string newKey3 = key; newKey3.append(".3.cd"); std::string src = TestUtils::GetRandomString(1024); std::shared_ptr content = std::make_shared(src); auto outcome = Client->PutObject(BucketName, newKey1, content); EXPECT_EQ(outcome.isSuccess(), true); content = std::make_shared(src); outcome = Client->PutObject(BucketName, newKey2, content); EXPECT_EQ(outcome.isSuccess(), true); content = std::make_shared(src); outcome = Client->PutObject(BucketName, newKey3, content); EXPECT_EQ(outcome.isSuccess(), true); DeletedKeyList keyList; keyList.push_back(newKey1); keyList.push_back(newKey2); keyList.push_back(newKey3); auto dOutcome = Client->DeleteObjects(BucketName, keyList); EXPECT_EQ(dOutcome.isSuccess(), true); } TEST_F(ObjectEncodingTypeTest, DeleteObjectsWithHiddenCharactersUseUrlEncoding) { std::string key = TestUtils::GetObjectKey("DeleteObjectsWithHiddenCharactersUseUrlEncoding"); std::string newKey1 = key; newKey1.push_back(0x1c); newKey1.push_back(0x1a); newKey1.append(".1.cd"); std::string newKey2 = key; newKey2.push_back(0x1c); newKey2.push_back(0x1a); newKey2.append(".2.cd"); std::string newKey3 = key; newKey3.append(".3.cd"); std::string src = TestUtils::GetRandomString(1024); std::shared_ptr content = std::make_shared(src); auto outcome = Client->PutObject(BucketName, newKey1, content); EXPECT_EQ(outcome.isSuccess(), true); content = std::make_shared(src); outcome = Client->PutObject(BucketName, newKey2, content); EXPECT_EQ(outcome.isSuccess(), true); content = std::make_shared(src); outcome = Client->PutObject(BucketName, newKey3, content); EXPECT_EQ(outcome.isSuccess(), true); auto lsOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lsOutcome.isSuccess(), true); EXPECT_EQ(lsOutcome.result().ObjectSummarys().size(), 3UL); DeletedKeyList keyList; keyList.push_back(newKey1); keyList.push_back(newKey2); keyList.push_back(newKey3); DeleteObjectsRequest request(BucketName); request.setEncodingType("url"); request.setKeyList(keyList); auto dOutcome = Client->DeleteObjects(request); EXPECT_EQ(dOutcome.isSuccess(), true); std::list patList; patList.push_back(newKey1); patList.push_back(newKey2); patList.push_back(newKey3); EXPECT_EQ(dOutcome.result().keyList(), patList); lsOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lsOutcome.isSuccess(), true); EXPECT_EQ(lsOutcome.result().ObjectSummarys().size(), 0UL); } TEST_F(ObjectEncodingTypeTest, DeleteObjectsWithEscapeCharacters) { std::string keyPrefix = TestUtils::GetObjectKey("DeleteObjectsWithEscapeCharacters"); char entities[] = { '\"', '&', '\'', '<', '>' }; std::vector keys; for (size_t i = 0; i < sizeof(entities) / sizeof(entities[0]); i++) { std::string key = keyPrefix; key.append("-").append(std::to_string(i)); key.push_back(entities[i]); key.append(".dat"); keys.push_back(key); auto outcome = Client->PutObject(BucketName, key, std::make_shared("just for test.")); EXPECT_EQ(outcome.isSuccess(), true); } { std::string key = keyPrefix; key.append("-").append(std::to_string(9)); key.append("\"&\'<>-10.dat"); keys.push_back(key); auto outcome = Client->PutObject(BucketName, key, std::make_shared("just for test.")); EXPECT_EQ(outcome.isSuccess(), true); } EXPECT_EQ(keys.size(), 6UL); auto lsOutcome = Client->ListObjects(BucketName, keyPrefix); EXPECT_EQ(lsOutcome.isSuccess(), true); EXPECT_EQ(lsOutcome.result().ObjectSummarys().size(), keys.size()); DeletedKeyList keyList; std::list patList; for (const auto& key : keys) { keyList.push_back(key); patList.push_back(key); } auto dOutcome = Client->DeleteObjects(BucketName, keyList); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().keyList(), patList); lsOutcome = Client->ListObjects(BucketName, keyPrefix); EXPECT_EQ(lsOutcome.isSuccess(), true); EXPECT_EQ(lsOutcome.result().ObjectSummarys().size(), 0UL); } } } ================================================ FILE: test/src/Object/ObjectHashCheckTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include namespace AlibabaCloud { namespace OSS { class ObjectHashCheckTest : public ::testing::Test { protected: ObjectHashCheckTest() { } ~ObjectHashCheckTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objecthashcheck"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectHashCheckTest::Client = nullptr; std::string ObjectHashCheckTest::BucketName = ""; } } ================================================ FILE: test/src/Object/ObjectProcessTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include namespace AlibabaCloud { namespace OSS { class ObjectProcessTest : public ::testing::Test { protected: ObjectProcessTest() { } ~ObjectProcessTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectprocess"); ImageFilePath = Config::GetDataPath(); ImageFilePath.append("example.jpg"); Process = "image/resize,m_fixed,w_100,h_100"; ImageInfo = "{\n \"FileSize\": {\"value\": \"3267\"},\n \"Format\": {\"value\": \"jpg\"},\n \"FrameCount\": {\"value\": \"1\"},\n \"ImageHeight\": {\"value\": \"100\"},\n \"ImageWidth\": {\"value\": \"100\"},\n \"ResolutionUnit\": {\"value\": \"1\"},\n \"XResolution\": {\"value\": \"1/1\"},\n \"YResolution\": {\"value\": \"1/1\"}}"; Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static std::string GetOssImageObjectInfo(const std::string &bucket, const std::string &key) { auto outcome = Client->GetObject(GetObjectRequest(bucket, key, "image/info")); if (outcome.isSuccess()) { std::istreambuf_iterator isb(*outcome.result().Content().get()), end; return std::string(isb, end); } return ""; } public: static std::shared_ptr Client; static std::string BucketName; static std::string ImageFilePath; static std::string Process; static std::string ImageInfo; }; std::shared_ptr ObjectProcessTest::Client = nullptr; std::string ObjectProcessTest::BucketName = ""; std::string ObjectProcessTest::ImageFilePath = ""; std::string ObjectProcessTest::Process = ""; std::string ObjectProcessTest::ImageInfo = ""; static bool CompareImageInfo(const std::string &src, const std::string &dst) { if (src == dst) { return true; } //the filesize maybe not equal const char * srcPtr = strstr(src.c_str(), "Format"); const char * dstPtr = strstr(dst.c_str(), "Format"); return strcmp(srcPtr, dstPtr) == 0 ? true : false; } TEST_F(ObjectProcessTest, ImageProcessTest) { std::string key = TestUtils::GetObjectKey("cpp-sdk-objectprocess"); key.append("-noraml.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key, Process); auto gOutcome = Client->GetObject(request); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { std::string key1 = TestUtils::GetObjectKey("cpp-sdk-objectprocess"); key1.append("-precessed.jpg"); auto outcome = Client->PutObject(BucketName, key1, gOutcome.result().Content()); EXPECT_EQ(outcome.isSuccess(), true); std::string imageInfo = GetOssImageObjectInfo(BucketName, key1); //EXPECT_STREQ(imageInfo.c_str(), ImageInfo.c_str()); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); } else { EXPECT_TRUE(false); } } TEST_F(ObjectProcessTest, ImageProcessBysetProcessTest) { std::string key = TestUtils::GetObjectKey("ImageProcessBysetProcessTest"); key.append("-noraml.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); request.setProcess(Process); auto gOutcome = Client->GetObject(request); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { std::string key1 = TestUtils::GetObjectKey("ImageProcessBysetProcessTest"); key1.append("-precessed.jpg"); auto outcome = Client->PutObject(BucketName, key1, gOutcome.result().Content()); EXPECT_EQ(outcome.isSuccess(), true); std::string imageInfo = GetOssImageObjectInfo(BucketName, key1); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); } else { EXPECT_TRUE(false); } } TEST_F(ObjectProcessTest, GenerateUriWithProcessTest) { std::string key = TestUtils::GetObjectKey("cpp-sdk-objectprocess"); key.append("-url-noraml.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setProcess(Process); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { std::string key1 = TestUtils::GetObjectKey("cpp-sdk-objectprocess"); key1.append("-url-precessed.jpg"); auto outcome = Client->PutObject(BucketName, key1, gOutcome.result().Content()); EXPECT_EQ(outcome.isSuccess(), true); std::string imageInfo = GetOssImageObjectInfo(BucketName, key1); //EXPECT_STREQ(imageInfo.c_str(), ImageInfo.c_str()); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); } else { EXPECT_TRUE(false); } } TEST_F(ObjectProcessTest, ProcessObjectRequestTest) { std::string key = TestUtils::GetObjectKey("ImageProcessBysetProcessAndSavetoTest"); std::string key1 = key; std::string key2 = key; key.append("-noraml.jpg"); key1.append("-saveas.jpg"); key2.append("-saveas2.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); std::stringstream ss; ss << Process <<"|sys/saveas" << ",o_" << Base64EncodeUrlSafe(key1) << ",b_" << Base64EncodeUrlSafe(BucketName); ProcessObjectRequest request(BucketName, key, ss.str()); auto gOutcome = Client->ProcessObject(request); EXPECT_EQ(gOutcome.isSuccess(), true); std::istreambuf_iterator isb(*gOutcome.result().Content()), end; std::string json_str = std::string(isb, end); //std::cout << json_str << std::endl; EXPECT_TRUE(json_str.find(key1) != std::string::npos); std::string imageInfo = GetOssImageObjectInfo(BucketName, key1); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); //Use default bucketName ss.str(""); ss << Process << "|sys/saveas" << ",o_" << Base64EncodeUrlSafe(key2); request.setProcess(ss.str()); gOutcome = Client->ProcessObject(request); EXPECT_EQ(gOutcome.isSuccess(), true); std::istreambuf_iterator isb1(*gOutcome.result().Content()), end1; json_str = std::string(isb1, end1); //std::cout << json_str << std::endl; EXPECT_TRUE(json_str.find(key2) != std::string::npos); imageInfo = GetOssImageObjectInfo(BucketName, key2); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); } TEST_F(ObjectProcessTest, ProcessObjectRequestNegativeTest) { std::string key = TestUtils::GetObjectKey("ProcessObjectRequestNegativeTest"); key.append("-noraml.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); ProcessObjectRequest request(BucketName, key); auto gOutcome = Client->ProcessObject(request); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "InvalidRequest"); } } } ================================================ FILE: test/src/Object/ObjectProgressTest .cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include namespace AlibabaCloud { namespace OSS { class ObjectProgressTest : public ::testing::Test { protected: ObjectProgressTest() { } ~ObjectProgressTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectprogress"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectProgressTest::Client = nullptr; std::string ObjectProgressTest::BucketName = ""; static void ProgressCallback(size_t increment, int64_t transfered, int64_t total, void* userData) { std::cout << "ProgressCallback[" << userData << "] => " << increment << " ," << transfered << "," << total << std::endl; } TEST_F(ObjectProgressTest, PutObjectProgressTest) { std::string key = TestUtils::GetObjectKey("PutObjectProgressTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); TransferProgress arg; arg.Handler = ProgressCallback; arg.UserData = this; request.setTransferProgress(arg); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); } TEST_F(ObjectProgressTest, GetObjectProgressTest) { std::string key = TestUtils::GetObjectKey("GetObjectProgressTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); auto pOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest grequest(BucketName, key); TransferProgress arg; arg.Handler = ProgressCallback; arg.UserData = this; grequest.setTransferProgress(arg); auto gOutcome = Client->GetObject(grequest); EXPECT_EQ(gOutcome.isSuccess(), true); } } } ================================================ FILE: test/src/Object/ObjectRequestPaymentTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include namespace AlibabaCloud { namespace OSS { class ObjectRequestPaymentTest : public ::testing::Test { protected: ObjectRequestPaymentTest() { } ~ObjectRequestPaymentTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); PayerClient = std::make_shared(Config::Endpoint, Config::PayerAccessKeyId, Config::PayerAccessKeySecret, ClientConfiguration()); BucketName = TestUtils::GetBucketName("cpp-sdk-objectcopy1"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); SetBucketPolicyRequest request(BucketName); std::string policy = std::string("{\"Version\":\"1\",\"Statement\":[{\"Action\":[\"oss:*\"],\"Effect\": \"Allow\",") .append("\"Principal\":[\"").append(Config::PayerUID).append("\"],") .append("\"Resource\": [\"acs:oss:*:*:").append(BucketName).append("\",\"acs:oss:*:*:").append(BucketName).append("/*\"]}]}"); request.setPolicy(policy); auto policyOutcome1 = Client->SetBucketPolicy(request); EXPECT_EQ(policyOutcome1.isSuccess(), true); SetBucketRequestPaymentRequest setRequest(BucketName); setRequest.setRequestPayer(RequestPayer::Requester); VoidOutcome setOutcome = Client->SetBucketRequestPayment(setRequest); EXPECT_EQ(setOutcome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; PayerClient = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static int CalculatePartCount(int64_t totalSize, int singleSize) { // Calculate the part count auto partCount = (int)(totalSize / singleSize); if (totalSize % singleSize != 0) { partCount++; } return partCount; } static int64_t GetFileLength(const std::string file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } static std::string GetOssImageObjectInfo(const std::string &bucket, const std::string &key) { auto outcome = Client->GetObject(GetObjectRequest(bucket, key, "image/info")); if (outcome.isSuccess()) { std::istreambuf_iterator isb(*outcome.result().Content().get()), end; return std::string(isb, end); } return ""; } public: static std::shared_ptr Client; static std::shared_ptr PayerClient; static std::string BucketName; }; std::shared_ptr ObjectRequestPaymentTest::Client = nullptr; std::shared_ptr ObjectRequestPaymentTest::PayerClient = nullptr; std::string ObjectRequestPaymentTest::BucketName = ""; TEST_F(ObjectRequestPaymentTest, PutObjectTest) { std::string key = TestUtils::GetObjectKey("put-object"); PutObjectRequest putRequest(BucketName, key, std::make_shared("hello world")); auto putOutcome = PayerClient->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "AccessDenied"); putRequest.setRequestPayer(RequestPayer::BucketOwner); putOutcome = PayerClient->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), false); EXPECT_EQ(putOutcome.error().Code(), "AccessDenied"); putRequest.setRequestPayer(RequestPayer::Requester); putOutcome = PayerClient->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, GetObjectTest) { std::string key = TestUtils::GetObjectKey("put-object"); PutObjectRequest putRequest(BucketName, key, std::make_shared("hello world")); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); GetObjectRequest getRequest(BucketName, key); auto getOutcome = PayerClient->GetObject(getRequest); EXPECT_EQ(getOutcome.isSuccess(), false); EXPECT_EQ(getOutcome.error().Code(), "AccessDenied"); getRequest.setRequestPayer(RequestPayer::BucketOwner); getOutcome = PayerClient->GetObject(getRequest); EXPECT_EQ(getOutcome.isSuccess(), false); EXPECT_EQ(getOutcome.error().Code(), "AccessDenied"); getRequest.setRequestPayer(RequestPayer::Requester); getOutcome = PayerClient->GetObject(getRequest); EXPECT_EQ(getOutcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, DeleteObjectTest) { std::string key = TestUtils::GetObjectKey("delete-object"); PutObjectRequest putRequest(BucketName, key, std::make_shared("hello world")); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = PayerClient->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), false); EXPECT_EQ(delOutcome.error().Code(), "AccessDenied"); delRequest.setRequestPayer(RequestPayer::Requester); delOutcome = PayerClient->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, GetObjectMetaTest) { auto meta = ObjectMetaData(); // sets the content type. meta.setContentType("text/plain"); // sets the cache control meta.setCacheControl("max-age=3"); // sets the custom metadata. meta.UserMetaData()["meta"] = "meta-value"; // uploads the file std::shared_ptr content = std::make_shared(); *content << "Thank you for using Aliyun Object Storage Service!"; PutObjectRequest putrequest(BucketName, "GetObjectMeta", content); auto putOutcome = Client->PutObject(putrequest); EXPECT_EQ(putOutcome.isSuccess(), true); GetObjectMetaRequest request(BucketName, "GetObjectMeta"); auto outcome = PayerClient->GetObjectMeta(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->GetObjectMeta(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, HeadObjectTest) { auto meta = ObjectMetaData(); // sets the content type. meta.setContentType("text/plain"); // sets the cache control meta.setCacheControl("max-age=3"); // sets the custom metadata. meta.UserMetaData()["meta"] = "meta-value"; // uploads the file std::shared_ptr content = std::make_shared(); *content << "Thank you for using Aliyun Object Storage Service!"; PutObjectRequest putrequest(BucketName, "HeadObject", content); auto putOutcome = Client->PutObject(putrequest); EXPECT_EQ(putOutcome.isSuccess(), true); HeadObjectRequest request(BucketName, "HeadObject"); auto outcome = PayerClient->HeadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->HeadObject(request); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, SetAndGetObjectAclTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectacl"); PutObjectRequest putRequest(BucketName, objName, std::make_shared("hello world")); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); GetObjectAclRequest getAclrequest(BucketName, objName); auto aclOutcome = PayerClient->GetObjectAcl(getAclrequest); EXPECT_EQ(aclOutcome.isSuccess(), false); EXPECT_EQ(aclOutcome.error().Code(), "AccessDenied"); getAclrequest.setRequestPayer(RequestPayer::Requester); aclOutcome = PayerClient->GetObjectAcl(getAclrequest); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(aclOutcome.result().Acl(), CannedAccessControlList::Default); SetObjectAclRequest setAclRequest(BucketName, objName, CannedAccessControlList::PublicRead); auto setOutCome = PayerClient->SetObjectAcl(setAclRequest); EXPECT_EQ(setOutCome.isSuccess(), false); EXPECT_EQ(setOutCome.error().Code(), "AccessDenied"); setAclRequest.setRequestPayer(RequestPayer::Requester); setOutCome = PayerClient->SetObjectAcl(setAclRequest); EXPECT_EQ(setOutCome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, CopyObjectTest) { std::string objName1 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy1"); PutObjectRequest putRequest(BucketName, objName1, std::make_shared("hello world")); PutObjectOutcome putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy2"); CopyObjectRequest copyRequest(BucketName, objName2); copyRequest.setCopySource(BucketName, objName1); CopyObjectOutcome copyOutCome = PayerClient->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), false); EXPECT_EQ(copyOutCome.error().Code(), "AccessDenied"); copyRequest.setRequestPayer(RequestPayer::Requester); copyOutCome = PayerClient->CopyObject(copyRequest); EXPECT_EQ(copyOutCome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, AppendObjectTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectappend"); // append object std::string text = "helloworld"; AppendObjectRequest appendRequest(BucketName, objName, std::make_shared(text)); auto appendOutcome = PayerClient->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), false); EXPECT_EQ(appendOutcome.error().Code(), "AccessDenied"); appendRequest.setRequestPayer(RequestPayer::Requester); appendOutcome = PayerClient->AppendObject(appendRequest); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()); // append object again AppendObjectRequest requestOther(BucketName, objName, std::make_shared(text)); requestOther.setPosition(text.size()); appendOutcome = PayerClient->AppendObject(requestOther); EXPECT_EQ(appendOutcome.isSuccess(), false); EXPECT_EQ(appendOutcome.error().Code(), "AccessDenied"); requestOther.setRequestPayer(RequestPayer::Requester); appendOutcome = PayerClient->AppendObject(requestOther); EXPECT_EQ(appendOutcome.isSuccess(), true); EXPECT_EQ(appendOutcome.result().Length(), text.size()*2); // read object GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text + text); } TEST_F(ObjectRequestPaymentTest, DeleteObjectsTest) { const size_t TestKeysCnt = 10; auto keyPrefix = TestUtils::GetObjectKey("DeleteObjectsBasicTest"); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; auto content = TestUtils::GetRandomStream(100); key.append(std::to_string(i)).append(".txt"); PutObjectRequest putrequest(BucketName, key, content); auto outcome = Client->PutObject(putrequest); EXPECT_EQ(outcome.isSuccess(), true); } DeleteObjectsRequest delRequest(BucketName); for (size_t i = 0; i < TestKeysCnt; i++) { auto key = keyPrefix; key.append(std::to_string(i)).append(".txt"); delRequest.addKey(key); } auto delOutcome = PayerClient->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), false); EXPECT_EQ(delOutcome.error().Code(), "AccessDenied"); delRequest.setRequestPayer(RequestPayer::Requester); delOutcome = PayerClient->DeleteObjects(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); EXPECT_EQ(delOutcome.result().keyList().size(), TestKeysCnt); EXPECT_EQ(delOutcome.result().Quiet(), false); } TEST_F(ObjectRequestPaymentTest, ListObjectsTest) { ListObjectsRequest request(BucketName); ListObjectOutcome outCome = PayerClient->ListObjects(request); EXPECT_EQ(outCome.isSuccess(), false); EXPECT_EQ(outCome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outCome = PayerClient->ListObjects(request); EXPECT_EQ(outCome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, SetAndGetObjectSymlinkTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectsymlink"); // put object PutObjectRequest putrequest(BucketName, objName, std::make_shared("hello world")); putrequest.setRequestPayer(RequestPayer::Requester); auto putOutcome = Client->PutObject(putrequest); EXPECT_EQ(putOutcome.isSuccess(), true); // create symlink success std::string linkName = objName + "-link"; CreateSymlinkRequest setRequest(BucketName, linkName); setRequest.SetSymlinkTarget(objName); auto linkOutcom = PayerClient->CreateSymlink(setRequest); EXPECT_EQ(linkOutcom.isSuccess(), false); EXPECT_EQ(linkOutcom.error().Code(), "AccessDenied"); setRequest.setRequestPayer(RequestPayer::Requester); linkOutcom = PayerClient->CreateSymlink(setRequest); EXPECT_EQ(linkOutcom.isSuccess(), true); GetSymlinkRequest getRequest(BucketName, linkName); auto getLinkOutcome = PayerClient->GetSymlink(getRequest); EXPECT_EQ(getLinkOutcome.isSuccess(), false); EXPECT_EQ(getLinkOutcome.error().Code(), "AccessDenied"); getRequest.setRequestPayer(RequestPayer::Requester); getLinkOutcome = PayerClient->GetSymlink(getRequest); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), objName); } TEST_F(ObjectRequestPaymentTest, RestoreObjectTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectrestore"); // first: put object ObjectMetaData meta; meta.addHeader("x-oss-storage-class", "Archive"); PutObjectRequest putrequest(BucketName, objName, std::make_shared("hello world"), meta); auto putOutcome = Client->PutObject(putrequest); EXPECT_EQ(putOutcome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); //second:restore object RestoreObjectRequest request(BucketName, objName); auto restoreOutCome = PayerClient->RestoreObject(request); EXPECT_EQ(restoreOutCome.isSuccess(), false); EXPECT_EQ(restoreOutCome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); restoreOutCome = PayerClient->RestoreObject(request); EXPECT_EQ(restoreOutCome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, MultipartUploadTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadWithFullSettingTest"); ObjectMetaData metaData; metaData.setCacheControl("No-Cache"); metaData.setContentType("user/test"); metaData.setContentEncoding("myzip"); metaData.setContentDisposition("test.zip"); metaData.UserMetaData()["test"] = "test"; metaData.UserMetaData()["data"] = "data"; InitiateMultipartUploadRequest request(BucketName, key, metaData); auto initOutcome = PayerClient->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), false); EXPECT_EQ(initOutcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); initOutcome = PayerClient->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); auto content = TestUtils::GetRandomStream(100); UploadPartRequest upRequest(BucketName, key, 1, initOutcome.result().UploadId(), content); auto uploadPartOutcome = PayerClient->UploadPart(upRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), false); EXPECT_EQ(uploadPartOutcome.error().Code(), "AccessDenied"); upRequest.setRequestPayer(RequestPayer::Requester); uploadPartOutcome = PayerClient->UploadPart(upRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); ListPartsRequest listRequest(BucketName, key, initOutcome.result().UploadId()); auto lOutcome = PayerClient->ListParts(listRequest); EXPECT_EQ(lOutcome.isSuccess(), false); EXPECT_EQ(lOutcome.error().Code(), "AccessDenied"); listRequest.setRequestPayer(RequestPayer::Requester); lOutcome = PayerClient->ListParts(listRequest); EXPECT_EQ(lOutcome.isSuccess(), true); CompleteMultipartUploadRequest cRequest(BucketName, key, lOutcome.result().PartList(), initOutcome.result().UploadId()); auto outcome = PayerClient->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); cRequest.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), true); HeadObjectRequest headRequest(BucketName, key); auto hOutcome = Client->HeadObject(headRequest); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().ContentLength(), 100); EXPECT_EQ(hOutcome.result().CacheControl(), "No-Cache"); EXPECT_EQ(hOutcome.result().ContentType(), "user/test"); EXPECT_EQ(hOutcome.result().ContentDisposition(), "test.zip"); EXPECT_EQ(hOutcome.result().ContentEncoding(), "myzip"); EXPECT_EQ(hOutcome.result().UserMetaData().at("test"), "test"); EXPECT_EQ(hOutcome.result().UserMetaData().at("data"), "data"); } TEST_F(ObjectRequestPaymentTest, MultipartUploadPartCopyTest) { auto sourceFile = TestUtils::GetTargetFileName("cpp-sdk-multipartupload"); TestUtils::WriteRandomDatatoFile(sourceFile, 500 * 1024); auto testKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest-TestKey"); std::shared_ptr content = std::make_shared(sourceFile, std::ios::in | std::ios::binary); PutObjectRequest putrequest(BucketName, testKey, content); auto putoutcome = Client->PutObject(putrequest); //get target object name auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest"); InitiateMultipartUploadRequest request(BucketName, targetObjectKey); request.setRequestPayer(RequestPayer::Requester); auto initOutcome = PayerClient->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); // Set the part size const int partSize = 200*1024; const int64_t fileLength = GetFileLength(sourceFile); auto partCount = CalculatePartCount(fileLength, partSize); for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // calculate the part size auto size = partSize < (fileLength - skipBytes) ? partSize : fileLength - skipBytes; UploadPartCopyRequest copyRequest(BucketName, targetObjectKey, BucketName, testKey); copyRequest.setPartNumber(i + 1); copyRequest.setUploadId(initOutcome.result().UploadId()); copyRequest.setCopySourceRange(position, position + size - 1); auto uploadPartOutcome = PayerClient->UploadPartCopy(copyRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), false); EXPECT_EQ(uploadPartOutcome.error().Code(), "AccessDenied"); copyRequest.setRequestPayer(RequestPayer::Requester); uploadPartOutcome = PayerClient->UploadPartCopy(copyRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); } ListMultipartUploadsRequest listRequest1(BucketName); auto lmuOutcome = PayerClient->ListMultipartUploads(ListMultipartUploadsRequest(listRequest1)); EXPECT_EQ(lmuOutcome.isSuccess(), false); EXPECT_EQ(lmuOutcome.error().Code(), "AccessDenied"); listRequest1.setRequestPayer(RequestPayer::Requester); lmuOutcome = PayerClient->ListMultipartUploads(ListMultipartUploadsRequest(listRequest1)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const& upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); ListPartsRequest listRequest(BucketName, targetObjectKey); listRequest.setUploadId(uploadId); auto listOutcome = PayerClient->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "AccessDenied"); listRequest.setRequestPayer(RequestPayer::Requester); listOutcome = PayerClient->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, listOutcome.result().PartList()); completeRequest.setUploadId(uploadId); completeRequest.setUploadId(uploadId); completeRequest.setRequestPayer(RequestPayer::Requester); auto cOutcome = PayerClient->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); GetObjectRequest getRequest(BucketName, targetObjectKey); auto gOutcome = Client->GetObject(getRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().Metadata().ContentLength(), fileLength); RemoveFile(sourceFile); } TEST_F(ObjectRequestPaymentTest, MultipartUploadAbortTest) { auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadAbortInMiddleTest"); InitiateMultipartUploadRequest request(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); AbortMultipartUploadRequest abortRequest(BucketName, targetObjectKey, initOutcome.result().UploadId()); auto abortOutcome = PayerClient->AbortMultipartUpload(abortRequest); EXPECT_EQ(abortOutcome.isSuccess(), false); EXPECT_EQ(abortOutcome.error().Code(), "AccessDenied"); abortRequest.setRequestPayer(RequestPayer::Requester); abortOutcome = PayerClient->AbortMultipartUpload(abortRequest); EXPECT_EQ(abortOutcome.isSuccess(), true); } TEST_F(ObjectRequestPaymentTest, SelectObjectTest) { std::string sqlMessage = std::string("name,school,company,age\r\n") .append("Lora Francis,School A,Staples Inc,27\r\n") .append("Eleanor Little,School B,\"Conectiv, Inc\",43\r\n") .append("Rosie Hughes,School C,Western Gas Resources Inc,44\r\n") .append("Lawrence Ross,School D,MetLife Inc.,24"); std::string key = TestUtils::GetObjectKey("SqlObjectWithCsvData"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; // put object PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat csvInputFormat; csvInputFormat.setHeaderInfo(CSVHeader::Use); csvInputFormat.setRecordDelimiter("\r\n"); csvInputFormat.setFieldDelimiter(","); csvInputFormat.setQuoteChar("\""); csvInputFormat.setCommentChar("#"); selectRequest.setInputFormat(csvInputFormat); CSVOutputFormat csvOutputFormat; selectRequest.setOutputFormat(csvOutputFormat); auto outcome = PayerClient->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); selectRequest.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); EXPECT_EQ(outcome.error().Message(), "Select API does not support requester pay now."); // createSelectObjectMeta CreateSelectObjectMetaRequest metaRequest(BucketName, key); metaRequest.setInputFormat(csvInputFormat); auto metaOutcome = PayerClient->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), false); EXPECT_EQ(metaOutcome.error().Code(), "AccessDenied"); metaRequest.setRequestPayer(RequestPayer::Requester); metaOutcome = PayerClient->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), false); EXPECT_EQ(metaOutcome.error().Code(), "AccessDenied"); EXPECT_EQ(metaOutcome.error().Message(), "Select API does not support requester pay now."); } class ListObjectsAsyncContext : public AsyncCallerContext { public: ListObjectsAsyncContext() :ready(false) {} virtual ~ListObjectsAsyncContext() { } const ObjectSummaryList& ObjectSummarys() const { return objectSummarys_; } void setObjectSummaryList(const AlibabaCloud::OSS::ObjectSummaryList& objectSummarys) const { objectSummarys_ = objectSummarys; } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; mutable AlibabaCloud::OSS::ObjectSummaryList objectSummarys_; }; static void ListObjectsHandler(const AlibabaCloud::OSS::OssClient* client, const ListObjectsRequest& request, const ListObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "PayerClient[" << client << "]" << "ListObjectsHandler" << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ObjectSummarys().size(), 20U); EXPECT_EQ(outcome.result().IsTruncated(), false); ctx->setObjectSummaryList(outcome.result().ObjectSummarys()); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectRequestPaymentTest, ListObjectsAsyncTest) { // create test file for (int i = 0; i < 20; i++) { std::string key = TestUtils::GetObjectKey("ListAllObjectsAsync"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } // list objects async ListObjectsRequest request(BucketName); request.setPrefix("ListAllObjectsAsync"); request.setRequestPayer(RequestPayer::Requester); ListObjectAsyncHandler handler = ListObjectsHandler; std::shared_ptr content = std::make_shared(); PayerClient->ListObjectsAsync(request, handler, content); std::cout << "PayerClient[" << PayerClient << "]" << "Issue ListObjectsAsync done." << std::endl; { std::unique_lock lck(content->mtx); if (!content->ready) content->cv.wait(lck); } int i = 0; for (auto const& obj : content->ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); i++; } EXPECT_EQ(i, 20); } class GetObjectAsyncContex : public AsyncCallerContext { public: GetObjectAsyncContex() :ready(false) {} ~GetObjectAsyncContex() {} mutable std::mutex mtx; mutable std::condition_variable cv; mutable std::string md5; mutable bool ready; }; static void GetObjectHandler(const AlibabaCloud::OSS::OssClient* client, const GetObjectRequest& request, const GetObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "PayerClient[" << client << "]" << "GetObjectHandler" << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::string memMd5 = ComputeContentMD5(*outcome.result().Content().get()); ctx->md5 = memMd5; std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectRequestPaymentTest, GetObjectAsyncTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectAsyncBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectAsyncHandler handler = GetObjectHandler; GetObjectRequest request(BucketName, key); request.setRequestPayer(RequestPayer::Requester); std::shared_ptr memContext = std::make_shared(); GetObjectRequest fileRequest(BucketName, key); fileRequest.setRequestPayer(RequestPayer::Requester); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); std::shared_ptr fileContext = std::make_shared(); PayerClient->GetObjectAsync(request, handler, memContext); PayerClient->GetObjectAsync(fileRequest, handler, fileContext); std::cout << "PayerClient[" << PayerClient << "]" << "Issue GetObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } std::string oriMd5 = ComputeContentMD5(*content.get()); EXPECT_EQ(oriMd5, memContext->md5); EXPECT_EQ(oriMd5, fileContext->md5); memContext = nullptr; fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } class PutObjectAsyncContex : public AsyncCallerContext { public: PutObjectAsyncContex() :ready(false) {} virtual ~PutObjectAsyncContex() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; static void PutObjectHandler(const AlibabaCloud::OSS::OssClient* client, const PutObjectRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { std::cout << "PayerClient[" << client << "]" << "PutObjectHandler, tag:" << context->Uuid() << ", key:" << request.Key() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectRequestPaymentTest, PutObjectAsyncTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); PutObjectAsyncHandler handler = PutObjectHandler; PutObjectRequest memRequest(BucketName, memKey, memContent); memRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("PutobjectasyncFromMem"); PutObjectRequest fileRequest(BucketName, fileKey, fileContent); fileRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("PutobjectasyncFromFile"); PayerClient->PutObjectAsync(memRequest, handler, memContext); PayerClient->PutObjectAsync(fileRequest, handler, fileContext); std::cout << "PayerClient[" << PayerClient << "]" << "Issue PutObjectAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } class UploadPartAsyncContext : public AsyncCallerContext { public: UploadPartAsyncContext() :ready(false) {} virtual ~UploadPartAsyncContext() { } mutable std::mutex mtx; mutable std::condition_variable cv; mutable bool ready; }; static void UploadPartHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartRequest& request, const PutObjectOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "PayerClient[" << client << "]" << "UploadPartHandler,tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectRequestPaymentTest, UploadPartAsyncTest) { std::string memKey = TestUtils::GetObjectKey("UploadPartMemObjectAsyncBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); InitiateMultipartUploadRequest memInitRequest(BucketName, memKey); auto memInitOutcome = Client->InitiateMultipartUpload(memInitRequest); EXPECT_EQ(memInitOutcome.isSuccess(), true); EXPECT_EQ(memInitOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartFileObjectAsyncBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("UploadPartFileObjectAsyncBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); InitiateMultipartUploadRequest fileInitRequest(BucketName, fileKey); auto fileInitOutcome = Client->InitiateMultipartUpload(fileInitRequest); EXPECT_EQ(fileInitOutcome.isSuccess(), true); EXPECT_EQ(fileInitOutcome.result().Key(), fileKey); UploadPartAsyncHandler handler = UploadPartHandler; UploadPartRequest memRequest(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent); memRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("UploadPartAsyncFromMem"); UploadPartRequest fileRequest(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent); fileRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("UploadPartAsyncFromFile"); PayerClient->UploadPartAsync(memRequest, handler, memContext); PayerClient->UploadPartAsync(fileRequest, handler, fileContext); std::cout << "Client[" << Client << "]" << "Issue UploadPartAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } fileContent->close(); auto memListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); EXPECT_EQ(memListPartsOutcome.isSuccess(), true); auto fileListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(fileListPartsOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartsOutcome.result().PartList(), memInitOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartsOutcome.result().PartList(), fileInitOutcome.result().UploadId())); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); fileContext = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } static void UploadPartCopyHandler(const AlibabaCloud::OSS::OssClient* client, const UploadPartCopyRequest& request, const UploadPartCopyOutcome& outcome, const std::shared_ptr& context) { UNUSED_PARAM(request); std::cout << "PayerClient[" << client << "]" << "UploadPartCopyHandler, tag:" << context->Uuid() << std::endl; if (context != nullptr) { auto ctx = static_cast(context.get()); if (!outcome.isSuccess()) { std::cout << __FUNCTION__ << " failed, Code:" << outcome.error().Code() << ", message:" << outcome.error().Message() << std::endl; } EXPECT_EQ(outcome.isSuccess(), true); std::unique_lock lck(ctx->mtx); ctx->ready = true; ctx->cv.notify_all(); } } TEST_F(ObjectRequestPaymentTest, UploadPartCopyAsyncTest) { // put object from buffer std::string memObjKey = TestUtils::GetObjectKey("PutObjectFromBuffer"); auto memObjContent = TestUtils::GetRandomStream(102400); auto putMemObjOutcome = Client->PutObject(PutObjectRequest(BucketName, memObjKey, memObjContent)); EXPECT_EQ(putMemObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memObjKey), true); // put object from local file std::string fileObjKey = TestUtils::GetObjectKey("PutObjectFromFile"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFile").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileObjContent = std::make_shared(tmpFile, std::ios_base::out | std::ios::binary); auto putFileObjOutcome = Client->PutObject(PutObjectRequest(BucketName, fileObjKey, fileObjContent)); EXPECT_EQ(putFileObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileObjKey), true); // close the file fileObjContent->close(); // apply the upload id std::string memKey = TestUtils::GetObjectKey("UploadPartCopyMemObjectAsyncBasicTest"); auto memInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitObjOutcome.isSuccess(), true); EXPECT_EQ(memInitObjOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartCopyFileObjectAsyncBasicTest"); auto fileInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitObjOutcome.isSuccess(), true); EXPECT_EQ(fileInitObjOutcome.result().Key(), fileKey); // construct parameter UploadPartCopyAsyncHandler handler = UploadPartCopyHandler; UploadPartCopyRequest memRequest(BucketName, memKey, BucketName, memObjKey, memInitObjOutcome.result().UploadId(), 1); memRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr memContext = std::make_shared(); memContext->setUuid("UploadPartCopyAsyncFromMem"); UploadPartCopyRequest fileRequest(BucketName, fileKey, BucketName, fileObjKey, fileInitObjOutcome.result().UploadId(), 1); fileRequest.setRequestPayer(RequestPayer::Requester); std::shared_ptr fileContext = std::make_shared(); fileContext->setUuid("UploadPartCopyAsyncFromFile"); PayerClient->UploadPartCopyAsync(memRequest, handler, memContext); PayerClient->UploadPartCopyAsync(fileRequest, handler, fileContext); std::cout << "PayerClient[" << Client << "]" << "Issue UploadPartCopyAsync done." << std::endl; { std::unique_lock lck(fileContext->mtx); if (!fileContext->ready) fileContext->cv.wait(lck); } { std::unique_lock lck(memContext->mtx); if (!memContext->ready) memContext->cv.wait(lck); } // list parts auto memListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitObjOutcome.result().UploadId())); EXPECT_EQ(memListPartsOutcome.isSuccess(), true); auto fileListPartsOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitObjOutcome.result().UploadId())); EXPECT_EQ(fileListPartsOutcome.isSuccess(), true); // complete CompleteMultipartUploadRequest memCompleteRequest(BucketName, memKey, memListPartsOutcome.result().PartList()); memCompleteRequest.setUploadId(memInitObjOutcome.result().UploadId()); auto memCompleteOutcome = Client->CompleteMultipartUpload(memCompleteRequest); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); CompleteMultipartUploadRequest fileCompleteRequest(BucketName, fileKey, fileListPartsOutcome.result().PartList()); fileCompleteRequest.setUploadId(fileInitObjOutcome.result().UploadId()); auto fileCompleteOutcome = Client->CompleteMultipartUpload(fileCompleteRequest); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); fileObjContent = nullptr; TestUtils::WaitForCacheExpire(1); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, ListObjectsCallableTest) { for (int i = 0; i < 20; i++) { std::string key = TestUtils::GetObjectKey("ListAllObjectsCallableTest"); auto content = TestUtils::GetRandomStream(100); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); } //list object use default ListObjectsRequest request(BucketName); request.setPrefix("ListAllObjectsCallableTest"); request.setRequestPayer(RequestPayer::Requester); auto listOutcomeCallable = PayerClient->ListObjectsCallable(request); auto listOutcome = listOutcomeCallable.get(); EXPECT_EQ(listOutcome.isSuccess(), true); EXPECT_EQ(listOutcome.result().ObjectSummarys().size(), 20UL); EXPECT_EQ(listOutcome.result().IsTruncated(), false); int i = 0; for (auto const& obj : listOutcome.result().ObjectSummarys()) { EXPECT_EQ(obj.Size(), 100LL); i++; } EXPECT_EQ(i, 20); } TEST_F(ObjectRequestPaymentTest, GetObjectCallableTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectCallableBasicTest").append(".tmp"); auto content = TestUtils::GetRandomStream(102400); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GetObjectRequest request(BucketName, key); request.setRequestPayer(RequestPayer::Requester); std::shared_ptr memContext = std::make_shared(); GetObjectRequest fileRequest(BucketName, key); fileRequest.setRequestPayer(RequestPayer::Requester); fileRequest.setResponseStreamFactory([=]() {return std::make_shared(tmpFile, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios::binary); }); auto memOutcomeCallable = PayerClient->GetObjectCallable(request); auto fileOutcomeCallable = PayerClient->GetObjectCallable(fileRequest); std::cout << "PayerClient[" << PayerClient << "]" << "Issue GetObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*memOutcome.result().Content()); std::string fileMd5 = ComputeContentMD5(*fileOutcome.result().Content()); EXPECT_EQ(oriMd5, fileMd5); EXPECT_EQ(oriMd5, fileMd5); memOutcome = dummy; fileOutcome = dummy; //EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(tmpFile); } TEST_F(ObjectRequestPaymentTest, PutObjectCallableTest) { std::string memKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); auto memContent = TestUtils::GetRandomStream(102400); std::string fileKey = TestUtils::GetObjectKey("PutObjectCallableBasicTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectCallableBasicTest").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); PutObjectRequest putrequest1(BucketName, memKey, memContent); putrequest1.setRequestPayer(RequestPayer::Requester); PutObjectRequest putrequest2(BucketName, fileKey, fileContent); putrequest2.setRequestPayer(RequestPayer::Requester); auto memOutcomeCallable = PayerClient->PutObjectCallable(putrequest1); auto fileOutcomeCallable = PayerClient->PutObjectCallable(putrequest2); std::cout << "PayerClient[" << PayerClient << "]" << "Issue PutObjectCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; //EXPECT_EQ(RemoveFile(tmpFile), true); RemoveFile(tmpFile); } TEST_F(ObjectRequestPaymentTest, UploadPartCallableTest) { auto memKey = TestUtils::GetObjectKey("MultipartUploadCallable-MemObject"); auto memContent = TestUtils::GetRandomStream(102400); auto memInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitOutcome.isSuccess(), true); auto fileKey = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject"); auto tmpFile = TestUtils::GetObjectKey("MultipartUploadCallable-FileObject").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); { auto fileContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto fileInitOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitOutcome.isSuccess(), true); UploadPartRequest uprequest1(BucketName, memKey, 1, memInitOutcome.result().UploadId(), memContent); UploadPartRequest uprequest2(BucketName, fileKey, 1, fileInitOutcome.result().UploadId(), fileContent); uprequest1.setRequestPayer(RequestPayer::Requester); uprequest2.setRequestPayer(RequestPayer::Requester); auto memOutcomeCallable = PayerClient->UploadPartCallable(uprequest1); auto fileOutcomeCallable = PayerClient->UploadPartCallable(uprequest2); std::cout << "PayerClient[" << PayerClient << "]" << "Issue MultipartUploadCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto menOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(menOutcome.isSuccess(), true); // list part auto memListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitOutcome.result().UploadId())); auto fileListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitOutcome.result().UploadId())); EXPECT_EQ(memListPartOutcome.isSuccess(), true); EXPECT_EQ(fileListPartOutcome.isSuccess(), true); auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartOutcome.result().PartList(), memInitOutcome.result().UploadId())); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartOutcome.result().PartList(), fileInitOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memContent = nullptr; fileContent = nullptr; } EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, UploadPartCopyCallableTest) { // put object from buffer std::string memObjKey = TestUtils::GetObjectKey("PutObjectFromBuffer"); auto memObjContent = TestUtils::GetRandomStream(102400); auto putMemObjOutcome = Client->PutObject(PutObjectRequest(BucketName, memObjKey, memObjContent)); EXPECT_EQ(putMemObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memObjKey), true); // put object from local file std::string fileObjKey = TestUtils::GetObjectKey("PutObjectFromFile"); std::string tmpFile = TestUtils::GetTargetFileName("PutObjectFromFile").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); auto fileObjContent = std::make_shared(tmpFile, std::ios_base::in | std::ios::binary); auto putFileObjOutcome = Client->PutObject(PutObjectRequest(BucketName, fileObjKey, fileObjContent)); EXPECT_EQ(putFileObjOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileObjKey), true); // close file fileObjContent->close(); // apply upload id std::string memKey = TestUtils::GetObjectKey("UploadPartCopyCallableMemObjectBasicTest"); auto memInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, memKey)); EXPECT_EQ(memInitObjOutcome.isSuccess(), true); EXPECT_EQ(memInitObjOutcome.result().Key(), memKey); std::string fileKey = TestUtils::GetObjectKey("UploadPartCopyCallableFileObjectBasicTest"); auto fileInitObjOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, fileKey)); EXPECT_EQ(fileInitObjOutcome.isSuccess(), true); EXPECT_EQ(fileInitObjOutcome.result().Key(), fileKey); // upload part copy UploadPartCopyRequest request1(BucketName, memKey, BucketName, memObjKey, memInitObjOutcome.result().UploadId(), 1); UploadPartCopyRequest request2(BucketName, fileKey, BucketName, fileObjKey, fileInitObjOutcome.result().UploadId(), 1); request1.setRequestPayer(RequestPayer::Requester); request2.setRequestPayer(RequestPayer::Requester); auto memOutcomeCallable = PayerClient->UploadPartCopyCallable(request1); auto fileOutcomeCallable = PayerClient->UploadPartCopyCallable(request2); std::cout << "PayerClient[" << PayerClient << "]" << "Issue UploadPartCopyCallable done." << std::endl; auto fileOutcome = fileOutcomeCallable.get(); auto memOutcome = memOutcomeCallable.get(); EXPECT_EQ(fileOutcome.isSuccess(), true); EXPECT_EQ(memOutcome.isSuccess(), true); // list part auto memListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, memKey, memInitObjOutcome.result().UploadId())); auto fileListPartOutcome = Client->ListParts(ListPartsRequest(BucketName, fileKey, fileInitObjOutcome.result().UploadId())); EXPECT_EQ(memListPartOutcome.isSuccess(), true); EXPECT_EQ(fileListPartOutcome.isSuccess(), true); // complete the part auto memCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, memKey, memListPartOutcome.result().PartList(), memInitObjOutcome.result().UploadId())); auto fileCompleteOutcome = Client->CompleteMultipartUpload(CompleteMultipartUploadRequest(BucketName, fileKey, fileListPartOutcome.result().PartList(), fileInitObjOutcome.result().UploadId())); EXPECT_EQ(memCompleteOutcome.isSuccess(), true); EXPECT_EQ(fileCompleteOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, memKey), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, fileKey), true); memObjContent = nullptr; fileObjContent = nullptr; EXPECT_EQ(RemoveFile(tmpFile), true); } static bool CompareImageInfo(const std::string &src, const std::string &dst) { if (src == dst) { return true; } //the filesize maybe not equal const char * srcPtr = strstr(src.c_str(), "Format"); const char * dstPtr = strstr(dst.c_str(), "Format"); return strcmp(srcPtr, dstPtr) == 0 ? true : false; } TEST_F(ObjectRequestPaymentTest, ProcessObjectRequestTest) { std::string ImageFilePath = Config::GetDataPath(); ImageFilePath.append("example.jpg"); std::string Process = "image/resize,m_fixed,w_100,h_100"; std::string ImageInfo = "{\n \"FileSize\": {\"value\": \"3267\"},\n \"Format\": {\"value\": \"jpg\"},\n \"FrameCount\": {\"value\": \"1\"},\n \"ImageHeight\": {\"value\": \"100\"},\n \"ImageWidth\": {\"value\": \"100\"},\n \"ResolutionUnit\": {\"value\": \"1\"},\n \"XResolution\": {\"value\": \"1/1\"},\n \"YResolution\": {\"value\": \"1/1\"}}"; std::string key = TestUtils::GetObjectKey("ImageProcessBysetProcessAndSavetoTest"); std::string key1 = key; std::string key2 = key; key.append("-noraml.jpg"); key1.append("-saveas.jpg"); key2.append("-saveas2.jpg"); auto pOutcome = Client->PutObject(BucketName, key, ImageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); std::stringstream ss; ss << Process << "|sys/saveas" << ",o_" << Base64EncodeUrlSafe(key1) << ",b_" << Base64EncodeUrlSafe(BucketName); ProcessObjectRequest request(BucketName, key, ss.str()); auto gOutcome = PayerClient->ProcessObject(request); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); gOutcome = PayerClient->ProcessObject(request); EXPECT_EQ(gOutcome.isSuccess(), true); std::istreambuf_iterator isb(*gOutcome.result().Content()), end; std::string json_str = std::string(isb, end); //std::cout << json_str << std::endl; EXPECT_TRUE(json_str.find(key1) != std::string::npos); std::string imageInfo = GetOssImageObjectInfo(BucketName, key1); EXPECT_TRUE(CompareImageInfo(imageInfo, ImageInfo)); } TEST_F(ObjectRequestPaymentTest, ObjectTaggingBasicTest) { auto key = TestUtils::GetObjectKey("ObjectTaggingBasicTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); SetObjectTaggingRequest request(BucketName, key, tagging); auto putTaggingOutcome = PayerClient->SetObjectTagging(request); EXPECT_EQ(putTaggingOutcome.isSuccess(), false); EXPECT_EQ(putTaggingOutcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); putTaggingOutcome = PayerClient->SetObjectTagging(request); EXPECT_EQ(putTaggingOutcome.isSuccess(), true); EXPECT_TRUE(putTaggingOutcome.result().RequestId().size() > 0U); GetObjectTaggingRequest gRequest(BucketName, key); auto getTaggingOutcome = PayerClient->GetObjectTagging(gRequest); EXPECT_EQ(getTaggingOutcome.isSuccess(), false); EXPECT_EQ(getTaggingOutcome.error().Code(), "AccessDenied"); gRequest.setRequestPayer(RequestPayer::Requester); getTaggingOutcome = PayerClient->GetObjectTagging(gRequest); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); EXPECT_TRUE(getTaggingOutcome.result().RequestId().size() > 0U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } DeleteObjectTaggingRequest dRequest(BucketName, key); auto delTaggingOutcome = PayerClient->DeleteObjectTagging(dRequest); EXPECT_EQ(delTaggingOutcome.isSuccess(), false); EXPECT_EQ(delTaggingOutcome.error().Code(), "AccessDenied"); dRequest.setRequestPayer(RequestPayer::Requester); delTaggingOutcome = PayerClient->DeleteObjectTagging(dRequest); EXPECT_EQ(delTaggingOutcome.isSuccess(), true); EXPECT_TRUE(delTaggingOutcome.result().RequestId().size() > 0U); getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 0U); } TEST_F(ObjectRequestPaymentTest, NormalResumableUploadWithSizeOverPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectOverPartSize").append(".tmp"); int num = 4; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = PayerClient->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); std::fstream file(tmpFile, std::ios::in | std::ios::binary); std::string oriMd5 = ComputeContentMD5(file); std::string memMd5 = ComputeContentMD5(*getObjectOutcome.result().Content()); EXPECT_EQ(oriMd5, memMd5); file.close(); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, NormalResumableUploadWithSizeUnderPartSizeTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSize").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 10240); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = PayerClient->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, NormalResumableDownloadWithSizeOverPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectOverPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 4; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = PayerClient->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, NormalResumableDownloadWithSizeUnderPartSizeTest) { // upload object std::string key = TestUtils::GetObjectKey("ResumableDownloadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadObjectUnderPartSize").append(".tmp"); std::string targetFile = TestUtils::GetTargetFileName("ResumableDownloadTargetObject"); int num = 4; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num); auto uploadOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(uploadOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object DownloadObjectRequest request(BucketName, key, targetFile); request.setThreadNum(1); auto outcome = PayerClient->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableDownloadObject(request); EXPECT_EQ(outcome.isSuccess(), true); std::string uploadMd5 = TestUtils::GetFileMd5(tmpFile); std::string downloadMd5 = TestUtils::GetFileMd5(targetFile); EXPECT_EQ(uploadMd5, downloadMd5); EXPECT_EQ(RemoveFile(targetFile), true); EXPECT_EQ(RemoveFile(tmpFile), true); } TEST_F(ObjectRequestPaymentTest, NormalResumableCopyWithSizeOverPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectOverPartSize"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectOverPartSize"); // put object into bucket int num = 1 + rand() % 10; auto putObjectContent = TestUtils::GetRandomStream(102400 * num); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // Copy Object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(100 * 1024); request.setThreadNum(1); auto outcome = PayerClient->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ObjectRequestPaymentTest, NormalResumableCopyWithSizeUnderPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectUnderPartSize"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectUnderPartSize"); // put Object into bucket auto putObjectContent = TestUtils::GetRandomStream(1024 * (rand() % 100)); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // copy object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(100 * 1024 + 1); auto outcome = PayerClient->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "AccessDenied"); request.setRequestPayer(RequestPayer::Requester); outcome = PayerClient->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } TEST_F(ObjectRequestPaymentTest, SignUrlTest) { std::string key = TestUtils::GetObjectKey("SignUrlTest"); PutObjectRequest putRequest(BucketName, key, std::make_shared("hello world")); putRequest.setRequestPayer(RequestPayer::Requester); auto putOutcome = PayerClient->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); GeneratePresignedUrlRequest gRequest(BucketName, key, Http::Method::Get); auto gOutcome = PayerClient->GeneratePresignedUrl(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); auto gurlOutcome = PayerClient->GetObjectByUrl(gOutcome.result()); EXPECT_EQ(gurlOutcome.isSuccess(), false); EXPECT_EQ(gurlOutcome.error().Code(), "AccessDenied"); gRequest.setRequestPayer(RequestPayer::Requester); gOutcome = PayerClient->GeneratePresignedUrl(gRequest); gurlOutcome = PayerClient->GetObjectByUrl(gOutcome.result()); EXPECT_EQ(gurlOutcome.isSuccess(), true); std::istreambuf_iterator isb(*gurlOutcome.result().Content().get()), end; std::string str(isb, end); EXPECT_EQ(str, "hello world"); } } } ================================================ FILE: test/src/Object/ObjectRestoreTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud{ namespace OSS{ class ObjectRestoreTest : public ::testing::Test { protected: ObjectRestoreTest() { } ~ObjectRestoreTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectrestore-standard"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); BucketNameRestore = TestUtils::GetBucketName("cpp-sdk-objectrestore-archive"); outCome = Client->CreateBucket(CreateBucketRequest(BucketNameRestore, Archive)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); TestUtils::CleanBucket(*Client, BucketNameRestore); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string BucketNameRestore; }; std::shared_ptr ObjectRestoreTest::Client = nullptr; std::string ObjectRestoreTest::BucketName = ""; std::string ObjectRestoreTest::BucketNameRestore = ""; TEST_F(ObjectRestoreTest, SetAndGetObjectRestoreSuccessTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectrestore"); // first: put object std::string text = "hellowworld"; auto putOutcome = Client->PutObject(PutObjectRequest(BucketNameRestore, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); //second:restore object auto restoreOutCome = Client->RestoreObject(BucketNameRestore, objName); EXPECT_EQ(restoreOutCome.isSuccess(), true); // third:wait restore success bool result = false; do { TestUtils::WaitForCacheExpire(5); restoreOutCome = Client->RestoreObject(RestoreObjectRequest(BucketNameRestore, objName)); if(restoreOutCome.isSuccess()) { result = true; } else { std::string errorCode = restoreOutCome.error().Code(); printf("errorcode:%s.\n",errorCode.c_str()); EXPECT_EQ((errorCode == "RestoreAlreadyInProgress") || (errorCode == "ValidateError"), true); } } while (!result); //repeated success restoreOutCome = Client->RestoreObject(RestoreObjectRequest(BucketNameRestore, objName)); EXPECT_EQ(restoreOutCome.isSuccess(), true); TestUtils::WaitForCacheExpire(2); // read data GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketNameRestore, objName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData ; (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, text); // restore not exist object restoreOutCome = Client->RestoreObject(RestoreObjectRequest(BucketNameRestore, "aaa")); EXPECT_EQ(restoreOutCome.isSuccess(), false); //restore standard object std::string objStandard = TestUtils::GetObjectKey("test-cpp-sdk-objectrestore"); putOutcome = Client->PutObject(PutObjectRequest(BucketName, objStandard, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); restoreOutCome = Client->RestoreObject(RestoreObjectRequest(BucketName, objStandard)); EXPECT_EQ(restoreOutCome.isSuccess(), false); EXPECT_EQ(restoreOutCome.error().Code(), "OperationNotSupported"); } TEST_F(ObjectRestoreTest, RestoreWithColdArchiveTest) { std::string objName = TestUtils::GetObjectKey("RestoreWithTierTypeTest"); std::string bucket = TestUtils::GetBucketName("cpp-sdk-objectrestore-ltarchive"); auto outcome = Client->CreateBucket(CreateBucketRequest(bucket, StorageClass::ColdArchive)); EXPECT_EQ(outcome.isSuccess(), true); // first: put object std::string text = "hellowworld"; auto putOutcome = Client->PutObject(PutObjectRequest(bucket, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); //second:restore object RestoreObjectRequest roRequest(bucket, objName); roRequest.setDays(2); roRequest.setTierType(TierType::Expedited); auto restoreOutCome = Client->RestoreObject(roRequest); EXPECT_EQ(restoreOutCome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); restoreOutCome = Client->RestoreObject(roRequest); EXPECT_EQ(restoreOutCome.isSuccess(), false); EXPECT_EQ(restoreOutCome.error().Code(), "RestoreAlreadyInProgress"); TestUtils::CleanBucket(*Client, bucket); } }} ================================================ FILE: test/src/Object/ObjectSignedUrlTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include "src/utils/Utils.h" #include "src/utils/FileSystemUtils.h" namespace AlibabaCloud { namespace OSS { class ObjectSignedUrlTest : public ::testing::Test { protected: ObjectSignedUrlTest() { } ~ObjectSignedUrlTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectsignedurl"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static int64_t GetExpiresDelayS(int64_t value) { auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); return tp.time_since_epoch().count() + value; } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectSignedUrlTest::Client = nullptr; std::string ObjectSignedUrlTest::BucketName = ""; TEST_F(ObjectSignedUrlTest, GetObjectWithPreSignedAndAclParameter) { std::string key = TestUtils::GetObjectKey("GetObjectWithPreSignedAndAclParameter"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setExpires(GetExpiresDelayS(120)); request.addParameter("acl", ""); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { std::istreambuf_iterator isb(*gOutcome.result().Content().get()), end; std::string data(isb, end); EXPECT_TRUE(strstr(data.c_str(), "default") != nullptr); } else { EXPECT_TRUE(false); } } TEST_F(ObjectSignedUrlTest, GetPreSignedUriDefaultExpireDatePositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriDefaultExpireDatePositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::string actualETag = pOutcome.result().ETag(); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { EXPECT_STREQ(actualETag.c_str(), gOutcome.result().Metadata().ETag().c_str()); } else { EXPECT_TRUE(false); } } TEST_F(ObjectSignedUrlTest, GetPreSignedUriDefaultNegativeTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriDefaultNegativeTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setExpires(GetExpiresDelayS(-10)); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), false); // v1 auto url = urlOutcome.result(); if (url.find("x-oss-date=") == url.npos) { EXPECT_STREQ(gOutcome.error().Code().c_str(), "AccessDenied"); } else { EXPECT_STREQ(gOutcome.error().Code().c_str(), "AuthorizationArgumentError"); } } TEST_F(ObjectSignedUrlTest, GetPreSignedUriDefaultPositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriDefaultPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriWithExpiresTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriWithExpiresTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::time_t t = std::time(nullptr) + 60; auto urlOutcome = Client->GeneratePresignedUrl(BucketName, key, t); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriFullSettingsPositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriFullSettingsPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setContentMd5(md5); request.setContentType("application/zip"); request.setExpires(GetExpiresDelayS(120)); request.addResponseHeaders(RequestResponseHeader::CacheControl, "No-cache"); // no support now //request.addResponseHeaders(RequestResponseHeader::ContentType, "application/zip"); request.addResponseHeaders(RequestResponseHeader::ContentDisposition, "myDownload.zip"); request.UserMetaData()["name1"] = "value1"; request.UserMetaData()["name2"] = "value2"; auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); meta.setContentType("application/zip"); meta.UserMetaData()["name1"] = "value1"; meta.UserMetaData()["name2"] = "value2"; auto gOutcome = Client->GetObjectByUrl(GetObjectByUrlRequest(urlOutcome.result(), meta)); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ContentDisposition().c_str(), "myDownload.zip"); EXPECT_STREQ(gOutcome.result().Metadata().CacheControl().c_str(), "No-cache"); //EXPECT_STREQ(gOutcome.result().Metadata().ContentType().c_str(), "application/zip"); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriWithContentTypeAndMd5NegativeTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriWithContentTypeAndMd5NegativeTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); auto gOutcome = Client->GetObjectByUrl(GetObjectByUrlRequest(urlOutcome.result(), meta)); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_STREQ(gOutcome.error().Code().c_str(), "SignatureDoesNotMatch"); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriWithContentTypeAndMd5PositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriWithContentTypeAndMd5PositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setContentMd5(md5); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); auto gOutcome = Client->GetObjectByUrl(GetObjectByUrlRequest(urlOutcome.result(), meta)); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriWithResponseHeaderPositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriWithResponseHeaderPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.addResponseHeaders(RequestResponseHeader::CacheControl, "No-cache"); //request.addResponseHeaders(RequestResponseHeader::ContentType, "application/zip"); request.addResponseHeaders(RequestResponseHeader::ContentDisposition, "myDownload.zip"); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(GetObjectByUrlRequest(urlOutcome.result())); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_STREQ(gOutcome.result().Metadata().ContentDisposition().c_str(), "myDownload.zip"); EXPECT_STREQ(gOutcome.result().Metadata().CacheControl().c_str(), "No-cache"); //EXPECT_STREQ(gOutcome.result().Metadata().ContentType().c_str(), "application/zip"); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriWithUserMetaPositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriWithUserMetaPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); request.setExpires(GetExpiresDelayS(120)); request.UserMetaData()["name1"] = "value1"; request.UserMetaData()["name2"] = "value2"; auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.UserMetaData()["name1"] = "value1"; meta.UserMetaData()["name2"] = "value2"; auto gOutcome = Client->GetObjectByUrl(GetObjectByUrlRequest(urlOutcome.result(), meta)); EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectSignedUrlTest, PutPreSignedUriDefaultPositiveTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedUriDefaultPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); } TEST_F(ObjectSignedUrlTest, PutObjectWithPreSignedUriAndCrc) { ClientConfiguration conf; conf.enableCrc64 = true; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string key = TestUtils::GetObjectKey("PutObjectWithPreSignedUriAndCrc"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); auto urlOutcome = client.GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = client.PutObjectByUrl(urlOutcome.result(), content); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); } TEST_F(ObjectSignedUrlTest, PutObjectWithPreSignedUriWithoutCrc) { ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string key = TestUtils::GetObjectKey("PutObjectWithPreSignedUriWithoutCrc"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); auto urlOutcome = client.GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = client.PutObjectByUrl(urlOutcome.result(), content); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); } TEST_F(ObjectSignedUrlTest, PutPreSignedWithExpiresTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedWithExpiresTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); auto urlOutcome = Client->GeneratePresignedUrl(BucketName, key, GetExpiresDelayS(60), Http::Put); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(PutObjectByUrlRequest(urlOutcome.result(), content)); EXPECT_EQ(pOutcome.isSuccess(), true); auto outcome = Client->HeadObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ContentLength(), 1024LL); } TEST_F(ObjectSignedUrlTest, PutPreSignedByFileNameTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedByFileNameTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutPreSignedByFileNameTest"); TestUtils::WriteRandomDatatoFile(tmpFile, 2048); auto fileETag = TestUtils::GetFileETag(tmpFile); auto urlOutcome = Client->GeneratePresignedUrl(BucketName, key, GetExpiresDelayS(60), Http::Put); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), tmpFile); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().ETag(), fileETag); RemoveFile(tmpFile); } TEST_F(ObjectSignedUrlTest, PutPreSignedByFileNameWithMetaDataTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedByFileNameWithMetaDataTest"); std::string tmpFile = TestUtils::GetTargetFileName("PutPreSignedByFileNameWithMetaDataTest"); TestUtils::WriteRandomDatatoFile(tmpFile, 2048); auto fileETag = TestUtils::GetFileETag(tmpFile); ObjectMetaData metaData; metaData.UserMetaData()["test0"] = "value0"; metaData.UserMetaData()["test1"] = "value1"; GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.UserMetaData()["test0"] = "value0"; request.UserMetaData()["test1"] = "value1"; auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), tmpFile, metaData); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().ETag(), fileETag); RemoveFile(tmpFile); } TEST_F(ObjectSignedUrlTest, PutPreSignedUriDefaultNegativeTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedUriDefaultNegativeTest"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(-5)); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content); EXPECT_EQ(pOutcome.isSuccess(), false); auto url = urlOutcome.result(); if (url.find("x-oss-date=") == url.npos) { EXPECT_STREQ(pOutcome.error().Code().c_str(), "AccessDenied"); } else { EXPECT_STREQ(pOutcome.error().Code().c_str(), "AuthorizationArgumentError"); } } TEST_F(ObjectSignedUrlTest, PutObjectWithPreSignedUriWithParameter) { std::string key = TestUtils::GetObjectKey("PutObjectWithPreSignedUriWithParameter"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); request.setContentType("text/rtf"); request.UserMetaData()["Author"] = "oss"; request.UserMetaData()["Test"] = "test"; request.addParameter("x-param-null", ""); request.addParameter("x-param-space0", " "); request.addParameter("x-param-value", "value"); request.addParameter("x-param-space1", " "); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); meta.setContentType("text/rtf"); meta.UserMetaData()["Author"] = "oss"; meta.UserMetaData()["Test"] = "test"; auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().ContentType().c_str(), "text/rtf"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Test").c_str(), "test"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("tesT").c_str(), "test"); } TEST_F(ObjectSignedUrlTest, PutObjectWithPreSignedUriWithParameterNegativeTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithPreSignedUriWithParameterNegativeTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); request.setContentType("text/rtf"); request.UserMetaData()["Author"] = "oss"; request.UserMetaData()["Test"] = "test"; request.addParameter("x-param-null", ""); request.addParameter("x-param-space0", " "); request.addParameter("x-param-value", "value"); request.addParameter("x-param-space1", " "); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); meta.setContentType("text/rtf"); meta.UserMetaData()["Author"] = "oss"; auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), false); EXPECT_STREQ(pOutcome.error().Code().c_str(), "SignatureDoesNotMatch"); } TEST_F(ObjectSignedUrlTest, GetPreSignedUriSetBucketObjectPositiveTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriSetBucketObjectPositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::string actualETag = pOutcome.result().ETag(); GeneratePresignedUrlRequest request("", ""); request.setBucket(BucketName); request.setKey(key); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { EXPECT_STREQ(actualETag.c_str(), gOutcome.result().Metadata().ETag().c_str()); } else { EXPECT_TRUE(false); } } TEST_F(ObjectSignedUrlTest, GetObjectToFilePositiveTest) { GetObjectOutcome dummy; std::string key = TestUtils::GetObjectKey("GetObjectToFilePositiveTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::string actualETag = pOutcome.result().ETag(); std::string tmpFile = TestUtils::GetTargetFileName("GetObjectToFilePositiveTest"); auto urlOutcome = Client->GeneratePresignedUrl(BucketName, key); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result(), tmpFile); EXPECT_EQ(gOutcome.isSuccess(), true); auto fileContent = gOutcome.result().Content(); fileContent->seekg(0, fileContent->beg); auto fileETag0 = ComputeContentETag(*fileContent); gOutcome = dummy; fileContent = nullptr; auto fileETag = TestUtils::GetFileETag(tmpFile); EXPECT_EQ(actualETag, fileETag0); EXPECT_EQ(actualETag, fileETag); RemoveFile(tmpFile); } TEST_F(ObjectSignedUrlTest, GeneratePresignedUrlInvalidBucketNameTest) { auto outcome = Client->GeneratePresignedUrl("InvalidBucketName", "key"); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ObjectSignedUrlTest, GeneratePresignedUrlInvalidKeyTest) { auto outcome = Client->GeneratePresignedUrl("bucket", ""); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } TEST_F(ObjectSignedUrlTest, GetObjectByUrlRequestFunctionTest) { GetObjectByUrlRequest request("http://demo.test/test"); auto paramters = request.Parameters(); EXPECT_TRUE(paramters.empty()); } TEST_F(ObjectSignedUrlTest, PutObjectByUrlRequestFunctionTest) { auto content = TestUtils::GetRandomStream(0); PutObjectByUrlRequest request("http://demo.test/test", content); auto paramters = request.Parameters(); EXPECT_TRUE(paramters.empty()); } TEST_F(ObjectSignedUrlTest, UnencodedSlashTest) { std::string key = TestUtils::GetObjectKey("UnencodedSlashTest/123/456%2F/123"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); request.setContentType("text/rtf"); request.UserMetaData()["Author"] = "oss"; request.UserMetaData()["Test"] = "test"; request.addParameter("x-param-null", ""); request.addParameter("x-param-space0", " "); request.addParameter("x-param-value", "value"); request.addParameter("x-param-space1", " "); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("UnencodedSlashTest%2F123%2F456%252F%2F123") != std::string::npos); ObjectMetaData meta; meta.setContentMd5(md5); meta.setContentType("text/rtf"); meta.UserMetaData()["Author"] = "oss"; meta.UserMetaData()["Test"] = "test"; auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().ContentType().c_str(), "text/rtf"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Test").c_str(), "test"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("tesT").c_str(), "test"); // request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); request.setContentType("text/rtf"); request.UserMetaData()["Author"] = "oss1"; request.UserMetaData()["Test"] = "test1"; request.addParameter("x-param-null", ""); request.addParameter("x-param-space0", " "); request.addParameter("x-param-value", "value"); request.addParameter("x-param-space1", " "); request.setUnencodedSlash(true); urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("UnencodedSlashTest/123/456%252F/123") != std::string::npos); meta = ObjectMetaData(); meta.setContentMd5(md5); meta.setContentType("text/rtf"); meta.UserMetaData()["Author"] = "oss1"; meta.UserMetaData()["Test"] = "test1"; pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().ContentType().c_str(), "text/rtf"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Author").c_str(), "oss1"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("author").c_str(), "oss1"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Test").c_str(), "test1"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("tesT").c_str(), "test1"); } TEST_F(ObjectSignedUrlTest, VerifyObjctNameStrictTest) { std::string key = "123?"; GeneratePresignedUrlRequest request= GeneratePresignedUrlRequest(BucketName, key, Http::Put); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("123%3F?") != std::string::npos); key = "123?321"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("123%3F321?") != std::string::npos); key = "?123"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), false); EXPECT_TRUE(urlOutcome.error().Message().find("The Bucket or Key is invalid.") != std::string::npos); key = "?"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), false); EXPECT_TRUE(urlOutcome.error().Message().find("The Bucket or Key is invalid.") != std::string::npos); ClientConfiguration conf; EXPECT_TRUE(conf.isVerifyObjectStrict); conf.isVerifyObjectStrict = false; auto c = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); key = "123?321"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = c->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("/123%3F321?") != std::string::npos); key = "?123"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = c->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("/%3F123") != std::string::npos); key = "?"; request = GeneratePresignedUrlRequest(BucketName, key, Http::Put); urlOutcome = c->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("/%3F?") != std::string::npos); } TEST_F(ObjectSignedUrlTest, PutObjectWithPreSignedUriWithHeaderTest) { std::string key = TestUtils::GetObjectKey("UnencodedSlashTest/123/456%2F/123"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setExpires(GetExpiresDelayS(120)); request.setContentMd5(md5); request.setContentType("text/rtf"); request.HttpMetaData()["x-oss-meta-author"] = "oss"; request.HttpMetaData()["x-oss-meta-test"] = "test"; request.addParameter("x-param-null", ""); request.addParameter("x-param-space0", " "); request.addParameter("x-param-value", "value"); request.addParameter("x-param-space1", " "); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("UnencodedSlashTest%2F123%2F456%252F%2F123") != std::string::npos); ObjectMetaData meta; meta.setContentMd5(md5); meta.setContentType("text/rtf"); meta.UserMetaData()["Author"] = "oss"; meta.UserMetaData()["Test"] = "test"; auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::ObjectExists(*Client, BucketName, key), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_STREQ(metaOutcome.result().ContentType().c_str(), "text/rtf"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("author").c_str(), "oss"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("Test").c_str(), "test"); EXPECT_STREQ(metaOutcome.result().UserMetaData().at("tesT").c_str(), "test"); } } } ================================================ FILE: test/src/Object/ObjectSymlinkTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud{ namespace OSS { class ObjectSymlinkTest : public ::testing::Test { protected: ObjectSymlinkTest() { } ~ObjectSymlinkTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectsymlink"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectSymlinkTest::Client = nullptr; std::string ObjectSymlinkTest::BucketName = ""; TEST_F(ObjectSymlinkTest, SetAndGetObjectSymlinkSuccessTest) { std::string objName = TestUtils::GetObjectKey("test-cpp-sdk-objectsymlink"); // put object std::string text = "hellowworld"; auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, objName, std::make_shared(text))); EXPECT_EQ(putOutcome.isSuccess(), true); // create symlink success std::string linkName = objName+"-link"; CreateSymlinkRequest setRequest(BucketName, linkName); setRequest.SetSymlinkTarget(objName); CreateSymlinkOutcome linkOutcom = Client->CreateSymlink(setRequest); EXPECT_EQ(linkOutcom.isSuccess(), true); // read symlink success GetObjectOutcome getOutcome = Client->GetObject(GetObjectRequest(BucketName, linkName)); EXPECT_EQ(getOutcome.isSuccess(), true); std::string strData ; (*getOutcome.result().Content().get())>>strData; EXPECT_EQ(strData, text); GetSymlinkOutcome getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, linkName)); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), objName); TestUtils::WaitForCacheExpire(5); // create symlink to symlink success std::string linkNameRepeat = linkName +"-link"; CreateSymlinkRequest setRequestRepeat(BucketName, linkNameRepeat); setRequestRepeat.SetSymlinkTarget(linkName); linkOutcom = Client->CreateSymlink(setRequestRepeat); EXPECT_EQ(linkOutcom.isSuccess(), true); getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, linkNameRepeat)); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), linkName); //but read symlink to symlink error getOutcome = Client->GetObject(GetObjectRequest(BucketName, linkNameRepeat)); EXPECT_EQ(getOutcome.isSuccess(), false); // create symlink to not exist object success, but read error std::string linkNameNotExist = "test-link"; CreateSymlinkRequest setRequestNotExist(BucketName, linkNameNotExist); setRequestNotExist.SetSymlinkTarget("not-exist-object-name"); linkOutcom = Client->CreateSymlink(setRequestNotExist); EXPECT_EQ(linkOutcom.isSuccess(), true); getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, linkNameNotExist)); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), "not-exist-object-name"); getOutcome = Client->GetObject(GetObjectRequest(BucketName, linkNameNotExist)); EXPECT_EQ(getOutcome.isSuccess(), false); //change symlink to another exist object success and read success std::string objNameOther = TestUtils::GetObjectKey("test-cpp-sdk-objectsymlink"); std::string textOther = "hellowworldhellowworld"; putOutcome = Client->PutObject(PutObjectRequest(BucketName, objNameOther, std::make_shared(textOther))); EXPECT_EQ(putOutcome.isSuccess(), true); CreateSymlinkRequest setRequestOther(BucketName, linkName); setRequestOther.SetSymlinkTarget(objNameOther); linkOutcom = Client->CreateSymlink(setRequestOther); EXPECT_EQ(linkOutcom.isSuccess(), true); getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, linkName)); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), objNameOther); getOutcome = Client->GetObject(GetObjectRequest(BucketName, linkName)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, textOther); // create symlink with meta std::string linkNameWithMeta = objName +"-test-link-meta"; ObjectMetaData MetaInfo; MetaInfo.UserMetaData()["author"] = "chanju"; CreateSymlinkRequest setRequestWithMeta(BucketName, linkNameWithMeta, MetaInfo); setRequestWithMeta.SetSymlinkTarget(objNameOther); linkOutcom = Client->CreateSymlink(setRequestWithMeta); EXPECT_EQ(linkOutcom.isSuccess(), true); getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, linkNameWithMeta)); EXPECT_EQ(getLinkOutcome.isSuccess(), true); EXPECT_EQ(getLinkOutcome.result().SymlinkTarget(), objNameOther); // read meta getOutcome = Client->GetObject(GetObjectRequest(BucketName, linkNameWithMeta)); EXPECT_EQ(getOutcome.isSuccess(), true); (*getOutcome.result().Content().get()) >> strData; EXPECT_EQ(strData, textOther); std::string metaValue = getOutcome.result().Metadata().UserMetaData().at("author"); EXPECT_EQ(metaValue, "chanju"); // test Archive bucket std::string archiveBucket = TestUtils::GetBucketName("cpp-sdk-arvhive-objectsymlink"); CreateBucketOutcome bucketOutcome = Client->CreateBucket(CreateBucketRequest(archiveBucket, Archive)); EXPECT_EQ(bucketOutcome.isSuccess(), true); // put object in archiveBucket std::string archiveObjName = TestUtils::GetObjectKey("test-cpp-sdk-archive"); putOutcome = Client->PutObject(PutObjectRequest(archiveBucket, archiveObjName, TestUtils::GetRandomStream(1024 * 1024))); EXPECT_EQ(putOutcome.isSuccess(), true); std::string linkNameArchive = objName + "-test-link-archive"; CreateSymlinkRequest setArchiveRequest(archiveBucket, linkNameArchive); setArchiveRequest.SetSymlinkTarget(archiveObjName); linkOutcom = Client->CreateSymlink(setArchiveRequest); EXPECT_EQ(linkOutcom.isSuccess(), true); TestUtils::CleanBucket(*Client, archiveBucket); } TEST_F(ObjectSymlinkTest, SetAndGetObjectSymlinkErrorTest) { GetSymlinkOutcome getLinkOutcome = Client->GetSymlink(GetSymlinkRequest(BucketName, "aaa")); EXPECT_EQ(getLinkOutcome.isSuccess(), false); EXPECT_EQ(getLinkOutcome.error().Code().size()>0, true); } TEST_F(ObjectSymlinkTest, CreateSymlinkResultTest) { CreateSymlinkResult reuslt; EXPECT_EQ(reuslt.ETag(), ""); CreateSymlinkResult reuslt1("ETag"); reuslt = reuslt1; EXPECT_EQ(reuslt.ETag(), "ETag"); GetSymlinkResult result2("symlink", "etag"); EXPECT_EQ(result2.ETag(), "etag"); EXPECT_EQ(result2.SymlinkTarget(), "symlink"); auto headers = HeaderCollection(); GetSymlinkResult result3(headers); EXPECT_EQ(result3.ETag(), ""); } TEST_F(ObjectSymlinkTest, CreateSymlinkNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-symlink"); CreateSymlinkRequest setRequestRepeat(name, "test-key"); setRequestRepeat.SetSymlinkTarget("test-key-link"); auto outcome = Client->CreateSymlink(setRequestRepeat); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "NoSuchBucket"); } /* TEST_F(ObjectSymlinkTest, CreateSymlinkNegativeTest) { auto name = TestUtils::GetBucketName("no-exist-symlink"); CreateSymlinkRequest setRequestRepeat(name, "test-key"); setRequestRepeat.SetSymlinkTarget("test-key-link"); auto outcome = Client->CreateSymlink(setRequestRepeat); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().code(), "NoSuchBucket"); } */ } } ================================================ FILE: test/src/Object/ObjectTaggingTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class ObjectTaggingTest : public ::testing::Test { protected: ObjectTaggingTest() { } ~ObjectTaggingTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objecttagging"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectTaggingTest::Client = nullptr; std::string ObjectTaggingTest::BucketName = ""; TEST_F(ObjectTaggingTest, TagClassTest) { Tag tag1; EXPECT_EQ("", tag1.Key()); EXPECT_EQ("", tag1.Value()); tag1.setKey("key1"); tag1.setValue("value1"); EXPECT_EQ("key1", tag1.Key()); EXPECT_EQ("value1", tag1.Value()); Tag tag2("key2", "value2"); EXPECT_EQ("key2", tag2.Key()); EXPECT_EQ("value2", tag2.Value()); } TEST_F(ObjectTaggingTest, TaggingClassTest) { Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); Tag tag("key3", "value3"); tagging.addTag(tag); EXPECT_EQ(tagging.Tags().size(), 3U); EXPECT_EQ(tagging.Tags()[1].Key(), "key2"); EXPECT_EQ(tagging.Tags()[1].Value(), "value2"); TagSet tagset; tagset.push_back(Tag("key4", "value4")); tagset.push_back(Tag("key5", "value5")); Tagging tagging2(tagset); EXPECT_EQ(tagging2.Tags().size(), 2U); EXPECT_EQ(tagging2.Tags()[1].Key(), "key5"); EXPECT_EQ(tagging2.Tags()[1].Value(), "value5"); EXPECT_EQ(tagging2.toQueryParameters(), "key4=value4&key5=value5"); tagset.push_back(Tag("key6", "value6")); tagset.push_back(Tag("key7", "value7")); tagging2.setTags(tagset); EXPECT_EQ(tagging2.Tags().size(), 4U); EXPECT_EQ(tagging2.Tags()[2].Key(), "key6"); EXPECT_EQ(tagging2.Tags()[2].Value(), "value6"); EXPECT_EQ(tagging2.toQueryParameters(), "key4=value4&key5=value5&key6=value6&key7=value7"); tagset.push_back(Tag("key8", "")); tagset.push_back(Tag("key9", "value9")); tagging2.setTags(tagset); EXPECT_EQ(tagging2.toQueryParameters(), "key4=value4&key5=value5&key6=value6&key7=value7&key8&key9=value9"); tagging2.clear(); EXPECT_EQ(tagging2.Tags().size(), 0U); tagset.clear(); tagset.push_back(Tag("key10=", "value 10+")); tagset.push_back(Tag("key11&", "value11.")); tagging2.setTags(tagset); EXPECT_EQ(tagging2.Tags().size(), 2U); EXPECT_EQ(tagging2.toQueryParameters(), "key10%3D=value%2010%2B&key11%26=value11."); tagging2.addTag(Tag("", "value12.")); EXPECT_EQ(tagging2.Tags().size(), 3U); EXPECT_EQ(tagging2.toQueryParameters(), "key10%3D=value%2010%2B&key11%26=value11."); } TEST_F(ObjectTaggingTest, GetObjectTaggingResultTest) { std::string xml = R"( )"; GetObjectTaggingResult result(xml); EXPECT_EQ(result.Tagging().Tags().size(), 0U); xml = R"( a 1 b 2 )"; GetObjectTaggingResult result1(xml); EXPECT_EQ(result1.Tagging().Tags().size(), 2U); EXPECT_EQ(result1.Tagging().Tags()[0].Key(), "a"); EXPECT_EQ(result1.Tagging().Tags()[0].Value(), "1"); EXPECT_EQ(result1.Tagging().Tags()[1].Key(), "b"); EXPECT_EQ(result1.Tagging().Tags()[1].Value(), "2"); GetObjectTaggingResult result2; result2 = xml; EXPECT_EQ(result2.Tagging().Tags().size(), 2U); EXPECT_EQ(result2.Tagging().Tags()[0].Key(), "a"); EXPECT_EQ(result2.Tagging().Tags()[0].Value(), "1"); EXPECT_EQ(result2.Tagging().Tags()[1].Key(), "b"); EXPECT_EQ(result2.Tagging().Tags()[1].Value(), "2"); } TEST_F(ObjectTaggingTest, LifecycleRuleClassTest) { LifecycleRule rule1; LifecycleRule rule2; TagSet tagset; tagset.push_back(Tag("key1", "value1")); tagset.push_back(Tag("key2", "value2")); rule1.setTags(tagset); EXPECT_EQ(rule1.Tags().size(), 2U); rule1.addTag(Tag("key3", "value3")); EXPECT_EQ(rule1.Tags().size(), 3U); EXPECT_EQ(rule1.Tags()[0].Key(), "key1"); EXPECT_EQ(rule1.Tags()[1].Key(), "key2"); EXPECT_EQ(rule1.Tags()[2].Key(), "key3"); EXPECT_FALSE(rule1 == rule2); rule2.addTag(Tag("key1", "value1")); rule2.addTag(Tag("key2", "value2")); rule2.addTag(Tag("key3", "value3")); EXPECT_TRUE(rule1 == rule2); rule2.setTags(tagset); rule2.addTag(Tag("key4", "value3")); EXPECT_FALSE(rule1 == rule2); rule2.setTags(tagset); rule2.addTag(Tag("key3", "value4")); EXPECT_FALSE(rule1 == rule2); } TEST_F(ObjectTaggingTest, ObjectTaggingBasicTest) { auto key = TestUtils::GetObjectKey("ObjectTaggingBasicTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest(BucketName, key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), true); EXPECT_TRUE(putTaggingOutcome.result().RequestId().size() > 0U); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); EXPECT_TRUE(getTaggingOutcome.result().RequestId().size() > 0U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } auto delTaggingOutcome = Client->DeleteObjectTagging(DeleteObjectTaggingRequest(BucketName, key)); EXPECT_EQ(delTaggingOutcome.isSuccess(), true); EXPECT_TRUE(delTaggingOutcome.result().RequestId().size() > 0U); getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 0U); } TEST_F(ObjectTaggingTest, ObjectTaggingNegativeTest) { std::string key = "invalid-key"; Tagging tagging; tagging.addTag(Tag("key1", "value1")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest("cpp-sdk-test-invalid-bucket", key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), false); EXPECT_TRUE(putTaggingOutcome.error().RequestId().size() > 0U); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), false); EXPECT_TRUE(getTaggingOutcome.error().RequestId().size() > 0U); auto delTaggingOutcome = Client->DeleteObjectTagging(DeleteObjectTaggingRequest(BucketName, key)); EXPECT_EQ(delTaggingOutcome.isSuccess(), false); EXPECT_TRUE(delTaggingOutcome.error().RequestId().size() > 0U); } TEST_F(ObjectTaggingTest, SetObjectWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("SetObjectWithSpecialCharTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest(BucketName, key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), true); EXPECT_TRUE(putTaggingOutcome.result().RequestId().size() > 0); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, SetObjectWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("SetObjectWithGreaterThan10TagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest(BucketName, key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), false); EXPECT_EQ(putTaggingOutcome.error().Code(), "ValidateError"); EXPECT_TRUE(putTaggingOutcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, SetObjectWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("SetObjectWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest(BucketName, key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), false); EXPECT_EQ(putTaggingOutcome.error().Code(), "InvalidTag"); EXPECT_TRUE(putTaggingOutcome.error().Message().find("Cannot provide multiple Tags with the same key") != std::string::npos); } TEST_F(ObjectTaggingTest, SetObjectWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("SetObjectWithUnsupportTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); auto putTaggingOutcome = Client->SetObjectTagging(SetObjectTaggingRequest(BucketName, key, tagging)); EXPECT_EQ(putTaggingOutcome.isSuccess(), false); EXPECT_EQ(putTaggingOutcome.error().Code(), "InvalidTag"); EXPECT_TRUE(putTaggingOutcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, PutObjectWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("PutObjectWithNormalCharTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, PutObjectWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("PutObjectWithSpecialCharTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, PutObjectWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("PutObjectWithGreaterThan10TagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "BadRequest"); EXPECT_TRUE(outcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, PutObjectWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("PutObjectWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); EXPECT_TRUE(outcome.error().Message().find("query parameters without tag name duplicates") != std::string::npos); } TEST_F(ObjectTaggingTest, PutObjectWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("PutObjectWithUnsupportTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidTag"); EXPECT_TRUE(outcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, MultipartUploadWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("MultipartUploadWithNormalCharTagsTest"); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); InitiateMultipartUploadRequest request(BucketName, key); request.setTagging(tagging.toQueryParameters()); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_FALSE(initOutcome.result().RequestId().empty()); PartList partETags; auto content = TestUtils::GetRandomStream(1024); UploadPartRequest uRequest(BucketName, key, content); uRequest.setPartNumber(1); uRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); Part part(1, uploadPartOutcome.result().ETag()); partETags.push_back(part); CompleteMultipartUploadRequest completeRequest(BucketName, key, partETags); completeRequest.setUploadId(initOutcome.result().UploadId()); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, ResumableUploadWithNormalCharTagsByPutObjectTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithNormalCharTagsByPutObjectTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithNormalCharTagsByPutObjectTest"); TestUtils::WriteRandomDatatoFile(file, 102400); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(204800U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, ResumableUploadWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithNormalCharTagsTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithNormalCharTagsTest"); TestUtils::WriteRandomDatatoFile(file, 204800); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(102400U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, ResumableUploadWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithSpecialCharTagsTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithSpecialCharTagsTest"); TestUtils::WriteRandomDatatoFile(file, 204800); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(102400U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, ResumableUploadWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithGreaterThan10TagsTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithSpecialCharTagsTest"); TestUtils::WriteRandomDatatoFile(file, 204800); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(102400U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "BadRequest"); EXPECT_TRUE(outcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, ResumableUploadWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithDuplicatedTagsTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithDuplicatedTagsTest"); TestUtils::WriteRandomDatatoFile(file, 204800); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(102400U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); EXPECT_TRUE(outcome.error().Message().find("query parameters without tag name duplicates") != std::string::npos); } TEST_F(ObjectTaggingTest, ResumableUploadWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("ResumableUploadWithUnsupportTagsTest"); std::string file = TestUtils::GetTargetFileName("ResumableUploadWithUnsupportTagsTest"); TestUtils::WriteRandomDatatoFile(file, 204800); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); UploadObjectRequest request(BucketName, key, file); request.setPartSize(102400U); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->ResumableUploadObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidTag"); EXPECT_TRUE(outcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, AppendObjectWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("AppendObjectWithNormalCharTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); AppendObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->AppendObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, AppendObjectWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("AppendObjectWithSpecialCharTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); AppendObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->AppendObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } } TEST_F(ObjectTaggingTest, AppendObjectWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("AppendObjectWithGreaterThan10TagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); AppendObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->AppendObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "BadRequest"); EXPECT_TRUE(outcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, AppendObjectWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("AppendObjectWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); AppendObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->AppendObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); EXPECT_TRUE(outcome.error().Message().find("query parameters without tag name duplicates") != std::string::npos); } TEST_F(ObjectTaggingTest, AppendObjectWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("AppendObjectWithUnsupportTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); AppendObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->AppendObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidTag"); EXPECT_TRUE(outcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, CopyObjectWithDefaultTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithDefaultTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto key_cp = TestUtils::GetObjectKey("CopyObjectWithDefaultTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); auto cpOutcome = Client->CopyObject(cpRequest); EXPECT_EQ(cpOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_cp)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_cp).result().ETag()); } TEST_F(ObjectTaggingTest, CopyObjectWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithNormalCharTagsTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging2; tagging2.addTag(Tag("key1-2", "value1-2")); tagging2.addTag(Tag("key2-2", "value2-2")); tagging2.addTag(Tag("key3-2", "value3-2")); //replace auto key_cp = TestUtils::GetObjectKey("CopyObjectWithNormalCharTagsTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging2.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Replace); auto cpOutcome = Client->CopyObject(cpRequest); EXPECT_EQ(cpOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_cp)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging2.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging2.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_cp).result().ETag()); //copy cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging2.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Copy); cpOutcome = Client->CopyObject(cpRequest); EXPECT_EQ(cpOutcome.isSuccess(), true); getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_cp)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_cp).result().ETag()); } TEST_F(ObjectTaggingTest, CopyObjectWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithSpecialCharTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); //replace auto key_cp = TestUtils::GetObjectKey("CopyObjectWithSpecialCharTagsTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Replace); auto cpOutcome = Client->CopyObject(cpRequest); EXPECT_EQ(cpOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_cp)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_cp).result().ETag()); } TEST_F(ObjectTaggingTest, CopyObjectWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithGreaterThan10TagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); //replace auto key_cp = TestUtils::GetObjectKey("CopyObjectWithGreaterThan10TagsTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Replace); auto outcome = Client->CopyObject(cpRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "BadRequest"); EXPECT_TRUE(outcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, CopyObjectWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); //replace auto key_cp = TestUtils::GetObjectKey("CopyObjectWithDuplicatedTagsTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Replace); auto outcome = Client->CopyObject(cpRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); EXPECT_TRUE(outcome.error().Message().find("query parameters without tag name duplicates") != std::string::npos); } TEST_F(ObjectTaggingTest, CopyObjectWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("CopyObjectWithUnsupportTagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); //replace auto key_cp = TestUtils::GetObjectKey("CopyObjectWithUnsupportTagsTest-COPY"); CopyObjectRequest cpRequest(BucketName, key_cp); cpRequest.setCopySource(BucketName, key); cpRequest.setTagging(tagging.toQueryParameters()); cpRequest.setTaggingDirective(CopyActionList::Replace); auto outcome = Client->CopyObject(cpRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidTag"); EXPECT_TRUE(outcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, CreateSymlinkWithDefaultTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithDefaultTest"); auto content = std::make_shared("Tagging Test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest request(BucketName, key, content); request.setTagging(tagging.toQueryParameters()); auto outcome = Client->PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithDefaultTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); auto csOutcome = Client->CreateSymlink(csRequest); EXPECT_EQ(csOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_ln)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 0U); EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_ln).result().ETag()); } TEST_F(ObjectTaggingTest, CreateSymlinkWithNormalCharTagsTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithNormalCharTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithNormalCharTagsTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); csRequest.setTagging(tagging.toQueryParameters()); auto csOutcome = Client->CreateSymlink(csRequest); EXPECT_EQ(csOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_ln)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 2U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_ln).result().ETag()); } TEST_F(ObjectTaggingTest, CreateSymlinkWithSpecialCharTagsTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithSpecialCharTagsTest"); auto content = std::make_shared("Tagging Test"); auto outcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(outcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1=", "value 1+")); tagging.addTag(Tag("key2-", "value2.")); tagging.addTag(Tag("key3:/", "")); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithSpecialCharTagsTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); csRequest.setTagging(tagging.toQueryParameters()); auto csOutcome = Client->CreateSymlink(csRequest); EXPECT_EQ(csOutcome.isSuccess(), true); auto getTaggingOutcome = Client->GetObjectTagging(GetObjectTaggingRequest(BucketName, key_ln)); EXPECT_EQ(getTaggingOutcome.isSuccess(), true); EXPECT_EQ(getTaggingOutcome.result().Tagging().Tags().size(), 3U); size_t i = 0; for (const auto& tag : getTaggingOutcome.result().Tagging().Tags()) { EXPECT_EQ(tagging.Tags()[i].Key(), tag.Key()); EXPECT_EQ(tagging.Tags()[i].Value(), tag.Value()); i++; } EXPECT_EQ(outcome.result().ETag(), Client->HeadObject(BucketName, key_ln).result().ETag()); } TEST_F(ObjectTaggingTest, CreateSymlinkWithGreaterThan10TagsTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithGreaterThan10TagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); tagging.addTag(Tag("key3", "value3")); tagging.addTag(Tag("key4", "value4")); tagging.addTag(Tag("key5", "value5")); tagging.addTag(Tag("key6", "value6")); tagging.addTag(Tag("key7", "value7")); tagging.addTag(Tag("key8", "value8")); tagging.addTag(Tag("key9", "value9")); tagging.addTag(Tag("key10", "value10")); tagging.addTag(Tag("key11", "value11")); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithGreaterThan10TagsTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); csRequest.setTagging(tagging.toQueryParameters()); auto outcome = Client->CreateSymlink(csRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "BadRequest"); EXPECT_TRUE(outcome.error().Message().find("Object tags cannot be greater than 10") != std::string::npos); } TEST_F(ObjectTaggingTest, CreateSymlinkWithDuplicatedTagsTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key1", "value2")); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithDuplicatedTagsTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); csRequest.setTagging(tagging.toQueryParameters()); auto outcome = Client->CreateSymlink(csRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidArgument"); EXPECT_TRUE(outcome.error().Message().find("query parameters without tag name duplicates") != std::string::npos); } TEST_F(ObjectTaggingTest, CreateSymlinkWithUnsupportTagsTest) { auto key = TestUtils::GetObjectKey("CreateSymlinkWithDuplicatedTagsTest"); auto content = std::make_shared("Tagging Test"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, content)); EXPECT_EQ(putOutcome.isSuccess(), true); Tagging tagging; tagging.addTag(Tag("key1&", "value1")); tagging.addTag(Tag("key2", "value2")); auto key_ln = TestUtils::GetObjectKey("CreateSymlinkWithDuplicatedTagsTest-LINK"); CreateSymlinkRequest csRequest(BucketName, key_ln); csRequest.SetSymlinkTarget(key); csRequest.setTagging(tagging.toQueryParameters()); auto outcome = Client->CreateSymlink(csRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidTag"); EXPECT_TRUE(outcome.error().Message().find("The TagKey you have provided is invalid") != std::string::npos); } TEST_F(ObjectTaggingTest, LifecycleNormalCharTagsTest) { auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.addTag(Tag("key1", "value1")); rule.addTag(Tag("key2", "value2")); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketLifecycle(BucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_TRUE(*(gOutcome.result().LifecycleRules().begin()) == rule); } TEST_F(ObjectTaggingTest, LifecycleWithSpecialCharTagsTest) { TagSet tagSet; tagSet.push_back(Tag("key1=", "value 1+")); tagSet.push_back(Tag("key2-", "value2.")); tagSet.push_back(Tag("key3:/", "")); auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); rule.setTags(tagSet); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketLifecycle(BucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_TRUE(*(gOutcome.result().LifecycleRules().begin()) == rule); } TEST_F(ObjectTaggingTest, LifecycleWithGreaterThan10TagsTest) { TagSet tagSet; tagSet.push_back(Tag("key1", "value1")); tagSet.push_back(Tag("key2", "value2")); tagSet.push_back(Tag("key3", "value3")); tagSet.push_back(Tag("key4", "value4")); tagSet.push_back(Tag("key5", "value5")); tagSet.push_back(Tag("key6", "value6")); tagSet.push_back(Tag("key7", "value7")); tagSet.push_back(Tag("key8", "value8")); tagSet.push_back(Tag("key9", "value9")); tagSet.push_back(Tag("key10", "value10")); tagSet.push_back(Tag("key11", "value11")); auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); rule.setTags(tagSet); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), true); TestUtils::WaitForCacheExpire(5); auto gOutcome = Client->GetBucketLifecycle(BucketName); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_TRUE(*(gOutcome.result().LifecycleRules().begin()) == rule); } TEST_F(ObjectTaggingTest, LifecycleWithDuplicatedTagsTest) { TagSet tagSet; tagSet.push_back(Tag("key1", "value1")); tagSet.push_back(Tag("key1", "value2")); auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); rule.setTags(tagSet); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "MalformedXML"); } TEST_F(ObjectTaggingTest, LifecycleWithUnsupportTagsTest) { TagSet tagSet; tagSet.push_back(Tag("key1&", "value1")); tagSet.push_back(Tag("key2", "value2")); auto rule = LifecycleRule(); rule.setID("StandardExpireRule-001"); rule.setPrefix("test"); rule.setStatus(RuleStatus::Enabled); rule.Expiration().setDays(200); rule.setTags(tagSet); SetBucketLifecycleRequest request(BucketName); request.addLifecycleRule(rule); auto outcome = Client->SetBucketLifecycle(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "MalformedXML"); } TEST_F(ObjectTaggingTest, SetObjectTaggingRequestFunctionTest) { SetObjectTaggingRequest request("INVALIDNAME", "test"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); request.setTagging(tagging); auto outcome = Client->SetObjectTagging(request); SetObjectTaggingRequest request2("test1", "test2"); Tag tag; tagging.addTag(tag); request2.setTagging(tagging); outcome = Client->SetObjectTagging(request2); } TEST_F(ObjectTaggingTest, GetObjectTaggingWithInvalidResponseBodyTest) { std::string key = TestUtils::GetObjectKey("GetObjectTaggingWithInvalidResponseBodyTest"); auto putOutcome = Client->PutObject(PutObjectRequest(BucketName, key, std::make_shared("hellowworld"))); EXPECT_EQ(putOutcome.isSuccess(), true); SetObjectTaggingRequest request(BucketName, key); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); request.setTagging(tagging); auto outcome = Client->SetObjectTagging(request); GetObjectTaggingRequest gotRequest(BucketName, key); gotRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto gotlOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gotlOutcome.isSuccess(), false); EXPECT_EQ(gotlOutcome.error().Code(), "ParseXMLError"); } TEST_F(ObjectTaggingTest, GetObjectTaggingResultBranchTest) { std::string xml = R"( a 1 b 2 )"; GetObjectTaggingResult result1(std::make_shared(xml)); xml = R"( a 1 b 2 )"; GetObjectTaggingResult result2(xml); xml = R"( )"; GetObjectTaggingResult result3(xml); xml = R"( )"; GetObjectTaggingResult result4(xml); xml = R"( )"; GetObjectTaggingResult result5(xml); xml = R"()"; GetObjectTaggingResult result6(xml); } } } ================================================ FILE: test/src/Object/ObjectTrafficLimitTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include #include namespace AlibabaCloud { namespace OSS { class ObjectTrafficLimitTest : public ::testing::Test { protected: ObjectTrafficLimitTest() { } ~ObjectTrafficLimitTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-object-traffic-limit"); auto outcome1 = Client->CreateBucket(CreateBucketRequest(BucketName)); BucketName1 = TestUtils::GetBucketName("cpp-sdk-object-copy-object"); Client->CreateBucket(CreateBucketRequest(BucketName1)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); TestUtils::CleanBucket(*Client, BucketName1); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } static int64_t GetExpiresDelayS(int64_t value) { auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); return tp.time_since_epoch().count() + value; } public: static std::shared_ptr Client; static std::string BucketName; static std::string BucketName1; class Timer { public: Timer() : begin_(std::chrono::high_resolution_clock::now()) {} void reset() { begin_ = std::chrono::high_resolution_clock::now(); } int64_t elapsed() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } private: std::chrono::time_point begin_; }; }; std::shared_ptr ObjectTrafficLimitTest::Client = nullptr; std::string ObjectTrafficLimitTest::BucketName = ""; std::string ObjectTrafficLimitTest::BucketName1 = ""; TEST_F(ObjectTrafficLimitTest, PutAndGetObject) { Timer timer; std::string key = TestUtils::GetObjectKey("PutAndGetObject"); /*set content 800 KB*/ auto content = TestUtils::GetRandomStream(800*1024); PutObjectRequest putrequest(BucketName, key, content); /* set upload traffic limit 100KB/s*/ putrequest.setTrafficLimit(819200*2); auto theory_time = (800 * 1024 * 8) / (819200*2); timer.reset(); auto pOutcome = Client->PutObject(putrequest); auto diff_put = timer.elapsed(); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_NEAR((double)diff_put, (double)theory_time, 1.0); GetObjectRequest getrequest(BucketName, key); getrequest.setTrafficLimit(8192000); auto outome = Client->GetObject(getrequest); EXPECT_EQ(outome.isSuccess(), true); auto responseHeader = outome.result().Metadata().HttpMetaData(); EXPECT_EQ(responseHeader.find("x-oss-qos-delay-time") != responseHeader.end(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, AppendObjectTest) { Timer timer; std::string key = TestUtils::GetObjectKey("AppendObjectTest"); /*set content 4800 KB*/ auto content = TestUtils::GetRandomStream(800 * 1024); AppendObjectRequest apprequest(BucketName, key, content); /* set append traffic limit 100KB/s*/ apprequest.setTrafficLimit(819200); auto theory_time = (800 * 1024 * 8) / (819200); timer.reset(); auto pOutcome = Client->AppendObject(apprequest); auto time = timer.elapsed(); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_NEAR((double)time, (double)theory_time, 1.0); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, CopyObjectTest) { std::string key = TestUtils::GetObjectKey("CopyObjectTest"); /*set content 4800 KB*/ auto content = TestUtils::GetRandomStream(4800 * 1024); PutObjectRequest putrequest(BucketName, key, content); auto pOutcome = Client->PutObject(putrequest); EXPECT_EQ(pOutcome.isSuccess(), true); std::string objName2 = TestUtils::GetObjectKey("test-cpp-sdk-objectcopy"); CopyObjectRequest copyRequest(BucketName1, objName2); copyRequest.setCopySource(BucketName, key); /* set copy traffic limit 800KB/s*/ copyRequest.setTrafficLimit(819200*8); //auto theory_time = (4800 * 1024 * 8) / (819200 * 8); Timer timer; timer.reset(); /*begin copy object*/ CopyObjectOutcome copyOutCome = Client->CopyObject(copyRequest); //auto time = timer.elapsed(); EXPECT_EQ(copyOutCome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); DeleteObjectRequest delRequest1(BucketName1, objName2); auto delOutcome1 = Client->DeleteObject(delRequest1); EXPECT_EQ(delOutcome1.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, UploadPartTest) { auto key = TestUtils::GetObjectKey("InitiateMultipartUploadTest"); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().Key(), key); /*set content 4800 KB*/ auto content = TestUtils::GetRandomStream(4800 * 1024); UploadPartRequest uprequest(BucketName, key, 1, initOutcome.result().UploadId(), content); /* set UploadPart traffic limit 800KB/s*/ uprequest.setTrafficLimit(819200*8); auto theory_time = (4800 * 1024 * 8) / (819200 * 8); Timer timer; timer.reset(); auto uploadPartOutcome = Client->UploadPart(uprequest); auto time = timer.elapsed(); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_NEAR((double)time, (double)theory_time, 1.0); auto lOutcome = Client->ListParts(ListPartsRequest(BucketName, key, initOutcome.result().UploadId())); EXPECT_EQ(lOutcome.isSuccess(), true); CompleteMultipartUploadRequest cRequest(BucketName, key, lOutcome.result().PartList(), initOutcome.result().UploadId()); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, UploadPartCopyTest) { std::string key = TestUtils::GetObjectKey("UploadPartCopyTest"); /*set content 1200 KB*/ auto content = TestUtils::GetRandomStream(1200 * 1024); PutObjectRequest putrequest(BucketName, key, content); auto pOutcome = Client->PutObject(putrequest); EXPECT_EQ(pOutcome.isSuccess(), true); //get target object name*/ auto targetObjectKey = TestUtils::GetObjectKey("MultipartUploadPartCopyComplexStepTest"); InitiateMultipartUploadRequest imuRequest(BucketName, targetObjectKey); auto initOutcome = Client->InitiateMultipartUpload(imuRequest); EXPECT_EQ(initOutcome.isSuccess(), true); //Set the part size const int partSize = 600 * 1024; const int64_t fileLength = 1200 * 1024; auto partCount = 2; for (auto i = 0; i < partCount; i++) { // Skip to the start position int64_t skipBytes = partSize * i; int64_t position = skipBytes; // calculate the part size auto size = partSize < (fileLength - skipBytes) ? partSize : fileLength - skipBytes; UploadPartCopyRequest request(BucketName, targetObjectKey, BucketName, key); request.setPartNumber(i + 1); request.setUploadId(initOutcome.result().UploadId()); request.setCopySourceRange(position, position + size - 1); request.setTrafficLimit(819200*6); //auto theory_time = (600 * 1024 * 8) / (819200 * 6); Timer timer; timer.reset(); auto uploadPartOutcome = Client->UploadPartCopy(request); //auto time = timer.elapsed(); //EXPECT_EQ(time, theory_time); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_FALSE(uploadPartOutcome.result().RequestId().empty()); } auto lmuOutcome = Client->ListMultipartUploads(ListMultipartUploadsRequest(BucketName)); EXPECT_EQ(lmuOutcome.isSuccess(), true); std::string uploadId; for (auto const& upload : lmuOutcome.result().MultipartUploadList()) { if (upload.UploadId == initOutcome.result().UploadId()) { uploadId = upload.UploadId; } } EXPECT_EQ(uploadId.empty(), false); ListPartsRequest listRequest(BucketName, targetObjectKey); listRequest.setUploadId(uploadId); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, targetObjectKey, listOutcome.result().PartList()); completeRequest.setUploadId(uploadId); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); DeleteObjectRequest delRequest1(BucketName, targetObjectKey); auto delOutcome1 = Client->DeleteObject(delRequest1); EXPECT_EQ(delOutcome1.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, ResumableUploadObjectTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSize").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1200 * 1024); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(1200 * 1024); request.setThreadNum(1); request.setTrafficLimit(819200 * 6); auto theory_time = (1200 * 1024 * 8) / (819200 * 6); Timer timer; timer.reset(); auto outcome = Client->ResumableUploadObject(request); auto time = timer.elapsed(); EXPECT_NEAR((double)time, (double)theory_time, 1.0); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, ResumableDownloadObjectMultipartTest) { // upload object std::string key = TestUtils::GetObjectKey("UnnormalResumableDownloadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalResumableDownloadObjectWithDisableRequest").append(".tmp"); std::string targetKey = TestUtils::GetObjectKey("UnnormalResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 4800 * 1024); auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); DownloadObjectRequest request(BucketName, key, targetKey); request.setPartSize(1200 * 1024); request.setThreadNum(1); request.setTrafficLimit(819200 * 6); auto theory_time = (4800 * 1024 * 8) / (819200 * 6); Timer timer; timer.reset(); auto outcome = Client->ResumableDownloadObject(request); auto time = timer.elapsed(); EXPECT_NEAR((double)time, (double)theory_time,1.0); EXPECT_EQ(outcome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, ResumableUploadObjectMultipartTest) { std::string key = TestUtils::GetObjectKey("ResumableUploadObjectUnderPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadObjectUnderPartSize").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1800 * 1024); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(1200 * 1024); request.setThreadNum(1); request.setTrafficLimit(819200 * 2); auto theory_time = (1800 * 1024 * 8) / (819200 * 2); Timer timer; timer.reset(); auto outcome = Client->ResumableUploadObject(request); auto time = timer.elapsed(); EXPECT_NEAR((double)time, (double)theory_time, 2.0); EXPECT_EQ(outcome.isSuccess(), true); auto getObjectOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(getObjectOutcome.isSuccess(), true); EXPECT_EQ(RemoveFile(tmpFile), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, ResumableDownloadObjectTest) { // upload object std::string key = TestUtils::GetObjectKey("UnnormalResumableDownloadObjectWithDisableRequest"); std::string tmpFile = TestUtils::GetTargetFileName("UnnormalResumableDownloadObjectWithDisableRequest").append(".tmp"); std::string targetKey = TestUtils::GetObjectKey("UnnormalResumableDownloadTargetObject"); TestUtils::WriteRandomDatatoFile(tmpFile, 600 * 1024); auto putObjectOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(putObjectOutcome.isSuccess(), true); DownloadObjectRequest request(BucketName, key, targetKey); request.setPartSize(1200 * 1024); request.setThreadNum(1); request.setTrafficLimit(819200); auto theory_time = (600 * 1024 * 8) / (819200); Timer timer; timer.reset(); auto outcome = Client->ResumableDownloadObject(request); auto time = timer.elapsed(); EXPECT_NEAR((double)time, (double)theory_time, 1.0); EXPECT_EQ(outcome.isSuccess(), true); DeleteObjectRequest delRequest(BucketName, key); auto delOutcome = Client->DeleteObject(delRequest); EXPECT_EQ(delOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, PutAndGetObjectWithPreSignedUriTest) { std::string key = TestUtils::GetObjectKey("PutObjectWithPreSignedUriAndCrc"); std::shared_ptr content = TestUtils::GetRandomStream(1024); GeneratePresignedUrlRequest putrequest(BucketName, key, Http::Put); putrequest.setExpires(GetExpiresDelayS(120)); putrequest.setTrafficLimit(819200); auto urlOutcome = Client->GeneratePresignedUrl(putrequest); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("x-oss-traffic-limit=819200") != std::string::npos); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content); //EXPECT_EQ(pOutcome.isSuccess(), true); GeneratePresignedUrlRequest getrequest(BucketName, key, Http::Get); getrequest.setExpires(GetExpiresDelayS(120)); getrequest.setTrafficLimit(819201); urlOutcome = Client->GeneratePresignedUrl(getrequest); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_TRUE(urlOutcome.result().find("x-oss-traffic-limit=819201") != std::string::npos); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); //EXPECT_EQ(gOutcome.isSuccess(), true); } TEST_F(ObjectTrafficLimitTest, NormalResumableCopyWithSizelessPartSizeTest) { std::string sourceKey = TestUtils::GetObjectKey("NormalCopySourceObjectOverPartSize"); std::string targetKey = TestUtils::GetObjectKey("NormalCopyTargetObjectOverPartSize"); // put object into bucket auto putObjectContent = TestUtils::GetRandomStream(102400 - 2); auto putObjectOutcome = Client->PutObject(PutObjectRequest(BucketName, sourceKey, putObjectContent)); EXPECT_EQ(putObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, sourceKey), true); // Copy Object MultiCopyObjectRequest request(BucketName, targetKey, BucketName, sourceKey); request.setPartSize(100 * 1024); request.setThreadNum(1); request.setTrafficLimit(819201); auto outcome = Client->ResumableCopyObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, targetKey), true); } } } ================================================ FILE: test/src/Object/ObjectVersioningTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/FileSystemUtils.h" #include namespace AlibabaCloud { namespace OSS { class ObjectVersioningTest : public ::testing::Test { protected: ObjectVersioningTest() { } ~ObjectVersioningTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-objectversioning"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucketVersioning(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr ObjectVersioningTest::Client = nullptr; std::string ObjectVersioningTest::BucketName = ""; TEST_F(ObjectVersioningTest, ObjectBasicWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test put, get, head and getmeta auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("ObjectBasicWithVersioningEnableTest"); auto pOutcome = Client->PutObject(BucketName, key, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(etag1, etag2); //head HeadObjectRequest request(BucketName, key); auto hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId2); EXPECT_EQ(hOutcome.result().ETag(), etag2); request.setVersionId(versionId1); hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId1); EXPECT_EQ(hOutcome.result().ETag(), etag1); request.setVersionId(versionId2); hOutcome = Client->HeadObject(request); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId(), versionId2); EXPECT_EQ(hOutcome.result().ETag(), etag2); //Get GetObjectRequest gRequest(BucketName, key); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(gOutcome.result().Metadata().ETag(), etag2); gRequest.setVersionId(versionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId1); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gRequest.setVersionId(versionId2); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); auto lOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 1UL); ListObjectVersionsRequest lvRequest(BucketName); lvRequest.setPrefix(key); auto lvOutcome = Client->ListObjectVersions(lvRequest); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 2UL); //Delete DeleteObjectRequest dRequest(BucketName, key); auto dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(dOutcome.result().VersionId().empty(), false); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); auto dversionId = dOutcome.result().VersionId(); //Get simple meta GetObjectMetaRequest gmRequest(BucketName, key); auto gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), false); EXPECT_EQ(gmOutcome.error().Code(), "NoSuchKey"); gmRequest.setVersionId(versionId1); gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId1); EXPECT_EQ(gmOutcome.result().ETag(), etag1); gmRequest.setVersionId(versionId2); gmOutcome = Client->GetObjectMeta(gmRequest); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId2); EXPECT_EQ(gmOutcome.result().ETag(), etag2); //list agian lOutcome = Client->ListObjects(BucketName, key); EXPECT_EQ(lOutcome.isSuccess(), true); EXPECT_EQ(lOutcome.result().ObjectSummarys().size(), 0UL); lvRequest.setBucket(BucketName); lvRequest.setPrefix(key); lvOutcome = Client->ListObjectVersions(lvRequest); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 2UL); EXPECT_EQ(lvOutcome.result().DeleteMarkerSummarys().size(), 1UL); //Get agian gOutcome = Client->GetObject(GetObjectRequest(BucketName, key)); EXPECT_EQ(gOutcome.isSuccess(), false); gRequest.setVersionId(versionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId1); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gRequest.setVersionId(versionId2); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); //delete by version id dRequest.setVersionId(dversionId); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(dOutcome.result().VersionId(), dversionId); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); gmOutcome = Client->GetObjectMeta(BucketName, key); EXPECT_EQ(gmOutcome.isSuccess(), true); EXPECT_EQ(gmOutcome.result().VersionId(), versionId2); dRequest.setVersionId(versionId1); EXPECT_EQ(dRequest.VersionId(), versionId1); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId(), versionId1); EXPECT_EQ(dOutcome.result().DeleteMarker(), false); dRequest.setVersionId(versionId2); dOutcome = Client->DeleteObject(dRequest); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId(), versionId2); EXPECT_EQ(dOutcome.result().DeleteMarker(), false); //list again //lvRequest.setBucket(BucketName); //lvRequest.setPrefix(key); lvOutcome = Client->ListObjectVersions(BucketName, key); EXPECT_EQ(lvOutcome.isSuccess(), true); EXPECT_EQ(lvOutcome.result().ObjectVersionSummarys().size(), 0UL); EXPECT_EQ(lvOutcome.result().DeleteMarkerSummarys().size(), 0UL); } TEST_F(ObjectVersioningTest, ObjectAclWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("ObjectAclWithVersioningEnableTest"); PutObjectRequest pRequest(BucketName, key, content1); pRequest.MetaData().addHeader("x-oss-object-acl","private"); auto pOutcome = Client->PutObject(pRequest); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); GetObjectAclRequest gaRequest(BucketName, key); auto gaOutcome = Client->GetObjectAcl(gaRequest); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gaOutcome.result().VersionId(), versionId2); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::Default); gaRequest.setVersionId(versionId1); gaOutcome = Client->GetObjectAcl(gaRequest); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gaOutcome.result().VersionId(), versionId1); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::Private); gaRequest.setVersionId(versionId2); gaOutcome = Client->GetObjectAcl(gaRequest); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gaOutcome.result().VersionId(), versionId2); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::Default); //setAcl SetObjectAclRequest saRequest(BucketName, key); saRequest.setAcl(CannedAccessControlList::PublicRead); auto saOutcome = Client->SetObjectAcl(saRequest); EXPECT_EQ(saOutcome.isSuccess(), true); EXPECT_EQ(saOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(saOutcome.result().VersionId(), versionId2); gaOutcome = Client->GetObjectAcl(GetObjectAclRequest(BucketName, key)); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::PublicRead); saRequest.setVersionId(versionId1); saRequest.setAcl(CannedAccessControlList::PublicReadWrite); saOutcome = Client->SetObjectAcl(saRequest); EXPECT_EQ(saOutcome.isSuccess(), true); EXPECT_EQ(saOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(saOutcome.result().VersionId(), versionId1); gaRequest.setVersionId(versionId1); gaOutcome = Client->GetObjectAcl(gaRequest); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gaOutcome.result().VersionId(), versionId1); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::PublicReadWrite); } TEST_F(ObjectVersioningTest, ObjectSymlinkWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto target1 = TestUtils::GetObjectKey("ObjectSymlinkWithVersioningEnableTest-1"); auto target2 = TestUtils::GetObjectKey("ObjectSymlinkWithVersioningEnableTest-2"); auto key = target1; key.append("-link"); //1 auto pOutcome = Client->PutObject(BucketName, target1, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); CreateSymlinkRequest cRequest(BucketName, key); cRequest.SetSymlinkTarget(target1); auto cOutcome = Client->CreateSymlink(cRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); EXPECT_EQ(cOutcome.result().ETag().empty(), false); auto sversionId1 = cOutcome.result().VersionId(); //2 pOutcome = Client->PutObject(BucketName, target2, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); cRequest.SetSymlinkTarget(target2); cOutcome = Client->CreateSymlink(cRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); auto sversionId2 = cOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(sversionId1, sversionId2); //Get GetSymlinkRequest gsRequest(BucketName, key); auto gsOutcome = Client->GetSymlink(gsRequest); EXPECT_EQ(gsOutcome.isSuccess(), true); EXPECT_EQ(gsOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gsOutcome.result().VersionId(), sversionId2); EXPECT_EQ(gsOutcome.result().SymlinkTarget(), target2); gsRequest.setVersionId(sversionId1); gsOutcome = Client->GetSymlink(gsRequest); EXPECT_EQ(gsOutcome.isSuccess(), true); EXPECT_EQ(gsOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gsOutcome.result().VersionId(), sversionId1); EXPECT_EQ(gsOutcome.result().SymlinkTarget(), target1); gsRequest.setVersionId(sversionId2); gsOutcome = Client->GetSymlink(gsRequest); EXPECT_EQ(gsOutcome.isSuccess(), true); EXPECT_EQ(gsOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(gsOutcome.result().VersionId(), sversionId2); EXPECT_EQ(gsOutcome.result().SymlinkTarget(), target2); GetObjectRequest gRequest(BucketName, key); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), sversionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); gRequest.setVersionId(sversionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), sversionId1); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gRequest.setVersionId(sversionId2); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), sversionId2); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); } TEST_F(ObjectVersioningTest, AppendObjectWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content = std::make_shared("versioning test."); auto crc1 = ComputeCRC64(0UL, (void *)"versioning test.", 16UL); auto crc2 = ComputeCRC64(0UL, (void *)"versioning test.versioning test.", 32UL); auto key = TestUtils::GetObjectKey("AppendObjectWithVersioningEnableTest"); AppendObjectRequest aRequest(BucketName, key, content); aRequest.setPosition(0UL); auto aOutcome = Client->AppendObject(aRequest); EXPECT_EQ(aOutcome.isSuccess(), true); EXPECT_EQ(aOutcome.result().RequestId().size(), 24UL); EXPECT_TRUE(aOutcome.result().VersionId().size() > 0); EXPECT_NE(aOutcome.result().VersionId(), "null"); EXPECT_EQ(aOutcome.result().Length(), 16UL); EXPECT_EQ(aOutcome.result().CRC64(), crc1); aRequest.setPosition(16UL); aOutcome = Client->AppendObject(aRequest); EXPECT_EQ(aOutcome.isSuccess(), true); EXPECT_EQ(aOutcome.result().RequestId().size(), 24UL); EXPECT_NE(aOutcome.result().VersionId(), "null"); EXPECT_TRUE(aOutcome.result().VersionId().size() > 0); EXPECT_EQ(aOutcome.result().Length(), 32UL); EXPECT_EQ(aOutcome.result().CRC64(), crc2); } TEST_F(ObjectVersioningTest, RestoreObjectWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("RestoreObjectWithVersioningEnableTest"); PutObjectRequest pRequest1(BucketName, key, content1); pRequest1.MetaData().addHeader("x-oss-storage-class", "Archive"); auto pOutcome = Client->PutObject(pRequest1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); PutObjectRequest pRequest2(BucketName, key, content2); pRequest2.MetaData().addHeader("x-oss-storage-class", "Archive"); pOutcome = Client->PutObject(pRequest2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(etag1, etag2); RestoreObjectRequest rRequest(BucketName, key); auto rOutcome = Client->RestoreObject(rRequest); EXPECT_EQ(rOutcome.isSuccess(), true); EXPECT_EQ(rOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(rOutcome.result().VersionId(), versionId2); rRequest.setVersionId(versionId1); rOutcome = Client->RestoreObject(rRequest); EXPECT_EQ(rOutcome.isSuccess(), true); EXPECT_EQ(rOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(rOutcome.result().VersionId(), versionId1); } TEST_F(ObjectVersioningTest, CopyObjectWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("CopyObjectWithVersioningEnableTest"); auto pOutcome = Client->PutObject(BucketName, key, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(etag1, etag2); CopyObjectRequest cRequest(BucketName, key); cRequest.setCopySource(BucketName, key); auto cOutcome = Client->CopyObject(cRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(cOutcome.result().SourceVersionId(), versionId2); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); auto versionId3 = cOutcome.result().VersionId(); cRequest.setCopySource(BucketName, key); cRequest.setVersionId(versionId1); cOutcome = Client->CopyObject(cRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(cOutcome.result().SourceVersionId(), versionId1); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); auto versionId4 = cOutcome.result().VersionId(); GetObjectRequest gRequest(BucketName, key); gRequest.setVersionId(versionId3); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId3); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); gRequest.setVersionId(versionId4); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId(), versionId4); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); } TEST_F(ObjectVersioningTest, ObjectTaggingWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("ObjectTaggingWithVersioningEnableTest"); Tagging tagging; tagging.addTag(Tag("key1", "value1")); tagging.addTag(Tag("key2", "value2")); PutObjectRequest pRequest(BucketName, key, content1); pRequest.setTagging(tagging.toQueryParameters()); auto pOutcome = Client->PutObject(pRequest); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); //get GetObjectTaggingRequest gotRequest(BucketName, key); auto gtOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gtOutcome.isSuccess(), true); EXPECT_EQ(gtOutcome.result().Tagging().Tags().size(), 0U); gotRequest.setVersionId(versionId1); gtOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gtOutcome.isSuccess(), true); EXPECT_EQ(gtOutcome.result().Tagging().Tags().size(), tagging.Tags().size()); //set Tagging tagging2; tagging2.addTag(Tag("key2-1", "value1")); tagging2.addTag(Tag("key2-2", "value2")); tagging2.addTag(Tag("key2-3", "value2")); SetObjectTaggingRequest sotRequst(BucketName, key); sotRequst.setVersionId(versionId1); sotRequst.setTagging(tagging2); auto sotOutcome = Client->SetObjectTagging(sotRequst); EXPECT_EQ(sotOutcome.isSuccess(), true); gotRequest.setVersionId(versionId2); gtOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gtOutcome.isSuccess(), true); EXPECT_EQ(gtOutcome.result().Tagging().Tags().empty(), true); gotRequest.setVersionId(versionId1); gtOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gtOutcome.isSuccess(), true); EXPECT_EQ(gtOutcome.result().Tagging().Tags().size(), tagging2.Tags().size()); //delete DeleteObjectTaggingRequest dotRequst(BucketName, key); dotRequst.setVersionId(versionId1); auto dotOutcome = Client->DeleteObjectTagging(dotRequst); EXPECT_EQ(dotOutcome.isSuccess(), true); gotRequest.setVersionId(versionId1); gtOutcome = Client->GetObjectTagging(gotRequest); EXPECT_EQ(gtOutcome.isSuccess(), true); EXPECT_EQ(gtOutcome.result().Tagging().Tags().empty(), true); } TEST_F(ObjectVersioningTest, MultipartWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test date auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("MultipartWithVersioningEnableTest-basic"); auto pOutcome = Client->PutObject(BucketName, key, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); EXPECT_NE(versionId1, versionId2); EXPECT_NE(etag1, etag2); auto key1 = TestUtils::GetObjectKey("MultipartWithVersioningEnableTest-multi-1"); auto initOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key1)); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().RequestId().size(), 24UL); UploadPartCopyRequest request(BucketName, key1, BucketName, key); request.setVersionId(versionId1); request.setPartNumber(1); request.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPartCopy(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_EQ(uploadPartOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(uploadPartOutcome.result().VersionId().empty(), true); EXPECT_EQ(uploadPartOutcome.result().SourceVersionId(), versionId1); ListPartsRequest listRequest(BucketName, key1); listRequest.setUploadId(initOutcome.result().UploadId()); auto listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); CompleteMultipartUploadRequest completeRequest(BucketName, key1, listOutcome.result().PartList()); completeRequest.setUploadId(initOutcome.result().UploadId()); auto cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); auto mversion1 = cOutcome.result().VersionId(); auto key2 = TestUtils::GetObjectKey("MultipartWithVersioningEnableTest-multi-2"); initOutcome = Client->InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key2)); EXPECT_EQ(initOutcome.isSuccess(), true); EXPECT_EQ(initOutcome.result().RequestId().size(), 24UL); request.setKey(key2); request.setVersionId(""); request.setPartNumber(1); request.setUploadId(initOutcome.result().UploadId()); uploadPartOutcome = Client->UploadPartCopy(request); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); EXPECT_EQ(uploadPartOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(uploadPartOutcome.result().VersionId().empty(), true); EXPECT_EQ(uploadPartOutcome.result().SourceVersionId(), versionId2); listRequest.setKey(key2); listRequest.setUploadId(initOutcome.result().UploadId()); listOutcome = Client->ListParts(listRequest); EXPECT_EQ(listOutcome.isSuccess(), true); completeRequest.setKey(key2); completeRequest.setPartList(listOutcome.result().PartList()); completeRequest.setUploadId(initOutcome.result().UploadId()); cOutcome = Client->CompleteMultipartUpload(completeRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(cOutcome.result().VersionId().empty(), false); auto mversion2 = cOutcome.result().VersionId(); auto gOutcome = Client->GetObject(BucketName, key1); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); gOutcome = Client->GetObject(BucketName, key2); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); } TEST_F(ObjectVersioningTest, DeleteObjecsWithVersioningEnableTest) { std::string bucketName = BucketName; bucketName.append("-deleteobjects"); auto cbOutcome = Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(cbOutcome.isSuccess(), true); auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(bucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //ObjectIdentifier ObjectIdentifier objectId; objectId.setKey("key"); objectId.setVersionId("version"); EXPECT_EQ(objectId.Key(), "key"); EXPECT_EQ(objectId.VersionId(), "version"); //DeletedObject DeletedObject deletedObject; EXPECT_EQ(deletedObject.DeleteMarker(), false); EXPECT_EQ(deletedObject.Key(), ""); EXPECT_EQ(deletedObject.VersionId(), ""); EXPECT_EQ(deletedObject.DeleteMarkerVersionId(), ""); deletedObject.setDeleteMarker(true); deletedObject.setKey("key"); deletedObject.setVersionId("version"); deletedObject.setDeleteMarkerVersionId("marker"); EXPECT_EQ(deletedObject.DeleteMarker(), true); EXPECT_EQ(deletedObject.Key(), "key"); EXPECT_EQ(deletedObject.VersionId(), "version"); EXPECT_EQ(deletedObject.DeleteMarkerVersionId(), "marker"); auto keyPrefix = TestUtils::GetObjectKey("DeleteObjecsWithVersioningEnableTest"); std::vector keys; std::vector versionIds; std::vector deletedVersionIds; for (size_t i = 0; i < 10U; i++) { auto key = keyPrefix; key.append(std::to_string(i)); auto pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test.")); EXPECT_EQ(pOutcome.isSuccess(), true); keys.push_back(key); versionIds.push_back(pOutcome.result().VersionId()); } DeleteObjectVersionsRequest dsRequest(bucketName); ObjectIdentifierList objectList0_6; for (size_t i = 0; i < 7U; i++) { objectList0_6.push_back(ObjectIdentifier(keys.at(i))); } dsRequest.setObjects(objectList0_6); dsRequest.addObject(ObjectIdentifier(keys.at(7))); dsRequest.addObject(ObjectIdentifier(keys.at(8))); dsRequest.addObject(ObjectIdentifier(keys.at(9))); auto dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); size_t index = 0U; for (const auto& object: dsOutcome.result().DeletedObjects()) { EXPECT_EQ(object.Key(), keys.at(index)); EXPECT_EQ(object.DeleteMarker(), true); EXPECT_EQ(object.DeleteMarkerVersionId().empty(), false); EXPECT_EQ(object.VersionId().empty(), true); index++; deletedVersionIds.push_back(object.DeleteMarkerVersionId()); } auto lsOutcome = Client->ListObjects(bucketName); EXPECT_EQ(lsOutcome.isSuccess(), true); EXPECT_EQ(lsOutcome.result().ObjectSummarys().empty(), true); auto lsvOutcome = Client->ListObjectVersions(bucketName); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), keys.size()); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), keys.size()); //deletes objects with version id dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i), versionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); index = 0U; for (const auto& object : dsOutcome.result().DeletedObjects()) { EXPECT_EQ(object.Key(), keys.at(index)); EXPECT_EQ(object.DeleteMarker(), false); EXPECT_EQ(object.DeleteMarkerVersionId().empty(), true); EXPECT_EQ(object.VersionId(), versionIds.at(index)); index++; } lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), keys.size()); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), 0UL); //delete deleted marker with version id dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i), deletedVersionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); index = 0U; for (const auto& object : dsOutcome.result().DeletedObjects()) { EXPECT_EQ(object.Key(), keys.at(index)); EXPECT_EQ(object.DeleteMarker(), true); EXPECT_EQ(object.DeleteMarkerVersionId(), deletedVersionIds.at(index)); EXPECT_EQ(object.VersionId(), deletedVersionIds.at(index)); index++; } lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), 0U); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), 0U); auto dbOutcome = Client->DeleteBucket(bucketName); EXPECT_EQ(dbOutcome.isSuccess(), true); } TEST_F(ObjectVersioningTest, DeleteObjecsSpecialCharactersWithVersioningEnableTest) { std::string bucketName = BucketName; bucketName.append("-deleteobjects-cs"); auto cbOutcome = Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(cbOutcome.isSuccess(), true); auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(bucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //escape char std::string keyPrefix = TestUtils::GetObjectKey("DeleteObjecsSpecialCharactersWithVersioningEnableTest-escape"); char entities[] = { '\"', '&', '\'', '<', '>' }; std::vector keys; std::vector versionIds; std::vector deletedVersionIds; for (size_t i = 0; i < sizeof(entities) / sizeof(entities[0]); i++) { std::string key = keyPrefix; key.append("-").append(std::to_string(i)); key.push_back(entities[i]); key.append(".dat"); auto outcome = Client->PutObject(bucketName, key, std::make_shared("just for test.")); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().VersionId().empty(), false); keys.push_back(key); versionIds.push_back(outcome.result().VersionId()); } { std::string key = keyPrefix; key.append("-").append(std::to_string(9)); key.append("\"&\'<>-10.dat"); auto outcome = Client->PutObject(bucketName, key, std::make_shared("just for test.")); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().VersionId().empty(), false); keys.push_back(key); versionIds.push_back(outcome.result().VersionId()); } // DeleteObjectVersionsRequest dsRequest(bucketName); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i))); } EXPECT_EQ(dsRequest.EncodingType(), ""); EXPECT_EQ(dsRequest.Quiet(), false); EXPECT_EQ(dsRequest.Objects().size(), keys.size()); auto dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); for (const auto& object : dsOutcome.result().DeletedObjects()) { deletedVersionIds.push_back(object.DeleteMarkerVersionId()); } auto lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), keys.size()); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), keys.size()); dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i), versionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i), deletedVersionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), 0U); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), 0U); //url encode test keyPrefix = TestUtils::GetObjectKey("DeleteObjecsSpecialCharactersWithVersioningEnableTest-urlencode"); std::string newKey; keys.clear(); versionIds.clear(); deletedVersionIds.clear(); newKey = keyPrefix; newKey.append("-1-"); newKey.push_back(0x1c); newKey.push_back(0x1a); newKey.append(".dat"); keys.push_back(newKey); newKey = keyPrefix; newKey.append("-2-"); newKey.push_back(0x1c); newKey.push_back(0x1a); newKey.append(".dat"); keys.push_back(newKey); newKey = keyPrefix; newKey.append("-3-.dat"); keys.push_back(newKey); for (const auto& key : keys) { auto outcome = Client->PutObject(bucketName, key, std::make_shared("just for test.")); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().VersionId().empty(), false); versionIds.push_back(outcome.result().VersionId()); } dsRequest.setEncodingType("url"); dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); for (size_t i = 0; i < keys.size(); i++) { EXPECT_EQ(dsOutcome.result().DeletedObjects()[i].Key(), keys[i]); } for (const auto& object : dsOutcome.result().DeletedObjects()) { deletedVersionIds.push_back(object.DeleteMarkerVersionId()); } lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), keys.size()); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), keys.size()); dsRequest.clearObjects(); for (size_t i = 0; i < keys.size(); i++) { dsRequest.addObject(ObjectIdentifier(keys.at(i), versionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); for (size_t i = 0; i < keys.size(); i++) { EXPECT_EQ(dsOutcome.result().DeletedObjects()[i].Key(), keys[i]); } ObjectIdentifierList objectList; for (size_t i = 0; i < keys.size(); i++) { objectList.push_back(ObjectIdentifier(keys.at(i), deletedVersionIds.at(i))); } dsOutcome = Client->DeleteObjectVersions(bucketName, objectList); EXPECT_EQ(dsOutcome.isSuccess(), true); EXPECT_EQ(dsOutcome.result().DeletedObjects().size(), keys.size()); for (size_t i = 0; i < keys.size(); i++) { EXPECT_EQ(dsOutcome.result().DeletedObjects()[i].Key(), keys[i]); } lsvOutcome = Client->ListObjectVersions(ListObjectVersionsRequest(bucketName)); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().DeleteMarkerSummarys().size(), 0U); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), 0U); //delete bucket auto dbOutcome = Client->DeleteBucket(bucketName); EXPECT_EQ(dbOutcome.isSuccess(), true); } TEST_F(ObjectVersioningTest, ListObjecsWithVersioningEnableTest) { std::string bucketName = BucketName; bucketName.append("-listobjects"); auto cbOutcome = Client->CreateBucket(CreateBucketRequest(bucketName)); EXPECT_EQ(cbOutcome.isSuccess(), true); auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(bucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(bucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; std::string keyPrefix = TestUtils::GetObjectKey("ListObjecsWithVersioningEnableTest"); //Build Test Data size_t normalCnt = 10UL; std::vector normalKeys; for (size_t i = 0; i < normalCnt; i++) { auto key = keyPrefix; key.append("/normal/").append(std::to_string(i)).append(".dat"); normalKeys.push_back(key); auto pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test 1.")); EXPECT_EQ(pOutcome.isSuccess(), true); auto dOutcome = Client->DeleteObject(bucketName, key); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test 2.")); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test 3.")); EXPECT_EQ(pOutcome.isSuccess(), true); } size_t xmlescapeCnt = 8UL; std::vector xmlescapeKeys; for (size_t i = 0; i < xmlescapeCnt; i++) { auto key = keyPrefix; key.append("/xmlescape/").append(std::to_string(i)).append("\"&\'<>-.dat"); xmlescapeKeys.push_back(key); auto pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test xmlescape 1.")); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test xmlescape 2.")); EXPECT_EQ(pOutcome.isSuccess(), true); } size_t hiddenCharsCnt = 5UL; std::vector hiddenCharsKeys; for (size_t i = 0; i < hiddenCharsCnt; i++) { auto key = keyPrefix; key.append("/hiddenchar/"); key.push_back(0x1c); key.push_back(0x1a); key.append(std::to_string(i)).append(".dat"); hiddenCharsKeys.push_back(key); auto pOutcome = Client->PutObject(bucketName, key, std::make_shared("just for test hiddenchar 1.")); } //Test Marker ListObjectVersionsRequest request(bucketName); request.setMaxKeys(1); bool IsTruncated = false; size_t total = 0UL; size_t size; do { auto outcome = Client->ListObjectVersions(request); EXPECT_EQ(outcome.isSuccess(), true); size = outcome.result().DeleteMarkerSummarys().size() + outcome.result().ObjectVersionSummarys().size(); EXPECT_EQ(size, 1UL); EXPECT_EQ(outcome.result().CommonPrefixes().empty(), true); request.setKeyMarker(outcome.result().NextKeyMarker()); request.setVersionIdMarker(outcome.result().NextVersionIdMarker()); IsTruncated = outcome.result().IsTruncated(); total++; } while (IsTruncated); EXPECT_EQ(total, (normalCnt*4 + xmlescapeCnt*2 + hiddenCharsCnt)); //Test Delimiter CommonPrefixeList preflixList; std::string prefix = keyPrefix; prefix.append("/"); ListObjectVersionsRequest request2(bucketName); request2.setDelimiter("/"); request2.setMaxKeys(1000); request2.setPrefix(prefix); auto lsvOutcome = Client->ListObjectVersions(request2); EXPECT_EQ(lsvOutcome.isSuccess(), true); size = lsvOutcome.result().DeleteMarkerSummarys().size() + lsvOutcome.result().ObjectVersionSummarys().size(); EXPECT_EQ(size, 0UL); preflixList.push_back(std::string(keyPrefix).append("/hiddenchar/")); preflixList.push_back(std::string(keyPrefix).append("/normal/")); preflixList.push_back(std::string(keyPrefix).append("/xmlescape/")); EXPECT_EQ(lsvOutcome.result().CommonPrefixes(), preflixList); //Test UrlEncoding prefix = keyPrefix; prefix.append("/hiddenchar/"); ListObjectVersionsRequest request3(bucketName); request3.setEncodingType("url"); request3.setPrefix(prefix); lsvOutcome = Client->ListObjectVersions(request3); EXPECT_EQ(lsvOutcome.isSuccess(), true); EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().size(), hiddenCharsCnt); for (size_t i = 0; i < hiddenCharsKeys.size(); i++) { EXPECT_EQ(lsvOutcome.result().ObjectVersionSummarys().at(i).Key(), hiddenCharsKeys.at(i)); } TestUtils::CleanBucketVersioning(*Client, bucketName); EXPECT_EQ(Client->DoesBucketExist(bucketName), false); } TEST_F(ObjectVersioningTest, ResumableUploadWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //multi-part mode std::string key = TestUtils::GetObjectKey("ResumableUploadWithVersioningEnableTestOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableUploadWithVersioningEnableTestOverPartSize").append(".tmp"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); UploadObjectRequest request(BucketName, key, tmpFile); request.setPartSize(100 * 1024); request.setThreadNum(3); auto ruOutcome = Client->ResumableUploadObject(request); EXPECT_EQ(ruOutcome.isSuccess(), true); EXPECT_EQ(ruOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(ruOutcome.result().VersionId().empty(), false); GetObjectRequest gRequest(BucketName, key); gRequest.setVersionId(ruOutcome.result().VersionId()); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), ComputeContentMD5(*gOutcome.result().Content())); RemoveFile(tmpFile); //put object mode std::string key1 = TestUtils::GetObjectKey("ResumableUploadWithVersioningEnableTestUnderPartSize"); std::string tmpFile1 = TestUtils::GetTargetFileName("ResumableUploadWithVersioningEnableTestUnderPartSize").append(".tmp"); num = rand() % 8; TestUtils::WriteRandomDatatoFile(tmpFile1, 10240 * num); UploadObjectRequest request1(BucketName, key1, tmpFile1); request1.setPartSize(100 * 1024); request1.setThreadNum(1); auto ruOutcome1 = Client->ResumableUploadObject(request1); EXPECT_EQ(ruOutcome1.isSuccess(), true); EXPECT_EQ(ruOutcome1.result().RequestId().size(), 24UL); EXPECT_EQ(ruOutcome1.result().VersionId().empty(), false); GetObjectRequest gRequest1(BucketName, key1); gRequest1.setVersionId(ruOutcome1.result().VersionId()); auto gOutcome1 = Client->GetObject(gRequest1); EXPECT_EQ(gOutcome1.isSuccess(), true); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile1), ComputeContentMD5(*gOutcome1.result().Content())); RemoveFile(tmpFile1); } TEST_F(ObjectVersioningTest, ResumableDownloadWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //multi-part mode std::string key = TestUtils::GetObjectKey("ResumableDownloadWithVersioningEnableTestOverPartSize"); std::string tmpFile = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestOverPartSize").append(".tmp"); std::string tmpFileDonwload = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestOverPartSize").append(".dat"); // limit file size between 800KB and 2000KB int num = 8 + rand() % 12; TestUtils::WriteRandomDatatoFile(tmpFile, 1024 * 100 * num + 10); auto pOutcome = Client->PutObject(BucketName, key, tmpFile); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto dOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId().empty(), false); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); DownloadObjectRequest rdRequest(BucketName, key, tmpFileDonwload); rdRequest.setPartSize(100 * 1024); rdRequest.setThreadNum(3); auto rdOutcome = Client->ResumableDownloadObject(rdRequest); EXPECT_EQ(rdOutcome.isSuccess(), false); EXPECT_EQ(rdOutcome.error().Code(), "NoSuchKey"); rdRequest.setVersionId(pOutcome.result().VersionId()); rdOutcome = Client->ResumableDownloadObject(rdRequest); EXPECT_EQ(rdOutcome.isSuccess(), true); EXPECT_EQ(rdOutcome.result().VersionId(), pOutcome.result().VersionId()); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), TestUtils::GetFileMd5(tmpFileDonwload)); RemoveFile(tmpFileDonwload); //get object mode std::string tmpFileDonwload1 = TestUtils::GetTargetFileName("ResumableDownloadWithVersioningEnableTestUnderPartSize").append(".dat"); DownloadObjectRequest rdRequest1(BucketName, key, tmpFileDonwload1); rdRequest1.setPartSize(4 * 1024 * 1024); rdOutcome = Client->ResumableDownloadObject(rdRequest1); EXPECT_EQ(rdOutcome.isSuccess(), false); EXPECT_EQ(rdOutcome.error().Code(), "NoSuchKey"); rdRequest1.setVersionId(pOutcome.result().VersionId()); rdOutcome = Client->ResumableDownloadObject(rdRequest1); EXPECT_EQ(rdOutcome.isSuccess(), true); EXPECT_EQ(rdOutcome.result().VersionId(), pOutcome.result().VersionId()); EXPECT_EQ(TestUtils::GetFileMd5(tmpFile), TestUtils::GetFileMd5(tmpFileDonwload1)); RemoveFile(tmpFileDonwload1); RemoveFile(tmpFile); } TEST_F(ObjectVersioningTest, ResumableCopyWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //multi-part mode std::string srcKey = TestUtils::GetObjectKey("ResumableCopyWithVersioningEnableTestOverPartSize"); // limit file size between 800KB and 2000KB int num = 3 + rand() % 5; auto content = TestUtils::GetRandomStream(1024 * 100 * num + 10); auto pOutcome = Client->PutObject(BucketName, srcKey, content); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto dOutcome = Client->DeleteObject(BucketName, srcKey); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId().empty(), false); EXPECT_EQ(dOutcome.result().DeleteMarker(), true); std::string key = TestUtils::GetObjectKey("ResumableCopyWithVersioningEnableTestOverPartSize"); MultiCopyObjectRequest mcRequest(BucketName, key, BucketName, srcKey); mcRequest.setPartSize(100 * 1024); mcRequest.setThreadNum(3); auto rcOutcome = Client->ResumableCopyObject(mcRequest); EXPECT_EQ(rcOutcome.isSuccess(), false); EXPECT_EQ(rcOutcome.error().Code(), "NoSuchKey"); mcRequest.setVersionId(pOutcome.result().VersionId()); rcOutcome = Client->ResumableCopyObject(mcRequest); EXPECT_EQ(rcOutcome.isSuccess(), true); EXPECT_EQ(rcOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(rcOutcome.result().VersionId().empty(), false); auto gOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentMD5(*gOutcome.result().Content()), ComputeContentMD5(*content)); //copyObject mode key = TestUtils::GetObjectKey("ResumableCopyWithVersioningEnableTestUnderPartSize"); MultiCopyObjectRequest mcRequest1(BucketName, key, BucketName, srcKey); mcRequest1.setPartSize(4 * 1024 * 1024); mcRequest1.setThreadNum(3); auto rcOutcome1 = Client->ResumableCopyObject(mcRequest1); EXPECT_EQ(rcOutcome1.isSuccess(), false); EXPECT_EQ(rcOutcome1.error().Code(), "NoSuchKey"); mcRequest1.setVersionId(pOutcome.result().VersionId()); rcOutcome1 = Client->ResumableCopyObject(mcRequest1); EXPECT_EQ(rcOutcome1.isSuccess(), true); EXPECT_EQ(rcOutcome1.result().RequestId().size(), 24UL); EXPECT_EQ(rcOutcome1.result().VersionId().empty(), false); auto gOutcome1 = Client->GetObject(BucketName, key); EXPECT_EQ(gOutcome1.isSuccess(), true); EXPECT_EQ(ComputeContentMD5(*gOutcome1.result().Content()), ComputeContentMD5(*content)); } TEST_F(ObjectVersioningTest, SignUrlWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; //test put, get, head and getmeta auto content1 = std::make_shared("versioning test 1."); auto content2 = std::make_shared("versioning test 2."); auto etag1 = ComputeContentETag(*content1); auto etag2 = ComputeContentETag(*content2); auto key = TestUtils::GetObjectKey("SignUrlWithVersioningEnableTest"); auto pOutcome = Client->PutObject(BucketName, key, content1); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); pOutcome = Client->PutObject(BucketName, key, content2); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId2 = pOutcome.result().VersionId(); GeneratePresignedUrlRequest urlRequest(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(urlRequest); EXPECT_EQ(urlOutcome.isSuccess(), true); EXPECT_EQ(urlOutcome.result().find("versionId="), std::string::npos); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); urlRequest.setVersionId(versionId1); urlOutcome = Client->GeneratePresignedUrl(urlRequest); EXPECT_EQ(urlOutcome.isSuccess(), true); std::string pat = "versionId="; pat.append(UrlEncode(versionId1)); EXPECT_NE(urlOutcome.result().find(pat), std::string::npos); gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag1); urlRequest.setVersionId(versionId2); urlOutcome = Client->GeneratePresignedUrl(urlRequest); EXPECT_EQ(urlOutcome.isSuccess(), true); pat = "versionId="; pat.append(UrlEncode(versionId2)); EXPECT_NE(urlOutcome.result().find(pat), std::string::npos); gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(ComputeContentETag(*gOutcome.result().Content()), etag2); } TEST_F(ObjectVersioningTest, ProcessObjectWithVersioningEnableTest) { auto bsOutcome = Client->SetBucketVersioning(SetBucketVersioningRequest(BucketName, VersioningStatus::Enabled)); EXPECT_EQ(bsOutcome.isSuccess(), true); auto bfOutcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(bfOutcome.isSuccess(), true); EXPECT_EQ(bfOutcome.result().VersioningStatus(), VersioningStatus::Enabled); if (bfOutcome.result().VersioningStatus() != VersioningStatus::Enabled) return; std::string imageFilePath = Config::GetDataPath(); imageFilePath.append("example.jpg"); std::string process = "image/resize,m_fixed,w_100,h_100"; std::string imageInfo = "{\n \"FileSize\": {\"value\": \"3267\"},\n \"Format\": {\"value\": \"jpg\"},\n \"FrameCount\": {\"value\": \"1\"},\n \"ImageHeight\": {\"value\": \"100\"},\n \"ImageWidth\": {\"value\": \"100\"},\n \"ResolutionUnit\": {\"value\": \"1\"},\n \"XResolution\": {\"value\": \"1/1\"},\n \"YResolution\": {\"value\": \"1/1\"}}"; auto key = TestUtils::GetObjectKey("ProcessObjectWithVersioningEnableTest"); key.append("-example.jpg"); auto pOutcome = Client->PutObject(BucketName, key, imageFilePath); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); EXPECT_EQ(pOutcome.result().VersionId().empty(), false); auto versionId1 = pOutcome.result().VersionId(); std::string saveAskey = TestUtils::GetObjectKey("ProcessObjectWithVersioningEnableTest"); saveAskey.append("-saveas.jpg"); GetObjectRequest gRequest(BucketName, key, process); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), true); pOutcome = Client->PutObject(BucketName, saveAskey, gOutcome.result().Content()); EXPECT_EQ(pOutcome.isSuccess(), true); gOutcome = Client->GetObject(GetObjectRequest(BucketName, saveAskey, "image/info")); EXPECT_EQ(gOutcome.isSuccess(), true); std::istreambuf_iterator isb(*gOutcome.result().Content().get()), end; std::string imageInfo1(isb, end); const char * srcPtr = strstr(imageInfo.c_str(), "Format"); const char * dstPtr = strstr(imageInfo1.c_str(), "Format"); EXPECT_EQ(strcmp(srcPtr, dstPtr), 0); //do not support auto dOutcome = Client->DeleteObject(BucketName, key); EXPECT_EQ(dOutcome.isSuccess(), true); gRequest.setVersionId(versionId1); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "NoSuchKey"); std::stringstream ss; ss << process << "|sys/saveas" << ",o_" << Base64EncodeUrlSafe(saveAskey) << ",b_" << Base64EncodeUrlSafe(BucketName); ProcessObjectRequest poRequest(BucketName, key, ss.str()); poRequest.setVersionId(versionId1); auto poOutcome = Client->ProcessObject(poRequest); EXPECT_EQ(poOutcome.isSuccess(), false); EXPECT_EQ(poOutcome.error().Code(), "NoSuchKey"); } TEST_F(ObjectVersioningTest, ObjectOperationWithoutVersioningTest) { auto client = TestUtils::GetOssClientDefault(); auto bucketName = BucketName; bucketName.append("-no"); client->CreateBucket(CreateBucketRequest(bucketName)); auto content = std::make_shared("just for test."); auto key = TestUtils::GetObjectKey("ObjectOperationWithoutVersioningTest"); auto pOutcome = client->PutObject(bucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); EXPECT_EQ(pOutcome.result().VersionId().empty(), true); EXPECT_EQ(pOutcome.result().RequestId().size(), 24UL); auto gOutcome = client->GetObject(bucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().VersionId().empty(), true); EXPECT_EQ(gOutcome.result().RequestId().size(), 24UL); auto saOutcome = client->SetObjectAcl(SetObjectAclRequest(bucketName, key, CannedAccessControlList::Private)); EXPECT_EQ(saOutcome.isSuccess(), true); EXPECT_EQ(saOutcome.result().VersionId().empty(), true); EXPECT_EQ(saOutcome.result().RequestId().size(), 24UL); auto gaOutcome = client->GetObjectAcl(GetObjectAclRequest(bucketName, key)); EXPECT_EQ(gaOutcome.isSuccess(), true); EXPECT_EQ(gaOutcome.result().VersionId().empty(), true); EXPECT_EQ(gaOutcome.result().Acl(), CannedAccessControlList::Private); EXPECT_EQ(gaOutcome.result().RequestId().size(), 24UL); auto hOutcome = client->HeadObject(HeadObjectRequest(bucketName, key)); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId().empty(), true); hOutcome = client->GetObjectMeta(GetObjectMetaRequest(bucketName, key)); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().VersionId().empty(), true); auto key_link = key; key_link.append("-link"); CreateSymlinkRequest csRequest(bucketName, key_link); csRequest.SetSymlinkTarget(key); auto csOutcome = client->CreateSymlink(csRequest); EXPECT_EQ(csOutcome.isSuccess(), true); EXPECT_EQ(csOutcome.result().VersionId().empty(), true); EXPECT_EQ(csOutcome.result().RequestId().size(), 24UL); auto gsOutcome = client->GetSymlink(GetSymlinkRequest(bucketName, key_link)); EXPECT_EQ(gsOutcome.isSuccess(), true); EXPECT_EQ(gsOutcome.result().VersionId().empty(), true); EXPECT_EQ(gsOutcome.result().RequestId().size(), 24UL); auto key_copy = key; key_copy.append("-copy"); CopyObjectRequest coRequest(bucketName, key_copy); coRequest.setCopySource(bucketName, key); auto cOutcome = client->CopyObject(coRequest); EXPECT_EQ(cOutcome.isSuccess(), true); EXPECT_EQ(cOutcome.result().VersionId().empty(), true); EXPECT_EQ(cOutcome.result().RequestId().size(), 24UL); auto key_append = key; key_append.append("-append"); content->clear(); AppendObjectRequest aoRequest(bucketName, key_append, content); auto aOutcome = client->AppendObject(aoRequest); EXPECT_EQ(aOutcome.isSuccess(), true); EXPECT_EQ(aOutcome.result().VersionId().empty(), true); EXPECT_EQ(aOutcome.result().RequestId().size(), 24UL); auto dOutcome = client->DeleteObject(bucketName, key); EXPECT_EQ(dOutcome.isSuccess(), true); EXPECT_EQ(dOutcome.result().VersionId().empty(), true); EXPECT_EQ(dOutcome.result().RequestId().size(), 24UL); client->DeleteObject(bucketName, key_link); client->DeleteObject(bucketName, key_copy); client->DeleteObject(bucketName, key_append); client->DeleteBucket(bucketName); } TEST_F(ObjectVersioningTest, ObjectVersionsWithInvalidResponseBodyTest) { ListObjectVersionsRequest lsRequest(BucketName); lsRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto listOutcome = Client->ListObjectVersions(lsRequest); EXPECT_EQ(listOutcome.isSuccess(), false); EXPECT_EQ(listOutcome.error().Code(), "ParseXMLError"); DeleteObjectVersionsRequest dovRequest(BucketName); dovRequest.addObject(ObjectIdentifier("key")); dovRequest.setResponseStreamFactory([=]() { auto content = std::make_shared(); content->write("invlid data", 11); return content; }); auto dOutcome = Client->DeleteObjectVersions(dovRequest); EXPECT_EQ(dOutcome.isSuccess(), false); EXPECT_EQ(dOutcome.error().Code(), "ParseXMLError"); } TEST_F(ObjectVersioningTest, DeleteObjectVersionsResultTest) { std::string xml = R"( multipart.data CAEQNRiBgIDyz.6C0BYiIGQ2NWEwNmVhNTA3ZTQ3MzM5ODliYjM1ZTdjYjA4MDE1 )"; DeleteObjectVersionsResult result(xml); EXPECT_EQ(result.Quiet(), false); EXPECT_EQ(result.DeletedObjects().size(), 1U); EXPECT_EQ(result.DeletedObjects()[0].Key(), "multipart.data"); DeleteObjectVersionsResult result1(""); EXPECT_EQ(result1.Quiet(), true); xml = R"( multipart.data CAEQNRiBgIDyz.6C0BYiIGQ2NWEwNmVhNTA3ZTQ3MzM5ODliYjM1ZTdjYjA4MDE1 <> )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( )"; result1 = DeleteObjectVersionsResult(xml); xml = R"( invalid xml )"; result1 = DeleteObjectVersionsResult(xml); } TEST_F(ObjectVersioningTest, ObjectOperationNGTest) { DeleteObjectVersionsRequest dsRequest("Invalid-Bucket"); dsRequest.setQuiet(true); EXPECT_EQ(dsRequest.Quiet(), true); auto dsOutcome = Client->DeleteObjectVersions(dsRequest); EXPECT_EQ(dsOutcome.isSuccess(), false); ListObjectVersionsRequest loRequest("Invalid-Bucket"); auto lsOutcome = Client->ListObjectVersions(loRequest); EXPECT_EQ(lsOutcome.isSuccess(), false); } TEST_F(ObjectVersioningTest, ListObjectVersionsResultTest) { std::string xml = R"( oss-example example CAEQMxiBgICbof2D0BYiIGRhZjgwMzJiMjA3MjQ0ODE5MWYxZDYwMzJlZjU1YmMy 100 false example CAEQMxiBgICAof2D0BYiIDJhMGE3N2M1YTI1NDQzOGY5NTkyNTI3MGYyMzJmNTI2 false 2019-04-09T07:27:28.000Z 12345125285864390 12345125285864390 example CAEQMxiBgMDNoP2D0BYiIDE3MWUxNzgxZDQxNTRiODI5OGYwZGMwNGY3MzZjNDVm false 2019-04-09T07:27:28.000Z "250F8A0AE989679A22926A875F0A2B95" Normal 93731 Standard 12345125285864390 12345125285864390 )"; auto result = ListObjectVersionsResult(std::make_shared(xml)); EXPECT_EQ(result.ObjectVersionSummarys()[0].StorageClass(), "Standard"); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( url key )"; result = ListObjectVersionsResult(xml); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( )"; result = ListObjectVersionsResult(xml); xml = R"( invalid xml )"; result = ListObjectVersionsResult(xml); } TEST_F(ObjectVersioningTest, DeleteObjectVersionsRequestTest) { DeleteObjectVersionsRequest request(BucketName); request.setRequestPayer(RequestPayer::Requester); auto headers = request.Headers(); EXPECT_EQ(headers.at("x-oss-request-payer"), "requester"); } } } ================================================ FILE: test/src/Object/SelectObjectTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" #include "src/model/InputFormat.cc" namespace AlibabaCloud { namespace OSS { class SelectObjectTest : public ::testing::Test { protected: SelectObjectTest() { } ~SelectObjectTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { ClientConfiguration conf; conf.enableCrc64 = false; Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-selectobject"); CreateBucketOutcome outCome = Client->CreateBucket(CreateBucketRequest(BucketName)); EXPECT_EQ(outCome.isSuccess(), true); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static std::string sqlMessage; static std::string jsonMessage; }; std::shared_ptr SelectObjectTest::Client = nullptr; std::string SelectObjectTest::BucketName = ""; std::string SelectObjectTest::sqlMessage = std::string("name,school,company,age\r\n") .append("Lora Francis,School A,Staples Inc,27\r\n") .append("Eleanor Little,School B,\"Conectiv, Inc\",43\r\n") .append("Rosie Hughes,School C,Western Gas Resources Inc,44\r\n") .append("Lawrence Ross,School D,MetLife Inc.,24"); std::string SelectObjectTest::jsonMessage = std::string("{\n") .append("\t\"name\": \"Lora Francis\",\n") .append("\t\"age\": 27,\n") .append("\t\"company\": \"Staples Inc\"\n") .append("}\n") .append("{\n") .append("\t\"name\": \"Eleanor Little\",\n") .append("\t\"age\": 43,\n") .append("\t\"company\": \"Conectiv, Inc\"\n") .append("}\n") .append("{\n") .append("\t\"name\": \"Rosie Hughes\",\n") .append("\t\"age\": 44,\n") .append("\t\"company\": \"Western Gas Resources Inc\"\n") .append("}\n") .append("{\n") .append("\t\"name\": \"Lawrence Ross\",\n") .append("\t\"age\": 24,\n") .append("\t\"company\": \"MetLife Inc.\"\n") .append("}"); TEST_F(SelectObjectTest, NormalSelectObjectWithCsvDataTest) { std::string key = TestUtils::GetObjectKey("SqlObjectWithCsvData"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); // put object auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat csvInputFormat; csvInputFormat.setHeaderInfo(CSVHeader::Use); csvInputFormat.setRecordDelimiter("\r\n"); csvInputFormat.setFieldDelimiter(","); csvInputFormat.setQuoteChar("\""); csvInputFormat.setCommentChar("#"); selectRequest.setInputFormat(csvInputFormat); CSVOutputFormat csvOutputFormat; selectRequest.setOutputFormat(csvOutputFormat); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); // createSelectObjectMeta CreateSelectObjectMetaRequest metaRequest(BucketName, key); metaRequest.setInputFormat(csvInputFormat); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithOutputRawTest) { // put object std::string key = TestUtils::GetObjectKey("SqlObjectWithoutOutputRaw"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCsv(CSVHeader::Use, "\r\n", ",", "\"", "#"); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; outputCsv.setOutputRawData(true); outputCsv.setEnablePayloadCrc(false); selectRequest.setOutputFormat(outputCsv); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithKeepColumnsTest) { // put object std::string key = TestUtils::GetObjectKey("SqlObjectWithKeepColums"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCsv(CSVHeader::Use, "\r\n", ",", "\"", "#"); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; outputCsv.setKeepAllColumns(true); selectRequest.setOutputFormat(outputCsv); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithOutputHeaderTest) { // put object std::string key = TestUtils::GetObjectKey("SqlObjectWithOutputHeader"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCsv(CSVHeader::Use, "\r\n", ",", "\"", "#"); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; outputCsv.setOutputHeader(true); selectRequest.setOutputFormat(outputCsv); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithSkipPartialDataTrueTest) { // append message std::string errorSqlMessage(sqlMessage); errorSqlMessage.append("\r\n").append("1,,3\r\n").append("4,,6\r\n").append("7,8,9\r\n"); // put object std::string key = TestUtils::GetObjectKey("SqlObjectWithSkipPartialData"); std::shared_ptr content = std::make_shared(); *content << errorSqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select _1,_2,_3,_4 from ossobject"); CSVInputFormat inputCsv(CSVHeader::Use, "\r\n", ",", "\"", "#"); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; selectRequest.setOutputFormat(outputCsv); selectRequest.setSkippedRecords(true, 1); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidCsvLine"); selectRequest.setSkippedRecords(true, 5); auto retryOutcome = Client->SelectObject(selectRequest); EXPECT_EQ(retryOutcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithCrcCheckTest) { // put object std::string key = TestUtils::GetObjectKey("SqlObjectWithCrcCheck"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCsv(CSVHeader::Use, "\r\n", ",", "\"", "#"); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; outputCsv.setEnablePayloadCrc(true); selectRequest.setOutputFormat(outputCsv); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithGzipDataTest) { //put object std::string key("sample_data.csv.gz"); auto filePath = Config::GetDataPath(); filePath.append("sample_data.csv.gz"); auto putOutcome = Client->PutObject(BucketName, key, filePath); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCsv; inputCsv.setRecordDelimiter("\n"); inputCsv.setHeaderInfo(CSVHeader::Use); inputCsv.setCompressionType(CompressionType::GZIP); selectRequest.setInputFormat(inputCsv); CSVOutputFormat outputCsv; selectRequest.setOutputFormat(outputCsv); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectCreateMetaWithDelimitersTest) { // put object std::string key = TestUtils::GetObjectKey("SelectObjectCreateMetaWithDelimiters"); std::shared_ptr content = std::make_shared(); *content << "abc,def123,456|7891334\n777,888|999,222012345\n\n"; auto putOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(putOutcome.isSuccess(), true); // create meta CreateSelectObjectMetaRequest metaRequest(BucketName, key); CSVInputFormat csvInput; csvInput.setFieldDelimiter(","); csvInput.setRecordDelimiter("\n"); metaRequest.setInputFormat(csvInput); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().SplitsCount(), 1U); EXPECT_EQ(metaOutcome.result().RowsCount(), 3U); EXPECT_EQ(metaOutcome.result().ColsCount(), 3U); // create meta without overwrite csvInput.setFieldDelimiter("|"); csvInput.setRecordDelimiter("\n\n"); metaRequest.setInputFormat(csvInput); auto withoutOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(withoutOutcome.isSuccess(), true); EXPECT_EQ(withoutOutcome.result().SplitsCount(), 1U); EXPECT_EQ(withoutOutcome.result().RowsCount(), 3U); EXPECT_EQ(withoutOutcome.result().ColsCount(), 3U); // create meta with overwrite metaRequest.setOverWriteIfExists(true); metaRequest.setInputFormat(csvInput); auto withOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(withOutcome.isSuccess(), true); EXPECT_EQ(withOutcome.result().SplitsCount(), 1U); EXPECT_EQ(withOutcome.result().RowsCount(), 1U); EXPECT_EQ(withOutcome.result().ColsCount(), 3U); } TEST_F(SelectObjectTest, NormalSelectObjectCreateMetaWithQuotecharacterTest) { // put object std::string key = TestUtils::GetObjectKey("SelectObjectCreateMetaWithQuotecharacter"); std::shared_ptr content = std::make_shared(); *content << "'abc','def\n123','456'\n"; auto putOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(putOutcome.isSuccess(), true); // create meta CreateSelectObjectMetaRequest metaRequest(BucketName, key); CSVInputFormat inputCsv; inputCsv.setQuoteChar("'"); metaRequest.setInputFormat(inputCsv); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().SplitsCount(), 1U); EXPECT_EQ(metaOutcome.result().RowsCount(), 1U); EXPECT_EQ(metaOutcome.result().ColsCount(), 3U); // create new object auto anotherObjectOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(anotherObjectOutcome.isSuccess(), true); inputCsv.setQuoteChar("\""); metaRequest.setInputFormat(inputCsv); auto anotherOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(anotherOutcome.isSuccess(), true); EXPECT_EQ(anotherOutcome.result().SplitsCount(), 1U); EXPECT_EQ(anotherOutcome.result().RowsCount(), 2U); EXPECT_EQ(anotherOutcome.result().ColsCount(), 2U); } TEST_F(SelectObjectTest, NormalSelectObjectInvalidTest) { // put object std::string key = TestUtils::GetObjectKey("SelectObjectInvalid"); std::shared_ptr content = std::make_shared(); *content << "abc,def|123,456|7891334\n\n777,888|999,222|012345\n\n"; // select object CSVInputFormat inputCSV; CSVOutputFormat outputCSV; SelectObjectRequest request(BucketName, key); request.setInputFormat(inputCSV); request.setOutputFormat(outputCSV); auto outcome = Client->SelectObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "InvalidSqlParameter"); } TEST_F(SelectObjectTest, NormalValidateErrorTest) { std::string key = TestUtils::GetObjectKey("ValidateErrorObject"); { SelectObjectRequest request(BucketName, key); auto outcome = Client->SelectObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } { CreateSelectObjectMetaRequest request(BucketName, key); auto outcome = Client->CreateSelectObjectMeta(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } { SelectObjectRequest request(BucketName, key); CSVInputFormat inputCSV; JSONOutputFormat outputJSON; request.setInputFormat(inputCSV); request.setOutputFormat(outputJSON); auto outcome = Client->SelectObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } { SelectObjectRequest request(BucketName, key); CSVInputFormat inputCSV; inputCSV.setLineRange(3, 1); request.setInputFormat(inputCSV); CSVOutputFormat outputCSV; request.setOutputFormat(outputCSV); auto outcome = Client->SelectObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } { SelectObjectRequest request(BucketName, key); CSVInputFormat inputCSV; inputCSV.setSplitRange(3, 1); request.setInputFormat(inputCSV); CSVOutputFormat outputCSV; request.setOutputFormat(outputCSV); auto outcome = Client->SelectObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ValidateError"); } } TEST_F(SelectObjectTest, NormalSelectObjectWithRangeSet) { auto key = TestUtils::GetObjectKey("SqlObjectWithRangeSet"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); CSVInputFormat inputCSV; inputCSV.setHeaderInfo(CSVHeader::Use); inputCSV.setRecordDelimiter("\r\n"); CSVOutputFormat outputCSV; // create select object meta CreateSelectObjectMetaRequest metaRequest(BucketName, key); metaRequest.setInputFormat(inputCSV); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), true); // set line range SelectObjectRequest lineReauest(BucketName, key); lineReauest.setExpression("select * from ossobject"); inputCSV.setLineRange(0, 3); lineReauest.setInputFormat(inputCSV); lineReauest.setOutputFormat(outputCSV); auto lineOutcome = Client->SelectObject(lineReauest); EXPECT_EQ(lineOutcome.isSuccess(), true); // set split range SelectObjectRequest splitRequest(BucketName, key); splitRequest.setExpression("select * from ossobject"); inputCSV.setSplitRange(0, 3); splitRequest.setInputFormat(inputCSV); splitRequest.setOutputFormat(outputCSV); auto splitOutcome = Client->SelectObject(splitRequest); EXPECT_EQ(splitOutcome.isSuccess(), true); } TEST_F(SelectObjectTest, NormalSelectObjectWithJsonType) { auto key = TestUtils::GetObjectKey("SqlObjectWithJsonType"); std::shared_ptr content = std::make_shared(); *content << jsonMessage; PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); JSONInputFormat inputJson; inputJson.setJsonType(JsonType::LINES); inputJson.setCompressionType(CompressionType::NONE); JSONOutputFormat outputJson; outputJson.setEnablePayloadCrc(true); selectRequest.setInputFormat(inputJson); selectRequest.setOutputFormat(outputJson); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), true); // create select object meta CreateSelectObjectMetaRequest metaRequest(BucketName, key); metaRequest.setInputFormat(inputJson); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), true); EXPECT_EQ(metaOutcome.result().SplitsCount(), 1U); EXPECT_EQ(metaOutcome.result().RowsCount(), 4U); } TEST_F(SelectObjectTest, SelectObjectWithPayloadChecksumFailTest) { std::string key = TestUtils::GetObjectKey("SqlObjectWithCsvData"); std::shared_ptr content = std::make_shared(); *content << sqlMessage; PutObjectRequest putRequest(BucketName, key, content); // put object auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // select object SelectObjectRequest selectRequest(BucketName, key); selectRequest.setExpression("select * from ossobject"); CSVInputFormat inputCSV; inputCSV.setHeaderInfo(CSVHeader::Use); inputCSV.setRecordDelimiter("\r\n"); inputCSV.setFieldDelimiter(","); inputCSV.setQuoteChar("\""); inputCSV.setCommentChar("#"); selectRequest.setInputFormat(inputCSV); CSVOutputFormat outputCSV; selectRequest.setOutputFormat(outputCSV); selectRequest.setFlags(selectRequest.Flags() | (1U << 29)); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "SelectObjectError"); } TEST_F(SelectObjectTest, CreateSelectObjectMetaWithPayloadChecksumFailTest) { unsigned char data[] = { 0x01, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x2e, 0x78, 0x95, 0x1f, 0x00}; std::shared_ptr content = std::make_shared(); for (int i = 0; i < 53; i++) { *content << data[i]; } CreateSelectObjectMetaResult result("BucketName", "ObjectName", "RequestId",content); } TEST_F(SelectObjectTest, CreateSelectObjectMetaWithParseIOStreamFailTest) { unsigned char data[] = { 0x01, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00}; std::shared_ptr content = std::make_shared(); for (int i = 0; i < 40; i++) { *content << data[i]; } CreateSelectObjectMetaResult result("BucketName", "ObjectName", "RequestId", content); } TEST_F(SelectObjectTest, InvalidObjectKeyTest) { auto content = TestUtils::GetRandomStream(100); for (auto const& invalidKeyName : TestUtils::InvalidObjectKeyNamesList()) { // select object SelectObjectRequest selectRequest(BucketName, invalidKeyName); selectRequest.setExpression("select * from ossobject"); CSVInputFormat csvInputFormat; csvInputFormat.setHeaderInfo(CSVHeader::Use); csvInputFormat.setRecordDelimiter("\r\n"); csvInputFormat.setFieldDelimiter(","); csvInputFormat.setQuoteChar("\""); csvInputFormat.setCommentChar("#"); selectRequest.setInputFormat(csvInputFormat); CSVOutputFormat csvOutputFormat; selectRequest.setOutputFormat(csvOutputFormat); auto outcome = Client->SelectObject(selectRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_STREQ(outcome.error().Code().c_str(), "ValidateError"); break; } } TEST_F(SelectObjectTest, CreateSelectObjectMetaRequestValidateTest) { CreateSelectObjectMetaRequest request("INVALIDNAME", "SqlObjectWithCsvData"); auto metaOutcome = Client->CreateSelectObjectMeta(request); unsigned char data[] = { 0x01, 0x80, 0x00, 0x08, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 }; std::shared_ptr content = std::make_shared(); for (int i = 0; i < 40; i++) { *content << data[i]; } CreateSelectObjectMetaResult result("BucketName", "ObjectName", "RequestId", content); } TEST_F(SelectObjectTest, InputFormatFunctionTest) { int64_t range1[2] = { 2,1 }; Range_Str("test",true, range1); int64_t range2[2] = { -1,1 }; Range_Str("test", true, range2); int64_t range3[2] = { 1,-1 }; Range_Str("test", true, range3); CSVInputFormat input; input.HeaderInfo(); input.RecordDelimiter(); input.FieldDelimiter(); input.QuoteChar(); input.CommentChar(); JSONInputFormat json(JsonType::DOCUMENT); json.setParseJsonNumberAsString(true); json.JsonInfo(); json.ParseJsonNumberAsString(); } TEST_F(SelectObjectTest, CSVOutputFormatFunctionTest) { CSVOutputFormat csvOutputFormat; csvOutputFormat.setRecordDelimiter("test1"); csvOutputFormat.setFieldDelimiter("test2"); csvOutputFormat.FieldDelimiter(); csvOutputFormat.RecordDelimiter(); JSONOutputFormat format; format.setRecordDelimiter("test1"); format.RecordDelimiter(); } TEST_F(SelectObjectTest, SelectObjectRequestTest) { CSVOutputFormat csvOutputFormat; CSVInputFormat csvInputFormat; SelectObjectRequest selectRequest(BucketName, "key"); std::shared_ptr body; std::string str, input_str, output_str; std::istreambuf_iterator isb, end; csvOutputFormat.setFieldDelimiter(""); selectRequest.setOutputFormat(csvOutputFormat); csvInputFormat.setQuoteChar(""); csvInputFormat.setCommentChar(""); csvInputFormat.setFieldDelimiter(""); selectRequest.setInputFormat(csvInputFormat); body = selectRequest.Body(); isb = std::istreambuf_iterator(*body.get()); str = std::string(isb, end); input_str = str.substr(0, str.find("")); output_str = str.substr(str.find("")); EXPECT_EQ(input_str.find("") != std::string::npos, true); EXPECT_EQ(input_str.find("") != std::string::npos, true); EXPECT_EQ(input_str.find("") != std::string::npos, true); EXPECT_EQ(output_str.find("") != std::string::npos, true); JSONInputFormat inputJson; inputJson.setJsonType(JsonType::LINES); inputJson.setCompressionType(CompressionType::NONE); JSONOutputFormat outputJson; outputJson.setEnablePayloadCrc(false); outputJson.setKeepAllColumns(true); outputJson.setOutputRawData(true); outputJson.setOutputHeader(true); selectRequest.setInputFormat(inputJson); selectRequest.setOutputFormat(outputJson); body = selectRequest.Body(); isb = std::istreambuf_iterator(*body.get()); str = std::string(isb, end); output_str = str.substr(str.find("")); EXPECT_EQ(output_str.find("true") != std::string::npos, true); EXPECT_EQ(output_str.find("true") != std::string::npos, true); EXPECT_EQ(output_str.find("true") != std::string::npos, true); EXPECT_EQ(output_str.find("false") != std::string::npos, true); } TEST_F(SelectObjectTest, CreateSelectObjectMetaRequestBranchTest) { CreateSelectObjectMetaRequest request(BucketName,"test"); request.setOverWriteIfExists(false); Client->CreateSelectObjectMeta(request); } TEST_F(SelectObjectTest, CreateSelectObjectMetaWithInvalidResponseBodyTest) { std::string key = TestUtils::GetObjectKey("CreateSelectObjectMetaWithInvalidResponseBodyTest"); // put object std::shared_ptr content = std::make_shared(sqlMessage); PutObjectRequest putRequest(BucketName, key, content); auto putOutcome = Client->PutObject(putRequest); EXPECT_EQ(putOutcome.isSuccess(), true); // createSelectObjectMeta CreateSelectObjectMetaRequest metaRequest(BucketName, key); CSVInputFormat csvInputFormat; csvInputFormat.setHeaderInfo(CSVHeader::Use); csvInputFormat.setRecordDelimiter("\r\n"); csvInputFormat.setFieldDelimiter(","); csvInputFormat.setQuoteChar("\""); csvInputFormat.setCommentChar("#"); metaRequest.setInputFormat(csvInputFormat); metaRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); unsigned char invalid_pattern[] = { 0x01, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x2e, 0x78, 0x95, 0x1f, 0x00}; data->write((const char*)invalid_pattern, sizeof(invalid_pattern)); return data; }); auto metaOutcome = Client->CreateSelectObjectMeta(metaRequest); EXPECT_EQ(metaOutcome.isSuccess(), false); EXPECT_EQ(metaOutcome.error().Code(), "ParseIOStreamError"); metaRequest.setResponseStreamFactory([=]() { auto data = std::make_shared(); unsigned char invalid_pattern[] = { 0x01, 0x80, 0x00, 0x06, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x2e, 0x00, 0x00, 0x00, 0x00 }; data->write((const char*)invalid_pattern, sizeof(invalid_pattern)); return data; }); metaOutcome = Client->CreateSelectObjectMeta(metaRequest); } } } ================================================ FILE: test/src/Other/Crc64Test.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class Crc64Test : public ::testing::Test { protected: Crc64Test() { } ~Crc64Test() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-crctest"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } void SetUp() override { } void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr Crc64Test::Client = nullptr; std::string Crc64Test::BucketName = ""; TEST_F(Crc64Test, CalcCRCTest) { std::string data1("123456789"); uint64_t crc1_pat = UINT64_C(0x995dc9bbdf1939fa); uint64_t crc1 = CRC64::CalcCRC(0, (void *)(data1.c_str()), data1.size()); EXPECT_EQ(crc1, crc1_pat); std::string data2("This is a test of the emergency broadcast system."); uint64_t crc2_pat = UINT64_C(0x27db187fc15bbc72); uint64_t crc2 = CRC64::CalcCRC(0, (void *)(data2.c_str()), data2.size()); EXPECT_EQ(crc2, crc2_pat); } TEST_F(Crc64Test, CalcCRCWithEndingFlagTest) { std::string data1("123456789"); std::string data2("This is a test of the emergency broadcast system."); //little uint64_t crc1_pat = UINT64_C(0x995dc9bbdf1939fa); uint64_t crc1 = CRC64::CalcCRC(0, (void *)(data1.c_str()), data1.size(), true); EXPECT_EQ(crc1, crc1_pat); uint64_t crc2_pat = UINT64_C(0x27db187fc15bbc72); uint64_t crc2 = CRC64::CalcCRC(0, (void *)(data2.c_str()), data2.size(), true); EXPECT_EQ(crc2, crc2_pat); //big const char *str1 = "12345678"; const char *str2 = "87654321"; crc1 = CRC64::CalcCRC(0, (void *)str1, 8, false); crc2 = CRC64::CalcCRC(0, (void *)str2, 8, true); } TEST_F(Crc64Test, CombineCRCTest) { std::string data1("123456789"); uint64_t crc1_pat = UINT64_C(0x995dc9bbdf1939fa); uint64_t crc1 = CRC64::CalcCRC(0, (void *)(data1.c_str()), data1.size()); EXPECT_EQ(crc1, crc1_pat); std::string data2("This is a test of the emergency broadcast system."); uint64_t crc2_pat = UINT64_C(0x27db187fc15bbc72); uint64_t crc2 = CRC64::CalcCRC(0, (void *)(data2.c_str()), data2.size()); EXPECT_EQ(crc2, crc2_pat); std::string data3; data3.append(data1).append(data2); uint64_t crc3 = CRC64::CalcCRC(0, (void *)(data3.c_str()), data3.size()); uint64_t crc4 = CRC64::CombineCRC(crc1, crc2, data2.size()); EXPECT_EQ(crc3, crc4); uint64_t crc5 = CombineCRC64(crc1, crc2, data2.size()); EXPECT_EQ(crc3, crc5); } TEST_F(Crc64Test, PubObjectCrc64HeaderTest) { std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("PubObjectCrc64HeaderTest"); auto content = std::make_shared(); *content << data; auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, PutObjectCrc64EnablePositiveTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("PutObjectCrc64EnablePositiveTest"); auto content = std::make_shared(); *content << data; auto outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, PutObjectCrc64EnableNegativeTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); auto key = TestUtils::GetObjectKey("PutObjectCrc64EnableNegativeTest"); auto content = std::make_shared(); *content << data; PutObjectRequest request(BucketName, key, content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.PutObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100001"); } TEST_F(Crc64Test, PutObjectCrc64DisablePositiveTest) { //default is enable ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("PutObjectCrc64DisablePositiveTest"); auto content = std::make_shared(); *content << data; PutObjectRequest request(BucketName, key, content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.PutObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, UploadPartCrc64EnablePositiveTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("UploadPartCrc64EnablePositiveTest"); auto content = std::make_shared(); *content << data; auto initOutcome = client.InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key)); EXPECT_EQ(initOutcome.isSuccess(), true); UploadPartRequest request(BucketName, key, 1, initOutcome.result().UploadId(), content); auto outcome = client.UploadPart(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, UploadPartCrc64EnableNegativeTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); auto key = TestUtils::GetObjectKey("UploadPartCrc64EnableNegativeTest"); auto content = std::make_shared(); *content << data; auto initOutcome = client.InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key)); EXPECT_EQ(initOutcome.isSuccess(), true); UploadPartRequest request(BucketName, key, 1, initOutcome.result().UploadId(), content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.UploadPart(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100001"); } TEST_F(Crc64Test, UploadPartCrc64DisablePositiveTest) { //default is enable ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("UploadPartCrc64DisablePositiveTest"); auto content = std::make_shared(); *content << data; auto initOutcome = client.InitiateMultipartUpload(InitiateMultipartUploadRequest(BucketName, key)); EXPECT_EQ(initOutcome.isSuccess(), true); UploadPartRequest request(BucketName, key, 1, initOutcome.result().UploadId(), content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.UploadPart(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, GetObjectCrc64EnablePositiveTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("GetObjectCrc64EnablePositiveTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); GetObjectRequest request(BucketName, key); auto outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CRC64(), crc); } TEST_F(Crc64Test, GetObjectCrc64EnableNegativeTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); auto key = TestUtils::GetObjectKey("GetObjectCrc64EnableNegativeTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); GetObjectRequest request(BucketName, key); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100001"); } TEST_F(Crc64Test, GetObjectCrc64DisablePositiveTest) { //default is enable ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("GetObjectCrc64DisablePositiveTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); GetObjectRequest request(BucketName, key); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CRC64(), crc); } TEST_F(Crc64Test, GetObjectCrc64SaveToHeaderTest) { //default is enable ClientConfiguration conf; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("GetObjectCrc64SaveToHeaderPositiveTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); GetObjectRequest request(BucketName, key); request.setFlags(request.Flags() | REQUEST_FLAG_SAVE_CLIENT_CRC64); auto outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); uint64_t clientCRC64 = std::strtoull(outcome.result().Metadata().HttpMetaData().at("x-oss-hash-crc64ecma-by-client").c_str(), nullptr, 10); EXPECT_EQ(crc, clientCRC64); //range request request.setRange(0, 1); outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); crc = CRC64::CalcCRC(0, (void *)(data.c_str()), 2); clientCRC64 = std::strtoull(outcome.result().Metadata().HttpMetaData().at("x-oss-hash-crc64ecma-by-client").c_str(), nullptr, 10); EXPECT_EQ(crc, clientCRC64); //NoSaveCRC request.setFlags(request.Flags() & (~REQUEST_FLAG_SAVE_CLIENT_CRC64)); request.setRange(0, 1); outcome = client.GetObject(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_TRUE(outcome.result().Metadata().HttpMetaData().find("x-oss-hash-crc64ecma-by-client") == outcome.result().Metadata().HttpMetaData().end()); } TEST_F(Crc64Test, PutObjectByUrlCrc64EnablePositiveTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("PutObjectByUrlCrc64EnablePositiveTest"); auto content = std::make_shared(); *content << data; auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Put)); PutObjectByUrlRequest request(urlOutcome.result(), content); auto outcome = client.PutObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, PutObjectByUrlCrc64EnableNegativeTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); auto key = TestUtils::GetObjectKey("PutObjectByUrlCrc64EnableNegativeTest"); auto content = std::make_shared(); *content << data; auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Put)); PutObjectByUrlRequest request(urlOutcome.result(), content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.PutObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100001"); } TEST_F(Crc64Test, PutObjectByUrlCrc64DisablePositiveTest) { //default is enable ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("PutObjectByUrlCrc64DisablePositiveTest"); auto content = std::make_shared(); *content << data; auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Put)); PutObjectByUrlRequest request(urlOutcome.result(), content); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.PutObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().CRC64(), crc); } TEST_F(Crc64Test, GetObjectByUrlCrc64EnablePositiveTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("GetObjectByUrlCrc64EnablePositiveTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Get)); GetObjectByUrlRequest request(urlOutcome.result()); auto outcome = client.GetObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CRC64(), crc); } TEST_F(Crc64Test, GetObjectByUrlCrc64EnableNegativeTest) { //default is enable OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); std::string data("This is a test of the emergency broadcast system."); auto key = TestUtils::GetObjectKey("GetObjectByUrlCrc64EnableNegativeTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Get)); GetObjectByUrlRequest request(urlOutcome.result()); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.GetObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100001"); } TEST_F(Crc64Test, GetObjectByUrlCrc64DisablePositiveTest) { //default is enable ClientConfiguration conf; conf.enableCrc64 = false; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string data("This is a test of the emergency broadcast system."); uint64_t crc = CRC64::CalcCRC(0, (void *)(data.c_str()), data.size()); auto key = TestUtils::GetObjectKey("GetObjectByUrlCrc64DisablePositiveTest"); auto content = std::make_shared(); *content << data; client.PutObject(BucketName, key, content); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); auto urlOutcome = client.GeneratePresignedUrl(GeneratePresignedUrlRequest(BucketName, key, Http::Get)); GetObjectByUrlRequest request(urlOutcome.result()); request.setFlags(request.Flags() | 0x80000000); auto outcome = client.GetObjectByUrl(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Metadata().CRC64(), crc); } } } ================================================ FILE: test/src/Other/EndpointTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/Utils.h" namespace AlibabaCloud { namespace OSS { class EndpointTest : public ::testing::Test { protected: EndpointTest() { } ~EndpointTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-endpoint"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); TestUtils::CleanBucket(client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr EndpointTest::Client = nullptr; std::string EndpointTest::BucketName = ""; TEST_F(EndpointTest, PathStyleTest) { auto conf = ClientConfiguration(); conf.isPathStyle = true; auto client = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto gboutcome = client->GetBucketAcl(BucketName); EXPECT_EQ(gboutcome.isSuccess(), false); EXPECT_EQ(gboutcome.error().Code(), "SecondLevelDomainForbidden"); auto hooutcome = client->GetObject(BucketName, "no-exist-key"); EXPECT_EQ(hooutcome.isSuccess(), false); EXPECT_EQ(hooutcome.error().Code(), "SecondLevelDomainForbidden"); auto looutcome = client->ListObjects(BucketName); EXPECT_EQ(looutcome.isSuccess(), false); EXPECT_EQ(looutcome.error().Code(), "SecondLevelDomainForbidden"); ListBucketsRequest lbrequest; lbrequest.setPrefix(BucketName); lbrequest.setMaxKeys(100); auto lboutcome = client->ListBuckets(lbrequest); EXPECT_EQ(lboutcome.isSuccess(), true); EXPECT_EQ(lboutcome.result().Buckets().size(), 1UL); GeneratePresignedUrlRequest request(BucketName, "no-exist-key", Http::Get); auto urlOutcome = client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); std::string path = "/" + BucketName + "/no-exist-key"; EXPECT_EQ(urlOutcome.result().find(path.c_str()) != std::string::npos, true); } TEST_F(EndpointTest, CnameTest) { Url url(Config::Endpoint); auto cnameEndpoint = BucketName + "." + url.authority(); auto conf = ClientConfiguration(); conf.isCname = true; auto client = std::make_shared(cnameEndpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto gboutcome = client->GetBucketAcl(BucketName); EXPECT_EQ(gboutcome.isSuccess(), true); EXPECT_EQ(gboutcome.result().Acl(), CannedAccessControlList::Private); auto hooutcome = client->GetObject(BucketName, "no-exist-key"); EXPECT_EQ(hooutcome.isSuccess(), false); EXPECT_EQ(hooutcome.error().Code(), "NoSuchKey"); auto looutcome = client->ListObjects(BucketName); EXPECT_EQ(looutcome.isSuccess(), true); ListBucketsRequest lbrequest; lbrequest.setPrefix(BucketName); lbrequest.setMaxKeys(100); auto lboutcome = client->ListBuckets(lbrequest); EXPECT_EQ(lboutcome.isSuccess(), false); EXPECT_EQ(lboutcome.error().Code(), "SignatureDoesNotMatch"); EXPECT_EQ(lboutcome.error().Host(), cnameEndpoint); GeneratePresignedUrlRequest request(BucketName, "no-exist-key", Http::Get); auto urlOutcome = client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Code(), "NoSuchKey"); } } } ================================================ FILE: test/src/Other/FileSystemUtilsFunctionTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "../Config.h" #include "../Utils.h" #include namespace AlibabaCloud { namespace OSS { class FileSystemUtilsFunctionTest : public ::testing::Test { protected: FileSystemUtilsFunctionTest() { } ~FileSystemUtilsFunctionTest() override { } void SetUp() override { } void TearDown() override { } }; TEST_F(FileSystemUtilsFunctionTest, CreateRemoveDirectoryWithoutPathSeparatorTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(CreateDirectory(testPath)); EXPECT_TRUE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(RemoveDirectory(testPath)); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); } TEST_F(FileSystemUtilsFunctionTest, CreateRemoveDirectoryWithPathSeparatorTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); testPath.push_back(PATH_DELIMITER); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(CreateDirectory(testPath)); EXPECT_TRUE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(RemoveDirectory(testPath)); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); } TEST_F(FileSystemUtilsFunctionTest, CreateRemoveDirectoryWithMultiSubTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); std::string upperFolder; time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); upperFolder = testPath; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(CreateDirectory(testPath)); EXPECT_TRUE(GetPathLastModifyTime(testPath, t)); EXPECT_FALSE(RemoveDirectory(upperFolder)); EXPECT_TRUE(GetPathLastModifyTime(upperFolder, t)); EXPECT_TRUE(RemoveDirectory(testPath)); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(RemoveDirectory(upperFolder)); EXPECT_FALSE(GetPathLastModifyTime(upperFolder, t)); } #ifdef _WIN32 TEST_F(FileSystemUtilsFunctionTest, CreateDirectoryNegativeTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); std::string upperFolder; time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName(":")); upperFolder = testPath; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryNegativeTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_FALSE(CreateDirectory(testPath)); } #endif TEST_F(FileSystemUtilsFunctionTest, GetFolderLastModifyTimeTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(CreateDirectory(testPath)); EXPECT_TRUE(GetPathLastModifyTime(testPath, t)); time_t t1; testPath.push_back(PATH_DELIMITER); EXPECT_TRUE(GetPathLastModifyTime(testPath, t1)); EXPECT_EQ(t, t1); EXPECT_TRUE(RemoveDirectory(testPath)); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); } TEST_F(FileSystemUtilsFunctionTest, GetFileLastModifyTimeTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); std::fstream fs(testPath, std::ios::out | std::ios::binary); fs << "just for test for" << __FUNCTION__ << std::endl; fs.close(); EXPECT_TRUE(GetPathLastModifyTime(testPath, t)); EXPECT_TRUE(RemoveFile(testPath)); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); } TEST_F(FileSystemUtilsFunctionTest, RemoveFileTest) { std::string testPath = TestUtils::GetExecutableDirectory(); EXPECT_FALSE(testPath.empty()); time_t t; testPath.push_back(PATH_DELIMITER); testPath.append(TestUtils::GetTargetFileName("CreateDirectoryTest")); EXPECT_FALSE(GetPathLastModifyTime(testPath, t)); std::fstream fs(testPath, std::ios::out | std::ios::binary); fs << "just for test for" << __FUNCTION__ < #include #include #include #include #include "../Config.h" #include "../Utils.h" #include #include #include #include "src/utils/FileSystemUtils.h" #include "src/utils/Utils.h" #include "src/client/Client.h" #include "src/OssClientImpl.h" #ifdef GetObject #undef GetObject #endif // GetObject namespace AlibabaCloud { namespace OSS { class HttpClientTest : public ::testing::Test { protected: HttpClientTest() { } ~HttpClientTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-httpclienttest"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } void SetUp() override { } void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; class Timer { public: Timer() : begin_(std::chrono::high_resolution_clock::now()) {} void reset() { begin_ = std::chrono::high_resolution_clock::now(); } int64_t elapsed() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } int64_t elapsed_micro() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } private: std::chrono::time_point begin_; }; }; std::shared_ptr HttpClientTest::Client = nullptr; std::string HttpClientTest::BucketName = ""; TEST_F(HttpClientTest, WaitForRetryTimeoutTest) { ClientConfiguration conf; CurlHttpClient httpClient(conf); Timer timer; long timeouts[] = { 0, 1000, 2000, 3000, 5500, 10000 }; for (auto t : timeouts) { timer.reset(); httpClient.waitForRetry(t); long elapsed = static_cast(timer.elapsed()); EXPECT_NEAR(elapsed, t, 100); EXPECT_TRUE(httpClient.isEnable()); } } TEST_F(HttpClientTest, WaitForRetryTimeoutAsyncTest) { ClientConfiguration conf; CurlHttpClient httpClient(conf); CurlHttpClient *client = &httpClient; Timer timer; long timeouts[] = { 1000, 2000, 3000, 5500, 10000 }; for (auto t : timeouts) { timer.reset(); auto f = std::async(std::launch::async, [client, t]()->void { client->waitForRetry(t); }); f.get(); long elapsed = static_cast(timer.elapsed()); EXPECT_NEAR(elapsed, t, 100); } } TEST_F(HttpClientTest, WaitForRetryTimeoutDisableTest) { ClientConfiguration conf; CurlHttpClient httpClient(conf); httpClient.disable(); Timer timer; long timeouts[] = { 1000, 2000, 3000, 5500, 10000 }; for (auto t : timeouts) { timer.reset(); httpClient.waitForRetry(t); long elapsed = static_cast(timer.elapsed()); EXPECT_NEAR(elapsed, 0, 100); } } TEST_F(HttpClientTest, WaitForRetryTimeoutInterruptTest) { ClientConfiguration conf; CurlHttpClient httpClient(conf); CurlHttpClient *client = &httpClient; Timer timer; long timeouts[] = { 1000, 2000, 3000, 5500, 10000 }; for (auto t : timeouts) { timer.reset(); client->enable(); auto f = std::async(std::launch::async, [client, t]()->void { client->waitForRetry(t); }); f.wait_for(std::chrono::milliseconds(t / 2)); client->disable(); f.get(); long elapsed = static_cast(timer.elapsed()); EXPECT_NEAR(elapsed, t/2, 100); EXPECT_FALSE(client->isEnable()); } } TEST_F(HttpClientTest, ResourceManagerWithOneConnnectionTest) { ClientConfiguration conf; conf.maxConnections = 1; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto keyPrefix = TestUtils::GetObjectKey("ResourceManagerWithOneConnnectionTest"); std::vector Callables; //SetLogLevel(LogLevel::LogAll); //SetLogCallback(TestUtils::LogPrintCallback); for (int i = 0; i < 5; i++) { std::string key = keyPrefix; key.append("-").append(std::to_string(i)); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto outcomeCallable = client.PutObjectCallable(request); Callables.emplace_back(std::move(outcomeCallable)); } for (size_t i = 0; i < Callables.size(); i++) { auto outcome = Callables[i].get(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_FALSE(outcome.result().ETag().empty()); } //SetLogLevel(LogLevel::LogOff); //SetLogCallback(nullptr); } TEST_F(HttpClientTest, ResourceManagerWithTwoConnnectionTest) { ClientConfiguration conf; conf.maxConnections = 2; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto keyPrefix = TestUtils::GetObjectKey("ResourceManagerWithTwoConnnectionTest"); std::vector Callables; //SetLogLevel(LogLevel::LogAll); //SetLogCallback(TestUtils::LogPrintCallback); for (int i = 0; i < 5; i++) { std::string key = keyPrefix; key.append("-").append(std::to_string(i)); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto outcomeCallable = client.PutObjectCallable(request); Callables.emplace_back(std::move(outcomeCallable)); } for (size_t i = 0; i < Callables.size(); i++) { auto outcome = Callables[i].get(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_FALSE(outcome.result().ETag().empty()); } //SetLogLevel(LogLevel::LogOff); //SetLogCallback(nullptr); } TEST_F(HttpClientTest, HttpRequestTest) { HttpRequest request(Http::Get); EXPECT_EQ(request.method(), Http::Get); request.setMethod(Http::Put); EXPECT_EQ(request.method(), Http::Put); } TEST_F(HttpClientTest, HttpResponseTest) { auto request = std::make_shared(Http::Get); request->setResponseStreamFactory([=]() { return nullptr; }); HttpResponse response(request); const char * msg = "just for test"; response.setStatusMsg(msg); EXPECT_STREQ(response.statusMsg().c_str(), msg); std::string msgStr("just for test"); response.setStatusMsg(msgStr); EXPECT_EQ(response.statusMsg(), msgStr); } TEST_F(HttpClientTest, DisableEnableRequestTest) { ClientConfiguration conf; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); client.DisableRequest(); auto outcome = client.ListBuckets(); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:100002"); client.EnableRequest(); outcome = client.ListBuckets(); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(HttpClientTest, DisableRequestWhenDoingTest) { ClientConfiguration conf; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto keyPrefix = TestUtils::GetObjectKey("DisableRequestAfterMakeRequestTest"); auto tmpFile = TestUtils::GetTargetFileName("DisableRequestAfterMakeRequestTest"); TestUtils::WriteRandomDatatoFile(tmpFile, 50 * 1024 * 1024); std::vector Callables; SetLogLevel(LogLevel::LogAll); SetLogCallback(TestUtils::LogPrintCallback); for (int i = 0; i < 4; i++) { std::string key = keyPrefix; key.append("-").append(std::to_string(i)); auto content = std::make_shared(tmpFile, std::ios::in | std::ios::binary); PutObjectRequest request(BucketName, key, content); auto outcomeCallable = client.PutObjectCallable(request); Callables.emplace_back(std::move(outcomeCallable)); } std::this_thread::sleep_for(std::chrono::milliseconds(100)); client.DisableRequest(); for (size_t i = 0; i < Callables.size(); i++) { auto outcome = Callables[i].get(); EXPECT_EQ(outcome.isSuccess(), false); if (outcome.error().Code() == "ClientError:100002" || outcome.error().Code() == "ClientError:200042") { EXPECT_TRUE(true); } else { EXPECT_TRUE(false); } } client.EnableRequest(); SetLogLevel(LogLevel::LogOff); SetLogCallback(nullptr); RemoveFile(tmpFile); } TEST_F(HttpClientTest, PutObjectWithSameContentTest) { //seek to the first position when request done (fail or sucess). std::string key = TestUtils::GetObjectKey("PutObjectWithSameContentTest"); auto content = TestUtils::GetRandomStream(1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); pOutcome = Client->PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); auto outome = Client->GetObject(BucketName, key); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string memMd5 = ComputeContentMD5(*outome.result().Content()); EXPECT_EQ(oriMd5, memMd5); } class DefaultRateLimiter : public RateLimiter { public: DefaultRateLimiter() :rate_(0) {}; ~DefaultRateLimiter() {}; virtual void setRate(int rate) { rate_ = rate; }; virtual int Rate() const { return rate_; }; private: int rate_; }; TEST_F(HttpClientTest, GetObjectToSameContentTest) { ClientConfiguration conf; auto rateLimiter = std::make_shared(); conf.recvRateLimiter = rateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); //seek to the first position when get object fail. std::string key = TestUtils::GetObjectKey("GetObjectToSameContentTest"); auto content = TestUtils::GetRandomStream(2*1024*1024); PutObjectRequest request(BucketName, key, content); auto pOutcome = client.PutObject(request); EXPECT_EQ(pOutcome.isSuccess(), true); //SetLogLevel(LogLevel::LogAll); //SetLogCallback(TestUtils::LogPrintCallback); rateLimiter->setRate(256); auto tmpFile = TestUtils::GetTargetFileName("GetObjectToSameContentTest"); auto fcontent = std::make_shared(tmpFile, std::ios::out| std::ios::binary); GetObjectRequest gRequest(BucketName, key); gRequest.setResponseStreamFactory([=]() {return fcontent; }); auto callable = client.GetObjectCallable(gRequest); std::this_thread::sleep_for(std::chrono::milliseconds(1000)); client.DisableRequest(); auto outome = callable.get(); EXPECT_EQ(outome.isSuccess(), false); if (!outome.isSuccess()) { rateLimiter->setRate(0); client.EnableRequest(); callable = client.GetObjectCallable(gRequest); outome = callable.get(); EXPECT_EQ(outome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content); std::string fileMd5 = TestUtils::GetFileMd5(tmpFile); EXPECT_EQ(oriMd5, fileMd5); } client.EnableRequest(); //SetLogLevel(LogLevel::LogOff); //SetLogCallback(nullptr); fcontent->close(); RemoveFile(tmpFile); } TEST_F(HttpClientTest, ResponseBodyToUserContentPasitiveTest) { //don't write error response to user content std::string key = TestUtils::GetObjectKey("ResponseBodyToUserContentPasitiveTest"); auto content = std::make_shared(); GetObjectRequest gRequest(BucketName, key); gRequest.setResponseStreamFactory([=]() {return content; }); auto outcome = Client->GetObject(gRequest); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(content->str().empty(), true); } TEST_F(HttpClientTest, SetNetworkInterfaceTest) { ClientConfiguration conf; conf.networkInterface = "eth100"; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string key = TestUtils::GetObjectKey("UseInvalidNetworkInterfaceTest"); auto content = std::make_shared(); auto outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:200045"); #ifdef _WIN32 conf.networkInterface = ""; #else conf.networkInterface = "eth0"; #endif OssClient client1(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content1 = std::make_shared(); outcome = client1.PutObject(BucketName, key, content1); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_TRUE(outcome.result().RequestId().size() > 0); } TEST_F(HttpClientTest, SetInvalidProxyTest) { ClientConfiguration conf; conf.connectTimeoutMs = 2000; conf.proxyHost = "127.10.10.10"; conf.proxyPort = 10000; OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); std::string key = TestUtils::GetObjectKey("SetInvalidProxyTest"); auto content = std::make_shared(); auto outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:200007"); } TEST_F(HttpClientTest, ResponseBodyNegativeTest) { //don't write error response to user content std::string key = TestUtils::GetObjectKey("ResponseBodyToUserContentPasitiveTest"); auto content = std::make_shared("test"); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); GetObjectRequest gRequest(BucketName, key); gRequest.setResponseStreamFactory([=]() { return nullptr; }); auto gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Message(), "Failed writing received data to disk/application. Caused by content is null."); gRequest.setResponseStreamFactory([=]() { auto ret = std::make_shared(); ret->setstate(std::ios::failbit); return ret; }); gOutcome = Client->GetObject(gRequest); EXPECT_EQ(gOutcome.isSuccess(), false); EXPECT_EQ(gOutcome.error().Message(), "Failed writing received data to disk/application. Caused by content is in fail state(Logical error on i/o operation)."); } TEST_F(HttpClientTest, SetDateTimeTest) { //don't write error response to user content std::string key = TestUtils::GetObjectKey("SetDateTimeTest"); auto content = std::make_shared("test"); auto meta = ObjectMetaData(); auto localTime = std::time(nullptr) - 20*60; meta.addHeader("x-oss-date", ToGmtTime(localTime)); auto outcome = Client->PutObject(BucketName, key, content, meta); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Message(), "The difference between the request time and the current time is too large."); } class Classtest : public Client { public: Classtest(const std::string& servicename, const ClientConfiguration& configuration) : Client(servicename, configuration) {} virtual ~Classtest() { } void testfunction() { serviceName(); hasResponseError(nullptr); } protected: std::shared_ptr buildHttpRequest(const std::string& endpoint, const ServiceRequest& msg, Http::Method method) const { UNUSED_PARAM(endpoint); UNUSED_PARAM(msg); return std::make_shared(method); } }; TEST_F(HttpClientTest, ClientClassFunctionTest) { ClientConfiguration conf; Classtest client("oss", conf); client.testfunction(); } TEST_F(HttpClientTest, HttpMessageClassFunctionTest) { HttpRequest req; req.addHeader("testname", "testvalue"); std::shared_ptr content = std::make_shared(); *content << "test"; req.addBody(content); HttpMessage message1(req); HttpMessage message4(static_cast(message1)); } } } ================================================ FILE: test/src/Other/HttpsTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/Utils.h" namespace AlibabaCloud { namespace OSS { class HttpsTest : public ::testing::Test { protected: HttpsTest() { } ~HttpsTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { std::string endpoint = TestUtils::GetHTTPSEndpoint(Config::Endpoint); ClientConfiguration conf; conf.verifySSL = false; Client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); BucketName = TestUtils::GetBucketName("cpp-sdk-httpstest"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; }; std::shared_ptr HttpsTest::Client = nullptr; std::string HttpsTest::BucketName = ""; TEST_F(HttpsTest, CreateAndDeleteBucketTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName("cpp-sdk-httpstest"); //assert bucket does not exist EXPECT_EQ(Client->DoesBucketExist(bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName)); //TestUtils::WaitForCacheExpire(5); EXPECT_EQ(Client->DoesBucketExist(bucketName), true); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); Client->DoesBucketExist(bucketName); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(Client->DoesBucketExist(bucketName), false); } TEST_F(HttpsTest, GetBucketAclTest) { auto outcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), CannedAccessControlList::Private); Client->SetBucketAcl(BucketName, CannedAccessControlList::PublicRead); TestUtils::WaitForCacheExpire(8); outcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), CannedAccessControlList::PublicRead); } TEST_F(HttpsTest, GetBucketInfoTest) { auto outcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(outcome.isSuccess(), true); auto aclOutcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), aclOutcome.result().Acl()); } TEST_F(HttpsTest, GetBucketLocationTest) { auto locOutcome = Client->GetBucketLocation(BucketName); EXPECT_EQ(locOutcome.isSuccess(), true); EXPECT_EQ(locOutcome.result().Location().compare(0,4,"oss-", 4), 0); } TEST_F(HttpsTest, GetBucketStatTest) { //put object auto objectName = BucketName; objectName.append("firstobject"); Client->PutObject(BucketName, objectName, std::make_shared("1234")); auto bsOutcome = Client->GetBucketStat(BucketName); EXPECT_EQ(bsOutcome.isSuccess(), true); EXPECT_EQ(bsOutcome.result().Storage(), 4ULL); EXPECT_EQ(bsOutcome.result().ObjectCount(), 1ULL); EXPECT_EQ(bsOutcome.result().MultipartUploadCount(), 0ULL); } TEST_F(HttpsTest, ListBucketspagingTest) { //get a random bucketName auto bucketName = TestUtils::GetBucketName("cpp-sdk-httpstest"); for (int i = 0; i < 5; i++) { auto name = bucketName; name.append("-").append(std::to_string(i)); Client->CreateBucket(name); } //list all ListBucketsRequest request; request.setPrefix(bucketName); request.setMaxKeys(100); auto outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Buckets().size(), 5UL); //list by step request.setMaxKeys(2); bool IsTruncated = false; size_t total = 0; do { outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_LT(outcome.result().Buckets().size(), 3UL); total += outcome.result().Buckets().size(); request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); EXPECT_EQ(total, 5UL); //delete all TestUtils::CleanBucketsByPrefix(*Client, bucketName); } TEST_F(HttpsTest, PutObjectTest) { std::string key = TestUtils::GetObjectKey("PutObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); } TEST_F(HttpsTest, GetObjectTest) { std::string key = TestUtils::GetObjectKey("GetObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto gOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*gOutcome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(HttpsTest, HeadObjectTest) { std::string key = TestUtils::GetObjectKey("HeadObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(outcome.result().ETag(), hOutcome.result().ETag()); } TEST_F(HttpsTest, GetObjectMetaTest) { std::string key = TestUtils::GetObjectKey("GetObjectMetaTest"); auto content = TestUtils::GetRandomStream(1024); ObjectMetaData meta; meta.UserMetaData()["user"] = "test"; auto outcome = Client->PutObject(BucketName, key, content, meta); EXPECT_EQ(outcome.isSuccess(), true); auto gOutcome = Client->GetObjectMeta(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().UserMetaData().find("user"), gOutcome.result().UserMetaData().end()); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("user"), "test"); } TEST_F(HttpsTest, ListObjectsTest) { auto outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ((outcome.result().ObjectSummarys().size() > 0UL), true); } TEST_F(HttpsTest, DeleteObjectsTest) { std::string key = TestUtils::GetObjectKey("DeleteObjectsTest"); auto content = TestUtils::GetRandomStream(100); Client->PutObject(BucketName, key, content); auto outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ((outcome.result().ObjectSummarys().size() > 0UL), true); for (auto const &obj : outcome.result().ObjectSummarys()) { Client->DeleteObject(BucketName, obj.Key()); } outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ObjectSummarys().size(), 0UL); } TEST_F(HttpsTest, GetPreSignedUriTest) { std::string key = TestUtils::GetObjectKey("GetPreSignedUriTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::string actualETag = pOutcome.result().ETag(); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { EXPECT_STREQ(actualETag.c_str(), gOutcome.result().Metadata().ETag().c_str()); } else { EXPECT_TRUE(false); } } TEST_F(HttpsTest, PutPreSignedUriTest) { std::string key = TestUtils::GetObjectKey("PutPreSignedUriTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setContentMd5(md5); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); } TEST_F(HttpsTest, MultipartUploadTest) { auto key = TestUtils::GetObjectKey("MultipartUploadTest"); InitiateMultipartUploadRequest request(BucketName, key); auto initOutcome = Client->InitiateMultipartUpload(request); EXPECT_EQ(initOutcome.isSuccess(), true); auto content = TestUtils::GetRandomStream(100*1024); UploadPartRequest uRequest(BucketName, key, content); uRequest.setPartNumber(1); uRequest.setUploadId(initOutcome.result().UploadId()); auto uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); content = TestUtils::GetRandomStream(100); uRequest.setPartNumber(2); uRequest.setConetent(content); uRequest.setUploadId(initOutcome.result().UploadId()); uploadPartOutcome = Client->UploadPart(uRequest); EXPECT_EQ(uploadPartOutcome.isSuccess(), true); ListMultipartUploadsRequest lpRequest(BucketName); lpRequest.setKeyMarker("MultipartUploadTest"); auto lmuOutcome = Client->ListMultipartUploads(lpRequest); EXPECT_EQ(lmuOutcome.isSuccess(), true); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().size(), 1U); EXPECT_EQ(lmuOutcome.result().MultipartUploadList().begin()->Key, key); auto lOutcome = Client->ListParts(ListPartsRequest(BucketName, key, initOutcome.result().UploadId())); EXPECT_EQ(lOutcome.isSuccess(), true); CompleteMultipartUploadRequest cRequest(BucketName, key, lOutcome.result().PartList(), initOutcome.result().UploadId()); auto outcome = Client->CompleteMultipartUpload(cRequest); EXPECT_EQ(outcome.isSuccess(), true); auto hOutcome = Client->GetObjectMeta(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().ContentLength(), ((100LL * 1024LL) + 100LL)); } TEST_F(HttpsTest, CacertPositiveTest) { ClientConfiguration conf; std::string caFile = Config::GetDataPath(); caFile.append("ca-certificates.crt"); conf.caFile = caFile; conf.caPath = Config::GetDataPath(); conf.verifySSL = true; std::string endpoint = TestUtils::GetHTTPSEndpoint(Config::Endpoint); OssClient client(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); SetLogLevel(LogLevel::LogAll); SetLogCallback(TestUtils::LogPrintCallback); std::string key = TestUtils::GetObjectKey("CacertPositiveTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(client.DoesObjectExist(BucketName, key), true); auto gOutcome = client.GetObject(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*gOutcome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); SetLogLevel(LogLevel::LogOff); SetLogCallback(nullptr); } TEST_F(HttpsTest, CacertNegativeTest) { ClientConfiguration conf; conf.verifySSL = true; conf.caFile = "none"; conf.caPath = "none"; std::string endpoint = TestUtils::GetHTTPSEndpoint(Config::Endpoint); OssClient client(endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); SetLogLevel(LogLevel::LogAll); SetLogCallback(TestUtils::LogPrintCallback); std::string key = TestUtils::GetObjectKey("CacertNegativeTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), false); EXPECT_EQ(outcome.error().Code(), "ClientError:200077"); EXPECT_TRUE(outcome.error().Message().find("Problem with the SSL CA cert") != std::string::npos); SetLogLevel(LogLevel::LogOff); SetLogCallback(nullptr); } } } ================================================ FILE: test/src/Other/IpEndpointTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include "src/utils/Utils.h" namespace AlibabaCloud { namespace OSS { class IpEndpointTest : public ::testing::Test { protected: IpEndpointTest() { } ~IpEndpointTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { std::string endpoint = TestUtils::GetIpByEndpoint(Config::Endpoint); Client = std::make_shared(endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); BucketName = TestUtils::GetBucketName("cpp-sdk-ipendpoint"); Client->CreateBucket(CreateBucketRequest(BucketName)); auto outcome = Client->GetBucketAcl(BucketName); if (outcome.isSuccess() == false && outcome.error().Code() == "SecondLevelDomainForbidden") { SupportSecondLevelDomain = false; } } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); TestUtils::CleanBucket(client, BucketName); Client = nullptr; } // Sets up the test fixture. void SetUp() override { } // Tears down the test fixture. void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; static bool SupportSecondLevelDomain; }; std::shared_ptr IpEndpointTest::Client = nullptr; std::string IpEndpointTest::BucketName = ""; bool IpEndpointTest::SupportSecondLevelDomain = true; TEST_F(IpEndpointTest, CreateAndDeleteBucketTest) { if (!SupportSecondLevelDomain) return; //get a random bucketName auto bucketName = TestUtils::GetBucketName("cpp-sdk-ipendpointtest"); //assert bucket does not exist EXPECT_EQ(Client->DoesBucketExist(bucketName), false); //create a new bucket Client->CreateBucket(CreateBucketRequest(bucketName)); //TestUtils::WaitForCacheExpire(5); EXPECT_EQ(Client->DoesBucketExist(bucketName), true); //delete the bucket Client->DeleteBucket(DeleteBucketRequest(bucketName)); TestUtils::WaitForCacheExpire(5); EXPECT_EQ(Client->DoesBucketExist(bucketName), false); } TEST_F(IpEndpointTest, GetBucketAclTest) { if (!SupportSecondLevelDomain) return; auto outcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), CannedAccessControlList::Private); Client->SetBucketAcl(BucketName, CannedAccessControlList::PublicRead); TestUtils::WaitForCacheExpire(8); outcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), CannedAccessControlList::PublicRead); } TEST_F(IpEndpointTest, GetBucketInfoTest) { if (!SupportSecondLevelDomain) return; auto outcome = Client->GetBucketInfo(BucketName); EXPECT_EQ(outcome.isSuccess(), true); auto aclOutcome = Client->GetBucketAcl(BucketName); EXPECT_EQ(aclOutcome.isSuccess(), true); EXPECT_EQ(outcome.result().Acl(), aclOutcome.result().Acl()); } TEST_F(IpEndpointTest, GetBucketLocationTest) { if (!SupportSecondLevelDomain) return; auto locOutcome = Client->GetBucketLocation(BucketName); EXPECT_EQ(locOutcome.isSuccess(), true); EXPECT_EQ(locOutcome.result().Location().compare(0,4,"oss-", 4), 0); } TEST_F(IpEndpointTest, GetBucketStatTest) { if (!SupportSecondLevelDomain) return; //put object auto objectName = BucketName; objectName.append("firstobject"); Client->PutObject(BucketName, objectName, std::make_shared("1234")); auto bsOutcome = Client->GetBucketStat(BucketName); EXPECT_EQ(bsOutcome.isSuccess(), true); EXPECT_EQ(bsOutcome.result().Storage(), 4ULL); EXPECT_EQ(bsOutcome.result().ObjectCount(), 1ULL); EXPECT_EQ(bsOutcome.result().MultipartUploadCount(), 0ULL); } TEST_F(IpEndpointTest, ListBucketspagingTest) { if (!SupportSecondLevelDomain) return; //get a random bucketName auto bucketName = TestUtils::GetBucketName("cpp-sdk-ipendpointtest"); for (int i = 0; i < 5; i++) { auto name = bucketName; name.append("-").append(std::to_string(i)); Client->CreateBucket(name); } //list all ListBucketsRequest request; request.setPrefix(bucketName); request.setMaxKeys(100); auto outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().Buckets().size(), 5UL); //list by step request.setMaxKeys(2); bool IsTruncated = false; size_t total = 0; do { outcome = Client->ListBuckets(request); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_LT(outcome.result().Buckets().size(), 3UL); total += outcome.result().Buckets().size(); request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); EXPECT_EQ(total, 5UL); //delete all OssClient client(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, ClientConfiguration()); TestUtils::CleanBucketsByPrefix(client, bucketName); } TEST_F(IpEndpointTest, PutObjectTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("PutObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); } TEST_F(IpEndpointTest, GetObjectTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("GetObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); auto gOutcome = Client->GetObject(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); std::string oriMd5 = ComputeContentMD5(*content.get()); std::string memMd5 = ComputeContentMD5(*gOutcome.result().Content().get()); EXPECT_EQ(oriMd5, memMd5); } TEST_F(IpEndpointTest, HeadObjectTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("HeadObjectTest"); auto content = TestUtils::GetRandomStream(1024); auto outcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(outcome.result().ETag(), hOutcome.result().ETag()); } TEST_F(IpEndpointTest, GetObjectMetaTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("GetObjectMetaTest"); auto content = TestUtils::GetRandomStream(1024); ObjectMetaData meta; meta.UserMetaData()["user"] = "test"; auto outcome = Client->PutObject(BucketName, key, content, meta); EXPECT_EQ(outcome.isSuccess(), true); auto gOutcome = Client->GetObjectMeta(BucketName, key); EXPECT_EQ(gOutcome.isSuccess(), true); EXPECT_EQ(gOutcome.result().UserMetaData().find("user"), gOutcome.result().UserMetaData().end()); auto hOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(hOutcome.isSuccess(), true); EXPECT_EQ(hOutcome.result().UserMetaData().at("user"), "test"); } TEST_F(IpEndpointTest, ListObjectsTest) { if (!SupportSecondLevelDomain) return; auto outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ((outcome.result().ObjectSummarys().size() > 0UL), true); } TEST_F(IpEndpointTest, DeleteObjectsTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("DeleteObjectsTest"); auto content = TestUtils::GetRandomStream(100); Client->PutObject(BucketName, key, content); auto outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ((outcome.result().ObjectSummarys().size() > 0UL), true); for (auto const &obj : outcome.result().ObjectSummarys()) { Client->DeleteObject(BucketName, obj.Key()); } outcome = Client->ListObjects(BucketName); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(outcome.result().ObjectSummarys().size(), 0UL); } TEST_F(IpEndpointTest, GetPreSignedUriTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("GetPreSignedUriTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); auto pOutcome = Client->PutObject(BucketName, key, content); EXPECT_EQ(pOutcome.isSuccess(), true); std::string actualETag = pOutcome.result().ETag(); GeneratePresignedUrlRequest request(BucketName, key, Http::Get); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); auto gOutcome = Client->GetObjectByUrl(urlOutcome.result()); EXPECT_EQ(gOutcome.isSuccess(), true); if (gOutcome.isSuccess()) { EXPECT_STREQ(actualETag.c_str(), gOutcome.result().Metadata().ETag().c_str()); } else { EXPECT_TRUE(false); } } TEST_F(IpEndpointTest, PutPreSignedUriTest) { if (!SupportSecondLevelDomain) return; std::string key = TestUtils::GetObjectKey("PutPreSignedUriTest"); std::shared_ptr content = TestUtils::GetRandomStream(2048); std::string md5 = ComputeContentMD5(*content.get()); GeneratePresignedUrlRequest request(BucketName, key, Http::Put); request.setContentMd5(md5); auto urlOutcome = Client->GeneratePresignedUrl(request); EXPECT_EQ(urlOutcome.isSuccess(), true); ObjectMetaData meta; meta.setContentMd5(md5); auto pOutcome = Client->PutObjectByUrl(urlOutcome.result(), content, meta); EXPECT_EQ(pOutcome.isSuccess(), true); auto metaOutcome = Client->HeadObject(BucketName, key); EXPECT_EQ(metaOutcome.isSuccess(), true); } } } ================================================ FILE: test/src/Other/LogTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" #include #include "src/utils/LogUtils.h" namespace AlibabaCloud { namespace OSS { class LogTest : public ::testing::Test { protected: LogTest() { } ~LogTest() override { } void SetUp() override { } void TearDown() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { Client = nullptr; } public: static void LogCallbackFunc(LogLevel level, const std::string &stream); static std::shared_ptr Client; static std::string LogString; }; std::shared_ptr LogTest::Client = nullptr; std::string LogTest::LogString = ""; void LogTest::LogCallbackFunc(LogLevel level, const std::string &stream) { LogString = stream; std::cout << stream; if (level == LogLevel::LogOff) { LogString.append("haha"); } } TEST_F(LogTest, DisableLogLevelTest) { SetLogLevel(LogLevel::LogOff); LogString = ""; auto outcome = Client->ListBuckets(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(LogString.empty(), true); } TEST_F(LogTest, DisableLogCallbackTest) { SetLogLevel(LogLevel::LogAll); SetLogCallback(nullptr); LogString = ""; auto outcome = Client->ListBuckets(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(LogString.empty(), true); SetLogLevel(LogLevel::LogOff); } TEST_F(LogTest, EnableLogTest) { SetLogLevel(LogLevel::LogAll); SetLogCallback(LogCallbackFunc); LogString = ""; auto outcome = Client->ListBuckets(); if (!outcome.isSuccess()) { TestUtils::WaitForCacheExpire(2); outcome = Client->ListBuckets(); } EXPECT_EQ(outcome.isSuccess(), true); EXPECT_EQ(LogString.empty(), false); SetLogLevel(LogLevel::LogOff); } TEST_F(LogTest, LogMacroTest) { SetLogLevel(LogLevel::LogAll); SetLogCallback(LogCallbackFunc); LogString = ""; OSS_LOG(LogLevel::LogFatal, "LogTest", "LogMacroTest%s","Fatal"); EXPECT_TRUE(strstr(LogString.c_str(), "[FATAL]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestFatal") != nullptr); std::cout << LogString; LogString = ""; OSS_LOG(LogLevel::LogError, "LogTest", "LogMacroTest%s", "Error"); EXPECT_TRUE(strstr(LogString.c_str(), "[ERROR]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestError") != nullptr); std::cout << LogString; LogString = ""; OSS_LOG(LogLevel::LogWarn, "LogTest", "LogMacroTest%s", "Warn"); EXPECT_TRUE(strstr(LogString.c_str(), "[WARN]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestWarn") != nullptr); LogString = ""; OSS_LOG(LogLevel::LogInfo, "LogTest", "LogMacroTest%s", "Info"); EXPECT_TRUE(strstr(LogString.c_str(), "[INFO]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestInfo") != nullptr); LogString = ""; OSS_LOG(LogLevel::LogDebug, "LogTest", "LogMacroTest%s", "Debug"); EXPECT_TRUE(strstr(LogString.c_str(), "[DEBUG]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestDebug") != nullptr); LogString = ""; OSS_LOG(LogLevel::LogTrace, "LogTest", "LogMacroTest%s", "Trace"); EXPECT_TRUE(strstr(LogString.c_str(), "[TRACE]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestTrace") != nullptr); LogString = ""; OSS_LOG(LogLevel::LogOff, "LogTest", "LogMacroTest%s", "Off"); EXPECT_TRUE(strstr(LogString.c_str(), "[OFF]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestOff") != nullptr); LogString = ""; OSS_LOG(LogLevel::LogAll, "LogTest", "LogMacroTest%s", "All"); EXPECT_TRUE(strstr(LogString.c_str(), "[ALL]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "[LogTest]") != nullptr); EXPECT_TRUE(strstr(LogString.c_str(), "LogMacroTestAll") != nullptr); SetLogLevel(LogLevel::LogOff); } TEST_F(LogTest, EndofLineTest) { SetLogLevel(LogLevel::LogAll); SetLogCallback(LogCallbackFunc); LogString = ""; OSS_LOG(LogLevel::LogTrace, "LogTest", "LogMacroTest%s\n", "Trace"); EXPECT_EQ(LogString.c_str()[LogString.size()-1], '\n'); EXPECT_EQ(LogString.c_str()[LogString.size() - 2], 'e'); std::cout << LogString; LogString = ""; OSS_LOG(LogLevel::LogTrace, "LogTest", "LogMacroTest%s\n\n\n", "Trace"); EXPECT_EQ(LogString.c_str()[LogString.size()-1], '\n'); EXPECT_EQ(LogString.c_str()[LogString.size() - 2], 'e'); std::cout << LogString; LogString = ""; OSS_LOG(LogLevel::LogTrace, "LogTest", "LogMacroTest%s", "Trace"); EXPECT_EQ(LogString.c_str()[LogString.size() - 1], '\n'); EXPECT_EQ(LogString.c_str()[LogString.size() - 2], 'e'); std::cout << LogString; LogString = ""; OSS_LOG(LogLevel::LogTrace, "LogTest", ""); EXPECT_EQ(LogString.c_str()[LogString.size() - 1], '\n'); EXPECT_EQ(LogString.c_str()[LogString.size() - 2], ']'); std::cout << LogString; SetLogLevel(LogLevel::LogOff); } } } ================================================ FILE: test/src/Other/RateLimiterTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include "../Config.h" #include "../Utils.h" #include #include #include namespace AlibabaCloud { namespace OSS { class RateLimiterTest : public ::testing::Test { protected: RateLimiterTest() { } ~RateLimiterTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { Client = TestUtils::GetOssClientDefault(); BucketName = TestUtils::GetBucketName("cpp-sdk-ratelimitertest"); Client->CreateBucket(CreateBucketRequest(BucketName)); } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; } void SetUp() override { } void TearDown() override { } public: static std::shared_ptr Client; static std::string BucketName; class Timer { public: Timer() : begin_(std::chrono::high_resolution_clock::now()) {} void reset() { begin_ = std::chrono::high_resolution_clock::now(); } int64_t elapsed() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } int64_t elapsed_micro() const { return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - begin_).count(); } private: std::chrono::time_point begin_; }; }; std::shared_ptr RateLimiterTest::Client = nullptr; std::string RateLimiterTest::BucketName = ""; class DefaultRateLimiter: public RateLimiter { public: DefaultRateLimiter():rate_(0) {}; ~DefaultRateLimiter() {}; virtual void setRate(int rate) { rate_ = rate; }; virtual int Rate() const { return rate_; }; private: int rate_; }; TEST_F(RateLimiterTest, NoRateLimiterTest) { ClientConfiguration conf; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(1 * 1024 * 1024); auto key = TestUtils::GetObjectKey("NoRateLimiterTest"); client.PutObject(BucketName, key, content); EXPECT_TRUE(client.DoesObjectExist(BucketName, key)); auto outcome = client.GetObject(BucketName, key); EXPECT_EQ(outcome.isSuccess(), true); } TEST_F(RateLimiterTest, DefaultRateLimiterTest) { ClientConfiguration conf; auto rateLimiter = std::make_shared(); conf.sendRateLimiter = rateLimiter; conf.recvRateLimiter = rateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(2 * 1024 * 1024); auto key = TestUtils::GetObjectKey("DefaultRateLimiterTest"); Timer timer; //256k rateLimiter->setRate(256); timer.reset(); client.PutObject(BucketName, key, content); auto diff_put = timer.elapsed(); EXPECT_TRUE(client.DoesObjectExist(BucketName, key)); timer.reset(); auto outcome = client.GetObject(BucketName, key); auto diff_get = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_NEAR((double)diff_put, (double)diff_get, 1000.0); } TEST_F(RateLimiterTest, PutObjectRateLimiterTest) { ClientConfiguration conf; auto sendRateLimiter = std::make_shared(); conf.sendRateLimiter = sendRateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(5 * 1024 * 1024); auto key = TestUtils::GetObjectKey("PutObjectRateLimiterTest"); Timer timer; timer.reset(); auto outcome = client.PutObject(BucketName, key, content); auto diff_no_limit = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); sendRateLimiter->setRate(500); timer.reset(); outcome = client.PutObject(BucketName, key, content); EXPECT_EQ(outcome.isSuccess(), true); auto diff_500k = timer.elapsed(); EXPECT_NEAR((double)diff_500k, (double)10000LL, (double)2000LL); std::cout << "diff_no_limit:" << diff_no_limit << " ms, diff_500k:" << diff_500k << " ms" << std::endl; } TEST_F(RateLimiterTest, GetObjectRateLimiterTest) { ClientConfiguration conf; auto recvRateLimiter = std::make_shared(); conf.recvRateLimiter = recvRateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(10 * 1024 * 1024); auto key = TestUtils::GetObjectKey("GetObjectRateLimiterTest"); Timer timer; client.PutObject(BucketName, key, content); EXPECT_TRUE(client.DoesObjectExist(BucketName, key)); timer.reset(); auto outcome = client.GetObject(BucketName, key); auto diff_no_limit = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); timer.reset(); recvRateLimiter->setRate(1024); outcome = client.GetObject(BucketName, key); auto diff_1024k = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_NEAR((double)diff_1024k, (double)10000LL, (double)2000LL); std::cout << "diff_no_limit:" << diff_no_limit << " ms, diff_1024k:" << diff_1024k << " ms" << std::endl; } TEST_F(RateLimiterTest, SetRateWhenUploadingTest) { ClientConfiguration conf; auto sendRateLimiter = std::make_shared(); conf.sendRateLimiter = sendRateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(10 * 1024 * 1024); auto key = TestUtils::GetObjectKey("SetRateWhenUploadingTest"); Timer timer; timer.reset(); auto outcome = client.PutObject(BucketName, key, content); auto diff_no_limit = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); sendRateLimiter->setRate(512); timer.reset(); PutObjectRequest request(BucketName, key, content); auto callableOutcome = client.PutObjectCallable(request); TestUtils::WaitForCacheExpire(10); sendRateLimiter->setRate(1024); outcome = callableOutcome.get(); EXPECT_EQ(outcome.isSuccess(), true); auto diff_limit = timer.elapsed(); EXPECT_NEAR((double)diff_limit, (double)15000LL, (double)2500LL); sendRateLimiter->setRate(0); timer.reset(); outcome = client.PutObject(BucketName, key, content); auto diff_no_limit1 = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); EXPECT_NEAR((double)diff_no_limit, (double)diff_no_limit1, (double)2000LL); std::cout << "diff_no_limit:" << diff_no_limit << " ms, diff_limit:" << diff_limit << " ms, diff_no_limit1:" << diff_no_limit1 << " ms" << std::endl; } TEST_F(RateLimiterTest, SetRateWhenDownloadingTest) { ClientConfiguration conf; auto recvRateLimiter = std::make_shared(); conf.recvRateLimiter = recvRateLimiter; auto client = OssClient(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); auto content = TestUtils::GetRandomStream(10 * 1024 * 1024); auto key = TestUtils::GetObjectKey("SetRateWhenUploadingTest"); Timer timer; client.PutObject(BucketName, key, content); EXPECT_TRUE(client.DoesObjectExist(BucketName, key)); timer.reset(); auto outcome = client.GetObject(BucketName, key); auto diff_no_limit = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); recvRateLimiter->setRate(512); timer.reset(); GetObjectRequest request(BucketName, key); auto callableOutcome = client.GetObjectCallable(request); TestUtils::WaitForCacheExpire(10); recvRateLimiter->setRate(256); outcome = callableOutcome.get(); EXPECT_EQ(outcome.isSuccess(), true); auto diff_limit = timer.elapsed(); EXPECT_NEAR((double)diff_limit, (double)30000LL, (double)2000LL); recvRateLimiter->setRate(0); timer.reset(); outcome = client.GetObject(BucketName, key); auto diff_no_limit1 = timer.elapsed(); EXPECT_EQ(outcome.isSuccess(), true); if (diff_no_limit1 < diff_no_limit) { EXPECT_TRUE(true); } else { EXPECT_NEAR((double)diff_no_limit, (double)diff_no_limit1, (double)2000LL); } std::cout << "diff_no_limit:" << diff_no_limit << " ms, diff_limit:" << diff_limit << " ms, diff_no_limit1 " << diff_no_limit1 << " ms" << std::endl; } } } ================================================ FILE: test/src/Other/SignerTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "../Config.h" #include "../Utils.h" namespace AlibabaCloud { namespace OSS { class SignerTest : public ::testing::Test { protected: SignerTest() { } ~SignerTest() override { } // Sets up the stuff shared by all tests in this test case. static void SetUpTestCase() { } // Tears down the stuff shared by all tests in this test case. static void TearDownTestCase() { } void SetUp() override { } void TearDown() override { } public: }; TEST_F(SignerTest, SignerV4) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", ""); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702743657LL; HeaderCollection headers; ParameterCollection parameters; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "text/plain"; headers["x-oss-content-sha256"] = "UNSIGNED-PAYLOAD"; parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signer->sign(httpRequest, parameters, signerParam); std::string authPat = "OSS4-HMAC-SHA256 Credential=ak/20231216/cn-hangzhou/oss/aliyun_v4_request,Signature=e21d18daa82167720f9b1047ae7e7f1ce7cb77a31e8203a7d5f4624fa0284afe"; EXPECT_EQ(authPat, httpRequest->Header(Http::AUTHORIZATION)); } TEST_F(SignerTest, SignerV4Token) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", "token"); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702784856LL; HeaderCollection headers; ParameterCollection parameters; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "text/plain"; headers["x-oss-content-sha256"] = "UNSIGNED-PAYLOAD"; parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signer->sign(httpRequest, parameters, signerParam); std::string authPat = "OSS4-HMAC-SHA256 Credential=ak/20231217/cn-hangzhou/oss/aliyun_v4_request,Signature=b94a3f999cf85bcdc00d332fbd3734ba03e48382c36fa4d5af5df817395bd9ea"; EXPECT_EQ(authPat, httpRequest->Header(Http::AUTHORIZATION)); EXPECT_EQ("token", httpRequest->Header("x-oss-security-token")); } TEST_F(SignerTest, SignerV4WithAdditionalHeaders) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", ""); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702747512LL; HeaderCollection headers; ParameterCollection parameters; HeaderSet signHeaders; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "text/plain"; headers["x-oss-content-sha256"] = "UNSIGNED-PAYLOAD"; signHeaders.emplace("abc"); signHeaders.emplace("ZAbc"); parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; // 1 auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam.setAdditionalHeaders(signHeaders); signer->sign(httpRequest, parameters, signerParam); std::string authPat = "OSS4-HMAC-SHA256 Credential=ak/20231216/cn-hangzhou/oss/aliyun_v4_request,AdditionalHeaders=abc;zabc,Signature=4a4183c187c07c8947db7620deb0a6b38d9fbdd34187b6dbaccb316fa251212f"; // 2 HeaderSet signHeaders2; signHeaders2.emplace("ZAbc"); signHeaders2.emplace("abc"); signHeaders2.emplace("x-oss-head1"); signHeaders2.emplace("x-oss-no-exist"); auto httpRequest2 = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest2->addHeader(header.first, header.second); } SignerParam signerParam2(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam2.setAdditionalHeaders(signHeaders2); signer->sign(httpRequest2, parameters, signerParam2); EXPECT_EQ(authPat, httpRequest2->Header(Http::AUTHORIZATION)); } TEST_F(SignerTest, SignerV4Presign) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", ""); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702781677LL; auto expires = 1702782276LL; HeaderCollection headers; ParameterCollection parameters; HeaderSet signHeaders; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "application/octet-stream"; parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam.setExpires(expires); signer->presign(httpRequest, parameters, signerParam); EXPECT_EQ("OSS4-HMAC-SHA256", parameters["x-oss-signature-version"]); EXPECT_EQ("20231217T025437Z", parameters["x-oss-date"]); EXPECT_EQ("599", parameters["x-oss-expires"]); EXPECT_EQ("ak/20231217/cn-hangzhou/oss/aliyun_v4_request", parameters["x-oss-credential"]); EXPECT_EQ("a39966c61718be0d5b14e668088b3fa07601033f6518ac7b523100014269c0fe", parameters["x-oss-signature"]); EXPECT_EQ(true, parameters.find("x-oss-additional-headers") == parameters.end()); } TEST_F(SignerTest, SignerV4PresignToken) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", "token"); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702785388LL; auto expires = 1702785987LL; HeaderCollection headers; ParameterCollection parameters; HeaderSet signHeaders; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "application/octet-stream"; parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam.setExpires(expires); signer->presign(httpRequest, parameters, signerParam); EXPECT_EQ("OSS4-HMAC-SHA256", parameters["x-oss-signature-version"]); EXPECT_EQ("20231217T035628Z", parameters["x-oss-date"]); EXPECT_EQ("599", parameters["x-oss-expires"]); EXPECT_EQ("token", parameters["x-oss-security-token"]); EXPECT_EQ("ak/20231217/cn-hangzhou/oss/aliyun_v4_request", parameters["x-oss-credential"]); EXPECT_EQ("ak/20231217/cn-hangzhou/oss/aliyun_v4_request", parameters["x-oss-credential"]); EXPECT_EQ("3817ac9d206cd6dfc90f1c09c00be45005602e55898f26f5ddb06d7892e1f8b5", parameters["x-oss-signature"]); EXPECT_EQ(true, parameters.find("x-oss-additional-headers") == parameters.end()); } TEST_F(SignerTest, SignerV4PresignWithAdditionalHeaders) { auto signer = Signer::createSigner(SignatureVersionType::V4); auto credentialsProvider = std::make_shared("ak", "sk", ""); auto credentials = credentialsProvider->getCredentials(); auto bucket = "bucket"; auto key = "1234+-/123/1.txt"; auto region = "cn-hangzhou"; auto product = "oss"; auto t = 1702783809LL; auto expires = 1702784408LL; HeaderCollection headers; ParameterCollection parameters; HeaderSet signHeaders; headers["x-oss-head1"] = "value"; headers["abc"] = "value"; headers["ZAbc"] = "value"; headers["XYZ"] = "value"; headers["XYZ"] = "value"; headers["content-type"] = "application/octet-stream"; parameters["param1"] = "value1"; parameters["|param1"] = "value2"; parameters["+param1"] = "value3"; parameters["|param1"] = "value4"; parameters["+param2"] = ""; parameters["|param2"] = ""; parameters["param2"] = ""; //1 signHeaders.emplace("abc"); signHeaders.emplace("ZAbc"); auto httpRequest = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest->addHeader(header.first, header.second); } SignerParam signerParam(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam.setExpires(expires); signerParam.setAdditionalHeaders(signHeaders); signer->presign(httpRequest, parameters, signerParam); EXPECT_EQ("OSS4-HMAC-SHA256", parameters["x-oss-signature-version"]); EXPECT_EQ("20231217T033009Z", parameters["x-oss-date"]); EXPECT_EQ("599", parameters["x-oss-expires"]); EXPECT_EQ("ak/20231217/cn-hangzhou/oss/aliyun_v4_request", parameters["x-oss-credential"]); EXPECT_EQ("6bd984bfe531afb6db1f7550983a741b103a8c58e5e14f83ea474c2322dfa2b7", parameters["x-oss-signature"]); EXPECT_EQ("abc;zabc", parameters["x-oss-additional-headers"]); //2 ParameterCollection parameters2; parameters2["param1"] = "value1"; parameters2["|param1"] = "value2"; parameters2["+param1"] = "value3"; parameters2["|param1"] = "value4"; parameters2["+param2"] = ""; parameters2["|param2"] = ""; parameters2["param2"] = ""; auto httpRequest2 = std::make_shared(Http::Method::Put); for (auto const& header : headers) { httpRequest2->addHeader(header.first, header.second); } HeaderSet signHeaders2; signHeaders2.emplace("abc"); signHeaders2.emplace("ZAbc"); signHeaders2.emplace("x-oss-head1"); SignerParam signerParam2(std::move(region), std::move(product), std::move(bucket), std::move(key), std::move(credentials), t); signerParam2.setExpires(expires); signerParam2.setAdditionalHeaders(signHeaders); EXPECT_EQ(true, parameters2.find("x-oss-additional-headers") == parameters2.end()); signer->presign(httpRequest2, parameters2, signerParam2); EXPECT_EQ("OSS4-HMAC-SHA256", parameters2["x-oss-signature-version"]); EXPECT_EQ("20231217T033009Z", parameters2["x-oss-date"]); EXPECT_EQ("599", parameters2["x-oss-expires"]); EXPECT_EQ("ak/20231217/cn-hangzhou/oss/aliyun_v4_request", parameters2["x-oss-credential"]); EXPECT_EQ("6bd984bfe531afb6db1f7550983a741b103a8c58e5e14f83ea474c2322dfa2b7", parameters2["x-oss-signature"]); EXPECT_EQ("abc;zabc", parameters2["x-oss-additional-headers"]); } } } ================================================ FILE: test/src/Other/UtilsFunctionTest.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "../Config.h" #include "../Utils.h" #include #include "src/utils/FileSystemUtils.h" #include "src/utils/StreamBuf.h" #include "src/signer/Signer.h" namespace AlibabaCloud { namespace OSS { class UtilsFunctionTest : public ::testing::Test { protected: UtilsFunctionTest() { } ~UtilsFunctionTest() override { } void SetUp() override { } void TearDown() override { } static int64_t GetFileLength(const std::string& file); }; int64_t UtilsFunctionTest::GetFileLength(const std::string& file) { std::fstream f(file, std::ios::in | std::ios::binary); f.seekg(0, f.end); int64_t size = f.tellg(); f.close(); return size; } TEST_F(UtilsFunctionTest, Base64EncodeTest) { std::vector ori = { "abc" , "abcd" , "abcde", "" }; std::vector pat = { "YWJj" , "YWJjZA==" , "YWJjZGU=", ""}; auto i = ori.size(); for (i = 0; i < ori.size(); i++) { auto result = Base64Encode(ori[i]); //std::cout << "Base64EncodeTest: src:"<< ori[i] // << " ,result:" << result // << " ,pat:" << pat[i] << std::endl; EXPECT_STREQ(result.c_str(), pat[i].c_str()); } EXPECT_TRUE((i == ori.size())); } TEST_F(UtilsFunctionTest, Base64DecodeTest) { std::vector ori = { "YWJj" , "YWJjZA==" , "YWJjZGU=", "", "YWJjZA" , "YWJjZGU" }; std::vector pat = { "abc" , "abcd" , "abcde", "", "abcd" , "abcde" }; auto i = ori.size(); for (i = 0; i < ori.size(); i++) { auto result = Base64Decode(ori[i]); EXPECT_EQ(result.size(), pat[i].size()); EXPECT_TRUE(TestUtils::IsByteBufferEQ(reinterpret_cast(result.data()), pat[i].data(), (int)result.size())); } EXPECT_TRUE((i == ori.size())); } TEST_F(UtilsFunctionTest, Base64EncodeAndDecodeTest) { for (int i = 1; i < 256; i++) { ByteBuffer data = TestUtils::GetRandomByteBuffer(i); EXPECT_EQ(data.size(), static_cast(i)); auto result = Base64Encode(data); auto data1 = Base64Decode(result.c_str(), (int)result.size()); EXPECT_EQ(data1.size(), static_cast(i)); EXPECT_TRUE(TestUtils::IsByteBufferEQ(data.data(), data1.data(), i)); } } static std::vector urlOri = { "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_~", "`!@#$%^&*()+={}[]:;'\\|<>,?/ \"", "hello world!" }; static std::vector urlPat = { "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_~", "%60%21%40%23%24%25%5E%26%2A%28%29%2B%3D%7B%7D%5B%5D%3A%3B%27%5C%7C%3C%3E%2C%3F%2F%20%22", "hello%20world%21" }; static std::vector urlPatIgnoreSlash = { "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_~", "%60%21%40%23%24%25%5E%26%2A%28%29%2B%3D%7B%7D%5B%5D%3A%3B%27%5C%7C%3C%3E%2C%3F/%20%22", "hello%20world%21" }; TEST_F(UtilsFunctionTest, UrlEncodeTest) { auto i = urlOri.size(); for (i = 0; i < urlOri.size(); i++) { auto result = UrlEncode(urlOri[i]); EXPECT_STREQ(result.c_str(), urlPat[i].c_str()); } EXPECT_TRUE((i == urlOri.size())); } TEST_F(UtilsFunctionTest, UrlEncodePathTest) { auto i = urlOri.size(); for (i = 0; i < urlOri.size(); i++) { auto result = UrlEncodePath(urlOri[i], true); EXPECT_STREQ(result.c_str(), urlPatIgnoreSlash[i].c_str()); } EXPECT_TRUE((i == urlOri.size())); for (i = 0; i < urlOri.size(); i++) { auto result = UrlEncodePath(urlOri[i], false); EXPECT_STREQ(result.c_str(), urlPat[i].c_str()); } EXPECT_TRUE((i == urlOri.size())); } TEST_F(UtilsFunctionTest, UrlDecodeTest) { auto i = urlOri.size(); for (i = 0; i < urlOri.size(); i++) { auto result = UrlDecode(urlPat[i]); EXPECT_STREQ(result.c_str(), urlOri[i].c_str()); } EXPECT_TRUE((i == urlPat.size())); } TEST_F(UtilsFunctionTest, ToStorageClassNameTest) { EXPECT_STREQ(ToStorageClassName(StorageClass::Standard), "Standard"); EXPECT_STREQ(ToStorageClassName(StorageClass::IA), "IA"); EXPECT_STREQ(ToStorageClassName(StorageClass::Archive), "Archive"); EXPECT_STREQ(ToStorageClassName(StorageClass::ColdArchive), "ColdArchive"); } TEST_F(UtilsFunctionTest, ToStorageClassTypeTest) { EXPECT_EQ(ToStorageClassType("Standard"), StorageClass::Standard); EXPECT_EQ(ToStorageClassType("standard"), StorageClass::Standard); EXPECT_EQ(ToStorageClassType("IA"), StorageClass::IA); EXPECT_EQ(ToStorageClassType("ia"), StorageClass::IA); EXPECT_EQ(ToStorageClassType("Archive"), StorageClass::Archive); EXPECT_EQ(ToStorageClassType("ArChive"), StorageClass::Archive); EXPECT_EQ(ToStorageClassType(nullptr), StorageClass::Standard); EXPECT_EQ(ToStorageClassType("unknown"), StorageClass::Standard); EXPECT_EQ(ToStorageClassType("ColdArchive"), StorageClass::ColdArchive); EXPECT_EQ(ToStorageClassType("coldArchive"), StorageClass::ColdArchive); } TEST_F(UtilsFunctionTest, ToAclNameTest) { EXPECT_STREQ(ToAclName(CannedAccessControlList::Private), "private"); EXPECT_STREQ(ToAclName(CannedAccessControlList::PublicRead), "public-read"); EXPECT_STREQ(ToAclName(CannedAccessControlList::PublicReadWrite), "public-read-write"); EXPECT_STREQ(ToAclName(CannedAccessControlList::Default), "default"); } TEST_F(UtilsFunctionTest, ToAclTypeTest) { EXPECT_EQ(ToAclType("private"), CannedAccessControlList::Private); EXPECT_EQ(ToAclType("public-read"), CannedAccessControlList::PublicRead); EXPECT_EQ(ToAclType("public-read-write"), CannedAccessControlList::PublicReadWrite); EXPECT_EQ(ToAclType("Private"), CannedAccessControlList::Private); EXPECT_EQ(ToAclType("Public-read"), CannedAccessControlList::PublicRead); EXPECT_EQ(ToAclType("Public-read-write"), CannedAccessControlList::PublicReadWrite); EXPECT_EQ(ToAclType(nullptr), CannedAccessControlList::Default); EXPECT_EQ(ToAclType("unknown"), CannedAccessControlList::Default); } TEST_F(UtilsFunctionTest, ToCopyActionNameTest) { EXPECT_STREQ(ToCopyActionName(CopyActionList::Copy), "COPY"); EXPECT_STREQ(ToCopyActionName(CopyActionList::Replace), "REPLACE"); } TEST_F(UtilsFunctionTest, TrimSpaceChTest) { std::string str = " ���� "; EXPECT_STREQ(Trim(str.c_str()).c_str(), "����"); str = " �� �� "; EXPECT_STREQ(Trim(str.c_str()).c_str(), "�� ��"); } TEST_F(UtilsFunctionTest, TrimSpaceTest) { std::vector testString = { " abc " , " abc " , " abc" , "abc ", " abc ", "\r \nabc \n\r" }; for (auto const &str : testString) { EXPECT_STREQ(Trim(str.c_str()).c_str(), "abc"); } } TEST_F(UtilsFunctionTest, LeftTrimSpaceTest) { std::vector testString = { " abc " , " abc " , " abc " , "abc " }; for (auto const &str : testString) { auto result = LeftTrim(str.c_str()); EXPECT_EQ(result.compare(0, 3, "abc", 3), 0); EXPECT_NE(result.compare("abc"), 0); } } TEST_F(UtilsFunctionTest, RightTrimSpaceTest) { std::vector testString = { " abc " , " abc " , " abc " , "abc " }; for (auto const &str : testString) { auto result = RightTrim(str.c_str()); auto pos = result.find('a'); EXPECT_EQ(strcmp(result.c_str() + pos, "abc"), 0); } } TEST_F(UtilsFunctionTest, TrimQuotesTest) { std::vector testString = { R"("abc")" , R"(""abc"")" , R"(""abc)" , R"(abc"""")" }; for (auto const &str : testString) { EXPECT_STREQ(TrimQuotes(str.c_str()).c_str(), "abc"); } } TEST_F(UtilsFunctionTest, LeftTrimQuotesTest) { std::vector testString = { R"(""abc"")" , R"("""abc "")" , R"("""abc "")" , R"(abc "")" }; for (auto const &str : testString) { auto result = LeftTrimQuotes(str.c_str()); EXPECT_EQ(result.compare(0, 3, "abc", 3), 0); EXPECT_NE(result.compare("abc"), 0); } } TEST_F(UtilsFunctionTest, RightTrimQuotesTest) { std::vector testString = { R"(""abc"")" , R"(""" abc"")" , R"("""abc")" , R"(abc""""")" }; for (auto const &str : testString) { auto result = RightTrimQuotes(str.c_str()); auto pos = result.find('a'); EXPECT_EQ(strcmp(result.c_str() + pos, "abc"), 0); } } TEST_F(UtilsFunctionTest, ToLowerTest) { std::vector testString = { "ABC" , "Abc" , "AbC" , "abc" }; for (auto const &str : testString) { auto result = ToLower(str.c_str()); EXPECT_STREQ(result.c_str(), "abc"); } } TEST_F(UtilsFunctionTest, ToUpperTest) { std::vector testString = { "ABC" , "Abc" , "AbC" , "abc" }; for (auto const &str : testString) { auto result = ToUpper(str.c_str()); EXPECT_STREQ(result.c_str(), "ABC"); } } TEST_F(UtilsFunctionTest, IsIpTest) { EXPECT_EQ(IsIp("192.168.1.1"), true); EXPECT_EQ(IsIp("10.1.1.1"), true); EXPECT_EQ(IsIp("127.0.0.0"), true); EXPECT_EQ(IsIp("266.168.1.1"), false); EXPECT_EQ(IsIp("1192.168.1.1"), false); EXPECT_EQ(IsIp("hostname"), false); } TEST_F(UtilsFunctionTest, ToGmtTimeTest) { std::time_t t = 0; std::string timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Thu, 01 Jan 1970 00:00:00 GMT"); t = 1520411719; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Wed, 07 Mar 2018 08:35:19 GMT"); t = 1554703347; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 06:02:27 GMT"); t = 1554739347; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 16:02:27 GMT"); } TEST_F(UtilsFunctionTest, ToGmtTimeWithSetlocaleTest) { auto oldLoc = std::cout.getloc(); std::locale::global(std::locale("")); std::time_t t = 0; std::string timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Thu, 01 Jan 1970 00:00:00 GMT"); t = 1520411719; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Wed, 07 Mar 2018 08:35:19 GMT"); t = 1554703347; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 06:02:27 GMT"); t = 1554739347; timeStr = ToGmtTime(t); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 16:02:27 GMT"); std::locale::global(oldLoc); } TEST_F(UtilsFunctionTest, ToUtcTimeTest) { std::time_t t = 0; std::string timeStr = ToUtcTime(t); EXPECT_STREQ(timeStr.c_str(), "1970-01-01T00:00:00.000Z"); t = 1520411719; timeStr = ToUtcTime(t); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T08:35:19.000Z"); } TEST_F(UtilsFunctionTest, ToUtcTimeWithSetlocaleTest) { auto oldLoc = std::cout.getloc(); std::locale::global(std::locale("")); std::time_t t = 0; std::string timeStr = ToUtcTime(t); EXPECT_STREQ(timeStr.c_str(), "1970-01-01T00:00:00.000Z"); t = 1520411719; timeStr = ToUtcTime(t); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T08:35:19.000Z"); t = 1520433319; timeStr = ToUtcTime(t); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T14:35:19.000Z"); std::locale::global(oldLoc); } TEST_F(UtilsFunctionTest, UtcToUnixTimeTest) { std::string date = "1970-01-01T00:00:00.000Z"; std::time_t t = UtcToUnixTime(date); EXPECT_EQ(t, 0); date = "2018-03-07T08:35:19.123Z"; t = UtcToUnixTime(date); EXPECT_EQ(t, 1520411719); //invalid case date = "2018-03-07T08:35:19Z"; t = UtcToUnixTime(date); EXPECT_EQ(t, -1); date = "2018-03-07T08:35:19.abcZ"; t = UtcToUnixTime(date); EXPECT_EQ(t, -1); date = "18-03-07T08:35:19.000Z"; t = UtcToUnixTime(date); EXPECT_EQ(t, -1); date = ""; t = UtcToUnixTime(date); EXPECT_EQ(t, -1); } TEST_F(UtilsFunctionTest, LookupMimeTypeTest) { EXPECT_STREQ(LookupMimeType("name.html").c_str(), "text/html"); EXPECT_STREQ(LookupMimeType("test.mp3").c_str(), "audio/mpeg"); EXPECT_STREQ(LookupMimeType("test.mp3.unkonw").c_str(), "audio/mpeg"); EXPECT_STREQ(LookupMimeType("test.mp3.unkonw.unkonw").c_str(), "application/octet-stream"); EXPECT_STREQ(LookupMimeType("unkonw").c_str(), "application/octet-stream"); EXPECT_STREQ(LookupMimeType("name.Html").c_str(), "text/html"); EXPECT_STREQ(LookupMimeType("test.Mp3.unkonw").c_str(), "audio/mpeg"); } struct Md5TestData { const char *msg; const unsigned char hash[16]; }; static Md5TestData tests[] = { { "", { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e } }, { "a", {0x0c, 0xc1, 0x75, 0xb9, 0xc0, 0xf1, 0xb6, 0xa8, 0x31, 0xc3, 0x99, 0xe2, 0x69, 0x77, 0x26, 0x61 } }, { "abc", { 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0, 0xd6, 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 } }, { "message digest", { 0xf9, 0x6b, 0x69, 0x7d, 0x7c, 0xb7, 0x93, 0x8d, 0x52, 0x5a, 0x2f, 0x31, 0xaa, 0xf1, 0x61, 0xd0 } }, { "abcdefghijklmnopqrstuvwxyz", { 0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4, 0x00, 0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b } }, { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", { 0xd1, 0x74, 0xab, 0x98, 0xd2, 0x77, 0xd9, 0xf5, 0xa5, 0x61, 0x1c, 0x2c, 0x9f, 0x41, 0x9d, 0x9f } }, { "12345678901234567890123456789012345678901234567890123456789012345678901234567890", { 0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55, 0xac, 0x49, 0xda, 0x2e, 0x21, 0x07, 0xb6, 0x7a } } }; TEST_F(UtilsFunctionTest, Md5CharArgTest) { for (auto const &item : tests) { auto md5_base64_1 = ComputeContentMD5(item.msg, !item.msg? 0: strlen(item.msg)); auto md5_base64_2 = Base64Encode((const char *)item.hash, 16); EXPECT_STREQ(md5_base64_1.c_str(), md5_base64_2.c_str()); } } TEST_F(UtilsFunctionTest, Md5StringStreamArgTest) { for (auto const &item : tests) { std::stringstream ss; ss << item.msg; auto md5_base64_1 = ComputeContentMD5(ss); auto md5_base64_2 = Base64Encode((const char *)item.hash, 16); EXPECT_STREQ(md5_base64_1.c_str(), md5_base64_2.c_str()); } } TEST_F(UtilsFunctionTest, Md5NullptrTest) { auto md5_base64_1 = ComputeContentMD5(nullptr, 0); EXPECT_EQ(md5_base64_1, ""); } TEST_F(UtilsFunctionTest, Md5ResetContentPositionTest) { std::string fileName = TestUtils::GetTargetFileName("Md5ResetContentPositionTest"); TestUtils::WriteRandomDatatoFile(fileName, 1024); std::fstream of(fileName, std::ios::in | std::ios::binary); of.seekg(0, of.end); char buff[10]; of.read(buff, 10); auto md5_base64_1 = ComputeContentMD5(of); of.close(); auto md5_file = TestUtils::GetFileMd5(fileName); EXPECT_EQ(md5_base64_1, md5_file); RemoveFile(fileName); } struct ETagTestData { const char *msg; const char *hexHash; }; static ETagTestData eTagTests[] = { { "", "D41D8CD98F00B204E9800998ECF8427E"}, { "a", "0CC175B9C0F1B6A831C399E269772661"}, { "abc", "900150983CD24FB0D6963F7D28E17F72"}, { "message digest", "F96B697D7CB7938D525A2F31AAF161D0"}, { "abcdefghijklmnopqrstuvwxyz", "C3FCD3D76192E4007DFB496CCA67E13B"}, { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "D174AB98D277D9F5A5611C2C9F419D9F"}, { "12345678901234567890123456789012345678901234567890123456789012345678901234567890", "57EDF4A22BE3C955AC49DA2E2107B67A"} }; TEST_F(UtilsFunctionTest, ETagCharArgTest) { for (auto const &item : eTagTests) { auto etag = ComputeContentETag(item.msg, !item.msg ? 0 : strlen(item.msg)); EXPECT_STREQ(etag.c_str(), item.hexHash); } } TEST_F(UtilsFunctionTest, ETagStringStreamArgTest) { for (auto const &item : eTagTests) { std::stringstream ss; ss << item.msg; auto etag = ComputeContentETag(ss); EXPECT_STREQ(etag.c_str(), item.hexHash); } } TEST_F(UtilsFunctionTest, ETagNullptrTest) { auto etag = ComputeContentETag(nullptr, 0); EXPECT_EQ(etag, ""); } TEST_F(UtilsFunctionTest, ETagResetContentPositionTest) { std::string fileName = TestUtils::GetTargetFileName("ETagResetContentPositionTest"); TestUtils::WriteRandomDatatoFile(fileName, 1024); std::fstream of(fileName, std::ios::in | std::ios::binary); of.seekg(0, of.end); char buff[10]; of.read(buff, 10); auto etag = ComputeContentETag(of); of.close(); EXPECT_FALSE(etag.empty()); RemoveFile(fileName); } TEST_F(UtilsFunctionTest, GetIOStreamLengthResetContentPositionTest) { std::string fileName = TestUtils::GetTargetFileName("GetIOStreamLengthResetContentPositionTest"); TestUtils::WriteRandomDatatoFile(fileName, 1024); std::fstream of(fileName, std::ios::in | std::ios::binary); of.seekg(0, of.end); char buff[10]; of.read(buff, 10); auto length = GetIOStreamLength(of); of.close(); auto md5_file = TestUtils::GetFileMd5(fileName); EXPECT_EQ(length, 1024LL); RemoveFile(fileName); } TEST_F(UtilsFunctionTest, CombineHostStringTest) { EXPECT_STREQ(CombineHostString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, false).c_str(), "http://test-bucket.oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineHostString("oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, false).c_str(), "http://test-bucket.oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineHostString("http://192.168.1.1", "test-bucket", false, false).c_str(), "http://192.168.1.1"); EXPECT_STREQ(CombineHostString("http://cname.com", "test-bucket", true, false).c_str(), "http://cname.com"); EXPECT_STREQ(CombineHostString("cname.com", "test-bucket", true, false).c_str(), "http://cname.com"); EXPECT_STREQ(CombineHostString("http://192.168.1.1", "test-bucket", true, false).c_str(), "http://192.168.1.1"); //path style EXPECT_STREQ(CombineHostString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, true).c_str(), "http://oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineHostString("oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, true).c_str(), "http://oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineHostString("http://cname.com", "test-bucket", true, true).c_str(), "http://cname.com"); EXPECT_STREQ(CombineHostString("cname.com", "test-bucket", true, true).c_str(), "http://cname.com"); EXPECT_STREQ(CombineHostString("http://192.168.1.1", "test-bucket", true, true).c_str(), "http://192.168.1.1"); } TEST_F(UtilsFunctionTest, CombinePathStringTest) { EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key", false).c_str(), "/test-key"); EXPECT_STREQ(CombinePathString("http://192.168.1.1", "test-bucket", "test-key", false).c_str(), "/test-bucket/test-key"); EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key/123/456+/1.txt", false).c_str(), "/test-key/123/456%2B/1.txt"); //path style EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key", true).c_str(), "/test-bucket/test-key"); EXPECT_STREQ(CombinePathString("http://192.168.1.1", "test-bucket", "test-key", true).c_str(), "/test-bucket/test-key"); EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key/123/456+/1.txt", true).c_str(), "/test-bucket/test-key/123/456%2B/1.txt"); // encode slash EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key/123/456+/1.txt", false, false).c_str(), "/test-key%2F123%2F456%2B%2F1.txt"); EXPECT_STREQ(CombinePathString("http://192.168.1.1", "test-bucket-ip", "test-key/123/456+/1.txt", true, false).c_str(), "/test-bucket-ip/test-key%2F123%2F456%2B%2F1.txt"); EXPECT_STREQ(CombinePathString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", "test-key/123/456+/1.txt", true, false).c_str(), "/test-bucket/test-key%2F123%2F456%2B%2F1.txt"); } TEST_F(UtilsFunctionTest, CombineRTMPStringTest) { EXPECT_STREQ(CombineRTMPString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, false).c_str(), "rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineRTMPString("oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, false).c_str(), "rtmp://test-bucket.oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineRTMPString("http://192.168.1.1", "test-bucket", false, false).c_str(), "rtmp://192.168.1.1"); EXPECT_STREQ(CombineRTMPString("http://cname.com", "test-bucket", true, false).c_str(), "rtmp://cname.com"); EXPECT_STREQ(CombineRTMPString("cname.com", "test-bucket", true, false).c_str(), "rtmp://cname.com"); EXPECT_STREQ(CombineRTMPString("http://192.168.1.1", "test-bucket", true, false).c_str(), "rtmp://192.168.1.1"); //path style EXPECT_STREQ(CombineRTMPString("http://oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, true).c_str(), "rtmp://oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineRTMPString("oss-cn-hangzhou.aliyuncs.com", "test-bucket", false, true).c_str(), "rtmp://oss-cn-hangzhou.aliyuncs.com"); EXPECT_STREQ(CombineRTMPString("http://cname.com", "test-bucket", true, true).c_str(), "rtmp://cname.com"); EXPECT_STREQ(CombineRTMPString("cname.com", "test-bucket", true, true).c_str(), "rtmp://cname.com"); EXPECT_STREQ(CombineRTMPString("http://192.168.1.1", "test-bucket", true, true).c_str(), "rtmp://192.168.1.1"); } TEST_F(UtilsFunctionTest, CombineQueryStringTest) { ParameterCollection parameters; parameters["empty"] = ""; parameters["arg1"] = "a"; EXPECT_STREQ(CombineQueryString(parameters).c_str(), "arg1=a&empty"); parameters.clear(); parameters["arg1"] = "a"; EXPECT_STREQ(CombineQueryString(parameters).c_str(), "arg1=a"); parameters.clear(); parameters["arg1 arg1"] = "a a"; EXPECT_STREQ(CombineQueryString(parameters).c_str(), "arg1%20arg1=a%20a"); } TEST_F(UtilsFunctionTest, HostToIpTest) { std::string ip = TestUtils::GetIpByEndpoint("oss-cn-hangzhou.aliyuncs.com"); EXPECT_TRUE(TestUtils::IsValidIp(ip)); //std::cout << "ip:" << ip << std::endl; } TEST_F(UtilsFunctionTest, Base64EncodeUrlSafeTest) { const unsigned char buff[] = { 0x14, 0xFB, 0x9C, 0x03, 0xD9, 0x7E }; size_t len = sizeof(buff) / sizeof(buff[0]); auto value = Base64EncodeUrlSafe((const char *)buff, static_cast(len)); EXPECT_EQ(value, "FPucA9l-"); std::vector ori = { "abc" , "abcd" , "abcde" }; std::vector pat = { "YWJj" , "YWJjZA" , "YWJjZGU" }; auto i = ori.size(); for (i = 0; i < ori.size(); i++) { auto result = Base64EncodeUrlSafe(ori[i]); EXPECT_STREQ(result.c_str(), pat[i].c_str()); } EXPECT_TRUE((i == ori.size())); } TEST_F(UtilsFunctionTest, StringReplaceTest) { std::string test = "1234abcdABCD1234"; StringReplace(test, "abcd", "A"); EXPECT_EQ(test, "1234AABCD1234"); test = "12212"; StringReplace(test, "12", "21"); EXPECT_EQ(test, "21221"); } TEST_F(UtilsFunctionTest, UploadAndDownloadObject) { // create client and bucket auto BucketName = TestUtils::GetBucketName("utils-function-bucket-test"); auto key = TestUtils::GetObjectKey("utils-function-object-test"); std::shared_ptr Client = TestUtils::GetOssClientDefault(); TestUtils::EnsureBucketExist(*Client, BucketName); // create local file std::string tmpFile = TestUtils::GetTargetFileName("UtilsFunctionObject").append(".tmp"); TestUtils::WriteRandomDatatoFile(tmpFile, 1024); ObjectMetaData meta; // upload obect auto uploadObjectOutcome = TestUtils::UploadObject(*Client, BucketName, key, tmpFile, meta); EXPECT_EQ(uploadObjectOutcome.isSuccess(), true); EXPECT_EQ(Client->DoesObjectExist(BucketName, key), true); // download object std::string targetFile = TestUtils::GetTargetFileName("TargetFile").append(".tmp"); TestUtils::DownloadObject(*Client, BucketName, key, targetFile); EXPECT_EQ(GetFileLength(targetFile), GetFileLength(tmpFile)); // delete bucket TestUtils::CleanBucket(*Client, BucketName); Client = nullptr; EXPECT_EQ(RemoveFile(tmpFile), true); EXPECT_EQ(RemoveFile(targetFile), true); } TEST_F(UtilsFunctionTest, IsValidChannelNameTest) { EXPECT_FALSE(IsValidChannelName("")); EXPECT_FALSE(IsValidChannelName("abc/abc")); std::string value; for (int i = 0; i < 1300; i++) value.append("a"); EXPECT_FALSE(IsValidChannelName(value)); EXPECT_TRUE(IsValidChannelName("channelName")); } TEST_F(UtilsFunctionTest, IsValidPlayListNameTest) { std::string longName; for (int i = 0; i < 130; i++) longName.append("a"); std::string shortName; shortName = "aaa"; EXPECT_FALSE(IsValidPlayListName("")); EXPECT_FALSE(IsValidPlayListName(longName)); EXPECT_FALSE(IsValidPlayListName(shortName)); EXPECT_FALSE(IsValidPlayListName("aaaa/aaa")); EXPECT_FALSE(IsValidPlayListName(".aaaaaaa")); EXPECT_FALSE(IsValidPlayListName("aaaaaaaa.")); EXPECT_FALSE(IsValidPlayListName("aaaaaaaa.m4u8")); EXPECT_TRUE(IsValidPlayListName("aaaaaaaa.m3u8")); } TEST_F(UtilsFunctionTest, ToLiveChannelStatusNameTest) { std::string str = ToLiveChannelStatusName(LiveChannelStatus::EnabledStatus); EXPECT_EQ(str, "enabled"); str.clear(); str = ToLiveChannelStatusName(LiveChannelStatus::DisabledStatus); EXPECT_EQ(str, "disabled"); str.clear(); str = ToLiveChannelStatusName(LiveChannelStatus::IdleStatus); EXPECT_EQ(str, "idle"); str.clear(); str = ToLiveChannelStatusName(LiveChannelStatus::LiveStatus); EXPECT_EQ(str, "live"); str.clear(); str = ToLiveChannelStatusName(LiveChannelStatus::UnknownStatus); EXPECT_EQ(str, ""); } TEST_F(UtilsFunctionTest, ToLiveChannelStatusTypeTest) { EXPECT_EQ(ToLiveChannelStatusType("enabled"), LiveChannelStatus::EnabledStatus); EXPECT_EQ(ToLiveChannelStatusType("EnaBled"), LiveChannelStatus::EnabledStatus); EXPECT_EQ(ToLiveChannelStatusType("Enabled"), LiveChannelStatus::EnabledStatus); EXPECT_EQ(ToLiveChannelStatusType("Disabled"), LiveChannelStatus::DisabledStatus); EXPECT_EQ(ToLiveChannelStatusType("DISabled"), LiveChannelStatus::DisabledStatus); EXPECT_EQ(ToLiveChannelStatusType("DISABLED"), LiveChannelStatus::DisabledStatus); EXPECT_EQ(ToLiveChannelStatusType("IDLE"), LiveChannelStatus::IdleStatus); EXPECT_EQ(ToLiveChannelStatusType("IDLe"), LiveChannelStatus::IdleStatus); EXPECT_EQ(ToLiveChannelStatusType("Live"), LiveChannelStatus::LiveStatus); EXPECT_EQ(ToLiveChannelStatusType("LIVE"), LiveChannelStatus::LiveStatus); EXPECT_EQ(ToLiveChannelStatusType("aaa"), LiveChannelStatus::UnknownStatus); EXPECT_EQ(ToLiveChannelStatusType("lived"), LiveChannelStatus::UnknownStatus); } TEST_F(UtilsFunctionTest, TwoHeaderCollectionInsertTest) { HeaderCollection headers1; HeaderCollection headers2; HeaderCollection headers3; headers1["key1"] = "value1"; headers1["key2"] = "value2"; headers2["key1"] = "value1-1"; headers2["key3"] = "value3"; headers1.insert(headers2.begin(), headers2.end()); headers1.insert(headers3.begin(), headers3.end()); EXPECT_EQ(headers1.size(), 3U); EXPECT_EQ(headers1["key1"], "value1"); EXPECT_EQ(headers1["key2"], "value2"); EXPECT_EQ(headers1["key3"], "value3"); } class StreamBuftest : public StreamBufProxy { public: StreamBuftest(std::iostream& stream) : StreamBufProxy(stream) { } void test() { overflow(); pbackfail(); showmanyc(); underflow(); uflow(); char buf[5] = "test"; int len = 0; xsgetn(buf, len); setbuf(buf, len); imbue(std::locale("")); } }; TEST_F(UtilsFunctionTest, StreamBufFunctionTest) { std::shared_ptr content = std::make_shared(); *content << "StreamBufFunctionTest"; StreamBuftest buf(*content); buf.test(); } TEST_F(UtilsFunctionTest, UrlFunctionTest) { Url url1; Url url2; EXPECT_EQ(url1 == url2, true); url1.setHost("test.com"); EXPECT_EQ(url1 != url2, true); url1.fragment(); url1.authority(); url1.setPort(1); url1.setUserName("test"); url1.authority(); url1.fromString("#test"); std::string str; url1.fromString(str); url2.setFragment("test"); EXPECT_EQ(url2.isEmpty(), false); Url url3; url3.isValid(); url3.setUserName("test"); url3.isValid(); url1.port(); url1.password(); url1.path(); url3.setAuthority(str); url3.setAuthority("@test:test"); url3.setHost(str); url3.setPassword("test"); url3.setUserInfo("test"); url3.setUserInfo(":test"); url3.setUserName("test"); url3.userName(); url2.toString(); url2.userInfo(); url2.setHost("test"); url2.setUserName("test"); url2.setPassword("test"); url2.toString(); url2.userInfo(); } TEST_F(UtilsFunctionTest, SignerFunctionTest) { SignerV1 s; s.name(); s.type(); std::string str; s.generate(str, str); } TEST_F(UtilsFunctionTest, UtilBranchTest) { Base64Encode(nullptr, 1); ToUpper(nullptr); ToSSEAlgorithm("AES256"); ToDataRedundancyType("ZRS"); ObjectMetaData meta; meta.addUserHeader("test1","test"); meta.removeUserHeader("test"); } TEST_F(UtilsFunctionTest, XmlEscapeTest) { EXPECT_EQ(XmlEscape(""), ""); EXPECT_EQ(XmlEscape("\"<"), ""<"); EXPECT_EQ(XmlEscape("abdeef"), "abdeef"); EXPECT_EQ(XmlEscape(">abc map1; map1["comment"] = "rsa test"; map1["provider"] = "aliclould"; auto json1 = MapToJsonString(map1); std::map map2; map2["provider"] = "aliclould"; map2["comment"] = "rsa test"; auto json2 = MapToJsonString(map2); std::map map3; map3["provider"] = "aliclould"; map3["comment"] = "kms test"; auto json3 = MapToJsonString(map3); EXPECT_EQ(json1, jsonStr1); EXPECT_EQ(json3, jsonStr3); EXPECT_EQ(json1, json2); } TEST_F(UtilsFunctionTest, IsValidEndpointTest) { EXPECT_EQ(IsValidEndpoint("192.168.1.1"), true); EXPECT_EQ(IsValidEndpoint("192.168.1.1:80"), true); EXPECT_EQ(IsValidEndpoint("www.test-inc.com"), true); EXPECT_EQ(IsValidEndpoint("WWW.test-inc_CN.com"), true); EXPECT_EQ(IsValidEndpoint("http://www.test-inc.com"), true); EXPECT_EQ(IsValidEndpoint("http://www.test-inc_test.com:80"), true); EXPECT_EQ(IsValidEndpoint("https://www.test-inc_test.com:80/test?123=x"), true); EXPECT_EQ(IsValidEndpoint("www.test-inc*test.com"), false); EXPECT_EQ(IsValidEndpoint("www.test-inc.com\\oss-cn-hangzhou.aliyuncs.com"), false); EXPECT_EQ(IsValidEndpoint(""), false); } TEST_F(UtilsFunctionTest, IsValidObjectKeyTest) { EXPECT_EQ(IsValidObjectKey("123"), true); EXPECT_EQ(IsValidObjectKey(""), false); EXPECT_EQ(IsValidObjectKey("123", true), true); EXPECT_EQ(IsValidObjectKey("", true), false); EXPECT_EQ(IsValidObjectKey("?123", true), false); EXPECT_EQ(IsValidObjectKey("?", true), false); EXPECT_EQ(IsValidObjectKey("1?23", true), true); EXPECT_EQ(IsValidObjectKey(" ?", true), true); EXPECT_EQ(IsValidObjectKey("?123", false), true); EXPECT_EQ(IsValidObjectKey("?", false), true); EXPECT_EQ(IsValidObjectKey("123?", false), true); EXPECT_EQ(IsValidObjectKey(" ?", false), true); } TEST_F(UtilsFunctionTest, FormatUnixTimeTest) { // GMT std::string gmt_foramt = "%a, %d %b %Y %H:%M:%S GMT"; std::time_t t = 0; std::string timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Thu, 01 Jan 1970 00:00:00 GMT"); t = 1520411719; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Wed, 07 Mar 2018 08:35:19 GMT"); t = 1554703347; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 06:02:27 GMT"); t = 1554739347; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 16:02:27 GMT"); auto oldLoc = std::cout.getloc(); std::locale::global(std::locale("")); t = 0; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Thu, 01 Jan 1970 00:00:00 GMT"); t = 1520411719; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Wed, 07 Mar 2018 08:35:19 GMT"); t = 1554703347; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 06:02:27 GMT"); t = 1554739347; timeStr = FormatUnixTime(t, gmt_foramt); EXPECT_STREQ(timeStr.c_str(), "Mon, 08 Apr 2019 16:02:27 GMT"); std::locale::global(oldLoc); // UTC std::string utc_foramt = "%Y-%m-%dT%H:%M:%S.000Z"; t = 0; timeStr = FormatUnixTime(t, utc_foramt); EXPECT_STREQ(timeStr.c_str(), "1970-01-01T00:00:00.000Z"); t = 1520411719; timeStr = FormatUnixTime(t, utc_foramt); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T08:35:19.000Z"); oldLoc = std::cout.getloc(); std::locale::global(std::locale("")); t = 0; timeStr = FormatUnixTime(t, utc_foramt); EXPECT_STREQ(timeStr.c_str(), "1970-01-01T00:00:00.000Z"); t = 1520411719; timeStr = FormatUnixTime(t, utc_foramt); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T08:35:19.000Z"); t = 1520433319; timeStr = FormatUnixTime(t, utc_foramt); EXPECT_STREQ(timeStr.c_str(), "2018-03-07T14:35:19.000Z"); std::locale::global(oldLoc); // V4 TIME FORMAT } TEST_F(UtilsFunctionTest, ToUnixTimeTest) { std::string utc_foramt = "%Y-%m-%dT%H:%M:%S"; std::string date = "1970-01-01T00:00:00.000Z"; std::time_t t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, 0); date = "2018-03-07T08:35:19.123Z"; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, 1520411719); date = "2018-03-07T08:35:19Z"; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, 1520411719); date = "2018-03-07T08:35:19.abcZ"; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, 1520411719); date = "18-03-07T08:35:19.000Z"; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, -1); //invalid case date = "ab-03-07T08:35:19.000Z"; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, -1); date = ""; t = ToUnixTime(date, utc_foramt); EXPECT_EQ(t, -1); } } } ================================================ FILE: test/src/Program.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "Config.h" int main(int argc, char **argv) { std::cout << "oss-cpp-sdk test" << std::endl; Config::ParseArg(argc, argv); if (!Config::InitTestEnv()) { std::cout << "One of AK,SK or Endpoint is not configured." << std::endl; return -1; } testing::InitGoogleTest(&argc, argv); srand((int)time(0)); AlibabaCloud::OSS::InitializeSdk(); //for code coverage AlibabaCloud::OSS::InitializeSdk(); if (!AlibabaCloud::OSS::IsSdkInitialized()) { std::cout << "oss-cpp-sdk test InitializeSdk fail." << std::endl; return -1; } int ret = RUN_ALL_TESTS(); AlibabaCloud::OSS::ShutdownSdk(); //for code coverage AlibabaCloud::OSS::ShutdownSdk(); return ret; } ================================================ FILE: test/src/Utils.cc ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include "Utils.h" #include #include #include #include #include #include #ifdef _WIN32 #include #include #pragma comment (lib, "Ws2_32.lib") #else #include #include #include #endif #include #include #include #include #include #include "Config.h" #ifdef GetObject #undef GetObject #endif using namespace AlibabaCloud::OSS; #ifndef PATH_MAX #define PATH_MAX 1024 #endif const std::list& TestUtils::InvalidBucketNamesList() { const static std::list nameList = { "a", "1", "!", "aa", "12", "a1", "a!", "1!", "aAa", "1A1", "a!a", "FengChao@123", "-a123", "a_123", "a123-", "1234567890123456789012345678901234567890123456789012345678901234", "" }; return nameList; } const std::list& TestUtils::InvalidObjectKeyNamesList() { const static std::list nameList = { "\\123", "" }; return nameList; } const std::list& TestUtils::InvalidLoggingPrefixNamesList() { const static std::list nameList = { "1", "-a", "@@", "a_", "abcdefghijklmnopqrstuvwxyz1234567" }; return nameList; } const std::list& TestUtils::InvalidPageNamesList() { const static std::list nameList = { "a", ".html", "" }; return nameList; } std::string TestUtils::GetBucketName(const std::string &prefix) { std::stringstream ss; auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); ss << prefix << "-bucket-" << tp.time_since_epoch().count(); return ss.str(); } std::string TestUtils::GetObjectKey(const std::string &prefix) { std::stringstream ss; auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); ss << prefix << "-object-" << tp.time_since_epoch().count(); return ss.str(); } std::string TestUtils::GetTargetFileName(const std::string &prefix) { std::stringstream ss; auto tp = std::chrono::time_point_cast(std::chrono::system_clock::now()); ss << prefix << "-file-" << tp.time_since_epoch().count(); return ss.str(); } std::shared_ptr TestUtils::GetOssClientDefault() { auto conf = ClientConfiguration(); conf.signatureVersion = SignatureVersionType::V1; auto client = std::make_shared(Config::Endpoint, Config::AccessKeyId, Config::AccessKeySecret, conf); client->SetRegion(Config::Region); return client; } bool TestUtils::BucketExists(const OssClient &client, const std::string &bucketName) { return client.GetBucketAcl(GetBucketAclRequest(bucketName)).isSuccess(); } void TestUtils::EnsureBucketExist(const OssClient &client, const std::string &bucketName) { if (!BucketExists(client, bucketName)) { client.CreateBucket(CreateBucketRequest(bucketName)); } } bool TestUtils::ObjectExists(const OssClient& client, const std::string& bucketName, const std::string& keyName) { return client.GetObjectMeta(GetObjectMetaRequest(bucketName, keyName)).isSuccess(); } void TestUtils::CleanBucket(const OssClient &client, const std::string &bucketName) { if (!client.DoesBucketExist(bucketName)) return; // Clean up multipart uploading object auto listOutcome = client.ListMultipartUploads(ListMultipartUploadsRequest(bucketName)); if (listOutcome.isSuccess()) { for (auto const &upload : listOutcome.result().MultipartUploadList()) { client.AbortMultipartUpload(AbortMultipartUploadRequest(bucketName, upload.Key, upload.UploadId)); } } // Clean up objects ListObjectsRequest request(bucketName); bool IsTruncated = false; do { auto outcome = client.ListObjects(request); if (outcome.isSuccess()) { for (auto const &obj : outcome.result().ObjectSummarys()) { client.DeleteObject(DeleteObjectRequest(bucketName, obj.Key())); } } else { break; } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); // Clean up LiveChannel ListLiveChannelRequest request2(bucketName); IsTruncated = false; do{ auto listvOutcome = client.ListLiveChannel(request2); if(listvOutcome.isSuccess()) { for(auto const &liveChannel : listvOutcome.result().LiveChannelList()) { client.DeleteLiveChannel(DeleteLiveChannelRequest(bucketName, liveChannel.name)); } IsTruncated = listvOutcome.result().IsTruncated(); request2.setMarker(listvOutcome.result().NextMarker()); }else{ break; } }while(IsTruncated); // Delete the bucket. client.DeleteBucket(DeleteBucketRequest(bucketName)); } void TestUtils::CleanBucketsByPrefix(const OssClient &client, const std::string &prefix) { ListBucketsRequest request; request.setMaxKeys(1); request.setPrefix(prefix); bool IsTruncated = false; do { auto outcome = client.ListBuckets(request); if (outcome.isSuccess()) { CleanBucket(client, outcome.result().Buckets()[0].Name()); } request.setMarker(outcome.result().NextMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); } void TestUtils::CleanBucketVersioning(const OssClient &client, const std::string &bucketName) { if (!client.DoesBucketExist(bucketName)) return; auto bfOutcome = client.GetBucketInfo(bucketName); if (bfOutcome.isSuccess() && bfOutcome.result().VersioningStatus() != VersioningStatus::NotSet) { //list objects by ListObjectVersions and delete object with versionId ListObjectVersionsRequest request(bucketName); request.setEncodingType("url"); bool IsTruncated = false; do { auto outcome = client.ListObjectVersions(request); if (outcome.isSuccess()) { for (auto const &marker : outcome.result().DeleteMarkerSummarys()) { client.DeleteObject(DeleteObjectRequest(bucketName, marker.Key(), marker.VersionId())); } for (auto const &obj : outcome.result().ObjectVersionSummarys()) { client.DeleteObject(DeleteObjectRequest(bucketName, obj.Key(), obj.VersionId())); } } else { break; } request.setKeyMarker(outcome.result().NextKeyMarker()); request.setVersionIdMarker(outcome.result().NextVersionIdMarker()); IsTruncated = outcome.result().IsTruncated(); } while (IsTruncated); } CleanBucket(client, bucketName); } PutObjectOutcome TestUtils::UploadObject(const OssClient& client, const std::string &bucketName, const std::string& keyName, const std::string &filename, const ObjectMetaData &metadata) { std::shared_ptr content = std::make_shared(filename, std::ios::in); return client.PutObject(PutObjectRequest(bucketName, keyName, content, metadata)); } PutObjectOutcome TestUtils::UploadObject(const OssClient& client, const std::string &bucketName, const std::string& keyName, const std::string &filename) { std::shared_ptr content = std::make_shared(filename, std::ios::in|std::ios::binary); return client.PutObject(PutObjectRequest(bucketName, keyName, content)); } void TestUtils::DownloadObject(const OssClient& client, const std::string &bucketName, const std::string& keyName, const std::string& targetFile) { GetObjectRequest request(bucketName, keyName); request.setResponseStreamFactory([=]() {return std::make_shared(targetFile, std::ios::binary|std::ios_base::out|std::ios_base::trunc); }); client.GetObject(request); } void TestUtils::WaitForCacheExpire(int sec) { std::this_thread::sleep_for(std::chrono::seconds(sec)); } char TestUtils::GetRandomChar() { return 'a' + rand() % 32; } std::string TestUtils::GetRandomString(int length) { std::stringstream ss; for (int i = 0; i < length; i++) { ss << static_cast('!' + rand() % 90); } return ss.str(); } std::shared_ptr TestUtils::GetRandomStream(int length) { std::shared_ptr stream = std::make_shared(); std::stringstream ss; for (int i = 0; i < length; i++) { *stream << static_cast('!' + rand() % 90); } stream->seekg(0); stream->seekp(0, std::ios_base::end); return stream; } void TestUtils::WriteRandomDatatoFile(const std::string &file, int length) { std::fstream of(file, std::ios::out | std::ios::binary | std::ios::trunc); of << GetRandomString(length); of.close(); } bool TestUtils::IsValidIp(const std::string &host) { return AlibabaCloud::OSS::IsIp(host); } std::string TestUtils::GetIpByEndpoint(const std::string &endpoint) { if (IsValidIp(endpoint)) { return endpoint; } std::string hostname(endpoint); if (!endpoint.compare(0, 7, "http://", 7)) { hostname = hostname.substr(7); } else if (!endpoint.compare(0, 8, "https://", 8)) { hostname = hostname.substr(8); } auto it = hostname.find("/"); if (it != std::string::npos) { hostname = hostname.substr(0, it); } struct addrinfo *ailist, *aip; struct addrinfo hint; //struct sockaddr_in *sinp; char m_ipaddr[16] = {0}; int ret; memset(&hint, 0, sizeof(struct addrinfo)); hint.ai_family = AF_INET; //hint.ai_socktype = SOCK_DGRAM; hint.ai_flags = AI_PASSIVE; hint.ai_protocol = 0; ret = getaddrinfo(hostname.c_str(), "http", &hint, &ailist); if (ret == -1) { return ""; } for (aip = ailist; aip != NULL; aip = aip->ai_next) { struct sockaddr_in *sinp = (struct sockaddr_in *)aip->ai_addr; #ifdef _WIN32 sprintf_s(m_ipaddr, "%d.%d.%d.%d", (*sinp).sin_addr.S_un.S_un_b.s_b1, (*sinp).sin_addr.S_un.S_un_b.s_b2, (*sinp).sin_addr.S_un.S_un_b.s_b3, (*sinp).sin_addr.S_un.S_un_b.s_b4); #else snprintf(m_ipaddr, sizeof(m_ipaddr), "%d.%d.%d.%d", ((*sinp).sin_addr.s_addr >> 0) & 0xFF, ((*sinp).sin_addr.s_addr >> 8) & 0xFF, ((*sinp).sin_addr.s_addr >> 16)& 0xFF, ((*sinp).sin_addr.s_addr >> 24)); #endif } freeaddrinfo(ailist); return std::string(m_ipaddr); } #ifdef _WIN32 static std::string FromWString(const wchar_t* source) { const auto len = static_cast(std::wcslen(source)); std::string output; if (int requiredSizeInBytes = WideCharToMultiByte(CP_UTF8, 0 , source, len, nullptr, 0, nullptr, nullptr)) { output.resize(requiredSizeInBytes); } const auto result = WideCharToMultiByte(CP_UTF8, 0, source, len, &output[0], static_cast(output.length()), nullptr, nullptr); if (result) { output.resize(result); return output; } return ""; } std::string TestUtils::GetExecutableDirectory() { WCHAR buffer[PATH_MAX]; memset(buffer, 0, sizeof(buffer)); if (GetModuleFileNameW(nullptr, buffer, static_cast(sizeof(buffer)))) { std::string bufferStr(FromWString(buffer)); auto fileNameStart = bufferStr.find_last_of('\\'); if (fileNameStart != std::string::npos) { bufferStr = bufferStr.substr(0, fileNameStart); } return bufferStr; } return ""; } std::wstring TestUtils::GetExecutableDirectoryW() { WCHAR buffer[PATH_MAX]; memset(buffer, 0, sizeof(buffer)); if (GetModuleFileNameW(nullptr, buffer, static_cast(sizeof(buffer)))) { std::wstring bufferStr(buffer); auto fileNameStart = bufferStr.find_last_of(L'\\'); if (fileNameStart != std::string::npos) { bufferStr = bufferStr.substr(0, fileNameStart); } return bufferStr; } return L""; } #else std::string TestUtils::GetExecutableDirectory() { char dest[PATH_MAX]; size_t destSize = sizeof(dest); memset(dest, 0, destSize); if (readlink("/proc/self/exe", dest, destSize)) { std::string executablePath(dest); auto lastSlash = executablePath.find_last_of('/'); if (lastSlash != std::string::npos) { return executablePath.substr(0, lastSlash); } } return "./"; } std::wstring TestUtils::GetExecutableDirectoryW() { return L""; //std::wstring_convert> converter; //return converter.from_bytes(GetExecutableDirectory()); } #endif std::string TestUtils::GetGMTString(int64_t delayS) { std::time_t t = std::time(nullptr); t += delayS; return ToGmtTime(t); } std::string TestUtils::GetUTCString(int32_t Days, bool noSec) { const int64_t secPerDay = 24LL * 60LL * 60LL; std::time_t t = std::time(nullptr); if (noSec) { t = t - t % secPerDay; } t += (int64_t)Days * secPerDay; return ToUtcTime(t); } std::string TestUtils::GetHTTPSEndpoint(const std::string endpoint) { Url url(endpoint); std::string result; result.append("https://").append(url.authority()); return result; } std::string TestUtils::GetFileMd5(const std::string file) { std::shared_ptr content = std::make_shared(file, std::ios::in | std::ios::binary); return ComputeContentMD5(*content); } std::string TestUtils::GetFileETag(const std::string file) { std::shared_ptr content = std::make_shared(file, std::ios::in | std::ios::binary); return ComputeContentETag(*content); } uint64_t TestUtils::GetFileCRC64(const std::string file) { std::shared_ptr stream = std::make_shared(file, std::ios::in | std::ios::binary); uint64_t crc64 = 0; auto currentPos = stream->tellg(); if (currentPos == static_cast(-1)) { currentPos = 0; stream->clear(); } stream->seekg(0, stream->beg); char streamBuffer[2048]; while (stream->good()) { stream->read(streamBuffer, 2048); auto bytesRead = stream->gcount(); if (bytesRead > 0) { crc64 = CRC64::CalcCRC(crc64, streamBuffer, bytesRead); } } stream->clear(); stream->seekg(currentPos, stream->beg); return crc64; } void TestUtils::LogPrintCallback(LogLevel level, const std::string &stream) { UNUSED_PARAM(level); std::cout << stream; } std::string TestUtils::Base64Decode(std::string const& data) { int in_len = static_cast(data.size()); int i = 0; int in_ = 0; unsigned char part4[4]; std::string ret; while (in_len-- && (data[in_] != '=')) { unsigned char ch = data[in_++]; if ('A' <= ch && ch <= 'Z') ch = ch - 'A'; // A - Z else if ('a' <= ch && ch <= 'z') ch = ch - 'a' + 26; // a - z else if ('0' <= ch && ch <= '9') ch = ch - '0' + 52; // 0 - 9 else if ('+' == ch) ch = 62; // + else if ('/' == ch) ch = 63; // / else if ('=' == ch) ch = 64; // = else ch = 0xff; // something wrong part4[i++] = ch; if (i == 4) { ret += (part4[0] << 2) + ((part4[1] & 0x30) >> 4); ret += ((part4[1] & 0xf) << 4) + ((part4[2] & 0x3c) >> 2); ret += ((part4[2] & 0x3) << 6) + part4[3]; i = 0; } } if (i) { for (int j = i; j < 4; j++) part4[j] = 0xFF; ret += (part4[0] << 2) + ((part4[1] & 0x30) >> 4); ret += ((part4[1] & 0xf) << 4) + ((part4[2] & 0x3c) >> 2); ret += ((part4[2] & 0x3) << 6) + part4[3]; } return ret; } bool TestUtils::IsByteBufferEQ(const char *src, const char *pat, int len) { for (int i = 0; i < len; i++) { if (src[i] != pat[i]) return false; } return true; } bool TestUtils::IsByteBufferEQ(const unsigned char *src, const unsigned char *pat, int len) { return TestUtils::IsByteBufferEQ(reinterpret_cast(src), reinterpret_cast(pat), len); } bool TestUtils::IsByteBufferEQ(const ByteBuffer& src, const ByteBuffer& pat) { return (src == pat); } ByteBuffer TestUtils::GetRandomByteBuffer(int length) { ByteBuffer buff(length); for (int i = 0; i < length; i++) { buff[i] = static_cast(rand()%256); } return buff; } ================================================ FILE: test/src/Utils.h ================================================ /* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include namespace AlibabaCloud { namespace OSS { class TestUtils { public: static const std::list& InvalidBucketNamesList(); static const std::list& InvalidObjectKeyNamesList(); static const std::list& InvalidLoggingPrefixNamesList(); static const std::list& InvalidPageNamesList(); static std::string GetBucketName(const std::string& prefix); static std::string GetObjectKey(const std::string& prefix); static std::string GetTargetFileName(const std::string& prefix); static std::shared_ptr GetOssClientDefault(); static bool BucketExists(const OssClient &client, const std::string &prefix); static void EnsureBucketExist(const OssClient &client, const std::string &bucketName); static bool ObjectExists(const OssClient& client, const std::string& bucketName, const std::string& keyName); static void CleanBucket(const OssClient &client, const std::string &bucketName); static void CleanBucketsByPrefix(const OssClient &client, const std::string &prefix); static void CleanBucketVersioning(const OssClient &client, const std::string &bucketName); static PutObjectOutcome UploadObject(const OssClient& client, const std::string &bucketName, const std::string& keyName, const std::string& filename, const ObjectMetaData& metadata); static PutObjectOutcome UploadObject(const OssClient& client, const std::string &bucketName, const std::string& keyName, const std::string& filename); static void DownloadObject(const OssClient& client, const std::string& bucketName, const std::string& keyName, const std::string& targetFile); static void WaitForCacheExpire(int sec); static char GetRandomChar(); static std::string GetRandomString(int length); static std::shared_ptr GetRandomStream(int length); static void WriteRandomDatatoFile(const std::string &file, int length); static bool IsValidIp(const std::string &host); static std::string GetIpByEndpoint(const std::string &endpoint); static std::string GetExecutableDirectory(); static std::wstring GetExecutableDirectoryW(); static std::string GetGMTString(int64_t delayS); static std::string GetUTCString(int32_t Days, bool noSec = false); static std::string GetHTTPSEndpoint(const std::string endpoint); static std::string GetFileMd5(const std::string file); static std::string GetFileETag(const std::string file); static uint64_t GetFileCRC64(const std::string file); static void LogPrintCallback(LogLevel level, const std::string &stream); static std::string Base64Decode(std::string const& encoded_string); static bool IsByteBufferEQ(const char *src, const char *pat, int len); static bool IsByteBufferEQ(const unsigned char *src, const unsigned char *pat, int len); static bool IsByteBufferEQ(const ByteBuffer& src, const ByteBuffer& pat); static ByteBuffer GetRandomByteBuffer(int length); }; } } ================================================ FILE: third_party/include/curl/config-win32.h ================================================ #ifndef HEADER_CURL_CONFIG_WIN32_H #define HEADER_CURL_CONFIG_WIN32_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2011, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* ================================================================ */ /* Hand crafted config file for Windows */ /* ================================================================ */ /* ---------------------------------------------------------------- */ /* HEADER FILES */ /* ---------------------------------------------------------------- */ /* Define if you have the header file. */ /* #define HAVE_ARPA_INET_H 1 */ /* Define if you have the header file. */ #define HAVE_ASSERT_H 1 /* Define if you have the header file. */ /* #define HAVE_CRYPTO_H 1 */ /* Define if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define if you have the header file. */ /* #define HAVE_ERR_H 1 */ /* Define if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define if you have the header file. */ #if defined(__MINGW32__) || defined(__POCC__) #define HAVE_GETOPT_H 1 #endif /* Define if you have the header file. */ #define HAVE_IO_H 1 /* Define if you have the header file. */ #define HAVE_LIMITS_H 1 /* Define if you have the header file. */ #define HAVE_LOCALE_H 1 /* Define if you need header even with header file. */ #if !defined(__SALFORDC__) && !defined(__POCC__) #define NEED_MALLOC_H 1 #endif /* Define if you have the header file. */ /* #define HAVE_NETDB_H 1 */ /* Define if you have the header file. */ /* #define HAVE_NETINET_IN_H 1 */ /* Define if you have the header file. */ #ifndef __SALFORDC__ #define HAVE_PROCESS_H 1 #endif /* Define if you have the header file. */ #define HAVE_SIGNAL_H 1 /* Define if you have the header file. */ /* #define HAVE_SGTTY_H 1 */ /* Define if you have the header file. */ /* #define HAVE_SSL_H 1 */ /* Define if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define if you have the header file. */ /* #define HAVE_SYS_PARAM_H 1 */ /* Define if you have the header file. */ /* #define HAVE_SYS_SELECT_H 1 */ /* Define if you have the header file. */ /* #define HAVE_SYS_SOCKET_H 1 */ /* Define if you have the header file. */ /* #define HAVE_SYS_SOCKIO_H 1 */ /* Define if you have the header file. */ #define HAVE_SYS_STAT_H 1 /* Define if you have the header file. */ /* #define HAVE_SYS_TIME_H 1 */ /* Define if you have the header file. */ #define HAVE_SYS_TYPES_H 1 /* Define if you have the header file. */ #ifndef __BORLANDC__ #define HAVE_SYS_UTIME_H 1 #endif /* Define if you have the header file. */ /* #define HAVE_TERMIO_H 1 */ /* Define if you have the header file. */ /* #define HAVE_TERMIOS_H 1 */ /* Define if you have the header file. */ #define HAVE_TIME_H 1 /* Define if you have the header file. */ #if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__) || \ defined(__POCC__) #define HAVE_UNISTD_H 1 #endif /* Define if you have the header file. */ #define HAVE_WINDOWS_H 1 /* Define if you have the header file. */ #define HAVE_WINSOCK_H 1 /* Define if you have the header file. */ #ifndef __SALFORDC__ #define HAVE_WINSOCK2_H 1 #endif /* Define if you have the header file. */ #ifndef __SALFORDC__ #define HAVE_WS2TCPIP_H 1 #endif /* ---------------------------------------------------------------- */ /* OTHER HEADER INFO */ /* ---------------------------------------------------------------- */ /* Define if sig_atomic_t is an available typedef. */ #define HAVE_SIG_ATOMIC_T 1 /* Define if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Define if you can safely include both and . */ /* #define TIME_WITH_SYS_TIME 1 */ /* ---------------------------------------------------------------- */ /* FUNCTIONS */ /* ---------------------------------------------------------------- */ /* Define if you have the closesocket function. */ #define HAVE_CLOSESOCKET 1 /* Define if you don't have vprintf but do have _doprnt. */ /* #define HAVE_DOPRNT 1 */ /* Define if you have the ftruncate function. */ #define HAVE_FTRUNCATE 1 /* Define if you have the gethostbyaddr function. */ #define HAVE_GETHOSTBYADDR 1 /* Define if you have the gethostname function. */ #define HAVE_GETHOSTNAME 1 /* Define if you have the getpass function. */ /* #define HAVE_GETPASS 1 */ /* Define if you have the getservbyname function. */ #define HAVE_GETSERVBYNAME 1 /* Define if you have the getprotobyname function. */ #define HAVE_GETPROTOBYNAME /* Define if you have the gettimeofday function. */ /* #define HAVE_GETTIMEOFDAY 1 */ /* Define if you have the inet_addr function. */ #define HAVE_INET_ADDR 1 /* Define if you have the ioctlsocket function. */ #define HAVE_IOCTLSOCKET 1 /* Define if you have a working ioctlsocket FIONBIO function. */ #define HAVE_IOCTLSOCKET_FIONBIO 1 /* Define if you have the perror function. */ #define HAVE_PERROR 1 /* Define if you have the RAND_screen function when using SSL. */ #define HAVE_RAND_SCREEN 1 /* Define if you have the `RAND_status' function when using SSL. */ #define HAVE_RAND_STATUS 1 /* Define if you have the `CRYPTO_cleanup_all_ex_data' function. This is present in OpenSSL versions after 0.9.6b */ #define HAVE_CRYPTO_CLEANUP_ALL_EX_DATA 1 /* Define if you have the select function. */ #define HAVE_SELECT 1 /* Define if you have the setlocale function. */ #define HAVE_SETLOCALE 1 /* Define if you have the setmode function. */ #define HAVE_SETMODE 1 /* Define if you have the setvbuf function. */ #define HAVE_SETVBUF 1 /* Define if you have the socket function. */ #define HAVE_SOCKET 1 /* Define if you have the strcasecmp function. */ /* #define HAVE_STRCASECMP 1 */ /* Define if you have the strdup function. */ #define HAVE_STRDUP 1 /* Define if you have the strftime function. */ #define HAVE_STRFTIME 1 /* Define if you have the stricmp function. */ #define HAVE_STRICMP 1 /* Define if you have the strncasecmp function. */ /* #define HAVE_STRNCASECMP 1 */ /* Define if you have the strnicmp function. */ #define HAVE_STRNICMP 1 /* Define if you have the strstr function. */ #define HAVE_STRSTR 1 /* Define if you have the strtoll function. */ #if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__POCC__) #define HAVE_STRTOLL 1 #endif /* Define if you have the tcgetattr function. */ /* #define HAVE_TCGETATTR 1 */ /* Define if you have the tcsetattr function. */ /* #define HAVE_TCSETATTR 1 */ /* Define if you have the utime function. */ #ifndef __BORLANDC__ #define HAVE_UTIME 1 #endif /* Define to the type qualifier of arg 1 for getnameinfo. */ #define GETNAMEINFO_QUAL_ARG1 const /* Define to the type of arg 1 for getnameinfo. */ #define GETNAMEINFO_TYPE_ARG1 struct sockaddr * /* Define to the type of arg 2 for getnameinfo. */ #define GETNAMEINFO_TYPE_ARG2 socklen_t /* Define to the type of args 4 and 6 for getnameinfo. */ #define GETNAMEINFO_TYPE_ARG46 DWORD /* Define to the type of arg 7 for getnameinfo. */ #define GETNAMEINFO_TYPE_ARG7 int /* Define if you have the recv function. */ #define HAVE_RECV 1 /* Define to the type of arg 1 for recv. */ #define RECV_TYPE_ARG1 SOCKET /* Define to the type of arg 2 for recv. */ #define RECV_TYPE_ARG2 char * /* Define to the type of arg 3 for recv. */ #define RECV_TYPE_ARG3 int /* Define to the type of arg 4 for recv. */ #define RECV_TYPE_ARG4 int /* Define to the function return type for recv. */ #define RECV_TYPE_RETV int /* Define if you have the recvfrom function. */ #define HAVE_RECVFROM 1 /* Define to the type of arg 1 for recvfrom. */ #define RECVFROM_TYPE_ARG1 SOCKET /* Define to the type pointed by arg 2 for recvfrom. */ #define RECVFROM_TYPE_ARG2 char /* Define to the type of arg 3 for recvfrom. */ #define RECVFROM_TYPE_ARG3 int /* Define to the type of arg 4 for recvfrom. */ #define RECVFROM_TYPE_ARG4 int /* Define to the type pointed by arg 5 for recvfrom. */ #define RECVFROM_TYPE_ARG5 struct sockaddr /* Define to the type pointed by arg 6 for recvfrom. */ #define RECVFROM_TYPE_ARG6 int /* Define to the function return type for recvfrom. */ #define RECVFROM_TYPE_RETV int /* Define if you have the send function. */ #define HAVE_SEND 1 /* Define to the type of arg 1 for send. */ #define SEND_TYPE_ARG1 SOCKET /* Define to the type qualifier of arg 2 for send. */ #define SEND_QUAL_ARG2 const /* Define to the type of arg 2 for send. */ #define SEND_TYPE_ARG2 char * /* Define to the type of arg 3 for send. */ #define SEND_TYPE_ARG3 int /* Define to the type of arg 4 for send. */ #define SEND_TYPE_ARG4 int /* Define to the function return type for send. */ #define SEND_TYPE_RETV int /* ---------------------------------------------------------------- */ /* TYPEDEF REPLACEMENTS */ /* ---------------------------------------------------------------- */ /* Define if in_addr_t is not an available 'typedefed' type. */ #define in_addr_t unsigned long /* Define to the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* Define if ssize_t is not an available 'typedefed' type. */ #ifndef _SSIZE_T_DEFINED # if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || \ defined(__POCC__) || \ defined(__MINGW32__) # elif defined(_WIN64) # define _SSIZE_T_DEFINED # define ssize_t __int64 # else # define _SSIZE_T_DEFINED # define ssize_t int # endif #endif /* ---------------------------------------------------------------- */ /* TYPE SIZES */ /* ---------------------------------------------------------------- */ /* Define to the size of `int', as computed by sizeof. */ #define SIZEOF_INT 4 /* Define to the size of `long double', as computed by sizeof. */ #define SIZEOF_LONG_DOUBLE 16 /* Define to the size of `long long', as computed by sizeof. */ /* #define SIZEOF_LONG_LONG 8 */ /* Define to the size of `short', as computed by sizeof. */ #define SIZEOF_SHORT 2 /* Define to the size of `size_t', as computed by sizeof. */ #if defined(_WIN64) # define SIZEOF_SIZE_T 8 #else # define SIZEOF_SIZE_T 4 #endif /* ---------------------------------------------------------------- */ /* STRUCT RELATED */ /* ---------------------------------------------------------------- */ /* Define if you have struct sockaddr_storage. */ #if !defined(__SALFORDC__) && !defined(__BORLANDC__) #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #endif /* Define if you have struct timeval. */ #define HAVE_STRUCT_TIMEVAL 1 /* Define if struct sockaddr_in6 has the sin6_scope_id member. */ #define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1 /* ---------------------------------------------------------------- */ /* BSD-style lwIP TCP/IP stack SPECIFIC */ /* ---------------------------------------------------------------- */ /* Define to use BSD-style lwIP TCP/IP stack. */ /* #define USE_LWIPSOCK 1 */ #ifdef USE_LWIPSOCK # undef USE_WINSOCK # undef HAVE_WINSOCK_H # undef HAVE_WINSOCK2_H # undef HAVE_WS2TCPIP_H # undef HAVE_ERRNO_H # undef HAVE_GETHOSTNAME # undef HAVE_GETNAMEINFO # undef LWIP_POSIX_SOCKETS_IO_NAMES # undef RECV_TYPE_ARG1 # undef RECV_TYPE_ARG3 # undef SEND_TYPE_ARG1 # undef SEND_TYPE_ARG3 # define HAVE_FREEADDRINFO # define HAVE_GETADDRINFO # define HAVE_GETHOSTBYNAME # define HAVE_GETHOSTBYNAME_R # define HAVE_GETHOSTBYNAME_R_6 # define LWIP_POSIX_SOCKETS_IO_NAMES 0 # define RECV_TYPE_ARG1 int # define RECV_TYPE_ARG3 size_t # define SEND_TYPE_ARG1 int # define SEND_TYPE_ARG3 size_t #endif /* ---------------------------------------------------------------- */ /* Watt-32 tcp/ip SPECIFIC */ /* ---------------------------------------------------------------- */ #ifdef USE_WATT32 #include #undef byte #undef word #undef USE_WINSOCK #undef HAVE_WINSOCK_H #undef HAVE_WINSOCK2_H #undef HAVE_WS2TCPIP_H #define HAVE_GETADDRINFO #define HAVE_GETNAMEINFO #define HAVE_SYS_IOCTL_H #define HAVE_SYS_SOCKET_H #define HAVE_NETINET_IN_H #define HAVE_NETDB_H #define HAVE_ARPA_INET_H #define HAVE_FREEADDRINFO #define SOCKET int #endif /* ---------------------------------------------------------------- */ /* COMPILER SPECIFIC */ /* ---------------------------------------------------------------- */ /* Define to nothing if compiler does not support 'const' qualifier. */ /* #define const */ /* Define to nothing if compiler does not support 'volatile' qualifier. */ /* #define volatile */ /* Windows should not have HAVE_GMTIME_R defined */ /* #undef HAVE_GMTIME_R */ /* Define if the compiler supports C99 variadic macro style. */ #if defined(_MSC_VER) && (_MSC_VER >= 1400) #define HAVE_VARIADIC_MACROS_C99 1 #endif /* Define if the compiler supports the 'long long' data type. */ #if defined(__MINGW32__) || defined(__WATCOMC__) #define HAVE_LONGLONG 1 #endif /* Define to avoid VS2005 complaining about portable C functions. */ #if defined(_MSC_VER) && (_MSC_VER >= 1400) #define _CRT_SECURE_NO_DEPRECATE 1 #define _CRT_NONSTDC_NO_DEPRECATE 1 #endif /* VS2005 and later dafault size for time_t is 64-bit, unless _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */ #if defined(_MSC_VER) && (_MSC_VER >= 1400) # ifndef _USE_32BIT_TIME_T # define SIZEOF_TIME_T 8 # else # define SIZEOF_TIME_T 4 # endif #endif /* Officially, Microsoft's Windows SDK versions 6.X do not support Windows 2000 as a supported build target. VS2008 default installations provide an embedded Windows SDK v6.0A along with the claim that Windows 2000 is a valid build target for VS2008. Popular belief is that binaries built with VS2008 using Windows SDK versions 6.X and Windows 2000 as a build target are functional. */ #if defined(_MSC_VER) && (_MSC_VER >= 1500) # define VS2008_MIN_TARGET 0x0500 #endif /* When no build target is specified VS2008 default build target is Windows Vista, which leaves out even Winsows XP. If no build target has been given for VS2008 we will target the minimum Officially supported build target, which happens to be Windows XP. */ #if defined(_MSC_VER) && (_MSC_VER >= 1500) # define VS2008_DEF_TARGET 0x0501 #endif /* VS2008 default target settings and minimum build target check. */ #if defined(_MSC_VER) && (_MSC_VER >= 1500) # ifndef _WIN32_WINNT # define _WIN32_WINNT VS2008_DEF_TARGET # endif # ifndef WINVER # define WINVER VS2008_DEF_TARGET # endif # if (_WIN32_WINNT < VS2008_MIN_TARGET) || (WINVER < VS2008_MIN_TARGET) # error VS2008 does not support Windows build targets prior to Windows 2000 # endif #endif /* When no build target is specified Pelles C 5.00 and later default build target is Windows Vista. We override default target to be Windows 2000. */ #if defined(__POCC__) && (__POCC__ >= 500) # ifndef _WIN32_WINNT # define _WIN32_WINNT 0x0500 # endif # ifndef WINVER # define WINVER 0x0500 # endif #endif /* Availability of freeaddrinfo, getaddrinfo and getnameinfo functions is quite convoluted, compiler dependent and even build target dependent. */ #if defined(HAVE_WS2TCPIP_H) # if defined(__POCC__) # define HAVE_FREEADDRINFO 1 # define HAVE_GETADDRINFO 1 # define HAVE_GETADDRINFO_THREADSAFE 1 # define HAVE_GETNAMEINFO 1 # elif defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0501) # define HAVE_FREEADDRINFO 1 # define HAVE_GETADDRINFO 1 # define HAVE_GETADDRINFO_THREADSAFE 1 # define HAVE_GETNAMEINFO 1 # elif defined(_MSC_VER) && (_MSC_VER >= 1200) # define HAVE_FREEADDRINFO 1 # define HAVE_GETADDRINFO 1 # define HAVE_GETADDRINFO_THREADSAFE 1 # define HAVE_GETNAMEINFO 1 # endif #endif #if defined(__POCC__) # ifndef _MSC_VER # error Microsoft extensions /Ze compiler option is required # endif # ifndef __POCC__OLDNAMES # error Compatibility names /Go compiler option is required # endif #endif /* ---------------------------------------------------------------- */ /* LARGE FILE SUPPORT */ /* ---------------------------------------------------------------- */ #if defined(_MSC_VER) && !defined(_WIN32_WCE) # if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64) # define USE_WIN32_LARGE_FILES # else # define USE_WIN32_SMALL_FILES # endif #endif #if defined(__MINGW32__) && !defined(USE_WIN32_LARGE_FILES) # define USE_WIN32_LARGE_FILES #endif #if defined(__WATCOMC__) && !defined(USE_WIN32_LARGE_FILES) # define USE_WIN32_LARGE_FILES #endif #if defined(__POCC__) # undef USE_WIN32_LARGE_FILES #endif #if !defined(USE_WIN32_LARGE_FILES) && !defined(USE_WIN32_SMALL_FILES) # define USE_WIN32_SMALL_FILES #endif /* ---------------------------------------------------------------- */ /* DNS RESOLVER SPECIALTY */ /* ---------------------------------------------------------------- */ /* * Undefine both USE_ARES and USE_THREADS_WIN32 for synchronous DNS. */ /* Define to enable c-ares asynchronous DNS lookups. */ /* #define USE_ARES 1 */ /* Default define to enable threaded asynchronous DNS lookups. */ #if !defined(USE_SYNC_DNS) && !defined(USE_ARES) && \ !defined(USE_THREADS_WIN32) # define USE_THREADS_WIN32 1 #endif #if defined(USE_ARES) && defined(USE_THREADS_WIN32) # error "Only one DNS lookup specialty may be defined at most" #endif /* ---------------------------------------------------------------- */ /* LDAP SUPPORT */ /* ---------------------------------------------------------------- */ #if defined(CURL_HAS_NOVELL_LDAPSDK) || defined(CURL_HAS_MOZILLA_LDAPSDK) #undef CURL_LDAP_WIN #define HAVE_LDAP_SSL_H 1 #define HAVE_LDAP_URL_PARSE 1 #elif defined(CURL_HAS_OPENLDAP_LDAPSDK) #undef CURL_LDAP_WIN #define HAVE_LDAP_URL_PARSE 1 #else #undef HAVE_LDAP_URL_PARSE #define CURL_LDAP_WIN 1 #endif #if defined(__WATCOMC__) && defined(CURL_LDAP_WIN) #if __WATCOMC__ < 1280 #define WINBERAPI __declspec(cdecl) #define WINLDAPAPI __declspec(cdecl) #endif #endif #if defined(__POCC__) && defined(CURL_LDAP_WIN) # define CURL_DISABLE_LDAP 1 #endif /* ---------------------------------------------------------------- */ /* ADDITIONAL DEFINITIONS */ /* ---------------------------------------------------------------- */ /* Define cpu-machine-OS */ #undef OS #if defined(_M_IX86) || defined(__i386__) /* x86 (MSVC or gcc) */ #define OS "i386-pc-win32" #elif defined(_M_X64) || defined(__x86_64__) /* x86_64 (MSVC >=2005 or gcc) */ #define OS "x86_64-pc-win32" #elif defined(_M_IA64) /* Itanium */ #define OS "ia64-pc-win32" #else #define OS "unknown-pc-win32" #endif /* Name of package */ #define PACKAGE "curl" /* If you want to build curl with the built-in manual */ #define USE_MANUAL 1 #if defined(__POCC__) || (USE_IPV6) # define ENABLE_IPV6 1 #endif #endif /* HEADER_CURL_CONFIG_WIN32_H */ ================================================ FILE: third_party/include/curl/curl.h ================================================ #ifndef __CURL_CURL_H #define __CURL_CURL_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* * If you have libcurl problems, all docs and details are found here: * http://curl.haxx.se/libcurl/ * * curl-library mailing list subscription and unsubscription web interface: * http://cool.haxx.se/mailman/listinfo/curl-library/ */ #include "curlver.h" /* libcurl version defines */ #include "curlbuild.h" /* libcurl build definitions */ #include "curlrules.h" /* libcurl rules enforcement */ /* * Define WIN32 when build target is Win32 API */ #if (defined(_WIN32) || defined(__WIN32__)) && \ !defined(WIN32) && !defined(__SYMBIAN32__) #define WIN32 #endif #include #include #if defined(__FreeBSD__) && (__FreeBSD__ >= 2) /* Needed for __FreeBSD_version symbol definition */ #include #endif /* The include stuff here below is mainly for time_t! */ #include #include #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__) #if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H) || defined(__LWIP_OPT_H__)) /* The check above prevents the winsock2 inclusion if winsock.h already was included, since they can't co-exist without problems */ #include #include #endif #endif /* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish libc5-based Linux systems. Only include it on systems that are known to require it! */ #if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \ defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \ defined(ANDROID) || defined(__ANDROID__) || \ (defined(__FreeBSD_version) && (__FreeBSD_version < 800000)) #include #endif #if !defined(WIN32) && !defined(_WIN32_WCE) #include #endif #if !defined(WIN32) && !defined(__WATCOMC__) && !defined(__VXWORKS__) #include #endif #ifdef __BEOS__ #include #endif #ifdef __cplusplus extern "C" { #endif typedef void CURL; /* * libcurl external API function linkage decorations. */ #ifdef CURL_STATICLIB # define CURL_EXTERN #elif defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__) # if defined(BUILDING_LIBCURL) # define CURL_EXTERN __declspec(dllexport) # else # define CURL_EXTERN __declspec(dllimport) # endif #elif defined(BUILDING_LIBCURL) && defined(CURL_HIDDEN_SYMBOLS) # define CURL_EXTERN CURL_EXTERN_SYMBOL #else # define CURL_EXTERN #endif #ifndef curl_socket_typedef /* socket typedef */ #if defined(WIN32) && !defined(__LWIP_OPT_H__) typedef SOCKET curl_socket_t; #define CURL_SOCKET_BAD INVALID_SOCKET #else typedef int curl_socket_t; #define CURL_SOCKET_BAD -1 #endif #define curl_socket_typedef #endif /* curl_socket_typedef */ struct curl_httppost { struct curl_httppost *next; /* next entry in the list */ char *name; /* pointer to allocated name */ long namelength; /* length of name length */ char *contents; /* pointer to allocated data contents */ long contentslength; /* length of contents field */ char *buffer; /* pointer to allocated buffer contents */ long bufferlength; /* length of buffer field */ char *contenttype; /* Content-Type */ struct curl_slist* contentheader; /* list of extra headers for this form */ struct curl_httppost *more; /* if one field name has more than one file, this link should link to following files */ long flags; /* as defined below */ #define HTTPPOST_FILENAME (1<<0) /* specified content is a file name */ #define HTTPPOST_READFILE (1<<1) /* specified content is a file name */ #define HTTPPOST_PTRNAME (1<<2) /* name is only stored pointer do not free in formfree */ #define HTTPPOST_PTRCONTENTS (1<<3) /* contents is only stored pointer do not free in formfree */ #define HTTPPOST_BUFFER (1<<4) /* upload file from buffer */ #define HTTPPOST_PTRBUFFER (1<<5) /* upload file from pointer contents */ #define HTTPPOST_CALLBACK (1<<6) /* upload file contents by using the regular read callback to get the data and pass the given pointer as custom pointer */ char *showfilename; /* The file name to show. If not set, the actual file name will be used (if this is a file part) */ void *userp; /* custom pointer used for HTTPPOST_CALLBACK posts */ }; typedef int (*curl_progress_callback)(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow); #ifndef CURL_MAX_WRITE_SIZE /* Tests have proven that 20K is a very bad buffer size for uploads on Windows, while 16K for some odd reason performed a lot better. We do the ifndef check to allow this value to easier be changed at build time for those who feel adventurous. The practical minimum is about 400 bytes since libcurl uses a buffer of this size as a scratch area (unrelated to network send operations). */ #define CURL_MAX_WRITE_SIZE 16384 #endif #ifndef CURL_MAX_HTTP_HEADER /* The only reason to have a max limit for this is to avoid the risk of a bad server feeding libcurl with a never-ending header that will cause reallocs infinitely */ #define CURL_MAX_HTTP_HEADER (100*1024) #endif /* This is a magic return code for the write callback that, when returned, will signal libcurl to pause receiving on the current transfer. */ #define CURL_WRITEFUNC_PAUSE 0x10000001 typedef size_t (*curl_write_callback)(char *buffer, size_t size, size_t nitems, void *outstream); /* enumeration of file types */ typedef enum { CURLFILETYPE_FILE = 0, CURLFILETYPE_DIRECTORY, CURLFILETYPE_SYMLINK, CURLFILETYPE_DEVICE_BLOCK, CURLFILETYPE_DEVICE_CHAR, CURLFILETYPE_NAMEDPIPE, CURLFILETYPE_SOCKET, CURLFILETYPE_DOOR, /* is possible only on Sun Solaris now */ CURLFILETYPE_UNKNOWN /* should never occur */ } curlfiletype; #define CURLFINFOFLAG_KNOWN_FILENAME (1<<0) #define CURLFINFOFLAG_KNOWN_FILETYPE (1<<1) #define CURLFINFOFLAG_KNOWN_TIME (1<<2) #define CURLFINFOFLAG_KNOWN_PERM (1<<3) #define CURLFINFOFLAG_KNOWN_UID (1<<4) #define CURLFINFOFLAG_KNOWN_GID (1<<5) #define CURLFINFOFLAG_KNOWN_SIZE (1<<6) #define CURLFINFOFLAG_KNOWN_HLINKCOUNT (1<<7) /* Content of this structure depends on information which is known and is achievable (e.g. by FTP LIST parsing). Please see the url_easy_setopt(3) man page for callbacks returning this structure -- some fields are mandatory, some others are optional. The FLAG field has special meaning. */ struct curl_fileinfo { char *filename; curlfiletype filetype; time_t time; unsigned int perm; int uid; int gid; curl_off_t size; long int hardlinks; struct { /* If some of these fields is not NULL, it is a pointer to b_data. */ char *time; char *perm; char *user; char *group; char *target; /* pointer to the target filename of a symlink */ } strings; unsigned int flags; /* used internally */ char * b_data; size_t b_size; size_t b_used; }; /* return codes for CURLOPT_CHUNK_BGN_FUNCTION */ #define CURL_CHUNK_BGN_FUNC_OK 0 #define CURL_CHUNK_BGN_FUNC_FAIL 1 /* tell the lib to end the task */ #define CURL_CHUNK_BGN_FUNC_SKIP 2 /* skip this chunk over */ /* if splitting of data transfer is enabled, this callback is called before download of an individual chunk started. Note that parameter "remains" works only for FTP wildcard downloading (for now), otherwise is not used */ typedef long (*curl_chunk_bgn_callback)(const void *transfer_info, void *ptr, int remains); /* return codes for CURLOPT_CHUNK_END_FUNCTION */ #define CURL_CHUNK_END_FUNC_OK 0 #define CURL_CHUNK_END_FUNC_FAIL 1 /* tell the lib to end the task */ /* If splitting of data transfer is enabled this callback is called after download of an individual chunk finished. Note! After this callback was set then it have to be called FOR ALL chunks. Even if downloading of this chunk was skipped in CHUNK_BGN_FUNC. This is the reason why we don't need "transfer_info" parameter in this callback and we are not interested in "remains" parameter too. */ typedef long (*curl_chunk_end_callback)(void *ptr); /* return codes for FNMATCHFUNCTION */ #define CURL_FNMATCHFUNC_MATCH 0 /* string corresponds to the pattern */ #define CURL_FNMATCHFUNC_NOMATCH 1 /* pattern doesn't match the string */ #define CURL_FNMATCHFUNC_FAIL 2 /* an error occurred */ /* callback type for wildcard downloading pattern matching. If the string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc. */ typedef int (*curl_fnmatch_callback)(void *ptr, const char *pattern, const char *string); /* These are the return codes for the seek callbacks */ #define CURL_SEEKFUNC_OK 0 #define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */ #define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so libcurl might try other means instead */ typedef int (*curl_seek_callback)(void *instream, curl_off_t offset, int origin); /* 'whence' */ /* This is a return code for the read callback that, when returned, will signal libcurl to immediately abort the current transfer. */ #define CURL_READFUNC_ABORT 0x10000000 /* This is a return code for the read callback that, when returned, will signal libcurl to pause sending data on the current transfer. */ #define CURL_READFUNC_PAUSE 0x10000001 typedef size_t (*curl_read_callback)(char *buffer, size_t size, size_t nitems, void *instream); typedef enum { CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */ CURLSOCKTYPE_ACCEPT, /* socket created by accept() call */ CURLSOCKTYPE_LAST /* never use */ } curlsocktype; /* The return code from the sockopt_callback can signal information back to libcurl: */ #define CURL_SOCKOPT_OK 0 #define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return CURLE_ABORTED_BY_CALLBACK */ #define CURL_SOCKOPT_ALREADY_CONNECTED 2 typedef int (*curl_sockopt_callback)(void *clientp, curl_socket_t curlfd, curlsocktype purpose); struct curl_sockaddr { int family; int socktype; int protocol; unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it turned really ugly and painful on the systems that lack this type */ struct sockaddr addr; }; typedef curl_socket_t (*curl_opensocket_callback)(void *clientp, curlsocktype purpose, struct curl_sockaddr *address); typedef int (*curl_closesocket_callback)(void *clientp, curl_socket_t item); typedef enum { CURLIOE_OK, /* I/O operation successful */ CURLIOE_UNKNOWNCMD, /* command was unknown to callback */ CURLIOE_FAILRESTART, /* failed to restart the read */ CURLIOE_LAST /* never use */ } curlioerr; typedef enum { CURLIOCMD_NOP, /* no operation */ CURLIOCMD_RESTARTREAD, /* restart the read stream from start */ CURLIOCMD_LAST /* never use */ } curliocmd; typedef curlioerr (*curl_ioctl_callback)(CURL *handle, int cmd, void *clientp); /* * The following typedef's are signatures of malloc, free, realloc, strdup and * calloc respectively. Function pointers of these types can be passed to the * curl_global_init_mem() function to set user defined memory management * callback routines. */ typedef void *(*curl_malloc_callback)(size_t size); typedef void (*curl_free_callback)(void *ptr); typedef void *(*curl_realloc_callback)(void *ptr, size_t size); typedef char *(*curl_strdup_callback)(const char *str); typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size); /* the kind of data that is passed to information_callback*/ typedef enum { CURLINFO_TEXT = 0, CURLINFO_HEADER_IN, /* 1 */ CURLINFO_HEADER_OUT, /* 2 */ CURLINFO_DATA_IN, /* 3 */ CURLINFO_DATA_OUT, /* 4 */ CURLINFO_SSL_DATA_IN, /* 5 */ CURLINFO_SSL_DATA_OUT, /* 6 */ CURLINFO_END } curl_infotype; typedef int (*curl_debug_callback) (CURL *handle, /* the handle/transfer this concerns */ curl_infotype type, /* what kind of data */ char *data, /* points to the data */ size_t size, /* size of the data pointed to */ void *userptr); /* whatever the user please */ /* All possible error codes from all sorts of curl functions. Future versions may return other values, stay prepared. Always add new return codes last. Never *EVER* remove any. The return codes must remain the same! */ typedef enum { CURLE_OK = 0, CURLE_UNSUPPORTED_PROTOCOL, /* 1 */ CURLE_FAILED_INIT, /* 2 */ CURLE_URL_MALFORMAT, /* 3 */ CURLE_NOT_BUILT_IN, /* 4 - [was obsoleted in August 2007 for 7.17.0, reused in April 2011 for 7.21.5] */ CURLE_COULDNT_RESOLVE_PROXY, /* 5 */ CURLE_COULDNT_RESOLVE_HOST, /* 6 */ CURLE_COULDNT_CONNECT, /* 7 */ CURLE_FTP_WEIRD_SERVER_REPLY, /* 8 */ CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server due to lack of access - when login fails this is not returned. */ CURLE_FTP_ACCEPT_FAILED, /* 10 - [was obsoleted in April 2006 for 7.15.4, reused in Dec 2011 for 7.24.0]*/ CURLE_FTP_WEIRD_PASS_REPLY, /* 11 */ CURLE_FTP_ACCEPT_TIMEOUT, /* 12 - timeout occurred accepting server [was obsoleted in August 2007 for 7.17.0, reused in Dec 2011 for 7.24.0]*/ CURLE_FTP_WEIRD_PASV_REPLY, /* 13 */ CURLE_FTP_WEIRD_227_FORMAT, /* 14 */ CURLE_FTP_CANT_GET_HOST, /* 15 */ CURLE_OBSOLETE16, /* 16 - NOT USED */ CURLE_FTP_COULDNT_SET_TYPE, /* 17 */ CURLE_PARTIAL_FILE, /* 18 */ CURLE_FTP_COULDNT_RETR_FILE, /* 19 */ CURLE_OBSOLETE20, /* 20 - NOT USED */ CURLE_QUOTE_ERROR, /* 21 - quote command failure */ CURLE_HTTP_RETURNED_ERROR, /* 22 */ CURLE_WRITE_ERROR, /* 23 */ CURLE_OBSOLETE24, /* 24 - NOT USED */ CURLE_UPLOAD_FAILED, /* 25 - failed upload "command" */ CURLE_READ_ERROR, /* 26 - couldn't open/read from file */ CURLE_OUT_OF_MEMORY, /* 27 */ /* Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error instead of a memory allocation error if CURL_DOES_CONVERSIONS is defined */ CURLE_OPERATION_TIMEDOUT, /* 28 - the timeout time was reached */ CURLE_OBSOLETE29, /* 29 - NOT USED */ CURLE_FTP_PORT_FAILED, /* 30 - FTP PORT operation failed */ CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */ CURLE_OBSOLETE32, /* 32 - NOT USED */ CURLE_RANGE_ERROR, /* 33 - RANGE "command" didn't work */ CURLE_HTTP_POST_ERROR, /* 34 */ CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */ CURLE_BAD_DOWNLOAD_RESUME, /* 36 - couldn't resume download */ CURLE_FILE_COULDNT_READ_FILE, /* 37 */ CURLE_LDAP_CANNOT_BIND, /* 38 */ CURLE_LDAP_SEARCH_FAILED, /* 39 */ CURLE_OBSOLETE40, /* 40 - NOT USED */ CURLE_FUNCTION_NOT_FOUND, /* 41 */ CURLE_ABORTED_BY_CALLBACK, /* 42 */ CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */ CURLE_OBSOLETE44, /* 44 - NOT USED */ CURLE_INTERFACE_FAILED, /* 45 - CURLOPT_INTERFACE failed */ CURLE_OBSOLETE46, /* 46 - NOT USED */ CURLE_TOO_MANY_REDIRECTS , /* 47 - catch endless re-direct loops */ CURLE_UNKNOWN_OPTION, /* 48 - User specified an unknown option */ CURLE_TELNET_OPTION_SYNTAX , /* 49 - Malformed telnet option */ CURLE_OBSOLETE50, /* 50 - NOT USED */ CURLE_PEER_FAILED_VERIFICATION, /* 51 - peer's certificate or fingerprint wasn't verified fine */ CURLE_GOT_NOTHING, /* 52 - when this is a specific error */ CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */ CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as default */ CURLE_SEND_ERROR, /* 55 - failed sending network data */ CURLE_RECV_ERROR, /* 56 - failure in receiving network data */ CURLE_OBSOLETE57, /* 57 - NOT IN USE */ CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */ CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */ CURLE_SSL_CACERT, /* 60 - problem with the CA cert (path?) */ CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized/bad encoding */ CURLE_LDAP_INVALID_URL, /* 62 - Invalid LDAP URL */ CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */ CURLE_USE_SSL_FAILED, /* 64 - Requested FTP SSL level failed */ CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind that failed */ CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */ CURLE_LOGIN_DENIED, /* 67 - user, password or similar was not accepted and we failed to login */ CURLE_TFTP_NOTFOUND, /* 68 - file not found on server */ CURLE_TFTP_PERM, /* 69 - permission problem on server */ CURLE_REMOTE_DISK_FULL, /* 70 - out of disk space on server */ CURLE_TFTP_ILLEGAL, /* 71 - Illegal TFTP operation */ CURLE_TFTP_UNKNOWNID, /* 72 - Unknown transfer ID */ CURLE_REMOTE_FILE_EXISTS, /* 73 - File already exists */ CURLE_TFTP_NOSUCHUSER, /* 74 - No such user */ CURLE_CONV_FAILED, /* 75 - conversion failed */ CURLE_CONV_REQD, /* 76 - caller must register conversion callbacks using curl_easy_setopt options CURLOPT_CONV_FROM_NETWORK_FUNCTION, CURLOPT_CONV_TO_NETWORK_FUNCTION, and CURLOPT_CONV_FROM_UTF8_FUNCTION */ CURLE_SSL_CACERT_BADFILE, /* 77 - could not load CACERT file, missing or wrong format */ CURLE_REMOTE_FILE_NOT_FOUND, /* 78 - remote file not found */ CURLE_SSH, /* 79 - error from the SSH layer, somewhat generic so the error message will be of interest when this has happened */ CURLE_SSL_SHUTDOWN_FAILED, /* 80 - Failed to shut down the SSL connection */ CURLE_AGAIN, /* 81 - socket is not ready for send/recv, wait till it's ready and try again (Added in 7.18.2) */ CURLE_SSL_CRL_BADFILE, /* 82 - could not load CRL file, missing or wrong format (Added in 7.19.0) */ CURLE_SSL_ISSUER_ERROR, /* 83 - Issuer check failed. (Added in 7.19.0) */ CURLE_FTP_PRET_FAILED, /* 84 - a PRET command failed */ CURLE_RTSP_CSEQ_ERROR, /* 85 - mismatch of RTSP CSeq numbers */ CURLE_RTSP_SESSION_ERROR, /* 86 - mismatch of RTSP Session Ids */ CURLE_FTP_BAD_FILE_LIST, /* 87 - unable to parse FTP file list */ CURLE_CHUNK_FAILED, /* 88 - chunk callback reported error */ CURLE_NO_CONNECTION_AVAILABLE, /* 89 - No connection available, the session will be queued */ CURL_LAST /* never use! */ } CURLcode; #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all the obsolete stuff removed! */ /* Previously obsoletes error codes re-used in 7.24.0 */ #define CURLE_OBSOLETE10 CURLE_FTP_ACCEPT_FAILED #define CURLE_OBSOLETE12 CURLE_FTP_ACCEPT_TIMEOUT /* compatibility with older names */ #define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING /* The following were added in 7.21.5, April 2011 */ #define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION /* The following were added in 7.17.1 */ /* These are scheduled to disappear by 2009 */ #define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION /* The following were added in 7.17.0 */ /* These are scheduled to disappear by 2009 */ #define CURLE_OBSOLETE CURLE_OBSOLETE50 /* no one should be using this! */ #define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46 #define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44 #define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10 #define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16 #define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32 #define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29 #define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12 #define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20 #define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40 #define CURLE_MALFORMAT_USER CURLE_OBSOLETE24 #define CURLE_SHARE_IN_USE CURLE_OBSOLETE57 #define CURLE_URL_MALFORMAT_USER CURLE_NOT_BUILT_IN #define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED #define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE #define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR #define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL #define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS #define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR #define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED /* The following were added earlier */ #define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT #define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR #define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED #define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED #define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE #define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME /* This was the error code 50 in 7.7.3 and a few earlier versions, this is no longer used by libcurl but is instead #defined here only to not make programs break */ #define CURLE_ALREADY_COMPLETE 99999 #endif /*!CURL_NO_OLDIES*/ /* This prototype applies to all conversion callbacks */ typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length); typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl, /* easy handle */ void *ssl_ctx, /* actually an OpenSSL SSL_CTX */ void *userptr); typedef enum { CURLPROXY_HTTP = 0, /* added in 7.10, new in 7.19.4 default is to use CONNECT HTTP/1.1 */ CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT HTTP/1.0 */ CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already in 7.10 */ CURLPROXY_SOCKS5 = 5, /* added in 7.10 */ CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */ CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the host name rather than the IP address. added in 7.18.0 */ } curl_proxytype; /* this enum was added in 7.10 */ /* * Bitmasks for CURLOPT_HTTPAUTH and CURLOPT_PROXYAUTH options: * * CURLAUTH_NONE - No HTTP authentication * CURLAUTH_BASIC - HTTP Basic authentication (default) * CURLAUTH_DIGEST - HTTP Digest authentication * CURLAUTH_GSSNEGOTIATE - HTTP GSS-Negotiate authentication * CURLAUTH_NTLM - HTTP NTLM authentication * CURLAUTH_DIGEST_IE - HTTP Digest authentication with IE flavour * CURLAUTH_NTLM_WB - HTTP NTLM authentication delegated to winbind helper * CURLAUTH_ONLY - Use together with a single other type to force no * authentication or just that single type * CURLAUTH_ANY - All fine types set * CURLAUTH_ANYSAFE - All fine types except Basic */ #define CURLAUTH_NONE ((unsigned long)0) #define CURLAUTH_BASIC (((unsigned long)1)<<0) #define CURLAUTH_DIGEST (((unsigned long)1)<<1) #define CURLAUTH_GSSNEGOTIATE (((unsigned long)1)<<2) #define CURLAUTH_NTLM (((unsigned long)1)<<3) #define CURLAUTH_DIGEST_IE (((unsigned long)1)<<4) #define CURLAUTH_NTLM_WB (((unsigned long)1)<<5) #define CURLAUTH_ONLY (((unsigned long)1)<<31) #define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE) #define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE)) #define CURLSSH_AUTH_ANY ~0 /* all types supported by the server */ #define CURLSSH_AUTH_NONE 0 /* none allowed, silly but complete */ #define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */ #define CURLSSH_AUTH_PASSWORD (1<<1) /* password */ #define CURLSSH_AUTH_HOST (1<<2) /* host key files */ #define CURLSSH_AUTH_KEYBOARD (1<<3) /* keyboard interactive */ #define CURLSSH_AUTH_AGENT (1<<4) /* agent (ssh-agent, pageant...) */ #define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY #define CURLGSSAPI_DELEGATION_NONE 0 /* no delegation (default) */ #define CURLGSSAPI_DELEGATION_POLICY_FLAG (1<<0) /* if permitted by policy */ #define CURLGSSAPI_DELEGATION_FLAG (1<<1) /* delegate always */ #define CURL_ERROR_SIZE 256 struct curl_khkey { const char *key; /* points to a zero-terminated string encoded with base64 if len is zero, otherwise to the "raw" data */ size_t len; enum type { CURLKHTYPE_UNKNOWN, CURLKHTYPE_RSA1, CURLKHTYPE_RSA, CURLKHTYPE_DSS } keytype; }; /* this is the set of return values expected from the curl_sshkeycallback callback */ enum curl_khstat { CURLKHSTAT_FINE_ADD_TO_FILE, CURLKHSTAT_FINE, CURLKHSTAT_REJECT, /* reject the connection, return an error */ CURLKHSTAT_DEFER, /* do not accept it, but we can't answer right now so this causes a CURLE_DEFER error but otherwise the connection will be left intact etc */ CURLKHSTAT_LAST /* not for use, only a marker for last-in-list */ }; /* this is the set of status codes pass in to the callback */ enum curl_khmatch { CURLKHMATCH_OK, /* match */ CURLKHMATCH_MISMATCH, /* host found, key mismatch! */ CURLKHMATCH_MISSING, /* no matching host/key found */ CURLKHMATCH_LAST /* not for use, only a marker for last-in-list */ }; typedef int (*curl_sshkeycallback) (CURL *easy, /* easy handle */ const struct curl_khkey *knownkey, /* known */ const struct curl_khkey *foundkey, /* found */ enum curl_khmatch, /* libcurl's view on the keys */ void *clientp); /* custom pointer passed from app */ /* parameter for the CURLOPT_USE_SSL option */ typedef enum { CURLUSESSL_NONE, /* do not attempt to use SSL */ CURLUSESSL_TRY, /* try using SSL, proceed anyway otherwise */ CURLUSESSL_CONTROL, /* SSL for the control connection or fail */ CURLUSESSL_ALL, /* SSL for all communication or fail */ CURLUSESSL_LAST /* not an option, never use */ } curl_usessl; /* Definition of bits for the CURLOPT_SSL_OPTIONS argument: */ /* - ALLOW_BEAST tells libcurl to allow the BEAST SSL vulnerability in the name of improving interoperability with older servers. Some SSL libraries have introduced work-arounds for this flaw but those work-arounds sometimes make the SSL communication fail. To regain functionality with those broken servers, a user can this way allow the vulnerability back. */ #define CURLSSLOPT_ALLOW_BEAST (1<<0) #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all the obsolete stuff removed! */ /* Backwards compatibility with older names */ /* These are scheduled to disappear by 2009 */ #define CURLFTPSSL_NONE CURLUSESSL_NONE #define CURLFTPSSL_TRY CURLUSESSL_TRY #define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL #define CURLFTPSSL_ALL CURLUSESSL_ALL #define CURLFTPSSL_LAST CURLUSESSL_LAST #define curl_ftpssl curl_usessl #endif /*!CURL_NO_OLDIES*/ /* parameter for the CURLOPT_FTP_SSL_CCC option */ typedef enum { CURLFTPSSL_CCC_NONE, /* do not send CCC */ CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */ CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */ CURLFTPSSL_CCC_LAST /* not an option, never use */ } curl_ftpccc; /* parameter for the CURLOPT_FTPSSLAUTH option */ typedef enum { CURLFTPAUTH_DEFAULT, /* let libcurl decide */ CURLFTPAUTH_SSL, /* use "AUTH SSL" */ CURLFTPAUTH_TLS, /* use "AUTH TLS" */ CURLFTPAUTH_LAST /* not an option, never use */ } curl_ftpauth; /* parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option */ typedef enum { CURLFTP_CREATE_DIR_NONE, /* do NOT create missing dirs! */ CURLFTP_CREATE_DIR, /* (FTP/SFTP) if CWD fails, try MKD and then CWD again if MKD succeeded, for SFTP this does similar magic */ CURLFTP_CREATE_DIR_RETRY, /* (FTP only) if CWD fails, try MKD and then CWD again even if MKD failed! */ CURLFTP_CREATE_DIR_LAST /* not an option, never use */ } curl_ftpcreatedir; /* parameter for the CURLOPT_FTP_FILEMETHOD option */ typedef enum { CURLFTPMETHOD_DEFAULT, /* let libcurl pick */ CURLFTPMETHOD_MULTICWD, /* single CWD operation for each path part */ CURLFTPMETHOD_NOCWD, /* no CWD at all */ CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */ CURLFTPMETHOD_LAST /* not an option, never use */ } curl_ftpmethod; /* CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options */ #define CURLPROTO_HTTP (1<<0) #define CURLPROTO_HTTPS (1<<1) #define CURLPROTO_FTP (1<<2) #define CURLPROTO_FTPS (1<<3) #define CURLPROTO_SCP (1<<4) #define CURLPROTO_SFTP (1<<5) #define CURLPROTO_TELNET (1<<6) #define CURLPROTO_LDAP (1<<7) #define CURLPROTO_LDAPS (1<<8) #define CURLPROTO_DICT (1<<9) #define CURLPROTO_FILE (1<<10) #define CURLPROTO_TFTP (1<<11) #define CURLPROTO_IMAP (1<<12) #define CURLPROTO_IMAPS (1<<13) #define CURLPROTO_POP3 (1<<14) #define CURLPROTO_POP3S (1<<15) #define CURLPROTO_SMTP (1<<16) #define CURLPROTO_SMTPS (1<<17) #define CURLPROTO_RTSP (1<<18) #define CURLPROTO_RTMP (1<<19) #define CURLPROTO_RTMPT (1<<20) #define CURLPROTO_RTMPE (1<<21) #define CURLPROTO_RTMPTE (1<<22) #define CURLPROTO_RTMPS (1<<23) #define CURLPROTO_RTMPTS (1<<24) #define CURLPROTO_GOPHER (1<<25) #define CURLPROTO_ALL (~0) /* enable everything */ /* long may be 32 or 64 bits, but we should never depend on anything else but 32 */ #define CURLOPTTYPE_LONG 0 #define CURLOPTTYPE_OBJECTPOINT 10000 #define CURLOPTTYPE_FUNCTIONPOINT 20000 #define CURLOPTTYPE_OFF_T 30000 /* name is uppercase CURLOPT_, type is one of the defined CURLOPTTYPE_ number is unique identifier */ #ifdef CINIT #undef CINIT #endif #ifdef CURL_ISOCPP #define CINIT(na,t,nu) CURLOPT_ ## na = CURLOPTTYPE_ ## t + nu #else /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ #define LONG CURLOPTTYPE_LONG #define OBJECTPOINT CURLOPTTYPE_OBJECTPOINT #define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT #define OFF_T CURLOPTTYPE_OFF_T #define CINIT(name,type,number) CURLOPT_/**/name = type + number #endif /* * This macro-mania below setups the CURLOPT_[what] enum, to be used with * curl_easy_setopt(). The first argument in the CINIT() macro is the [what] * word. */ typedef enum { /* This is the FILE * or void * the regular output should be written to. */ CINIT(FILE, OBJECTPOINT, 1), /* The full URL to get/put */ CINIT(URL, OBJECTPOINT, 2), /* Port number to connect to, if other than default. */ CINIT(PORT, LONG, 3), /* Name of proxy to use. */ CINIT(PROXY, OBJECTPOINT, 4), /* "name:password" to use when fetching. */ CINIT(USERPWD, OBJECTPOINT, 5), /* "name:password" to use with proxy. */ CINIT(PROXYUSERPWD, OBJECTPOINT, 6), /* Range to get, specified as an ASCII string. */ CINIT(RANGE, OBJECTPOINT, 7), /* not used */ /* Specified file stream to upload from (use as input): */ CINIT(INFILE, OBJECTPOINT, 9), /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE * bytes big. If this is not used, error messages go to stderr instead: */ CINIT(ERRORBUFFER, OBJECTPOINT, 10), /* Function that will be called to store the output (instead of fwrite). The * parameters will use fwrite() syntax, make sure to follow them. */ CINIT(WRITEFUNCTION, FUNCTIONPOINT, 11), /* Function that will be called to read the input (instead of fread). The * parameters will use fread() syntax, make sure to follow them. */ CINIT(READFUNCTION, FUNCTIONPOINT, 12), /* Time-out the read operation after this amount of seconds */ CINIT(TIMEOUT, LONG, 13), /* If the CURLOPT_INFILE is used, this can be used to inform libcurl about * how large the file being sent really is. That allows better error * checking and better verifies that the upload was successful. -1 means * unknown size. * * For large file support, there is also a _LARGE version of the key * which takes an off_t type, allowing platforms with larger off_t * sizes to handle larger files. See below for INFILESIZE_LARGE. */ CINIT(INFILESIZE, LONG, 14), /* POST static input fields. */ CINIT(POSTFIELDS, OBJECTPOINT, 15), /* Set the referrer page (needed by some CGIs) */ CINIT(REFERER, OBJECTPOINT, 16), /* Set the FTP PORT string (interface name, named or numerical IP address) Use i.e '-' to use default address. */ CINIT(FTPPORT, OBJECTPOINT, 17), /* Set the User-Agent string (examined by some CGIs) */ CINIT(USERAGENT, OBJECTPOINT, 18), /* If the download receives less than "low speed limit" bytes/second * during "low speed time" seconds, the operations is aborted. * You could i.e if you have a pretty high speed connection, abort if * it is less than 2000 bytes/sec during 20 seconds. */ /* Set the "low speed limit" */ CINIT(LOW_SPEED_LIMIT, LONG, 19), /* Set the "low speed time" */ CINIT(LOW_SPEED_TIME, LONG, 20), /* Set the continuation offset. * * Note there is also a _LARGE version of this key which uses * off_t types, allowing for large file offsets on platforms which * use larger-than-32-bit off_t's. Look below for RESUME_FROM_LARGE. */ CINIT(RESUME_FROM, LONG, 21), /* Set cookie in request: */ CINIT(COOKIE, OBJECTPOINT, 22), /* This points to a linked list of headers, struct curl_slist kind */ CINIT(HTTPHEADER, OBJECTPOINT, 23), /* This points to a linked list of post entries, struct curl_httppost */ CINIT(HTTPPOST, OBJECTPOINT, 24), /* name of the file keeping your private SSL-certificate */ CINIT(SSLCERT, OBJECTPOINT, 25), /* password for the SSL or SSH private key */ CINIT(KEYPASSWD, OBJECTPOINT, 26), /* send TYPE parameter? */ CINIT(CRLF, LONG, 27), /* send linked-list of QUOTE commands */ CINIT(QUOTE, OBJECTPOINT, 28), /* send FILE * or void * to store headers to, if you use a callback it is simply passed to the callback unmodified */ CINIT(WRITEHEADER, OBJECTPOINT, 29), /* point to a file to read the initial cookies from, also enables "cookie awareness" */ CINIT(COOKIEFILE, OBJECTPOINT, 31), /* What version to specifically try to use. See CURL_SSLVERSION defines below. */ CINIT(SSLVERSION, LONG, 32), /* What kind of HTTP time condition to use, see defines */ CINIT(TIMECONDITION, LONG, 33), /* Time to use with the above condition. Specified in number of seconds since 1 Jan 1970 */ CINIT(TIMEVALUE, LONG, 34), /* 35 = OBSOLETE */ /* Custom request, for customizing the get command like HTTP: DELETE, TRACE and others FTP: to use a different list command */ CINIT(CUSTOMREQUEST, OBJECTPOINT, 36), /* HTTP request, for odd commands like DELETE, TRACE and others */ CINIT(STDERR, OBJECTPOINT, 37), /* 38 is not used */ /* send linked-list of post-transfer QUOTE commands */ CINIT(POSTQUOTE, OBJECTPOINT, 39), CINIT(WRITEINFO, OBJECTPOINT, 40), /* DEPRECATED, do not use! */ CINIT(VERBOSE, LONG, 41), /* talk a lot */ CINIT(HEADER, LONG, 42), /* throw the header out too */ CINIT(NOPROGRESS, LONG, 43), /* shut off the progress meter */ CINIT(NOBODY, LONG, 44), /* use HEAD to get http document */ CINIT(FAILONERROR, LONG, 45), /* no output on http error codes >= 300 */ CINIT(UPLOAD, LONG, 46), /* this is an upload */ CINIT(POST, LONG, 47), /* HTTP POST method */ CINIT(DIRLISTONLY, LONG, 48), /* bare names when listing directories */ CINIT(APPEND, LONG, 50), /* Append instead of overwrite on upload! */ /* Specify whether to read the user+password from the .netrc or the URL. * This must be one of the CURL_NETRC_* enums below. */ CINIT(NETRC, LONG, 51), CINIT(FOLLOWLOCATION, LONG, 52), /* use Location: Luke! */ CINIT(TRANSFERTEXT, LONG, 53), /* transfer data in text/ASCII format */ CINIT(PUT, LONG, 54), /* HTTP PUT */ /* 55 = OBSOLETE */ /* Function that will be called instead of the internal progress display * function. This function should be defined as the curl_progress_callback * prototype defines. */ CINIT(PROGRESSFUNCTION, FUNCTIONPOINT, 56), /* Data passed to the progress callback */ CINIT(PROGRESSDATA, OBJECTPOINT, 57), /* We want the referrer field set automatically when following locations */ CINIT(AUTOREFERER, LONG, 58), /* Port of the proxy, can be set in the proxy string as well with: "[host]:[port]" */ CINIT(PROXYPORT, LONG, 59), /* size of the POST input data, if strlen() is not good to use */ CINIT(POSTFIELDSIZE, LONG, 60), /* tunnel non-http operations through a HTTP proxy */ CINIT(HTTPPROXYTUNNEL, LONG, 61), /* Set the interface string to use as outgoing network interface */ CINIT(INTERFACE, OBJECTPOINT, 62), /* Set the krb4/5 security level, this also enables krb4/5 awareness. This * is a string, 'clear', 'safe', 'confidential' or 'private'. If the string * is set but doesn't match one of these, 'private' will be used. */ CINIT(KRBLEVEL, OBJECTPOINT, 63), /* Set if we should verify the peer in ssl handshake, set 1 to verify. */ CINIT(SSL_VERIFYPEER, LONG, 64), /* The CApath or CAfile used to validate the peer certificate this option is used only if SSL_VERIFYPEER is true */ CINIT(CAINFO, OBJECTPOINT, 65), /* 66 = OBSOLETE */ /* 67 = OBSOLETE */ /* Maximum number of http redirects to follow */ CINIT(MAXREDIRS, LONG, 68), /* Pass a long set to 1 to get the date of the requested document (if possible)! Pass a zero to shut it off. */ CINIT(FILETIME, LONG, 69), /* This points to a linked list of telnet options */ CINIT(TELNETOPTIONS, OBJECTPOINT, 70), /* Max amount of cached alive connections */ CINIT(MAXCONNECTS, LONG, 71), CINIT(CLOSEPOLICY, LONG, 72), /* DEPRECATED, do not use! */ /* 73 = OBSOLETE */ /* Set to explicitly use a new connection for the upcoming transfer. Do not use this unless you're absolutely sure of this, as it makes the operation slower and is less friendly for the network. */ CINIT(FRESH_CONNECT, LONG, 74), /* Set to explicitly forbid the upcoming transfer's connection to be re-used when done. Do not use this unless you're absolutely sure of this, as it makes the operation slower and is less friendly for the network. */ CINIT(FORBID_REUSE, LONG, 75), /* Set to a file name that contains random data for libcurl to use to seed the random engine when doing SSL connects. */ CINIT(RANDOM_FILE, OBJECTPOINT, 76), /* Set to the Entropy Gathering Daemon socket pathname */ CINIT(EGDSOCKET, OBJECTPOINT, 77), /* Time-out connect operations after this amount of seconds, if connects are OK within this time, then fine... This only aborts the connect phase. */ CINIT(CONNECTTIMEOUT, LONG, 78), /* Function that will be called to store headers (instead of fwrite). The * parameters will use fwrite() syntax, make sure to follow them. */ CINIT(HEADERFUNCTION, FUNCTIONPOINT, 79), /* Set this to force the HTTP request to get back to GET. Only really usable if POST, PUT or a custom request have been used first. */ CINIT(HTTPGET, LONG, 80), /* Set if we should verify the Common name from the peer certificate in ssl * handshake, set 1 to check existence, 2 to ensure that it matches the * provided hostname. */ CINIT(SSL_VERIFYHOST, LONG, 81), /* Specify which file name to write all known cookies in after completed operation. Set file name to "-" (dash) to make it go to stdout. */ CINIT(COOKIEJAR, OBJECTPOINT, 82), /* Specify which SSL ciphers to use */ CINIT(SSL_CIPHER_LIST, OBJECTPOINT, 83), /* Specify which HTTP version to use! This must be set to one of the CURL_HTTP_VERSION* enums set below. */ CINIT(HTTP_VERSION, LONG, 84), /* Specifically switch on or off the FTP engine's use of the EPSV command. By default, that one will always be attempted before the more traditional PASV command. */ CINIT(FTP_USE_EPSV, LONG, 85), /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */ CINIT(SSLCERTTYPE, OBJECTPOINT, 86), /* name of the file keeping your private SSL-key */ CINIT(SSLKEY, OBJECTPOINT, 87), /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */ CINIT(SSLKEYTYPE, OBJECTPOINT, 88), /* crypto engine for the SSL-sub system */ CINIT(SSLENGINE, OBJECTPOINT, 89), /* set the crypto engine for the SSL-sub system as default the param has no meaning... */ CINIT(SSLENGINE_DEFAULT, LONG, 90), /* Non-zero value means to use the global dns cache */ CINIT(DNS_USE_GLOBAL_CACHE, LONG, 91), /* DEPRECATED, do not use! */ /* DNS cache timeout */ CINIT(DNS_CACHE_TIMEOUT, LONG, 92), /* send linked-list of pre-transfer QUOTE commands */ CINIT(PREQUOTE, OBJECTPOINT, 93), /* set the debug function */ CINIT(DEBUGFUNCTION, FUNCTIONPOINT, 94), /* set the data for the debug function */ CINIT(DEBUGDATA, OBJECTPOINT, 95), /* mark this as start of a cookie session */ CINIT(COOKIESESSION, LONG, 96), /* The CApath directory used to validate the peer certificate this option is used only if SSL_VERIFYPEER is true */ CINIT(CAPATH, OBJECTPOINT, 97), /* Instruct libcurl to use a smaller receive buffer */ CINIT(BUFFERSIZE, LONG, 98), /* Instruct libcurl to not use any signal/alarm handlers, even when using timeouts. This option is useful for multi-threaded applications. See libcurl-the-guide for more background information. */ CINIT(NOSIGNAL, LONG, 99), /* Provide a CURLShare for mutexing non-ts data */ CINIT(SHARE, OBJECTPOINT, 100), /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default), CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5. */ CINIT(PROXYTYPE, LONG, 101), /* Set the Accept-Encoding string. Use this to tell a server you would like the response to be compressed. Before 7.21.6, this was known as CURLOPT_ENCODING */ CINIT(ACCEPT_ENCODING, OBJECTPOINT, 102), /* Set pointer to private data */ CINIT(PRIVATE, OBJECTPOINT, 103), /* Set aliases for HTTP 200 in the HTTP Response header */ CINIT(HTTP200ALIASES, OBJECTPOINT, 104), /* Continue to send authentication (user+password) when following locations, even when hostname changed. This can potentially send off the name and password to whatever host the server decides. */ CINIT(UNRESTRICTED_AUTH, LONG, 105), /* Specifically switch on or off the FTP engine's use of the EPRT command ( it also disables the LPRT attempt). By default, those ones will always be attempted before the good old traditional PORT command. */ CINIT(FTP_USE_EPRT, LONG, 106), /* Set this to a bitmask value to enable the particular authentications methods you like. Use this in combination with CURLOPT_USERPWD. Note that setting multiple bits may cause extra network round-trips. */ CINIT(HTTPAUTH, LONG, 107), /* Set the ssl context callback function, currently only for OpenSSL ssl_ctx in second argument. The function must be matching the curl_ssl_ctx_callback proto. */ CINIT(SSL_CTX_FUNCTION, FUNCTIONPOINT, 108), /* Set the userdata for the ssl context callback function's third argument */ CINIT(SSL_CTX_DATA, OBJECTPOINT, 109), /* FTP Option that causes missing dirs to be created on the remote server. In 7.19.4 we introduced the convenience enums for this option using the CURLFTP_CREATE_DIR prefix. */ CINIT(FTP_CREATE_MISSING_DIRS, LONG, 110), /* Set this to a bitmask value to enable the particular authentications methods you like. Use this in combination with CURLOPT_PROXYUSERPWD. Note that setting multiple bits may cause extra network round-trips. */ CINIT(PROXYAUTH, LONG, 111), /* FTP option that changes the timeout, in seconds, associated with getting a response. This is different from transfer timeout time and essentially places a demand on the FTP server to acknowledge commands in a timely manner. */ CINIT(FTP_RESPONSE_TIMEOUT, LONG, 112), #define CURLOPT_SERVER_RESPONSE_TIMEOUT CURLOPT_FTP_RESPONSE_TIMEOUT /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to tell libcurl to resolve names to those IP versions only. This only has affect on systems with support for more than one, i.e IPv4 _and_ IPv6. */ CINIT(IPRESOLVE, LONG, 113), /* Set this option to limit the size of a file that will be downloaded from an HTTP or FTP server. Note there is also _LARGE version which adds large file support for platforms which have larger off_t sizes. See MAXFILESIZE_LARGE below. */ CINIT(MAXFILESIZE, LONG, 114), /* See the comment for INFILESIZE above, but in short, specifies * the size of the file being uploaded. -1 means unknown. */ CINIT(INFILESIZE_LARGE, OFF_T, 115), /* Sets the continuation offset. There is also a LONG version of this; * look above for RESUME_FROM. */ CINIT(RESUME_FROM_LARGE, OFF_T, 116), /* Sets the maximum size of data that will be downloaded from * an HTTP or FTP server. See MAXFILESIZE above for the LONG version. */ CINIT(MAXFILESIZE_LARGE, OFF_T, 117), /* Set this option to the file name of your .netrc file you want libcurl to parse (using the CURLOPT_NETRC option). If not set, libcurl will do a poor attempt to find the user's home directory and check for a .netrc file in there. */ CINIT(NETRC_FILE, OBJECTPOINT, 118), /* Enable SSL/TLS for FTP, pick one of: CURLUSESSL_TRY - try using SSL, proceed anyway otherwise CURLUSESSL_CONTROL - SSL for the control connection or fail CURLUSESSL_ALL - SSL for all communication or fail */ CINIT(USE_SSL, LONG, 119), /* The _LARGE version of the standard POSTFIELDSIZE option */ CINIT(POSTFIELDSIZE_LARGE, OFF_T, 120), /* Enable/disable the TCP Nagle algorithm */ CINIT(TCP_NODELAY, LONG, 121), /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ /* 123 OBSOLETE. Gone in 7.16.0 */ /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ /* 127 OBSOLETE. Gone in 7.16.0 */ /* 128 OBSOLETE. Gone in 7.16.0 */ /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option can be used to change libcurl's default action which is to first try "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK response has been received. Available parameters are: CURLFTPAUTH_DEFAULT - let libcurl decide CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL */ CINIT(FTPSSLAUTH, LONG, 129), CINIT(IOCTLFUNCTION, FUNCTIONPOINT, 130), CINIT(IOCTLDATA, OBJECTPOINT, 131), /* 132 OBSOLETE. Gone in 7.16.0 */ /* 133 OBSOLETE. Gone in 7.16.0 */ /* zero terminated string for pass on to the FTP server when asked for "account" info */ CINIT(FTP_ACCOUNT, OBJECTPOINT, 134), /* feed cookies into cookie engine */ CINIT(COOKIELIST, OBJECTPOINT, 135), /* ignore Content-Length */ CINIT(IGNORE_CONTENT_LENGTH, LONG, 136), /* Set to non-zero to skip the IP address received in a 227 PASV FTP server response. Typically used for FTP-SSL purposes but is not restricted to that. libcurl will then instead use the same IP address it used for the control connection. */ CINIT(FTP_SKIP_PASV_IP, LONG, 137), /* Select "file method" to use when doing FTP, see the curl_ftpmethod above. */ CINIT(FTP_FILEMETHOD, LONG, 138), /* Local port number to bind the socket to */ CINIT(LOCALPORT, LONG, 139), /* Number of ports to try, including the first one set with LOCALPORT. Thus, setting it to 1 will make no additional attempts but the first. */ CINIT(LOCALPORTRANGE, LONG, 140), /* no transfer, set up connection and let application use the socket by extracting it with CURLINFO_LASTSOCKET */ CINIT(CONNECT_ONLY, LONG, 141), /* Function that will be called to convert from the network encoding (instead of using the iconv calls in libcurl) */ CINIT(CONV_FROM_NETWORK_FUNCTION, FUNCTIONPOINT, 142), /* Function that will be called to convert to the network encoding (instead of using the iconv calls in libcurl) */ CINIT(CONV_TO_NETWORK_FUNCTION, FUNCTIONPOINT, 143), /* Function that will be called to convert from UTF8 (instead of using the iconv calls in libcurl) Note that this is used only for SSL certificate processing */ CINIT(CONV_FROM_UTF8_FUNCTION, FUNCTIONPOINT, 144), /* if the connection proceeds too quickly then need to slow it down */ /* limit-rate: maximum number of bytes per second to send or receive */ CINIT(MAX_SEND_SPEED_LARGE, OFF_T, 145), CINIT(MAX_RECV_SPEED_LARGE, OFF_T, 146), /* Pointer to command string to send if USER/PASS fails. */ CINIT(FTP_ALTERNATIVE_TO_USER, OBJECTPOINT, 147), /* callback function for setting socket options */ CINIT(SOCKOPTFUNCTION, FUNCTIONPOINT, 148), CINIT(SOCKOPTDATA, OBJECTPOINT, 149), /* set to 0 to disable session ID re-use for this transfer, default is enabled (== 1) */ CINIT(SSL_SESSIONID_CACHE, LONG, 150), /* allowed SSH authentication methods */ CINIT(SSH_AUTH_TYPES, LONG, 151), /* Used by scp/sftp to do public/private key authentication */ CINIT(SSH_PUBLIC_KEYFILE, OBJECTPOINT, 152), CINIT(SSH_PRIVATE_KEYFILE, OBJECTPOINT, 153), /* Send CCC (Clear Command Channel) after authentication */ CINIT(FTP_SSL_CCC, LONG, 154), /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */ CINIT(TIMEOUT_MS, LONG, 155), CINIT(CONNECTTIMEOUT_MS, LONG, 156), /* set to zero to disable the libcurl's decoding and thus pass the raw body data to the application even when it is encoded/compressed */ CINIT(HTTP_TRANSFER_DECODING, LONG, 157), CINIT(HTTP_CONTENT_DECODING, LONG, 158), /* Permission used when creating new files and directories on the remote server for protocols that support it, SFTP/SCP/FILE */ CINIT(NEW_FILE_PERMS, LONG, 159), CINIT(NEW_DIRECTORY_PERMS, LONG, 160), /* Set the behaviour of POST when redirecting. Values must be set to one of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */ CINIT(POSTREDIR, LONG, 161), /* used by scp/sftp to verify the host's public key */ CINIT(SSH_HOST_PUBLIC_KEY_MD5, OBJECTPOINT, 162), /* Callback function for opening socket (instead of socket(2)). Optionally, callback is able change the address or refuse to connect returning CURL_SOCKET_BAD. The callback should have type curl_opensocket_callback */ CINIT(OPENSOCKETFUNCTION, FUNCTIONPOINT, 163), CINIT(OPENSOCKETDATA, OBJECTPOINT, 164), /* POST volatile input fields. */ CINIT(COPYPOSTFIELDS, OBJECTPOINT, 165), /* set transfer mode (;type=) when doing FTP via an HTTP proxy */ CINIT(PROXY_TRANSFER_MODE, LONG, 166), /* Callback function for seeking in the input stream */ CINIT(SEEKFUNCTION, FUNCTIONPOINT, 167), CINIT(SEEKDATA, OBJECTPOINT, 168), /* CRL file */ CINIT(CRLFILE, OBJECTPOINT, 169), /* Issuer certificate */ CINIT(ISSUERCERT, OBJECTPOINT, 170), /* (IPv6) Address scope */ CINIT(ADDRESS_SCOPE, LONG, 171), /* Collect certificate chain info and allow it to get retrievable with CURLINFO_CERTINFO after the transfer is complete. (Unfortunately) only working with OpenSSL-powered builds. */ CINIT(CERTINFO, LONG, 172), /* "name" and "pwd" to use when fetching. */ CINIT(USERNAME, OBJECTPOINT, 173), CINIT(PASSWORD, OBJECTPOINT, 174), /* "name" and "pwd" to use with Proxy when fetching. */ CINIT(PROXYUSERNAME, OBJECTPOINT, 175), CINIT(PROXYPASSWORD, OBJECTPOINT, 176), /* Comma separated list of hostnames defining no-proxy zones. These should match both hostnames directly, and hostnames within a domain. For example, local.com will match local.com and www.local.com, but NOT notlocal.com or www.notlocal.com. For compatibility with other implementations of this, .local.com will be considered to be the same as local.com. A single * is the only valid wildcard, and effectively disables the use of proxy. */ CINIT(NOPROXY, OBJECTPOINT, 177), /* block size for TFTP transfers */ CINIT(TFTP_BLKSIZE, LONG, 178), /* Socks Service */ CINIT(SOCKS5_GSSAPI_SERVICE, OBJECTPOINT, 179), /* Socks Service */ CINIT(SOCKS5_GSSAPI_NEC, LONG, 180), /* set the bitmask for the protocols that are allowed to be used for the transfer, which thus helps the app which takes URLs from users or other external inputs and want to restrict what protocol(s) to deal with. Defaults to CURLPROTO_ALL. */ CINIT(PROTOCOLS, LONG, 181), /* set the bitmask for the protocols that libcurl is allowed to follow to, as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs to be set in both bitmasks to be allowed to get redirected to. Defaults to all protocols except FILE and SCP. */ CINIT(REDIR_PROTOCOLS, LONG, 182), /* set the SSH knownhost file name to use */ CINIT(SSH_KNOWNHOSTS, OBJECTPOINT, 183), /* set the SSH host key callback, must point to a curl_sshkeycallback function */ CINIT(SSH_KEYFUNCTION, FUNCTIONPOINT, 184), /* set the SSH host key callback custom pointer */ CINIT(SSH_KEYDATA, OBJECTPOINT, 185), /* set the SMTP mail originator */ CINIT(MAIL_FROM, OBJECTPOINT, 186), /* set the SMTP mail receiver(s) */ CINIT(MAIL_RCPT, OBJECTPOINT, 187), /* FTP: send PRET before PASV */ CINIT(FTP_USE_PRET, LONG, 188), /* RTSP request method (OPTIONS, SETUP, PLAY, etc...) */ CINIT(RTSP_REQUEST, LONG, 189), /* The RTSP session identifier */ CINIT(RTSP_SESSION_ID, OBJECTPOINT, 190), /* The RTSP stream URI */ CINIT(RTSP_STREAM_URI, OBJECTPOINT, 191), /* The Transport: header to use in RTSP requests */ CINIT(RTSP_TRANSPORT, OBJECTPOINT, 192), /* Manually initialize the client RTSP CSeq for this handle */ CINIT(RTSP_CLIENT_CSEQ, LONG, 193), /* Manually initialize the server RTSP CSeq for this handle */ CINIT(RTSP_SERVER_CSEQ, LONG, 194), /* The stream to pass to INTERLEAVEFUNCTION. */ CINIT(INTERLEAVEDATA, OBJECTPOINT, 195), /* Let the application define a custom write method for RTP data */ CINIT(INTERLEAVEFUNCTION, FUNCTIONPOINT, 196), /* Turn on wildcard matching */ CINIT(WILDCARDMATCH, LONG, 197), /* Directory matching callback called before downloading of an individual file (chunk) started */ CINIT(CHUNK_BGN_FUNCTION, FUNCTIONPOINT, 198), /* Directory matching callback called after the file (chunk) was downloaded, or skipped */ CINIT(CHUNK_END_FUNCTION, FUNCTIONPOINT, 199), /* Change match (fnmatch-like) callback for wildcard matching */ CINIT(FNMATCH_FUNCTION, FUNCTIONPOINT, 200), /* Let the application define custom chunk data pointer */ CINIT(CHUNK_DATA, OBJECTPOINT, 201), /* FNMATCH_FUNCTION user pointer */ CINIT(FNMATCH_DATA, OBJECTPOINT, 202), /* send linked-list of name:port:address sets */ CINIT(RESOLVE, OBJECTPOINT, 203), /* Set a username for authenticated TLS */ CINIT(TLSAUTH_USERNAME, OBJECTPOINT, 204), /* Set a password for authenticated TLS */ CINIT(TLSAUTH_PASSWORD, OBJECTPOINT, 205), /* Set authentication type for authenticated TLS */ CINIT(TLSAUTH_TYPE, OBJECTPOINT, 206), /* Set to 1 to enable the "TE:" header in HTTP requests to ask for compressed transfer-encoded responses. Set to 0 to disable the use of TE: in outgoing requests. The current default is 0, but it might change in a future libcurl release. libcurl will ask for the compressed methods it knows of, and if that isn't any, it will not ask for transfer-encoding at all even if this option is set to 1. */ CINIT(TRANSFER_ENCODING, LONG, 207), /* Callback function for closing socket (instead of close(2)). The callback should have type curl_closesocket_callback */ CINIT(CLOSESOCKETFUNCTION, FUNCTIONPOINT, 208), CINIT(CLOSESOCKETDATA, OBJECTPOINT, 209), /* allow GSSAPI credential delegation */ CINIT(GSSAPI_DELEGATION, LONG, 210), /* Set the name servers to use for DNS resolution */ CINIT(DNS_SERVERS, OBJECTPOINT, 211), /* Time-out accept operations (currently for FTP only) after this amount of miliseconds. */ CINIT(ACCEPTTIMEOUT_MS, LONG, 212), /* Set TCP keepalive */ CINIT(TCP_KEEPALIVE, LONG, 213), /* non-universal keepalive knobs (Linux, AIX, HP-UX, more) */ CINIT(TCP_KEEPIDLE, LONG, 214), CINIT(TCP_KEEPINTVL, LONG, 215), /* Enable/disable specific SSL features with a bitmask, see CURLSSLOPT_* */ CINIT(SSL_OPTIONS, LONG, 216), /* set the SMTP auth originator */ CINIT(MAIL_AUTH, OBJECTPOINT, 217), CURLOPT_LASTENTRY /* the last unused */ } CURLoption; #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all the obsolete stuff removed! */ /* Backwards compatibility with older names */ /* These are scheduled to disappear by 2011 */ /* This was added in version 7.19.1 */ #define CURLOPT_POST301 CURLOPT_POSTREDIR /* These are scheduled to disappear by 2009 */ /* The following were added in 7.17.0 */ #define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD #define CURLOPT_FTPAPPEND CURLOPT_APPEND #define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY #define CURLOPT_FTP_SSL CURLOPT_USE_SSL /* The following were added earlier */ #define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD #define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL #else /* This is set if CURL_NO_OLDIES is defined at compile-time */ #undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */ #endif /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host name resolves addresses using more than one IP protocol version, this option might be handy to force libcurl to use a specific IP version. */ #define CURL_IPRESOLVE_WHATEVER 0 /* default, resolves addresses to all IP versions that your system allows */ #define CURL_IPRESOLVE_V4 1 /* resolve to ipv4 addresses */ #define CURL_IPRESOLVE_V6 2 /* resolve to ipv6 addresses */ /* three convenient "aliases" that follow the name scheme better */ #define CURLOPT_WRITEDATA CURLOPT_FILE #define CURLOPT_READDATA CURLOPT_INFILE #define CURLOPT_HEADERDATA CURLOPT_WRITEHEADER #define CURLOPT_RTSPHEADER CURLOPT_HTTPHEADER /* These enums are for use with the CURLOPT_HTTP_VERSION option. */ enum { CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd like the library to choose the best possible for us! */ CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */ CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */ CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */ }; /* * Public API enums for RTSP requests */ enum { CURL_RTSPREQ_NONE, /* first in list */ CURL_RTSPREQ_OPTIONS, CURL_RTSPREQ_DESCRIBE, CURL_RTSPREQ_ANNOUNCE, CURL_RTSPREQ_SETUP, CURL_RTSPREQ_PLAY, CURL_RTSPREQ_PAUSE, CURL_RTSPREQ_TEARDOWN, CURL_RTSPREQ_GET_PARAMETER, CURL_RTSPREQ_SET_PARAMETER, CURL_RTSPREQ_RECORD, CURL_RTSPREQ_RECEIVE, CURL_RTSPREQ_LAST /* last in list */ }; /* These enums are for use with the CURLOPT_NETRC option. */ enum CURL_NETRC_OPTION { CURL_NETRC_IGNORED, /* The .netrc will never be read. * This is the default. */ CURL_NETRC_OPTIONAL, /* A user:password in the URL will be preferred * to one in the .netrc. */ CURL_NETRC_REQUIRED, /* A user:password in the URL will be ignored. * Unless one is set programmatically, the .netrc * will be queried. */ CURL_NETRC_LAST }; enum { CURL_SSLVERSION_DEFAULT, CURL_SSLVERSION_TLSv1, CURL_SSLVERSION_SSLv2, CURL_SSLVERSION_SSLv3, CURL_SSLVERSION_LAST /* never use, keep last */ }; enum CURL_TLSAUTH { CURL_TLSAUTH_NONE, CURL_TLSAUTH_SRP, CURL_TLSAUTH_LAST /* never use, keep last */ }; /* symbols to use with CURLOPT_POSTREDIR. CURL_REDIR_POST_301, CURL_REDIR_POST_302 and CURL_REDIR_POST_303 can be bitwise ORed so that CURL_REDIR_POST_301 | CURL_REDIR_POST_302 | CURL_REDIR_POST_303 == CURL_REDIR_POST_ALL */ #define CURL_REDIR_GET_ALL 0 #define CURL_REDIR_POST_301 1 #define CURL_REDIR_POST_302 2 #define CURL_REDIR_POST_303 4 #define CURL_REDIR_POST_ALL \ (CURL_REDIR_POST_301|CURL_REDIR_POST_302|CURL_REDIR_POST_303) typedef enum { CURL_TIMECOND_NONE, CURL_TIMECOND_IFMODSINCE, CURL_TIMECOND_IFUNMODSINCE, CURL_TIMECOND_LASTMOD, CURL_TIMECOND_LAST } curl_TimeCond; /* curl_strequal() and curl_strnequal() are subject for removal in a future libcurl, see lib/README.curlx for details */ CURL_EXTERN int (curl_strequal)(const char *s1, const char *s2); CURL_EXTERN int (curl_strnequal)(const char *s1, const char *s2, size_t n); /* name is uppercase CURLFORM_ */ #ifdef CFINIT #undef CFINIT #endif #ifdef CURL_ISOCPP #define CFINIT(name) CURLFORM_ ## name #else /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ #define CFINIT(name) CURLFORM_/**/name #endif typedef enum { CFINIT(NOTHING), /********* the first one is unused ************/ /* */ CFINIT(COPYNAME), CFINIT(PTRNAME), CFINIT(NAMELENGTH), CFINIT(COPYCONTENTS), CFINIT(PTRCONTENTS), CFINIT(CONTENTSLENGTH), CFINIT(FILECONTENT), CFINIT(ARRAY), CFINIT(OBSOLETE), CFINIT(FILE), CFINIT(BUFFER), CFINIT(BUFFERPTR), CFINIT(BUFFERLENGTH), CFINIT(CONTENTTYPE), CFINIT(CONTENTHEADER), CFINIT(FILENAME), CFINIT(END), CFINIT(OBSOLETE2), CFINIT(STREAM), CURLFORM_LASTENTRY /* the last unused */ } CURLformoption; #undef CFINIT /* done */ /* structure to be used as parameter for CURLFORM_ARRAY */ struct curl_forms { CURLformoption option; const char *value; }; /* use this for multipart formpost building */ /* Returns code for curl_formadd() * * Returns: * CURL_FORMADD_OK on success * CURL_FORMADD_MEMORY if the FormInfo allocation fails * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form * CURL_FORMADD_NULL if a null pointer was given for a char * CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used * CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error) * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated * CURL_FORMADD_MEMORY if some allocation for string copying failed. * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array * ***************************************************************************/ typedef enum { CURL_FORMADD_OK, /* first, no error */ CURL_FORMADD_MEMORY, CURL_FORMADD_OPTION_TWICE, CURL_FORMADD_NULL, CURL_FORMADD_UNKNOWN_OPTION, CURL_FORMADD_INCOMPLETE, CURL_FORMADD_ILLEGAL_ARRAY, CURL_FORMADD_DISABLED, /* libcurl was built with this disabled */ CURL_FORMADD_LAST /* last */ } CURLFORMcode; /* * NAME curl_formadd() * * DESCRIPTION * * Pretty advanced function for building multi-part formposts. Each invoke * adds one part that together construct a full post. Then use * CURLOPT_HTTPPOST to send it off to libcurl. */ CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost, struct curl_httppost **last_post, ...); /* * callback function for curl_formget() * The void *arg pointer will be the one passed as second argument to * curl_formget(). * The character buffer passed to it must not be freed. * Should return the buffer length passed to it as the argument "len" on * success. */ typedef size_t (*curl_formget_callback)(void *arg, const char *buf, size_t len); /* * NAME curl_formget() * * DESCRIPTION * * Serialize a curl_httppost struct built with curl_formadd(). * Accepts a void pointer as second argument which will be passed to * the curl_formget_callback function. * Returns 0 on success. */ CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg, curl_formget_callback append); /* * NAME curl_formfree() * * DESCRIPTION * * Free a multipart formpost previously built with curl_formadd(). */ CURL_EXTERN void curl_formfree(struct curl_httppost *form); /* * NAME curl_getenv() * * DESCRIPTION * * Returns a malloc()'ed string that MUST be curl_free()ed after usage is * complete. DEPRECATED - see lib/README.curlx */ CURL_EXTERN char *curl_getenv(const char *variable); /* * NAME curl_version() * * DESCRIPTION * * Returns a static ascii string of the libcurl version. */ CURL_EXTERN char *curl_version(void); /* * NAME curl_easy_escape() * * DESCRIPTION * * Escapes URL strings (converts all letters consider illegal in URLs to their * %XX versions). This function returns a new allocated string or NULL if an * error occurred. */ CURL_EXTERN char *curl_easy_escape(CURL *handle, const char *string, int length); /* the previous version: */ CURL_EXTERN char *curl_escape(const char *string, int length); /* * NAME curl_easy_unescape() * * DESCRIPTION * * Unescapes URL encoding in strings (converts all %XX codes to their 8bit * versions). This function returns a new allocated string or NULL if an error * occurred. * Conversion Note: On non-ASCII platforms the ASCII %XX codes are * converted into the host encoding. */ CURL_EXTERN char *curl_easy_unescape(CURL *handle, const char *string, int length, int *outlength); /* the previous version */ CURL_EXTERN char *curl_unescape(const char *string, int length); /* * NAME curl_free() * * DESCRIPTION * * Provided for de-allocation in the same translation unit that did the * allocation. Added in libcurl 7.10 */ CURL_EXTERN void curl_free(void *p); /* * NAME curl_global_init() * * DESCRIPTION * * curl_global_init() should be invoked exactly once for each application that * uses libcurl and before any call of other libcurl functions. * * This function is not thread-safe! */ CURL_EXTERN CURLcode curl_global_init(long flags); /* * NAME curl_global_init_mem() * * DESCRIPTION * * curl_global_init() or curl_global_init_mem() should be invoked exactly once * for each application that uses libcurl. This function can be used to * initialize libcurl and set user defined memory management callback * functions. Users can implement memory management routines to check for * memory leaks, check for mis-use of the curl library etc. User registered * callback routines with be invoked by this library instead of the system * memory management routines like malloc, free etc. */ CURL_EXTERN CURLcode curl_global_init_mem(long flags, curl_malloc_callback m, curl_free_callback f, curl_realloc_callback r, curl_strdup_callback s, curl_calloc_callback c); /* * NAME curl_global_cleanup() * * DESCRIPTION * * curl_global_cleanup() should be invoked exactly once for each application * that uses libcurl */ CURL_EXTERN void curl_global_cleanup(void); /* linked-list structure for the CURLOPT_QUOTE option (and other) */ struct curl_slist { char *data; struct curl_slist *next; }; /* * NAME curl_slist_append() * * DESCRIPTION * * Appends a string to a linked list. If no list exists, it will be created * first. Returns the new list, after appending. */ CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *, const char *); /* * NAME curl_slist_free_all() * * DESCRIPTION * * free a previously built curl_slist. */ CURL_EXTERN void curl_slist_free_all(struct curl_slist *); /* * NAME curl_getdate() * * DESCRIPTION * * Returns the time, in seconds since 1 Jan 1970 of the time string given in * the first argument. The time argument in the second parameter is unused * and should be set to NULL. */ CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused); /* info about the certificate chain, only for OpenSSL builds. Asked for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */ struct curl_certinfo { int num_of_certs; /* number of certificates with information */ struct curl_slist **certinfo; /* for each index in this array, there's a linked list with textual information in the format "name: value" */ }; #define CURLINFO_STRING 0x100000 #define CURLINFO_LONG 0x200000 #define CURLINFO_DOUBLE 0x300000 #define CURLINFO_SLIST 0x400000 #define CURLINFO_MASK 0x0fffff #define CURLINFO_TYPEMASK 0xf00000 typedef enum { CURLINFO_NONE, /* first, never use this */ CURLINFO_EFFECTIVE_URL = CURLINFO_STRING + 1, CURLINFO_RESPONSE_CODE = CURLINFO_LONG + 2, CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE + 3, CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE + 4, CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE + 5, CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6, CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE + 7, CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE + 8, CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE + 9, CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE + 10, CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11, CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12, CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG + 13, CURLINFO_FILETIME = CURLINFO_LONG + 14, CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE + 15, CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE + 16, CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17, CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18, CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19, CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20, CURLINFO_PRIVATE = CURLINFO_STRING + 21, CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG + 22, CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG + 23, CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG + 24, CURLINFO_OS_ERRNO = CURLINFO_LONG + 25, CURLINFO_NUM_CONNECTS = CURLINFO_LONG + 26, CURLINFO_SSL_ENGINES = CURLINFO_SLIST + 27, CURLINFO_COOKIELIST = CURLINFO_SLIST + 28, CURLINFO_LASTSOCKET = CURLINFO_LONG + 29, CURLINFO_FTP_ENTRY_PATH = CURLINFO_STRING + 30, CURLINFO_REDIRECT_URL = CURLINFO_STRING + 31, CURLINFO_PRIMARY_IP = CURLINFO_STRING + 32, CURLINFO_APPCONNECT_TIME = CURLINFO_DOUBLE + 33, CURLINFO_CERTINFO = CURLINFO_SLIST + 34, CURLINFO_CONDITION_UNMET = CURLINFO_LONG + 35, CURLINFO_RTSP_SESSION_ID = CURLINFO_STRING + 36, CURLINFO_RTSP_CLIENT_CSEQ = CURLINFO_LONG + 37, CURLINFO_RTSP_SERVER_CSEQ = CURLINFO_LONG + 38, CURLINFO_RTSP_CSEQ_RECV = CURLINFO_LONG + 39, CURLINFO_PRIMARY_PORT = CURLINFO_LONG + 40, CURLINFO_LOCAL_IP = CURLINFO_STRING + 41, CURLINFO_LOCAL_PORT = CURLINFO_LONG + 42, /* Fill in new entries below here! */ CURLINFO_LASTONE = 42 } CURLINFO; /* CURLINFO_RESPONSE_CODE is the new name for the option previously known as CURLINFO_HTTP_CODE */ #define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE typedef enum { CURLCLOSEPOLICY_NONE, /* first, never use this */ CURLCLOSEPOLICY_OLDEST, CURLCLOSEPOLICY_LEAST_RECENTLY_USED, CURLCLOSEPOLICY_LEAST_TRAFFIC, CURLCLOSEPOLICY_SLOWEST, CURLCLOSEPOLICY_CALLBACK, CURLCLOSEPOLICY_LAST /* last, never use this */ } curl_closepolicy; #define CURL_GLOBAL_SSL (1<<0) #define CURL_GLOBAL_WIN32 (1<<1) #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32) #define CURL_GLOBAL_NOTHING 0 #define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL #define CURL_GLOBAL_ACK_EINTR (1<<2) /***************************************************************************** * Setup defines, protos etc for the sharing stuff. */ /* Different data locks for a single share */ typedef enum { CURL_LOCK_DATA_NONE = 0, /* CURL_LOCK_DATA_SHARE is used internally to say that * the locking is just made to change the internal state of the share * itself. */ CURL_LOCK_DATA_SHARE, CURL_LOCK_DATA_COOKIE, CURL_LOCK_DATA_DNS, CURL_LOCK_DATA_SSL_SESSION, CURL_LOCK_DATA_CONNECT, CURL_LOCK_DATA_LAST } curl_lock_data; /* Different lock access types */ typedef enum { CURL_LOCK_ACCESS_NONE = 0, /* unspecified action */ CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */ CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */ CURL_LOCK_ACCESS_LAST /* never use */ } curl_lock_access; typedef void (*curl_lock_function)(CURL *handle, curl_lock_data data, curl_lock_access locktype, void *userptr); typedef void (*curl_unlock_function)(CURL *handle, curl_lock_data data, void *userptr); typedef void CURLSH; typedef enum { CURLSHE_OK, /* all is fine */ CURLSHE_BAD_OPTION, /* 1 */ CURLSHE_IN_USE, /* 2 */ CURLSHE_INVALID, /* 3 */ CURLSHE_NOMEM, /* 4 out of memory */ CURLSHE_NOT_BUILT_IN, /* 5 feature not present in lib */ CURLSHE_LAST /* never use */ } CURLSHcode; typedef enum { CURLSHOPT_NONE, /* don't use */ CURLSHOPT_SHARE, /* specify a data type to share */ CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */ CURLSHOPT_LOCKFUNC, /* pass in a 'curl_lock_function' pointer */ CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */ CURLSHOPT_USERDATA, /* pass in a user data pointer used in the lock/unlock callback functions */ CURLSHOPT_LAST /* never use */ } CURLSHoption; CURL_EXTERN CURLSH *curl_share_init(void); CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...); CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *); /**************************************************************************** * Structures for querying information about the curl library at runtime. */ typedef enum { CURLVERSION_FIRST, CURLVERSION_SECOND, CURLVERSION_THIRD, CURLVERSION_FOURTH, CURLVERSION_LAST /* never actually use this */ } CURLversion; /* The 'CURLVERSION_NOW' is the symbolic name meant to be used by basically all programs ever that want to get version information. It is meant to be a built-in version number for what kind of struct the caller expects. If the struct ever changes, we redefine the NOW to another enum from above. */ #define CURLVERSION_NOW CURLVERSION_FOURTH typedef struct { CURLversion age; /* age of the returned struct */ const char *version; /* LIBCURL_VERSION */ unsigned int version_num; /* LIBCURL_VERSION_NUM */ const char *host; /* OS/host/cpu/machine when configured */ int features; /* bitmask, see defines below */ const char *ssl_version; /* human readable string */ long ssl_version_num; /* not used anymore, always 0 */ const char *libz_version; /* human readable string */ /* protocols is terminated by an entry with a NULL protoname */ const char * const *protocols; /* The fields below this were added in CURLVERSION_SECOND */ const char *ares; int ares_num; /* This field was added in CURLVERSION_THIRD */ const char *libidn; /* These field were added in CURLVERSION_FOURTH */ /* Same as '_libiconv_version' if built with HAVE_ICONV */ int iconv_ver_num; const char *libssh_version; /* human readable string */ } curl_version_info_data; #define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */ #define CURL_VERSION_KERBEROS4 (1<<1) /* kerberos auth is supported */ #define CURL_VERSION_SSL (1<<2) /* SSL options are present */ #define CURL_VERSION_LIBZ (1<<3) /* libz features are present */ #define CURL_VERSION_NTLM (1<<4) /* NTLM auth is supported */ #define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth support */ #define CURL_VERSION_DEBUG (1<<6) /* built with debug capabilities */ #define CURL_VERSION_ASYNCHDNS (1<<7) /* asynchronous dns resolves */ #define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth */ #define CURL_VERSION_LARGEFILE (1<<9) /* supports files bigger than 2GB */ #define CURL_VERSION_IDN (1<<10) /* International Domain Names support */ #define CURL_VERSION_SSPI (1<<11) /* SSPI is supported */ #define CURL_VERSION_CONV (1<<12) /* character conversions supported */ #define CURL_VERSION_CURLDEBUG (1<<13) /* debug memory tracking supported */ #define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */ #define CURL_VERSION_NTLM_WB (1<<15) /* NTLM delegating to winbind helper */ /* * NAME curl_version_info() * * DESCRIPTION * * This function returns a pointer to a static copy of the version info * struct. See above. */ CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion); /* * NAME curl_easy_strerror() * * DESCRIPTION * * The curl_easy_strerror function may be used to turn a CURLcode value * into the equivalent human readable error string. This is useful * for printing meaningful error messages. */ CURL_EXTERN const char *curl_easy_strerror(CURLcode); /* * NAME curl_share_strerror() * * DESCRIPTION * * The curl_share_strerror function may be used to turn a CURLSHcode value * into the equivalent human readable error string. This is useful * for printing meaningful error messages. */ CURL_EXTERN const char *curl_share_strerror(CURLSHcode); /* * NAME curl_easy_pause() * * DESCRIPTION * * The curl_easy_pause function pauses or unpauses transfers. Select the new * state by setting the bitmask, use the convenience defines below. * */ CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask); #define CURLPAUSE_RECV (1<<0) #define CURLPAUSE_RECV_CONT (0) #define CURLPAUSE_SEND (1<<2) #define CURLPAUSE_SEND_CONT (0) #define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND) #define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT) #ifdef __cplusplus } #endif /* unfortunately, the easy.h and multi.h include files need options and info stuff before they can be included! */ #include "easy.h" /* nothing in curl is fun without the easy stuff */ #include "multi.h" /* the typechecker doesn't work in C++ (yet) */ #if defined(__GNUC__) && defined(__GNUC_MINOR__) && \ ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \ !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK) #include "typecheck-gcc.h" #else #if defined(__STDC__) && (__STDC__ >= 1) /* This preprocessor magic that replaces a call with the exact same call is only done to make sure application authors pass exactly three arguments to these functions. */ #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param) #define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg) #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param) #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) #endif /* __STDC__ >= 1 */ #endif /* gcc >= 4.3 && !__cplusplus */ #endif /* __CURL_CURL_H */ ================================================ FILE: third_party/include/curl/curlbuild.h ================================================ #ifndef __CURL_CURLBUILD_H #define __CURL_CURLBUILD_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* ================================================================ */ /* NOTES FOR CONFIGURE CAPABLE SYSTEMS */ /* ================================================================ */ /* * NOTE 1: * ------- * * See file include/curl/curlbuild.h.in, run configure, and forget * that this file exists it is only used for non-configure systems. * But you can keep reading if you want ;-) * */ /* ================================================================ */ /* NOTES FOR NON-CONFIGURE SYSTEMS */ /* ================================================================ */ /* * NOTE 1: * ------- * * Nothing in this file is intended to be modified or adjusted by the * curl library user nor by the curl library builder. * * If you think that something actually needs to be changed, adjusted * or fixed in this file, then, report it on the libcurl development * mailing list: http://cool.haxx.se/mailman/listinfo/curl-library/ * * Try to keep one section per platform, compiler and architecture, * otherwise, if an existing section is reused for a different one and * later on the original is adjusted, probably the piggybacking one can * be adversely changed. * * In order to differentiate between platforms/compilers/architectures * use only compiler built in predefined preprocessor symbols. * * This header file shall only export symbols which are 'curl' or 'CURL' * prefixed, otherwise public name space would be polluted. * * NOTE 2: * ------- * * For any given platform/compiler curl_off_t must be typedef'ed to a * 64-bit wide signed integral data type. The width of this data type * must remain constant and independent of any possible large file * support settings. * * As an exception to the above, curl_off_t shall be typedef'ed to a * 32-bit wide signed integral data type if there is no 64-bit type. * * As a general rule, curl_off_t shall not be mapped to off_t. This * rule shall only be violated if off_t is the only 64-bit data type * available and the size of off_t is independent of large file support * settings. Keep your build on the safe side avoiding an off_t gating. * If you have a 64-bit off_t then take for sure that another 64-bit * data type exists, dig deeper and you will find it. * * NOTE 3: * ------- * * Right now you might be staring at file include/curl/curlbuild.h.dist or * at file include/curl/curlbuild.h, this is due to the following reason: * file include/curl/curlbuild.h.dist is renamed to include/curl/curlbuild.h * when the libcurl source code distribution archive file is created. * * File include/curl/curlbuild.h.dist is not included in the distribution * archive. File include/curl/curlbuild.h is not present in the git tree. * * The distributed include/curl/curlbuild.h file is only intended to be used * on systems which can not run the also distributed configure script. * * On systems capable of running the configure script, the configure process * will overwrite the distributed include/curl/curlbuild.h file with one that * is suitable and specific to the library being configured and built, which * is generated from the include/curl/curlbuild.h.in template file. * * If you check out from git on a non-configure platform, you must run the * appropriate buildconf* script to set up curlbuild.h and other local files. * */ /* ================================================================ */ /* DEFINITION OF THESE SYMBOLS SHALL NOT TAKE PLACE ANYWHERE ELSE */ /* ================================================================ */ #ifdef CURL_SIZEOF_LONG # error "CURL_SIZEOF_LONG shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_SIZEOF_LONG_already_defined #endif #ifdef CURL_TYPEOF_CURL_SOCKLEN_T # error "CURL_TYPEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_TYPEOF_CURL_SOCKLEN_T_already_defined #endif #ifdef CURL_SIZEOF_CURL_SOCKLEN_T # error "CURL_SIZEOF_CURL_SOCKLEN_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_SIZEOF_CURL_SOCKLEN_T_already_defined #endif #ifdef CURL_TYPEOF_CURL_OFF_T # error "CURL_TYPEOF_CURL_OFF_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_already_defined #endif #ifdef CURL_FORMAT_CURL_OFF_T # error "CURL_FORMAT_CURL_OFF_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_already_defined #endif #ifdef CURL_FORMAT_CURL_OFF_TU # error "CURL_FORMAT_CURL_OFF_TU shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_already_defined #endif #ifdef CURL_FORMAT_OFF_T # error "CURL_FORMAT_OFF_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_FORMAT_OFF_T_already_defined #endif #ifdef CURL_SIZEOF_CURL_OFF_T # error "CURL_SIZEOF_CURL_OFF_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_already_defined #endif #ifdef CURL_SUFFIX_CURL_OFF_T # error "CURL_SUFFIX_CURL_OFF_T shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_already_defined #endif #ifdef CURL_SUFFIX_CURL_OFF_TU # error "CURL_SUFFIX_CURL_OFF_TU shall not be defined except in curlbuild.h" Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_already_defined #endif /* ================================================================ */ /* EXTERNAL INTERFACE SETTINGS FOR NON-CONFIGURE SYSTEMS ONLY */ /* ================================================================ */ #if defined(__DJGPP__) || defined(__GO32__) # if defined(__DJGPP__) && (__DJGPP__ > 1) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__SALFORDC__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__BORLANDC__) # if (__BORLANDC__ < 0x520) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T i64 # define CURL_SUFFIX_CURL_OFF_TU ui64 # endif # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__TURBOC__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__WATCOMC__) # if defined(__386__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T i64 # define CURL_SUFFIX_CURL_OFF_TU ui64 # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__POCC__) # if (__POCC__ < 280) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # elif defined(_MSC_VER) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T i64 # define CURL_SUFFIX_CURL_OFF_TU ui64 # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__LCC__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__SYMBIAN32__) # if defined(__EABI__) /* Treat all ARM compilers equally */ # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # elif defined(__CW32__) # pragma longlong on # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # elif defined(__VC32__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T unsigned int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__MWERKS__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(_WIN32_WCE) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T i64 # define CURL_SUFFIX_CURL_OFF_TU ui64 # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__MINGW32__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__VMS) # if defined(__VAX) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T unsigned int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 #elif defined(__OS400__) # if defined(__ILEC400__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t # define CURL_SIZEOF_CURL_SOCKLEN_T 4 # define CURL_PULL_SYS_TYPES_H 1 # define CURL_PULL_SYS_SOCKET_H 1 # endif #elif defined(__MVS__) # if defined(__IBMC__) || defined(__IBMCPP__) # if defined(_ILP32) # define CURL_SIZEOF_LONG 4 # elif defined(_LP64) # define CURL_SIZEOF_LONG 8 # endif # if defined(_LONG_LONG) # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # elif defined(_LP64) # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # else # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t # define CURL_SIZEOF_CURL_SOCKLEN_T 4 # define CURL_PULL_SYS_TYPES_H 1 # define CURL_PULL_SYS_SOCKET_H 1 # endif #elif defined(__370__) # if defined(__IBMC__) || defined(__IBMCPP__) # if defined(_ILP32) # define CURL_SIZEOF_LONG 4 # elif defined(_LP64) # define CURL_SIZEOF_LONG 8 # endif # if defined(_LONG_LONG) # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # elif defined(_LP64) # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # else # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t # define CURL_SIZEOF_CURL_SOCKLEN_T 4 # define CURL_PULL_SYS_TYPES_H 1 # define CURL_PULL_SYS_SOCKET_H 1 # endif #elif defined(TPF) # define CURL_SIZEOF_LONG 8 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 /* ===================================== */ /* KEEP MSVC THE PENULTIMATE ENTRY */ /* ===================================== */ #elif defined(_MSC_VER) # if (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T __int64 # define CURL_FORMAT_CURL_OFF_T "I64d" # define CURL_FORMAT_CURL_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T i64 # define CURL_SUFFIX_CURL_OFF_TU ui64 # else # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 4 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T int # define CURL_SIZEOF_CURL_SOCKLEN_T 4 /* ===================================== */ /* KEEP GENERIC GCC THE LAST ENTRY */ /* ===================================== */ #elif defined(__GNUC__) # if defined(__ILP32__) || \ defined(__i386__) || defined(__ppc__) || defined(__arm__) # define CURL_SIZEOF_LONG 4 # define CURL_TYPEOF_CURL_OFF_T long long # define CURL_FORMAT_CURL_OFF_T "lld" # define CURL_FORMAT_CURL_OFF_TU "llu" # define CURL_FORMAT_OFF_T "%lld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T LL # define CURL_SUFFIX_CURL_OFF_TU ULL # elif defined(__LP64__) || \ defined(__x86_64__) || defined(__ppc64__) # define CURL_SIZEOF_LONG 8 # define CURL_TYPEOF_CURL_OFF_T long # define CURL_FORMAT_CURL_OFF_T "ld" # define CURL_FORMAT_CURL_OFF_TU "lu" # define CURL_FORMAT_OFF_T "%ld" # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SUFFIX_CURL_OFF_T L # define CURL_SUFFIX_CURL_OFF_TU UL # endif # define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t # define CURL_SIZEOF_CURL_SOCKLEN_T 4 # define CURL_PULL_SYS_TYPES_H 1 # define CURL_PULL_SYS_SOCKET_H 1 #else # error "Unknown non-configure build target!" Error Compilation_aborted_Unknown_non_configure_build_target #endif /* CURL_PULL_SYS_TYPES_H is defined above when inclusion of header file */ /* sys/types.h is required here to properly make type definitions below. */ #ifdef CURL_PULL_SYS_TYPES_H # include #endif /* CURL_PULL_SYS_SOCKET_H is defined above when inclusion of header file */ /* sys/socket.h is required here to properly make type definitions below. */ #ifdef CURL_PULL_SYS_SOCKET_H # include #endif /* Data type definition of curl_socklen_t. */ #ifdef CURL_TYPEOF_CURL_SOCKLEN_T typedef CURL_TYPEOF_CURL_SOCKLEN_T curl_socklen_t; #endif /* Data type definition of curl_off_t. */ #ifdef CURL_TYPEOF_CURL_OFF_T typedef CURL_TYPEOF_CURL_OFF_T curl_off_t; #endif #endif /* __CURL_CURLBUILD_H */ ================================================ FILE: third_party/include/curl/curlrules.h ================================================ #ifndef __CURL_CURLRULES_H #define __CURL_CURLRULES_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* ================================================================ */ /* COMPILE TIME SANITY CHECKS */ /* ================================================================ */ /* * NOTE 1: * ------- * * All checks done in this file are intentionally placed in a public * header file which is pulled by curl/curl.h when an application is * being built using an already built libcurl library. Additionally * this file is also included and used when building the library. * * If compilation fails on this file it is certainly sure that the * problem is elsewhere. It could be a problem in the curlbuild.h * header file, or simply that you are using different compilation * settings than those used to build the library. * * Nothing in this file is intended to be modified or adjusted by the * curl library user nor by the curl library builder. * * Do not deactivate any check, these are done to make sure that the * library is properly built and used. * * You can find further help on the libcurl development mailing list: * http://cool.haxx.se/mailman/listinfo/curl-library/ * * NOTE 2 * ------ * * Some of the following compile time checks are based on the fact * that the dimension of a constant array can not be a negative one. * In this way if the compile time verification fails, the compilation * will fail issuing an error. The error description wording is compiler * dependent but it will be quite similar to one of the following: * * "negative subscript or subscript is too large" * "array must have at least one element" * "-1 is an illegal array size" * "size of array is negative" * * If you are building an application which tries to use an already * built libcurl library and you are getting this kind of errors on * this file, it is a clear indication that there is a mismatch between * how the library was built and how you are trying to use it for your * application. Your already compiled or binary library provider is the * only one who can give you the details you need to properly use it. */ /* * Verify that some macros are actually defined. */ #ifndef CURL_SIZEOF_LONG # error "CURL_SIZEOF_LONG definition is missing!" Error Compilation_aborted_CURL_SIZEOF_LONG_is_missing #endif #ifndef CURL_TYPEOF_CURL_SOCKLEN_T # error "CURL_TYPEOF_CURL_SOCKLEN_T definition is missing!" Error Compilation_aborted_CURL_TYPEOF_CURL_SOCKLEN_T_is_missing #endif #ifndef CURL_SIZEOF_CURL_SOCKLEN_T # error "CURL_SIZEOF_CURL_SOCKLEN_T definition is missing!" Error Compilation_aborted_CURL_SIZEOF_CURL_SOCKLEN_T_is_missing #endif #ifndef CURL_TYPEOF_CURL_OFF_T # error "CURL_TYPEOF_CURL_OFF_T definition is missing!" Error Compilation_aborted_CURL_TYPEOF_CURL_OFF_T_is_missing #endif #ifndef CURL_FORMAT_CURL_OFF_T # error "CURL_FORMAT_CURL_OFF_T definition is missing!" Error Compilation_aborted_CURL_FORMAT_CURL_OFF_T_is_missing #endif #ifndef CURL_FORMAT_CURL_OFF_TU # error "CURL_FORMAT_CURL_OFF_TU definition is missing!" Error Compilation_aborted_CURL_FORMAT_CURL_OFF_TU_is_missing #endif #ifndef CURL_FORMAT_OFF_T # error "CURL_FORMAT_OFF_T definition is missing!" Error Compilation_aborted_CURL_FORMAT_OFF_T_is_missing #endif #ifndef CURL_SIZEOF_CURL_OFF_T # error "CURL_SIZEOF_CURL_OFF_T definition is missing!" Error Compilation_aborted_CURL_SIZEOF_CURL_OFF_T_is_missing #endif #ifndef CURL_SUFFIX_CURL_OFF_T # error "CURL_SUFFIX_CURL_OFF_T definition is missing!" Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_T_is_missing #endif #ifndef CURL_SUFFIX_CURL_OFF_TU # error "CURL_SUFFIX_CURL_OFF_TU definition is missing!" Error Compilation_aborted_CURL_SUFFIX_CURL_OFF_TU_is_missing #endif /* * Macros private to this header file. */ #define CurlchkszEQ(t, s) sizeof(t) == s ? 1 : -1 #define CurlchkszGE(t1, t2) sizeof(t1) >= sizeof(t2) ? 1 : -1 /* * Verify that the size previously defined and expected for long * is the same as the one reported by sizeof() at compile time. */ typedef char __curl_rule_01__ [CurlchkszEQ(long, CURL_SIZEOF_LONG)]; /* * Verify that the size previously defined and expected for * curl_off_t is actually the the same as the one reported * by sizeof() at compile time. */ typedef char __curl_rule_02__ [CurlchkszEQ(curl_off_t, CURL_SIZEOF_CURL_OFF_T)]; /* * Verify at compile time that the size of curl_off_t as reported * by sizeof() is greater or equal than the one reported for long * for the current compilation. */ typedef char __curl_rule_03__ [CurlchkszGE(curl_off_t, long)]; /* * Verify that the size previously defined and expected for * curl_socklen_t is actually the the same as the one reported * by sizeof() at compile time. */ typedef char __curl_rule_04__ [CurlchkszEQ(curl_socklen_t, CURL_SIZEOF_CURL_SOCKLEN_T)]; /* * Verify at compile time that the size of curl_socklen_t as reported * by sizeof() is greater or equal than the one reported for int for * the current compilation. */ typedef char __curl_rule_05__ [CurlchkszGE(curl_socklen_t, int)]; /* ================================================================ */ /* EXTERNALLY AND INTERNALLY VISIBLE DEFINITIONS */ /* ================================================================ */ /* * CURL_ISOCPP and CURL_OFF_T_C definitions are done here in order to allow * these to be visible and exported by the external libcurl interface API, * while also making them visible to the library internals, simply including * curl_setup.h, without actually needing to include curl.h internally. * If some day this section would grow big enough, all this should be moved * to its own header file. */ /* * Figure out if we can use the ## preprocessor operator, which is supported * by ISO/ANSI C and C++. Some compilers support it without setting __STDC__ * or __cplusplus so we need to carefully check for them too. */ #if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) || \ defined(__HP_aCC) || defined(__BORLANDC__) || defined(__LCC__) || \ defined(__POCC__) || defined(__SALFORDC__) || defined(__HIGHC__) || \ defined(__ILEC400__) /* This compiler is believed to have an ISO compatible preprocessor */ #define CURL_ISOCPP #else /* This compiler is believed NOT to have an ISO compatible preprocessor */ #undef CURL_ISOCPP #endif /* * Macros for minimum-width signed and unsigned curl_off_t integer constants. */ #if defined(__BORLANDC__) && (__BORLANDC__ == 0x0551) # define __CURL_OFF_T_C_HLPR2(x) x # define __CURL_OFF_T_C_HLPR1(x) __CURL_OFF_T_C_HLPR2(x) # define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \ __CURL_OFF_T_C_HLPR1(CURL_SUFFIX_CURL_OFF_T) # define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \ __CURL_OFF_T_C_HLPR1(CURL_SUFFIX_CURL_OFF_TU) #else # ifdef CURL_ISOCPP # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix # else # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix # endif # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix) # define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val,CURL_SUFFIX_CURL_OFF_T) # define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val,CURL_SUFFIX_CURL_OFF_TU) #endif /* * Get rid of macros private to this header file. */ #undef CurlchkszEQ #undef CurlchkszGE /* * Get rid of macros not intended to exist beyond this point. */ #undef CURL_PULL_WS2TCPIP_H #undef CURL_PULL_SYS_TYPES_H #undef CURL_PULL_SYS_SOCKET_H #undef CURL_PULL_SYS_POLL_H #undef CURL_PULL_STDINT_H #undef CURL_PULL_INTTYPES_H #undef CURL_TYPEOF_CURL_SOCKLEN_T #undef CURL_TYPEOF_CURL_OFF_T #ifdef CURL_NO_OLDIES #undef CURL_FORMAT_OFF_T /* not required since 7.19.0 - obsoleted in 7.20.0 */ #endif #endif /* __CURL_CURLRULES_H */ ================================================ FILE: third_party/include/curl/curlver.h ================================================ #ifndef __CURL_CURLVER_H #define __CURL_CURLVER_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* This header file contains nothing but libcurl version info, generated by a script at release-time. This was made its own header file in 7.11.2 */ /* This is the global package copyright */ #define LIBCURL_COPYRIGHT "1996 - 2013 Daniel Stenberg, ." /* This is the version number of the libcurl package from which this header file origins: */ #define LIBCURL_VERSION "7.30.0-DEV" /* The numeric version number is also available "in parts" by using these defines: */ #define LIBCURL_VERSION_MAJOR 7 #define LIBCURL_VERSION_MINOR 30 #define LIBCURL_VERSION_PATCH 0 /* This is the numeric version of the libcurl version number, meant for easier parsing and comparions by programs. The LIBCURL_VERSION_NUM define will always follow this syntax: 0xXXYYZZ Where XX, YY and ZZ are the main version, release and patch numbers in hexadecimal (using 8 bits each). All three numbers are always represented using two digits. 1.2 would appear as "0x010200" while version 9.11.7 appears as "0x090b07". This 6-digit (24 bits) hexadecimal number does not show pre-release number, and it is always a greater number in a more recent release. It makes comparisons with greater than and less than work. */ #define LIBCURL_VERSION_NUM 0x071e00 /* * This is the date and time when the full source package was created. The * timestamp is not stored in git, as the timestamp is properly set in the * tarballs by the maketgz script. * * The format of the date should follow this template: * * "Mon Feb 12 11:35:33 UTC 2007" */ #define LIBCURL_TIMESTAMP "DEV" #endif /* __CURL_CURLVER_H */ ================================================ FILE: third_party/include/curl/easy.h ================================================ #ifndef __CURL_EASY_H #define __CURL_EASY_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ #ifdef __cplusplus extern "C" { #endif CURL_EXTERN CURL *curl_easy_init(void); CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...); CURL_EXTERN CURLcode curl_easy_perform(CURL *curl); CURL_EXTERN void curl_easy_cleanup(CURL *curl); /* * NAME curl_easy_getinfo() * * DESCRIPTION * * Request internal information from the curl session with this function. The * third argument MUST be a pointer to a long, a pointer to a char * or a * pointer to a double (as the documentation describes elsewhere). The data * pointed to will be filled in accordingly and can be relied upon only if the * function returns CURLE_OK. This function is intended to get used *AFTER* a * performed transfer, all results from this function are undefined until the * transfer is completed. */ CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...); /* * NAME curl_easy_duphandle() * * DESCRIPTION * * Creates a new curl session handle with the same options set for the handle * passed in. Duplicating a handle could only be a matter of cloning data and * options, internal state info and things like persistent connections cannot * be transferred. It is useful in multithreaded applications when you can run * curl_easy_duphandle() for each new thread to avoid a series of identical * curl_easy_setopt() invokes in every thread. */ CURL_EXTERN CURL* curl_easy_duphandle(CURL *curl); /* * NAME curl_easy_reset() * * DESCRIPTION * * Re-initializes a CURL handle to the default values. This puts back the * handle to the same state as it was in when it was just created. * * It does keep: live connections, the Session ID cache, the DNS cache and the * cookies. */ CURL_EXTERN void curl_easy_reset(CURL *curl); /* * NAME curl_easy_recv() * * DESCRIPTION * * Receives data from the connected socket. Use after successful * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. */ CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen, size_t *n); /* * NAME curl_easy_send() * * DESCRIPTION * * Sends data over the connected socket. Use after successful * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. */ CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer, size_t buflen, size_t *n); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/curl/mprintf.h ================================================ #ifndef __CURL_MPRINTF_H #define __CURL_MPRINTF_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ #include #include /* needed for FILE */ #include "curl.h" #ifdef __cplusplus extern "C" { #endif CURL_EXTERN int curl_mprintf(const char *format, ...); CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...); CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...); CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength, const char *format, ...); CURL_EXTERN int curl_mvprintf(const char *format, va_list args); CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args); CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args); CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength, const char *format, va_list args); CURL_EXTERN char *curl_maprintf(const char *format, ...); CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args); #ifdef _MPRINTF_REPLACE # undef printf # undef fprintf # undef sprintf # undef vsprintf # undef snprintf # undef vprintf # undef vfprintf # undef vsnprintf # undef aprintf # undef vaprintf # define printf curl_mprintf # define fprintf curl_mfprintf #ifdef CURLDEBUG /* When built with CURLDEBUG we define away the sprintf functions since we don't want internal code to be using them */ # define sprintf sprintf_was_used # define vsprintf vsprintf_was_used #else # define sprintf curl_msprintf # define vsprintf curl_mvsprintf #endif # define snprintf curl_msnprintf # define vprintf curl_mvprintf # define vfprintf curl_mvfprintf # define vsnprintf curl_mvsnprintf # define aprintf curl_maprintf # define vaprintf curl_mvaprintf #endif #ifdef __cplusplus } #endif #endif /* __CURL_MPRINTF_H */ ================================================ FILE: third_party/include/curl/multi.h ================================================ #ifndef __CURL_MULTI_H #define __CURL_MULTI_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* This is an "external" header file. Don't give away any internals here! GOALS o Enable a "pull" interface. The application that uses libcurl decides where and when to ask libcurl to get/send data. o Enable multiple simultaneous transfers in the same thread without making it complicated for the application. o Enable the application to select() on its own file descriptors and curl's file descriptors simultaneous easily. */ /* * This header file should not really need to include "curl.h" since curl.h * itself includes this file and we expect user applications to do #include * without the need for especially including multi.h. * * For some reason we added this include here at one point, and rather than to * break existing (wrongly written) libcurl applications, we leave it as-is * but with this warning attached. */ #include "curl.h" #ifdef __cplusplus extern "C" { #endif typedef void CURLM; typedef enum { CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() or curl_multi_socket*() soon */ CURLM_OK, CURLM_BAD_HANDLE, /* the passed-in handle is not a valid CURLM handle */ CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */ CURLM_OUT_OF_MEMORY, /* if you ever get this, you're in deep sh*t */ CURLM_INTERNAL_ERROR, /* this is a libcurl bug */ CURLM_BAD_SOCKET, /* the passed in socket argument did not match */ CURLM_UNKNOWN_OPTION, /* curl_multi_setopt() with unsupported option */ CURLM_LAST } CURLMcode; /* just to make code nicer when using curl_multi_socket() you can now check for CURLM_CALL_MULTI_SOCKET too in the same style it works for curl_multi_perform() and CURLM_CALL_MULTI_PERFORM */ #define CURLM_CALL_MULTI_SOCKET CURLM_CALL_MULTI_PERFORM typedef enum { CURLMSG_NONE, /* first, not used */ CURLMSG_DONE, /* This easy handle has completed. 'result' contains the CURLcode of the transfer */ CURLMSG_LAST /* last, not used */ } CURLMSG; struct CURLMsg { CURLMSG msg; /* what this message means */ CURL *easy_handle; /* the handle it concerns */ union { void *whatever; /* message-specific data */ CURLcode result; /* return code for transfer */ } data; }; typedef struct CURLMsg CURLMsg; /* Based on poll(2) structure and values. * We don't use pollfd and POLL* constants explicitly * to cover platforms without poll(). */ #define CURL_WAIT_POLLIN 0x0001 #define CURL_WAIT_POLLPRI 0x0002 #define CURL_WAIT_POLLOUT 0x0004 struct curl_waitfd { curl_socket_t fd; short events; short revents; /* not supported yet */ }; /* * Name: curl_multi_init() * * Desc: inititalize multi-style curl usage * * Returns: a new CURLM handle to use in all 'curl_multi' functions. */ CURL_EXTERN CURLM *curl_multi_init(void); /* * Name: curl_multi_add_handle() * * Desc: add a standard curl handle to the multi stack * * Returns: CURLMcode type, general multi error code. */ CURL_EXTERN CURLMcode curl_multi_add_handle(CURLM *multi_handle, CURL *curl_handle); /* * Name: curl_multi_remove_handle() * * Desc: removes a curl handle from the multi stack again * * Returns: CURLMcode type, general multi error code. */ CURL_EXTERN CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *curl_handle); /* * Name: curl_multi_fdset() * * Desc: Ask curl for its fd_set sets. The app can use these to select() or * poll() on. We want curl_multi_perform() called as soon as one of * them are ready. * * Returns: CURLMcode type, general multi error code. */ CURL_EXTERN CURLMcode curl_multi_fdset(CURLM *multi_handle, fd_set *read_fd_set, fd_set *write_fd_set, fd_set *exc_fd_set, int *max_fd); /* * Name: curl_multi_wait() * * Desc: Poll on all fds within a CURLM set as well as any * additional fds passed to the function. * * Returns: CURLMcode type, general multi error code. */ CURL_EXTERN CURLMcode curl_multi_wait(CURLM *multi_handle, struct curl_waitfd extra_fds[], unsigned int extra_nfds, int timeout_ms, int *ret); /* * Name: curl_multi_perform() * * Desc: When the app thinks there's data available for curl it calls this * function to read/write whatever there is right now. This returns * as soon as the reads and writes are done. This function does not * require that there actually is data available for reading or that * data can be written, it can be called just in case. It returns * the number of handles that still transfer data in the second * argument's integer-pointer. * * Returns: CURLMcode type, general multi error code. *NOTE* that this only * returns errors etc regarding the whole multi stack. There might * still have occurred problems on invidual transfers even when this * returns OK. */ CURL_EXTERN CURLMcode curl_multi_perform(CURLM *multi_handle, int *running_handles); /* * Name: curl_multi_cleanup() * * Desc: Cleans up and removes a whole multi stack. It does not free or * touch any individual easy handles in any way. We need to define * in what state those handles will be if this function is called * in the middle of a transfer. * * Returns: CURLMcode type, general multi error code. */ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle); /* * Name: curl_multi_info_read() * * Desc: Ask the multi handle if there's any messages/informationals from * the individual transfers. Messages include informationals such as * error code from the transfer or just the fact that a transfer is * completed. More details on these should be written down as well. * * Repeated calls to this function will return a new struct each * time, until a special "end of msgs" struct is returned as a signal * that there is no more to get at this point. * * The data the returned pointer points to will not survive calling * curl_multi_cleanup(). * * The 'CURLMsg' struct is meant to be very simple and only contain * very basic informations. If more involved information is wanted, * we will provide the particular "transfer handle" in that struct * and that should/could/would be used in subsequent * curl_easy_getinfo() calls (or similar). The point being that we * must never expose complex structs to applications, as then we'll * undoubtably get backwards compatibility problems in the future. * * Returns: A pointer to a filled-in struct, or NULL if it failed or ran out * of structs. It also writes the number of messages left in the * queue (after this read) in the integer the second argument points * to. */ CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue); /* * Name: curl_multi_strerror() * * Desc: The curl_multi_strerror function may be used to turn a CURLMcode * value into the equivalent human readable error string. This is * useful for printing meaningful error messages. * * Returns: A pointer to a zero-terminated error message. */ CURL_EXTERN const char *curl_multi_strerror(CURLMcode); /* * Name: curl_multi_socket() and * curl_multi_socket_all() * * Desc: An alternative version of curl_multi_perform() that allows the * application to pass in one of the file descriptors that have been * detected to have "action" on them and let libcurl perform. * See man page for details. */ #define CURL_POLL_NONE 0 #define CURL_POLL_IN 1 #define CURL_POLL_OUT 2 #define CURL_POLL_INOUT 3 #define CURL_POLL_REMOVE 4 #define CURL_SOCKET_TIMEOUT CURL_SOCKET_BAD #define CURL_CSELECT_IN 0x01 #define CURL_CSELECT_OUT 0x02 #define CURL_CSELECT_ERR 0x04 typedef int (*curl_socket_callback)(CURL *easy, /* easy handle */ curl_socket_t s, /* socket */ int what, /* see above */ void *userp, /* private callback pointer */ void *socketp); /* private socket pointer */ /* * Name: curl_multi_timer_callback * * Desc: Called by libcurl whenever the library detects a change in the * maximum number of milliseconds the app is allowed to wait before * curl_multi_socket() or curl_multi_perform() must be called * (to allow libcurl's timed events to take place). * * Returns: The callback should return zero. */ typedef int (*curl_multi_timer_callback)(CURLM *multi, /* multi handle */ long timeout_ms, /* see above */ void *userp); /* private callback pointer */ CURL_EXTERN CURLMcode curl_multi_socket(CURLM *multi_handle, curl_socket_t s, int *running_handles); CURL_EXTERN CURLMcode curl_multi_socket_action(CURLM *multi_handle, curl_socket_t s, int ev_bitmask, int *running_handles); CURL_EXTERN CURLMcode curl_multi_socket_all(CURLM *multi_handle, int *running_handles); #ifndef CURL_ALLOW_OLD_MULTI_SOCKET /* This macro below was added in 7.16.3 to push users who recompile to use the new curl_multi_socket_action() instead of the old curl_multi_socket() */ #define curl_multi_socket(x,y,z) curl_multi_socket_action(x,y,0,z) #endif /* * Name: curl_multi_timeout() * * Desc: Returns the maximum number of milliseconds the app is allowed to * wait before curl_multi_socket() or curl_multi_perform() must be * called (to allow libcurl's timed events to take place). * * Returns: CURLM error code. */ CURL_EXTERN CURLMcode curl_multi_timeout(CURLM *multi_handle, long *milliseconds); #undef CINIT /* re-using the same name as in curl.h */ #ifdef CURL_ISOCPP #define CINIT(name,type,num) CURLMOPT_ ## name = CURLOPTTYPE_ ## type + num #else /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */ #define LONG CURLOPTTYPE_LONG #define OBJECTPOINT CURLOPTTYPE_OBJECTPOINT #define FUNCTIONPOINT CURLOPTTYPE_FUNCTIONPOINT #define OFF_T CURLOPTTYPE_OFF_T #define CINIT(name,type,number) CURLMOPT_/**/name = type + number #endif typedef enum { /* This is the socket callback function pointer */ CINIT(SOCKETFUNCTION, FUNCTIONPOINT, 1), /* This is the argument passed to the socket callback */ CINIT(SOCKETDATA, OBJECTPOINT, 2), /* set to 1 to enable pipelining for this multi handle */ CINIT(PIPELINING, LONG, 3), /* This is the timer callback function pointer */ CINIT(TIMERFUNCTION, FUNCTIONPOINT, 4), /* This is the argument passed to the timer callback */ CINIT(TIMERDATA, OBJECTPOINT, 5), /* maximum number of entries in the connection cache */ CINIT(MAXCONNECTS, LONG, 6), /* maximum number of (pipelining) connections to one host */ CINIT(MAX_HOST_CONNECTIONS, LONG, 7), /* maximum number of requests in a pipeline */ CINIT(MAX_PIPELINE_LENGTH, LONG, 8), /* a connection with a content-length longer than this will not be considered for pipelining */ CINIT(CONTENT_LENGTH_PENALTY_SIZE, OFF_T, 9), /* a connection with a chunk length longer than this will not be considered for pipelining */ CINIT(CHUNK_LENGTH_PENALTY_SIZE, OFF_T, 10), /* a list of site names(+port) that are blacklisted from pipelining */ CINIT(PIPELINING_SITE_BL, OBJECTPOINT, 11), /* a list of server types that are blacklisted from pipelining */ CINIT(PIPELINING_SERVER_BL, OBJECTPOINT, 12), /* maximum number of open connections in total */ CINIT(MAX_TOTAL_CONNECTIONS, LONG, 13), CURLMOPT_LASTENTRY /* the last unused */ } CURLMoption; /* * Name: curl_multi_setopt() * * Desc: Sets options for the multi handle. * * Returns: CURLM error code. */ CURL_EXTERN CURLMcode curl_multi_setopt(CURLM *multi_handle, CURLMoption option, ...); /* * Name: curl_multi_assign() * * Desc: This function sets an association in the multi handle between the * given socket and a private pointer of the application. This is * (only) useful for curl_multi_socket uses. * * Returns: CURLM error code. */ CURL_EXTERN CURLMcode curl_multi_assign(CURLM *multi_handle, curl_socket_t sockfd, void *sockp); #ifdef __cplusplus } /* end of extern "C" */ #endif #endif ================================================ FILE: third_party/include/curl/stdcheaders.h ================================================ #ifndef __STDC_HEADERS_H #define __STDC_HEADERS_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2010, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ #include size_t fread (void *, size_t, size_t, FILE *); size_t fwrite (const void *, size_t, size_t, FILE *); int strcasecmp(const char *, const char *); int strncasecmp(const char *, const char *, size_t); #endif /* __STDC_HEADERS_H */ ================================================ FILE: third_party/include/curl/typecheck-gcc.h ================================================ #ifndef __CURL_TYPECHECK_GCC_H #define __CURL_TYPECHECK_GCC_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://curl.haxx.se/docs/copyright.html. * * You may opt to use, copy, modify, merge, publish, distribute and/or sell * copies of the Software, and permit persons to whom the Software is * furnished to do so, under the terms of the COPYING file. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ***************************************************************************/ /* wraps curl_easy_setopt() with typechecking */ /* To add a new kind of warning, add an * if(_curl_is_sometype_option(_curl_opt)) * if(!_curl_is_sometype(value)) * _curl_easy_setopt_err_sometype(); * block and define _curl_is_sometype_option, _curl_is_sometype and * _curl_easy_setopt_err_sometype below * * NOTE: We use two nested 'if' statements here instead of the && operator, in * order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x * when compiling with -Wlogical-op. * * To add an option that uses the same type as an existing option, you'll just * need to extend the appropriate _curl_*_option macro */ #define curl_easy_setopt(handle, option, value) \ __extension__ ({ \ __typeof__ (option) _curl_opt = option; \ if(__builtin_constant_p(_curl_opt)) { \ if(_curl_is_long_option(_curl_opt)) \ if(!_curl_is_long(value)) \ _curl_easy_setopt_err_long(); \ if(_curl_is_off_t_option(_curl_opt)) \ if(!_curl_is_off_t(value)) \ _curl_easy_setopt_err_curl_off_t(); \ if(_curl_is_string_option(_curl_opt)) \ if(!_curl_is_string(value)) \ _curl_easy_setopt_err_string(); \ if(_curl_is_write_cb_option(_curl_opt)) \ if(!_curl_is_write_cb(value)) \ _curl_easy_setopt_err_write_callback(); \ if((_curl_opt) == CURLOPT_READFUNCTION) \ if(!_curl_is_read_cb(value)) \ _curl_easy_setopt_err_read_cb(); \ if((_curl_opt) == CURLOPT_IOCTLFUNCTION) \ if(!_curl_is_ioctl_cb(value)) \ _curl_easy_setopt_err_ioctl_cb(); \ if((_curl_opt) == CURLOPT_SOCKOPTFUNCTION) \ if(!_curl_is_sockopt_cb(value)) \ _curl_easy_setopt_err_sockopt_cb(); \ if((_curl_opt) == CURLOPT_OPENSOCKETFUNCTION) \ if(!_curl_is_opensocket_cb(value)) \ _curl_easy_setopt_err_opensocket_cb(); \ if((_curl_opt) == CURLOPT_PROGRESSFUNCTION) \ if(!_curl_is_progress_cb(value)) \ _curl_easy_setopt_err_progress_cb(); \ if((_curl_opt) == CURLOPT_DEBUGFUNCTION) \ if(!_curl_is_debug_cb(value)) \ _curl_easy_setopt_err_debug_cb(); \ if((_curl_opt) == CURLOPT_SSL_CTX_FUNCTION) \ if(!_curl_is_ssl_ctx_cb(value)) \ _curl_easy_setopt_err_ssl_ctx_cb(); \ if(_curl_is_conv_cb_option(_curl_opt)) \ if(!_curl_is_conv_cb(value)) \ _curl_easy_setopt_err_conv_cb(); \ if((_curl_opt) == CURLOPT_SEEKFUNCTION) \ if(!_curl_is_seek_cb(value)) \ _curl_easy_setopt_err_seek_cb(); \ if(_curl_is_cb_data_option(_curl_opt)) \ if(!_curl_is_cb_data(value)) \ _curl_easy_setopt_err_cb_data(); \ if((_curl_opt) == CURLOPT_ERRORBUFFER) \ if(!_curl_is_error_buffer(value)) \ _curl_easy_setopt_err_error_buffer(); \ if((_curl_opt) == CURLOPT_STDERR) \ if(!_curl_is_FILE(value)) \ _curl_easy_setopt_err_FILE(); \ if(_curl_is_postfields_option(_curl_opt)) \ if(!_curl_is_postfields(value)) \ _curl_easy_setopt_err_postfields(); \ if((_curl_opt) == CURLOPT_HTTPPOST) \ if(!_curl_is_arr((value), struct curl_httppost)) \ _curl_easy_setopt_err_curl_httpost(); \ if(_curl_is_slist_option(_curl_opt)) \ if(!_curl_is_arr((value), struct curl_slist)) \ _curl_easy_setopt_err_curl_slist(); \ if((_curl_opt) == CURLOPT_SHARE) \ if(!_curl_is_ptr((value), CURLSH)) \ _curl_easy_setopt_err_CURLSH(); \ } \ curl_easy_setopt(handle, _curl_opt, value); \ }) /* wraps curl_easy_getinfo() with typechecking */ /* FIXME: don't allow const pointers */ #define curl_easy_getinfo(handle, info, arg) \ __extension__ ({ \ __typeof__ (info) _curl_info = info; \ if(__builtin_constant_p(_curl_info)) { \ if(_curl_is_string_info(_curl_info)) \ if(!_curl_is_arr((arg), char *)) \ _curl_easy_getinfo_err_string(); \ if(_curl_is_long_info(_curl_info)) \ if(!_curl_is_arr((arg), long)) \ _curl_easy_getinfo_err_long(); \ if(_curl_is_double_info(_curl_info)) \ if(!_curl_is_arr((arg), double)) \ _curl_easy_getinfo_err_double(); \ if(_curl_is_slist_info(_curl_info)) \ if(!_curl_is_arr((arg), struct curl_slist *)) \ _curl_easy_getinfo_err_curl_slist(); \ } \ curl_easy_getinfo(handle, _curl_info, arg); \ }) /* TODO: typechecking for curl_share_setopt() and curl_multi_setopt(), * for now just make sure that the functions are called with three * arguments */ #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param) #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) /* the actual warnings, triggered by calling the _curl_easy_setopt_err* * functions */ /* To define a new warning, use _CURL_WARNING(identifier, "message") */ #define _CURL_WARNING(id, message) \ static void __attribute__((__warning__(message))) \ __attribute__((__unused__)) __attribute__((__noinline__)) \ id(void) { __asm__(""); } _CURL_WARNING(_curl_easy_setopt_err_long, "curl_easy_setopt expects a long argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_off_t, "curl_easy_setopt expects a curl_off_t argument for this option") _CURL_WARNING(_curl_easy_setopt_err_string, "curl_easy_setopt expects a " "string (char* or char[]) argument for this option" ) _CURL_WARNING(_curl_easy_setopt_err_write_callback, "curl_easy_setopt expects a curl_write_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_read_cb, "curl_easy_setopt expects a curl_read_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_ioctl_cb, "curl_easy_setopt expects a curl_ioctl_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_sockopt_cb, "curl_easy_setopt expects a curl_sockopt_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_opensocket_cb, "curl_easy_setopt expects a " "curl_opensocket_callback argument for this option" ) _CURL_WARNING(_curl_easy_setopt_err_progress_cb, "curl_easy_setopt expects a curl_progress_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_debug_cb, "curl_easy_setopt expects a curl_debug_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_ssl_ctx_cb, "curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_conv_cb, "curl_easy_setopt expects a curl_conv_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_seek_cb, "curl_easy_setopt expects a curl_seek_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_cb_data, "curl_easy_setopt expects a " "private data pointer as argument for this option") _CURL_WARNING(_curl_easy_setopt_err_error_buffer, "curl_easy_setopt expects a " "char buffer of CURL_ERROR_SIZE as argument for this option") _CURL_WARNING(_curl_easy_setopt_err_FILE, "curl_easy_setopt expects a FILE* argument for this option") _CURL_WARNING(_curl_easy_setopt_err_postfields, "curl_easy_setopt expects a void* or char* argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_httpost, "curl_easy_setopt expects a struct curl_httppost* argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_slist, "curl_easy_setopt expects a struct curl_slist* argument for this option") _CURL_WARNING(_curl_easy_setopt_err_CURLSH, "curl_easy_setopt expects a CURLSH* argument for this option") _CURL_WARNING(_curl_easy_getinfo_err_string, "curl_easy_getinfo expects a pointer to char * for this info") _CURL_WARNING(_curl_easy_getinfo_err_long, "curl_easy_getinfo expects a pointer to long for this info") _CURL_WARNING(_curl_easy_getinfo_err_double, "curl_easy_getinfo expects a pointer to double for this info") _CURL_WARNING(_curl_easy_getinfo_err_curl_slist, "curl_easy_getinfo expects a pointer to struct curl_slist * for this info") /* groups of curl_easy_setops options that take the same type of argument */ /* To add a new option to one of the groups, just add * (option) == CURLOPT_SOMETHING * to the or-expression. If the option takes a long or curl_off_t, you don't * have to do anything */ /* evaluates to true if option takes a long argument */ #define _curl_is_long_option(option) \ (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT) #define _curl_is_off_t_option(option) \ ((option) > CURLOPTTYPE_OFF_T) /* evaluates to true if option takes a char* argument */ #define _curl_is_string_option(option) \ ((option) == CURLOPT_URL || \ (option) == CURLOPT_PROXY || \ (option) == CURLOPT_INTERFACE || \ (option) == CURLOPT_NETRC_FILE || \ (option) == CURLOPT_USERPWD || \ (option) == CURLOPT_USERNAME || \ (option) == CURLOPT_PASSWORD || \ (option) == CURLOPT_PROXYUSERPWD || \ (option) == CURLOPT_PROXYUSERNAME || \ (option) == CURLOPT_PROXYPASSWORD || \ (option) == CURLOPT_NOPROXY || \ (option) == CURLOPT_ACCEPT_ENCODING || \ (option) == CURLOPT_REFERER || \ (option) == CURLOPT_USERAGENT || \ (option) == CURLOPT_COOKIE || \ (option) == CURLOPT_COOKIEFILE || \ (option) == CURLOPT_COOKIEJAR || \ (option) == CURLOPT_COOKIELIST || \ (option) == CURLOPT_FTPPORT || \ (option) == CURLOPT_FTP_ALTERNATIVE_TO_USER || \ (option) == CURLOPT_FTP_ACCOUNT || \ (option) == CURLOPT_RANGE || \ (option) == CURLOPT_CUSTOMREQUEST || \ (option) == CURLOPT_SSLCERT || \ (option) == CURLOPT_SSLCERTTYPE || \ (option) == CURLOPT_SSLKEY || \ (option) == CURLOPT_SSLKEYTYPE || \ (option) == CURLOPT_KEYPASSWD || \ (option) == CURLOPT_SSLENGINE || \ (option) == CURLOPT_CAINFO || \ (option) == CURLOPT_CAPATH || \ (option) == CURLOPT_RANDOM_FILE || \ (option) == CURLOPT_EGDSOCKET || \ (option) == CURLOPT_SSL_CIPHER_LIST || \ (option) == CURLOPT_KRBLEVEL || \ (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 || \ (option) == CURLOPT_SSH_PUBLIC_KEYFILE || \ (option) == CURLOPT_SSH_PRIVATE_KEYFILE || \ (option) == CURLOPT_CRLFILE || \ (option) == CURLOPT_ISSUERCERT || \ (option) == CURLOPT_SOCKS5_GSSAPI_SERVICE || \ (option) == CURLOPT_SSH_KNOWNHOSTS || \ (option) == CURLOPT_MAIL_FROM || \ (option) == CURLOPT_RTSP_SESSION_ID || \ (option) == CURLOPT_RTSP_STREAM_URI || \ (option) == CURLOPT_RTSP_TRANSPORT || \ 0) /* evaluates to true if option takes a curl_write_callback argument */ #define _curl_is_write_cb_option(option) \ ((option) == CURLOPT_HEADERFUNCTION || \ (option) == CURLOPT_WRITEFUNCTION) /* evaluates to true if option takes a curl_conv_callback argument */ #define _curl_is_conv_cb_option(option) \ ((option) == CURLOPT_CONV_TO_NETWORK_FUNCTION || \ (option) == CURLOPT_CONV_FROM_NETWORK_FUNCTION || \ (option) == CURLOPT_CONV_FROM_UTF8_FUNCTION) /* evaluates to true if option takes a data argument to pass to a callback */ #define _curl_is_cb_data_option(option) \ ((option) == CURLOPT_WRITEDATA || \ (option) == CURLOPT_READDATA || \ (option) == CURLOPT_IOCTLDATA || \ (option) == CURLOPT_SOCKOPTDATA || \ (option) == CURLOPT_OPENSOCKETDATA || \ (option) == CURLOPT_PROGRESSDATA || \ (option) == CURLOPT_WRITEHEADER || \ (option) == CURLOPT_DEBUGDATA || \ (option) == CURLOPT_SSL_CTX_DATA || \ (option) == CURLOPT_SEEKDATA || \ (option) == CURLOPT_PRIVATE || \ (option) == CURLOPT_SSH_KEYDATA || \ (option) == CURLOPT_INTERLEAVEDATA || \ (option) == CURLOPT_CHUNK_DATA || \ (option) == CURLOPT_FNMATCH_DATA || \ 0) /* evaluates to true if option takes a POST data argument (void* or char*) */ #define _curl_is_postfields_option(option) \ ((option) == CURLOPT_POSTFIELDS || \ (option) == CURLOPT_COPYPOSTFIELDS || \ 0) /* evaluates to true if option takes a struct curl_slist * argument */ #define _curl_is_slist_option(option) \ ((option) == CURLOPT_HTTPHEADER || \ (option) == CURLOPT_HTTP200ALIASES || \ (option) == CURLOPT_QUOTE || \ (option) == CURLOPT_POSTQUOTE || \ (option) == CURLOPT_PREQUOTE || \ (option) == CURLOPT_TELNETOPTIONS || \ (option) == CURLOPT_MAIL_RCPT || \ 0) /* groups of curl_easy_getinfo infos that take the same type of argument */ /* evaluates to true if info expects a pointer to char * argument */ #define _curl_is_string_info(info) \ (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG) /* evaluates to true if info expects a pointer to long argument */ #define _curl_is_long_info(info) \ (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE) /* evaluates to true if info expects a pointer to double argument */ #define _curl_is_double_info(info) \ (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST) /* true if info expects a pointer to struct curl_slist * argument */ #define _curl_is_slist_info(info) \ (CURLINFO_SLIST < (info)) /* typecheck helpers -- check whether given expression has requested type*/ /* For pointers, you can use the _curl_is_ptr/_curl_is_arr macros, * otherwise define a new macro. Search for __builtin_types_compatible_p * in the GCC manual. * NOTE: these macros MUST NOT EVALUATE their arguments! The argument is * the actual expression passed to the curl_easy_setopt macro. This * means that you can only apply the sizeof and __typeof__ operators, no * == or whatsoever. */ /* XXX: should evaluate to true iff expr is a pointer */ #define _curl_is_any_ptr(expr) \ (sizeof(expr) == sizeof(void*)) /* evaluates to true if expr is NULL */ /* XXX: must not evaluate expr, so this check is not accurate */ #define _curl_is_NULL(expr) \ (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL))) /* evaluates to true if expr is type*, const type* or NULL */ #define _curl_is_ptr(expr, type) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), type *) || \ __builtin_types_compatible_p(__typeof__(expr), const type *)) /* evaluates to true if expr is one of type[], type*, NULL or const type* */ #define _curl_is_arr(expr, type) \ (_curl_is_ptr((expr), type) || \ __builtin_types_compatible_p(__typeof__(expr), type [])) /* evaluates to true if expr is a string */ #define _curl_is_string(expr) \ (_curl_is_arr((expr), char) || \ _curl_is_arr((expr), signed char) || \ _curl_is_arr((expr), unsigned char)) /* evaluates to true if expr is a long (no matter the signedness) * XXX: for now, int is also accepted (and therefore short and char, which * are promoted to int when passed to a variadic function) */ #define _curl_is_long(expr) \ (__builtin_types_compatible_p(__typeof__(expr), long) || \ __builtin_types_compatible_p(__typeof__(expr), signed long) || \ __builtin_types_compatible_p(__typeof__(expr), unsigned long) || \ __builtin_types_compatible_p(__typeof__(expr), int) || \ __builtin_types_compatible_p(__typeof__(expr), signed int) || \ __builtin_types_compatible_p(__typeof__(expr), unsigned int) || \ __builtin_types_compatible_p(__typeof__(expr), short) || \ __builtin_types_compatible_p(__typeof__(expr), signed short) || \ __builtin_types_compatible_p(__typeof__(expr), unsigned short) || \ __builtin_types_compatible_p(__typeof__(expr), char) || \ __builtin_types_compatible_p(__typeof__(expr), signed char) || \ __builtin_types_compatible_p(__typeof__(expr), unsigned char)) /* evaluates to true if expr is of type curl_off_t */ #define _curl_is_off_t(expr) \ (__builtin_types_compatible_p(__typeof__(expr), curl_off_t)) /* evaluates to true if expr is abuffer suitable for CURLOPT_ERRORBUFFER */ /* XXX: also check size of an char[] array? */ #define _curl_is_error_buffer(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), char *) || \ __builtin_types_compatible_p(__typeof__(expr), char[])) /* evaluates to true if expr is of type (const) void* or (const) FILE* */ #if 0 #define _curl_is_cb_data(expr) \ (_curl_is_ptr((expr), void) || \ _curl_is_ptr((expr), FILE)) #else /* be less strict */ #define _curl_is_cb_data(expr) \ _curl_is_any_ptr(expr) #endif /* evaluates to true if expr is of type FILE* */ #define _curl_is_FILE(expr) \ (__builtin_types_compatible_p(__typeof__(expr), FILE *)) /* evaluates to true if expr can be passed as POST data (void* or char*) */ #define _curl_is_postfields(expr) \ (_curl_is_ptr((expr), void) || \ _curl_is_arr((expr), char)) /* FIXME: the whole callback checking is messy... * The idea is to tolerate char vs. void and const vs. not const * pointers in arguments at least */ /* helper: __builtin_types_compatible_p distinguishes between functions and * function pointers, hide it */ #define _curl_callback_compatible(func, type) \ (__builtin_types_compatible_p(__typeof__(func), type) || \ __builtin_types_compatible_p(__typeof__(func), type*)) /* evaluates to true if expr is of type curl_read_callback or "similar" */ #define _curl_is_read_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), __typeof__(fread)) || \ __builtin_types_compatible_p(__typeof__(expr), curl_read_callback) || \ _curl_callback_compatible((expr), _curl_read_callback1) || \ _curl_callback_compatible((expr), _curl_read_callback2) || \ _curl_callback_compatible((expr), _curl_read_callback3) || \ _curl_callback_compatible((expr), _curl_read_callback4) || \ _curl_callback_compatible((expr), _curl_read_callback5) || \ _curl_callback_compatible((expr), _curl_read_callback6)) typedef size_t (_curl_read_callback1)(char *, size_t, size_t, void*); typedef size_t (_curl_read_callback2)(char *, size_t, size_t, const void*); typedef size_t (_curl_read_callback3)(char *, size_t, size_t, FILE*); typedef size_t (_curl_read_callback4)(void *, size_t, size_t, void*); typedef size_t (_curl_read_callback5)(void *, size_t, size_t, const void*); typedef size_t (_curl_read_callback6)(void *, size_t, size_t, FILE*); /* evaluates to true if expr is of type curl_write_callback or "similar" */ #define _curl_is_write_cb(expr) \ (_curl_is_read_cb(expr) || \ __builtin_types_compatible_p(__typeof__(expr), __typeof__(fwrite)) || \ __builtin_types_compatible_p(__typeof__(expr), curl_write_callback) || \ _curl_callback_compatible((expr), _curl_write_callback1) || \ _curl_callback_compatible((expr), _curl_write_callback2) || \ _curl_callback_compatible((expr), _curl_write_callback3) || \ _curl_callback_compatible((expr), _curl_write_callback4) || \ _curl_callback_compatible((expr), _curl_write_callback5) || \ _curl_callback_compatible((expr), _curl_write_callback6)) typedef size_t (_curl_write_callback1)(const char *, size_t, size_t, void*); typedef size_t (_curl_write_callback2)(const char *, size_t, size_t, const void*); typedef size_t (_curl_write_callback3)(const char *, size_t, size_t, FILE*); typedef size_t (_curl_write_callback4)(const void *, size_t, size_t, void*); typedef size_t (_curl_write_callback5)(const void *, size_t, size_t, const void*); typedef size_t (_curl_write_callback6)(const void *, size_t, size_t, FILE*); /* evaluates to true if expr is of type curl_ioctl_callback or "similar" */ #define _curl_is_ioctl_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_ioctl_callback) || \ _curl_callback_compatible((expr), _curl_ioctl_callback1) || \ _curl_callback_compatible((expr), _curl_ioctl_callback2) || \ _curl_callback_compatible((expr), _curl_ioctl_callback3) || \ _curl_callback_compatible((expr), _curl_ioctl_callback4)) typedef curlioerr (_curl_ioctl_callback1)(CURL *, int, void*); typedef curlioerr (_curl_ioctl_callback2)(CURL *, int, const void*); typedef curlioerr (_curl_ioctl_callback3)(CURL *, curliocmd, void*); typedef curlioerr (_curl_ioctl_callback4)(CURL *, curliocmd, const void*); /* evaluates to true if expr is of type curl_sockopt_callback or "similar" */ #define _curl_is_sockopt_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_sockopt_callback) || \ _curl_callback_compatible((expr), _curl_sockopt_callback1) || \ _curl_callback_compatible((expr), _curl_sockopt_callback2)) typedef int (_curl_sockopt_callback1)(void *, curl_socket_t, curlsocktype); typedef int (_curl_sockopt_callback2)(const void *, curl_socket_t, curlsocktype); /* evaluates to true if expr is of type curl_opensocket_callback or "similar" */ #define _curl_is_opensocket_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_opensocket_callback) ||\ _curl_callback_compatible((expr), _curl_opensocket_callback1) || \ _curl_callback_compatible((expr), _curl_opensocket_callback2) || \ _curl_callback_compatible((expr), _curl_opensocket_callback3) || \ _curl_callback_compatible((expr), _curl_opensocket_callback4)) typedef curl_socket_t (_curl_opensocket_callback1) (void *, curlsocktype, struct curl_sockaddr *); typedef curl_socket_t (_curl_opensocket_callback2) (void *, curlsocktype, const struct curl_sockaddr *); typedef curl_socket_t (_curl_opensocket_callback3) (const void *, curlsocktype, struct curl_sockaddr *); typedef curl_socket_t (_curl_opensocket_callback4) (const void *, curlsocktype, const struct curl_sockaddr *); /* evaluates to true if expr is of type curl_progress_callback or "similar" */ #define _curl_is_progress_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_progress_callback) || \ _curl_callback_compatible((expr), _curl_progress_callback1) || \ _curl_callback_compatible((expr), _curl_progress_callback2)) typedef int (_curl_progress_callback1)(void *, double, double, double, double); typedef int (_curl_progress_callback2)(const void *, double, double, double, double); /* evaluates to true if expr is of type curl_debug_callback or "similar" */ #define _curl_is_debug_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_debug_callback) || \ _curl_callback_compatible((expr), _curl_debug_callback1) || \ _curl_callback_compatible((expr), _curl_debug_callback2) || \ _curl_callback_compatible((expr), _curl_debug_callback3) || \ _curl_callback_compatible((expr), _curl_debug_callback4) || \ _curl_callback_compatible((expr), _curl_debug_callback5) || \ _curl_callback_compatible((expr), _curl_debug_callback6) || \ _curl_callback_compatible((expr), _curl_debug_callback7) || \ _curl_callback_compatible((expr), _curl_debug_callback8)) typedef int (_curl_debug_callback1) (CURL *, curl_infotype, char *, size_t, void *); typedef int (_curl_debug_callback2) (CURL *, curl_infotype, char *, size_t, const void *); typedef int (_curl_debug_callback3) (CURL *, curl_infotype, const char *, size_t, void *); typedef int (_curl_debug_callback4) (CURL *, curl_infotype, const char *, size_t, const void *); typedef int (_curl_debug_callback5) (CURL *, curl_infotype, unsigned char *, size_t, void *); typedef int (_curl_debug_callback6) (CURL *, curl_infotype, unsigned char *, size_t, const void *); typedef int (_curl_debug_callback7) (CURL *, curl_infotype, const unsigned char *, size_t, void *); typedef int (_curl_debug_callback8) (CURL *, curl_infotype, const unsigned char *, size_t, const void *); /* evaluates to true if expr is of type curl_ssl_ctx_callback or "similar" */ /* this is getting even messier... */ #define _curl_is_ssl_ctx_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_ssl_ctx_callback) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback1) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback2) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback3) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback4) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback5) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback6) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback7) || \ _curl_callback_compatible((expr), _curl_ssl_ctx_callback8)) typedef CURLcode (_curl_ssl_ctx_callback1)(CURL *, void *, void *); typedef CURLcode (_curl_ssl_ctx_callback2)(CURL *, void *, const void *); typedef CURLcode (_curl_ssl_ctx_callback3)(CURL *, const void *, void *); typedef CURLcode (_curl_ssl_ctx_callback4)(CURL *, const void *, const void *); #ifdef HEADER_SSL_H /* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX * this will of course break if we're included before OpenSSL headers... */ typedef CURLcode (_curl_ssl_ctx_callback5)(CURL *, SSL_CTX, void *); typedef CURLcode (_curl_ssl_ctx_callback6)(CURL *, SSL_CTX, const void *); typedef CURLcode (_curl_ssl_ctx_callback7)(CURL *, const SSL_CTX, void *); typedef CURLcode (_curl_ssl_ctx_callback8)(CURL *, const SSL_CTX, const void *); #else typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5; typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6; typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7; typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8; #endif /* evaluates to true if expr is of type curl_conv_callback or "similar" */ #define _curl_is_conv_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_conv_callback) || \ _curl_callback_compatible((expr), _curl_conv_callback1) || \ _curl_callback_compatible((expr), _curl_conv_callback2) || \ _curl_callback_compatible((expr), _curl_conv_callback3) || \ _curl_callback_compatible((expr), _curl_conv_callback4)) typedef CURLcode (*_curl_conv_callback1)(char *, size_t length); typedef CURLcode (*_curl_conv_callback2)(const char *, size_t length); typedef CURLcode (*_curl_conv_callback3)(void *, size_t length); typedef CURLcode (*_curl_conv_callback4)(const void *, size_t length); /* evaluates to true if expr is of type curl_seek_callback or "similar" */ #define _curl_is_seek_cb(expr) \ (_curl_is_NULL(expr) || \ __builtin_types_compatible_p(__typeof__(expr), curl_seek_callback) || \ _curl_callback_compatible((expr), _curl_seek_callback1) || \ _curl_callback_compatible((expr), _curl_seek_callback2)) typedef CURLcode (*_curl_seek_callback1)(void *, curl_off_t, int); typedef CURLcode (*_curl_seek_callback2)(const void *, curl_off_t, int); #endif /* __CURL_TYPECHECK_GCC_H */ ================================================ FILE: third_party/include/openssl/aes.h ================================================ /* crypto/aes/aes.h */ /* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * */ #ifndef HEADER_AES_H # define HEADER_AES_H # include # ifdef OPENSSL_NO_AES # error AES is disabled. # endif # include # define AES_ENCRYPT 1 # define AES_DECRYPT 0 /* * Because array size can't be a const in C, the following two are macros. * Both sizes are in bytes. */ # define AES_MAXNR 14 # define AES_BLOCK_SIZE 16 #ifdef __cplusplus extern "C" { #endif /* This should be a hidden type, but EVP requires that the size be known */ struct aes_key_st { # ifdef AES_LONG unsigned long rd_key[4 * (AES_MAXNR + 1)]; # else unsigned int rd_key[4 * (AES_MAXNR + 1)]; # endif int rounds; }; typedef struct aes_key_st AES_KEY; const char *AES_options(void); int AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key); int AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key); int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key); int private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key); void AES_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key); void AES_decrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key); void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key, const int enc); void AES_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, const int enc); void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc); void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc); void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num, const int enc); void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num); void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE], unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num); /* NB: the IV is _two_ blocks long */ void AES_ige_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, const int enc); /* NB: the IV is _four_ blocks long */ void AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, const AES_KEY *key2, const unsigned char *ivec, const int enc); int AES_wrap_key(AES_KEY *key, const unsigned char *iv, unsigned char *out, const unsigned char *in, unsigned int inlen); int AES_unwrap_key(AES_KEY *key, const unsigned char *iv, unsigned char *out, const unsigned char *in, unsigned int inlen); #ifdef __cplusplus } #endif #endif /* !HEADER_AES_H */ ================================================ FILE: third_party/include/openssl/applink.c ================================================ #define APPLINK_STDIN 1 #define APPLINK_STDOUT 2 #define APPLINK_STDERR 3 #define APPLINK_FPRINTF 4 #define APPLINK_FGETS 5 #define APPLINK_FREAD 6 #define APPLINK_FWRITE 7 #define APPLINK_FSETMOD 8 #define APPLINK_FEOF 9 #define APPLINK_FCLOSE 10 /* should not be used */ #define APPLINK_FOPEN 11 /* solely for completeness */ #define APPLINK_FSEEK 12 #define APPLINK_FTELL 13 #define APPLINK_FFLUSH 14 #define APPLINK_FERROR 15 #define APPLINK_CLEARERR 16 #define APPLINK_FILENO 17 /* to be used with below */ #define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */ #define APPLINK_READ 19 #define APPLINK_WRITE 20 #define APPLINK_LSEEK 21 #define APPLINK_CLOSE 22 #define APPLINK_MAX 22 /* always same as last macro */ #ifndef APPMACROS_ONLY # include # include # include static void *app_stdin(void) { return stdin; } static void *app_stdout(void) { return stdout; } static void *app_stderr(void) { return stderr; } static int app_feof(FILE *fp) { return feof(fp); } static int app_ferror(FILE *fp) { return ferror(fp); } static void app_clearerr(FILE *fp) { clearerr(fp); } static int app_fileno(FILE *fp) { return _fileno(fp); } static int app_fsetmod(FILE *fp, char mod) { return _setmode(_fileno(fp), mod == 'b' ? _O_BINARY : _O_TEXT); } #ifdef __cplusplus extern "C" { #endif __declspec(dllexport) void ** # if defined(__BORLANDC__) /* * __stdcall appears to be the only way to get the name * decoration right with Borland C. Otherwise it works * purely incidentally, as we pass no parameters. */ __stdcall # else __cdecl # endif OPENSSL_Applink(void) { static int once = 1; static void *OPENSSL_ApplinkTable[APPLINK_MAX + 1] = { (void *)APPLINK_MAX }; if (once) { OPENSSL_ApplinkTable[APPLINK_STDIN] = app_stdin; OPENSSL_ApplinkTable[APPLINK_STDOUT] = app_stdout; OPENSSL_ApplinkTable[APPLINK_STDERR] = app_stderr; OPENSSL_ApplinkTable[APPLINK_FPRINTF] = fprintf; OPENSSL_ApplinkTable[APPLINK_FGETS] = fgets; OPENSSL_ApplinkTable[APPLINK_FREAD] = fread; OPENSSL_ApplinkTable[APPLINK_FWRITE] = fwrite; OPENSSL_ApplinkTable[APPLINK_FSETMOD] = app_fsetmod; OPENSSL_ApplinkTable[APPLINK_FEOF] = app_feof; OPENSSL_ApplinkTable[APPLINK_FCLOSE] = fclose; OPENSSL_ApplinkTable[APPLINK_FOPEN] = fopen; OPENSSL_ApplinkTable[APPLINK_FSEEK] = fseek; OPENSSL_ApplinkTable[APPLINK_FTELL] = ftell; OPENSSL_ApplinkTable[APPLINK_FFLUSH] = fflush; OPENSSL_ApplinkTable[APPLINK_FERROR] = app_ferror; OPENSSL_ApplinkTable[APPLINK_CLEARERR] = app_clearerr; OPENSSL_ApplinkTable[APPLINK_FILENO] = app_fileno; OPENSSL_ApplinkTable[APPLINK_OPEN] = _open; OPENSSL_ApplinkTable[APPLINK_READ] = _read; OPENSSL_ApplinkTable[APPLINK_WRITE] = _write; OPENSSL_ApplinkTable[APPLINK_LSEEK] = _lseek; OPENSSL_ApplinkTable[APPLINK_CLOSE] = _close; once = 0; } return OPENSSL_ApplinkTable; } #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/asn1.h ================================================ /* crypto/asn1/asn1.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_ASN1_H # define HEADER_ASN1_H # include # include # ifndef OPENSSL_NO_BIO # include # endif # include # include # include # include # ifndef OPENSSL_NO_DEPRECATED # include # endif # ifdef OPENSSL_BUILD_SHLIBCRYPTO # undef OPENSSL_EXTERN # define OPENSSL_EXTERN OPENSSL_EXPORT # endif #ifdef __cplusplus extern "C" { #endif # define V_ASN1_UNIVERSAL 0x00 # define V_ASN1_APPLICATION 0x40 # define V_ASN1_CONTEXT_SPECIFIC 0x80 # define V_ASN1_PRIVATE 0xc0 # define V_ASN1_CONSTRUCTED 0x20 # define V_ASN1_PRIMITIVE_TAG 0x1f # define V_ASN1_PRIMATIVE_TAG 0x1f # define V_ASN1_APP_CHOOSE -2/* let the recipient choose */ # define V_ASN1_OTHER -3/* used in ASN1_TYPE */ # define V_ASN1_ANY -4/* used in ASN1 template code */ # define V_ASN1_NEG 0x100/* negative flag */ # define V_ASN1_UNDEF -1 # define V_ASN1_EOC 0 # define V_ASN1_BOOLEAN 1 /**/ # define V_ASN1_INTEGER 2 # define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG) # define V_ASN1_BIT_STRING 3 # define V_ASN1_OCTET_STRING 4 # define V_ASN1_NULL 5 # define V_ASN1_OBJECT 6 # define V_ASN1_OBJECT_DESCRIPTOR 7 # define V_ASN1_EXTERNAL 8 # define V_ASN1_REAL 9 # define V_ASN1_ENUMERATED 10 # define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG) # define V_ASN1_UTF8STRING 12 # define V_ASN1_SEQUENCE 16 # define V_ASN1_SET 17 # define V_ASN1_NUMERICSTRING 18 /**/ # define V_ASN1_PRINTABLESTRING 19 # define V_ASN1_T61STRING 20 # define V_ASN1_TELETEXSTRING 20/* alias */ # define V_ASN1_VIDEOTEXSTRING 21 /**/ # define V_ASN1_IA5STRING 22 # define V_ASN1_UTCTIME 23 # define V_ASN1_GENERALIZEDTIME 24 /**/ # define V_ASN1_GRAPHICSTRING 25 /**/ # define V_ASN1_ISO64STRING 26 /**/ # define V_ASN1_VISIBLESTRING 26/* alias */ # define V_ASN1_GENERALSTRING 27 /**/ # define V_ASN1_UNIVERSALSTRING 28 /**/ # define V_ASN1_BMPSTRING 30 /* For use with d2i_ASN1_type_bytes() */ # define B_ASN1_NUMERICSTRING 0x0001 # define B_ASN1_PRINTABLESTRING 0x0002 # define B_ASN1_T61STRING 0x0004 # define B_ASN1_TELETEXSTRING 0x0004 # define B_ASN1_VIDEOTEXSTRING 0x0008 # define B_ASN1_IA5STRING 0x0010 # define B_ASN1_GRAPHICSTRING 0x0020 # define B_ASN1_ISO64STRING 0x0040 # define B_ASN1_VISIBLESTRING 0x0040 # define B_ASN1_GENERALSTRING 0x0080 # define B_ASN1_UNIVERSALSTRING 0x0100 # define B_ASN1_OCTET_STRING 0x0200 # define B_ASN1_BIT_STRING 0x0400 # define B_ASN1_BMPSTRING 0x0800 # define B_ASN1_UNKNOWN 0x1000 # define B_ASN1_UTF8STRING 0x2000 # define B_ASN1_UTCTIME 0x4000 # define B_ASN1_GENERALIZEDTIME 0x8000 # define B_ASN1_SEQUENCE 0x10000 /* For use with ASN1_mbstring_copy() */ # define MBSTRING_FLAG 0x1000 # define MBSTRING_UTF8 (MBSTRING_FLAG) # define MBSTRING_ASC (MBSTRING_FLAG|1) # define MBSTRING_BMP (MBSTRING_FLAG|2) # define MBSTRING_UNIV (MBSTRING_FLAG|4) # define SMIME_OLDMIME 0x400 # define SMIME_CRLFEOL 0x800 # define SMIME_STREAM 0x1000 struct X509_algor_st; DECLARE_STACK_OF(X509_ALGOR) # define DECLARE_ASN1_SET_OF(type)/* filled in by mkstack.pl */ # define IMPLEMENT_ASN1_SET_OF(type)/* nothing, no longer needed */ /* * We MUST make sure that, except for constness, asn1_ctx_st and * asn1_const_ctx are exactly the same. Fortunately, as soon as the old ASN1 * parsing macros are gone, we can throw this away as well... */ typedef struct asn1_ctx_st { unsigned char *p; /* work char pointer */ int eos; /* end of sequence read for indefinite * encoding */ int error; /* error code to use when returning an error */ int inf; /* constructed if 0x20, indefinite is 0x21 */ int tag; /* tag from last 'get object' */ int xclass; /* class from last 'get object' */ long slen; /* length of last 'get object' */ unsigned char *max; /* largest value of p allowed */ unsigned char *q; /* temporary variable */ unsigned char **pp; /* variable */ int line; /* used in error processing */ } ASN1_CTX; typedef struct asn1_const_ctx_st { const unsigned char *p; /* work char pointer */ int eos; /* end of sequence read for indefinite * encoding */ int error; /* error code to use when returning an error */ int inf; /* constructed if 0x20, indefinite is 0x21 */ int tag; /* tag from last 'get object' */ int xclass; /* class from last 'get object' */ long slen; /* length of last 'get object' */ const unsigned char *max; /* largest value of p allowed */ const unsigned char *q; /* temporary variable */ const unsigned char **pp; /* variable */ int line; /* used in error processing */ } ASN1_const_CTX; /* * These are used internally in the ASN1_OBJECT to keep track of whether the * names and data need to be free()ed */ # define ASN1_OBJECT_FLAG_DYNAMIC 0x01/* internal use */ # define ASN1_OBJECT_FLAG_CRITICAL 0x02/* critical x509v3 object id */ # define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04/* internal use */ # define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08/* internal use */ struct asn1_object_st { const char *sn, *ln; int nid; int length; const unsigned char *data; /* data remains const after init */ int flags; /* Should we free this one */ }; # define ASN1_STRING_FLAG_BITS_LEFT 0x08/* Set if 0x07 has bits left value */ /* * This indicates that the ASN1_STRING is not a real value but just a place * holder for the location where indefinite length constructed data should be * inserted in the memory buffer */ # define ASN1_STRING_FLAG_NDEF 0x010 /* * This flag is used by the CMS code to indicate that a string is not * complete and is a place holder for content when it had all been accessed. * The flag will be reset when content has been written to it. */ # define ASN1_STRING_FLAG_CONT 0x020 /* * This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING * type. */ # define ASN1_STRING_FLAG_MSTRING 0x040 /* This is the base type that holds just about everything :-) */ struct asn1_string_st { int length; int type; unsigned char *data; /* * The value of the following field depends on the type being held. It * is mostly being used for BIT_STRING so if the input data has a * non-zero 'unused bits' value, it will be handled correctly */ long flags; }; /* * ASN1_ENCODING structure: this is used to save the received encoding of an * ASN1 type. This is useful to get round problems with invalid encodings * which can break signatures. */ typedef struct ASN1_ENCODING_st { unsigned char *enc; /* DER encoding */ long len; /* Length of encoding */ int modified; /* set to 1 if 'enc' is invalid */ } ASN1_ENCODING; /* Used with ASN1 LONG type: if a long is set to this it is omitted */ # define ASN1_LONG_UNDEF 0x7fffffffL # define STABLE_FLAGS_MALLOC 0x01 # define STABLE_NO_MASK 0x02 # define DIRSTRING_TYPE \ (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING) # define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING) typedef struct asn1_string_table_st { int nid; long minsize; long maxsize; unsigned long mask; unsigned long flags; } ASN1_STRING_TABLE; DECLARE_STACK_OF(ASN1_STRING_TABLE) /* size limits: this stuff is taken straight from RFC2459 */ # define ub_name 32768 # define ub_common_name 64 # define ub_locality_name 128 # define ub_state_name 128 # define ub_organization_name 64 # define ub_organization_unit_name 64 # define ub_title 64 # define ub_email_address 128 /* * Declarations for template structures: for full definitions see asn1t.h */ typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE; typedef struct ASN1_TLC_st ASN1_TLC; /* This is just an opaque pointer */ typedef struct ASN1_VALUE_st ASN1_VALUE; /* Declare ASN1 functions: the implement macro in in asn1t.h */ # define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type) # define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type) # define DECLARE_ASN1_FUNCTIONS_name(type, name) \ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \ DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name) # define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \ DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) # define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \ type *d2i_##name(type **a, const unsigned char **in, long len); \ int i2d_##name(type *a, unsigned char **out); \ DECLARE_ASN1_ITEM(itname) # define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \ type *d2i_##name(type **a, const unsigned char **in, long len); \ int i2d_##name(const type *a, unsigned char **out); \ DECLARE_ASN1_ITEM(name) # define DECLARE_ASN1_NDEF_FUNCTION(name) \ int i2d_##name##_NDEF(name *a, unsigned char **out); # define DECLARE_ASN1_FUNCTIONS_const(name) \ DECLARE_ASN1_ALLOC_FUNCTIONS(name) \ DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name) # define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \ type *name##_new(void); \ void name##_free(type *a); # define DECLARE_ASN1_PRINT_FUNCTION(stname) \ DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname) # define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \ int fname##_print_ctx(BIO *out, stname *x, int indent, \ const ASN1_PCTX *pctx); # define D2I_OF(type) type *(*)(type **,const unsigned char **,long) # define I2D_OF(type) int (*)(type *,unsigned char **) # define I2D_OF_const(type) int (*)(const type *,unsigned char **) # define CHECKED_D2I_OF(type, d2i) \ ((d2i_of_void*) (1 ? d2i : ((D2I_OF(type))0))) # define CHECKED_I2D_OF(type, i2d) \ ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0))) # define CHECKED_NEW_OF(type, xnew) \ ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0))) # define CHECKED_PTR_OF(type, p) \ ((void*) (1 ? p : (type*)0)) # define CHECKED_PPTR_OF(type, p) \ ((void**) (1 ? p : (type**)0)) # define TYPEDEF_D2I_OF(type) typedef type *d2i_of_##type(type **,const unsigned char **,long) # define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type(type *,unsigned char **) # define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type) TYPEDEF_D2I2D_OF(void); /*- * The following macros and typedefs allow an ASN1_ITEM * to be embedded in a structure and referenced. Since * the ASN1_ITEM pointers need to be globally accessible * (possibly from shared libraries) they may exist in * different forms. On platforms that support it the * ASN1_ITEM structure itself will be globally exported. * Other platforms will export a function that returns * an ASN1_ITEM pointer. * * To handle both cases transparently the macros below * should be used instead of hard coding an ASN1_ITEM * pointer in a structure. * * The structure will look like this: * * typedef struct SOMETHING_st { * ... * ASN1_ITEM_EXP *iptr; * ... * } SOMETHING; * * It would be initialised as e.g.: * * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...}; * * and the actual pointer extracted with: * * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr); * * Finally an ASN1_ITEM pointer can be extracted from an * appropriate reference with: ASN1_ITEM_rptr(X509). This * would be used when a function takes an ASN1_ITEM * argument. * */ # ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION /* ASN1_ITEM pointer exported type */ typedef const ASN1_ITEM ASN1_ITEM_EXP; /* Macro to obtain ASN1_ITEM pointer from exported type */ # define ASN1_ITEM_ptr(iptr) (iptr) /* Macro to include ASN1_ITEM pointer from base type */ # define ASN1_ITEM_ref(iptr) (&(iptr##_it)) # define ASN1_ITEM_rptr(ref) (&(ref##_it)) # define DECLARE_ASN1_ITEM(name) \ OPENSSL_EXTERN const ASN1_ITEM name##_it; # else /* * Platforms that can't easily handle shared global variables are declared as * functions returning ASN1_ITEM pointers. */ /* ASN1_ITEM pointer exported type */ typedef const ASN1_ITEM *ASN1_ITEM_EXP (void); /* Macro to obtain ASN1_ITEM pointer from exported type */ # define ASN1_ITEM_ptr(iptr) (iptr()) /* Macro to include ASN1_ITEM pointer from base type */ # define ASN1_ITEM_ref(iptr) (iptr##_it) # define ASN1_ITEM_rptr(ref) (ref##_it()) # define DECLARE_ASN1_ITEM(name) \ const ASN1_ITEM * name##_it(void); # endif /* Parameters used by ASN1_STRING_print_ex() */ /* * These determine which characters to escape: RFC2253 special characters, * control characters and MSB set characters */ # define ASN1_STRFLGS_ESC_2253 1 # define ASN1_STRFLGS_ESC_CTRL 2 # define ASN1_STRFLGS_ESC_MSB 4 /* * This flag determines how we do escaping: normally RC2253 backslash only, * set this to use backslash and quote. */ # define ASN1_STRFLGS_ESC_QUOTE 8 /* These three flags are internal use only. */ /* Character is a valid PrintableString character */ # define CHARTYPE_PRINTABLESTRING 0x10 /* Character needs escaping if it is the first character */ # define CHARTYPE_FIRST_ESC_2253 0x20 /* Character needs escaping if it is the last character */ # define CHARTYPE_LAST_ESC_2253 0x40 /* * NB the internal flags are safely reused below by flags handled at the top * level. */ /* * If this is set we convert all character strings to UTF8 first */ # define ASN1_STRFLGS_UTF8_CONVERT 0x10 /* * If this is set we don't attempt to interpret content: just assume all * strings are 1 byte per character. This will produce some pretty odd * looking output! */ # define ASN1_STRFLGS_IGNORE_TYPE 0x20 /* If this is set we include the string type in the output */ # define ASN1_STRFLGS_SHOW_TYPE 0x40 /* * This determines which strings to display and which to 'dump' (hex dump of * content octets or DER encoding). We can only dump non character strings or * everything. If we don't dump 'unknown' they are interpreted as character * strings with 1 octet per character and are subject to the usual escaping * options. */ # define ASN1_STRFLGS_DUMP_ALL 0x80 # define ASN1_STRFLGS_DUMP_UNKNOWN 0x100 /* * These determine what 'dumping' does, we can dump the content octets or the * DER encoding: both use the RFC2253 #XXXXX notation. */ # define ASN1_STRFLGS_DUMP_DER 0x200 /* * All the string flags consistent with RFC2253, escaping control characters * isn't essential in RFC2253 but it is advisable anyway. */ # define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \ ASN1_STRFLGS_ESC_CTRL | \ ASN1_STRFLGS_ESC_MSB | \ ASN1_STRFLGS_UTF8_CONVERT | \ ASN1_STRFLGS_DUMP_UNKNOWN | \ ASN1_STRFLGS_DUMP_DER) DECLARE_STACK_OF(ASN1_INTEGER) DECLARE_ASN1_SET_OF(ASN1_INTEGER) DECLARE_STACK_OF(ASN1_GENERALSTRING) typedef struct asn1_type_st { int type; union { char *ptr; ASN1_BOOLEAN boolean; ASN1_STRING *asn1_string; ASN1_OBJECT *object; ASN1_INTEGER *integer; ASN1_ENUMERATED *enumerated; ASN1_BIT_STRING *bit_string; ASN1_OCTET_STRING *octet_string; ASN1_PRINTABLESTRING *printablestring; ASN1_T61STRING *t61string; ASN1_IA5STRING *ia5string; ASN1_GENERALSTRING *generalstring; ASN1_BMPSTRING *bmpstring; ASN1_UNIVERSALSTRING *universalstring; ASN1_UTCTIME *utctime; ASN1_GENERALIZEDTIME *generalizedtime; ASN1_VISIBLESTRING *visiblestring; ASN1_UTF8STRING *utf8string; /* * set and sequence are left complete and still contain the set or * sequence bytes */ ASN1_STRING *set; ASN1_STRING *sequence; ASN1_VALUE *asn1_value; } value; } ASN1_TYPE; DECLARE_STACK_OF(ASN1_TYPE) DECLARE_ASN1_SET_OF(ASN1_TYPE) typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY; DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY) DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY) typedef struct NETSCAPE_X509_st { ASN1_OCTET_STRING *header; X509 *cert; } NETSCAPE_X509; /* This is used to contain a list of bit names */ typedef struct BIT_STRING_BITNAME_st { int bitnum; const char *lname; const char *sname; } BIT_STRING_BITNAME; # define M_ASN1_STRING_length(x) ((x)->length) # define M_ASN1_STRING_length_set(x, n) ((x)->length = (n)) # define M_ASN1_STRING_type(x) ((x)->type) # define M_ASN1_STRING_data(x) ((x)->data) /* Macros for string operations */ # define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\ ASN1_STRING_type_new(V_ASN1_BIT_STRING) # define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\ (const ASN1_STRING *)a,(const ASN1_STRING *)b) # define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c) # define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\ ASN1_STRING_type_new(V_ASN1_INTEGER) # define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\ (const ASN1_STRING *)a,(const ASN1_STRING *)b) # define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\ ASN1_STRING_type_new(V_ASN1_ENUMERATED) # define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\ (const ASN1_STRING *)a,(const ASN1_STRING *)b) # define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\ ASN1_STRING_type_new(V_ASN1_OCTET_STRING) # define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\ (const ASN1_STRING *)a,(const ASN1_STRING *)b) # define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c) # define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b) # define M_i2d_ASN1_OCTET_STRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_OCTET_STRING,\ V_ASN1_UNIVERSAL) # define B_ASN1_TIME \ B_ASN1_UTCTIME | \ B_ASN1_GENERALIZEDTIME # define B_ASN1_PRINTABLE \ B_ASN1_NUMERICSTRING| \ B_ASN1_PRINTABLESTRING| \ B_ASN1_T61STRING| \ B_ASN1_IA5STRING| \ B_ASN1_BIT_STRING| \ B_ASN1_UNIVERSALSTRING|\ B_ASN1_BMPSTRING|\ B_ASN1_UTF8STRING|\ B_ASN1_SEQUENCE|\ B_ASN1_UNKNOWN # define B_ASN1_DIRECTORYSTRING \ B_ASN1_PRINTABLESTRING| \ B_ASN1_TELETEXSTRING|\ B_ASN1_BMPSTRING|\ B_ASN1_UNIVERSALSTRING|\ B_ASN1_UTF8STRING # define B_ASN1_DISPLAYTEXT \ B_ASN1_IA5STRING| \ B_ASN1_VISIBLESTRING| \ B_ASN1_BMPSTRING|\ B_ASN1_UTF8STRING # define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING) # define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_PRINTABLE(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ pp,a->type,V_ASN1_UNIVERSAL) # define M_d2i_ASN1_PRINTABLE(a,pp,l) \ d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \ B_ASN1_PRINTABLE) # define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING) # define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_DIRECTORYSTRING(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ pp,a->type,V_ASN1_UNIVERSAL) # define M_d2i_DIRECTORYSTRING(a,pp,l) \ d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \ B_ASN1_DIRECTORYSTRING) # define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING) # define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_DISPLAYTEXT(a,pp) i2d_ASN1_bytes((ASN1_STRING *)a,\ pp,a->type,V_ASN1_UNIVERSAL) # define M_d2i_DISPLAYTEXT(a,pp,l) \ d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l, \ B_ASN1_DISPLAYTEXT) # define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\ ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING) # define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_PRINTABLESTRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_PRINTABLESTRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_PRINTABLESTRING(a,pp,l) \ (ASN1_PRINTABLESTRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_PRINTABLESTRING) # define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\ ASN1_STRING_type_new(V_ASN1_T61STRING) # define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_T61STRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_T61STRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_T61STRING(a,pp,l) \ (ASN1_T61STRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_T61STRING) # define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\ ASN1_STRING_type_new(V_ASN1_IA5STRING) # define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_IA5STRING_dup(a) \ (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a) # define M_i2d_ASN1_IA5STRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_IA5STRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_IA5STRING(a,pp,l) \ (ASN1_IA5STRING *)d2i_ASN1_type_bytes((ASN1_STRING **)a,pp,l,\ B_ASN1_IA5STRING) # define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\ ASN1_STRING_type_new(V_ASN1_UTCTIME) # define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\ ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME) # define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\ (const ASN1_STRING *)a) # define M_ASN1_TIME_new() (ASN1_TIME *)\ ASN1_STRING_type_new(V_ASN1_UTCTIME) # define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_ASN1_TIME_dup(a) (ASN1_TIME *)\ ASN1_STRING_dup((const ASN1_STRING *)a) # define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\ ASN1_STRING_type_new(V_ASN1_GENERALSTRING) # define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_GENERALSTRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_GENERALSTRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_GENERALSTRING(a,pp,l) \ (ASN1_GENERALSTRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_GENERALSTRING) # define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\ ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING) # define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_UNIVERSALSTRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UNIVERSALSTRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_UNIVERSALSTRING(a,pp,l) \ (ASN1_UNIVERSALSTRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_UNIVERSALSTRING) # define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\ ASN1_STRING_type_new(V_ASN1_BMPSTRING) # define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_BMPSTRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_BMPSTRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_BMPSTRING(a,pp,l) \ (ASN1_BMPSTRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_BMPSTRING) # define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\ ASN1_STRING_type_new(V_ASN1_VISIBLESTRING) # define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_VISIBLESTRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_VISIBLESTRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_VISIBLESTRING(a,pp,l) \ (ASN1_VISIBLESTRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_VISIBLESTRING) # define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\ ASN1_STRING_type_new(V_ASN1_UTF8STRING) # define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a) # define M_i2d_ASN1_UTF8STRING(a,pp) \ i2d_ASN1_bytes((ASN1_STRING *)a,pp,V_ASN1_UTF8STRING,\ V_ASN1_UNIVERSAL) # define M_d2i_ASN1_UTF8STRING(a,pp,l) \ (ASN1_UTF8STRING *)d2i_ASN1_type_bytes\ ((ASN1_STRING **)a,pp,l,B_ASN1_UTF8STRING) /* for the is_set parameter to i2d_ASN1_SET */ # define IS_SEQUENCE 0 # define IS_SET 1 DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE) int ASN1_TYPE_get(ASN1_TYPE *a); void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value); int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b); ASN1_OBJECT *ASN1_OBJECT_new(void); void ASN1_OBJECT_free(ASN1_OBJECT *a); int i2d_ASN1_OBJECT(ASN1_OBJECT *a, unsigned char **pp); ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, long length); ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, long length); DECLARE_ASN1_ITEM(ASN1_OBJECT) DECLARE_STACK_OF(ASN1_OBJECT) DECLARE_ASN1_SET_OF(ASN1_OBJECT) ASN1_STRING *ASN1_STRING_new(void); void ASN1_STRING_free(ASN1_STRING *a); void ASN1_STRING_clear_free(ASN1_STRING *a); int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str); ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a); ASN1_STRING *ASN1_STRING_type_new(int type); int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b); /* * Since this is used to store all sorts of things, via macros, for now, * make its data void * */ int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len); void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len); int ASN1_STRING_length(const ASN1_STRING *x); void ASN1_STRING_length_set(ASN1_STRING *x, int n); int ASN1_STRING_type(ASN1_STRING *x); unsigned char *ASN1_STRING_data(ASN1_STRING *x); DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING) int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp); ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a, const unsigned char **pp, long length); int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length); int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n); int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len); # ifndef OPENSSL_NO_BIO int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, BIT_STRING_BITNAME *tbl, int indent); # endif int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl); int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, BIT_STRING_BITNAME *tbl); int i2d_ASN1_BOOLEAN(int a, unsigned char **pp); int d2i_ASN1_BOOLEAN(int *a, const unsigned char **pp, long length); DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER) int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp); ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp, long length); ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp, long length); ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x); int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y); DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED) int ASN1_UTCTIME_check(const ASN1_UTCTIME *a); ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t); ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec); int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str); int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t); # if 0 time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s); # endif int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a); ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, time_t t); ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec); int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str); int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to); DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING) ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a); int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b); int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len); DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING) DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) DECLARE_ASN1_FUNCTIONS(ASN1_NULL) DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) int UTF8_getc(const unsigned char *str, int len, unsigned long *val); int UTF8_putc(unsigned char *str, int len, unsigned long value); DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE) DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING) DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT) DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING) DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING) DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING) DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING) DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME) DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME) DECLARE_ASN1_FUNCTIONS(ASN1_TIME) DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF) ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t); ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, int offset_day, long offset_sec); int ASN1_TIME_check(ASN1_TIME *t); ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out); int ASN1_TIME_set_string(ASN1_TIME *s, const char *str); int i2d_ASN1_SET(STACK_OF(OPENSSL_BLOCK) *a, unsigned char **pp, i2d_of_void *i2d, int ex_tag, int ex_class, int is_set); STACK_OF(OPENSSL_BLOCK) *d2i_ASN1_SET(STACK_OF(OPENSSL_BLOCK) **a, const unsigned char **pp, long length, d2i_of_void *d2i, void (*free_func) (OPENSSL_BLOCK), int ex_tag, int ex_class); # ifndef OPENSSL_NO_BIO int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a); int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size); int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a); int a2i_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *bs, char *buf, int size); int i2a_ASN1_OBJECT(BIO *bp, ASN1_OBJECT *a); int a2i_ASN1_STRING(BIO *bp, ASN1_STRING *bs, char *buf, int size); int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type); # endif int i2t_ASN1_OBJECT(char *buf, int buf_len, ASN1_OBJECT *a); int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num); ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data, int len, const char *sn, const char *ln); int ASN1_INTEGER_set(ASN1_INTEGER *a, long v); long ASN1_INTEGER_get(const ASN1_INTEGER *a); ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn); int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v); long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a); ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai); BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn); /* General */ /* given a string, return the correct type, max is the maximum length */ int ASN1_PRINTABLE_type(const unsigned char *s, int max); int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass); ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp, long length, int Ptag, int Pclass); unsigned long ASN1_tag2bit(int tag); /* type is one or more of the B_ASN1_ values. */ ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a, const unsigned char **pp, long length, int type); /* PARSING */ int asn1_Finish(ASN1_CTX *c); int asn1_const_Finish(ASN1_const_CTX *c); /* SPECIALS */ int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax); int ASN1_check_infinite_end(unsigned char **p, long len); int ASN1_const_check_infinite_end(const unsigned char **p, long len); void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass); int ASN1_put_eoc(unsigned char **pp); int ASN1_object_size(int constructed, int length, int tag); /* Used to implement other functions */ void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x); # define ASN1_dup_of(type,i2d,d2i,x) \ ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \ CHECKED_D2I_OF(type, d2i), \ CHECKED_PTR_OF(type, x))) # define ASN1_dup_of_const(type,i2d,d2i,x) \ ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \ CHECKED_D2I_OF(type, d2i), \ CHECKED_PTR_OF(const type, x))) void *ASN1_item_dup(const ASN1_ITEM *it, void *x); /* ASN1 alloc/free macros for when a type is only used internally */ # define M_ASN1_new_of(type) (type *)ASN1_item_new(ASN1_ITEM_rptr(type)) # define M_ASN1_free_of(x, type) \ ASN1_item_free(CHECKED_PTR_OF(type, x), ASN1_ITEM_rptr(type)) # ifndef OPENSSL_NO_FP_API void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x); # define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \ ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \ CHECKED_D2I_OF(type, d2i), \ in, \ CHECKED_PPTR_OF(type, x))) void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x); int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x); # define ASN1_i2d_fp_of(type,i2d,out,x) \ (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \ out, \ CHECKED_PTR_OF(type, x))) # define ASN1_i2d_fp_of_const(type,i2d,out,x) \ (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \ out, \ CHECKED_PTR_OF(const type, x))) int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x); int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags); # endif int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in); # ifndef OPENSSL_NO_BIO void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x); # define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \ ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \ CHECKED_D2I_OF(type, d2i), \ in, \ CHECKED_PPTR_OF(type, x))) void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x); int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x); # define ASN1_i2d_bio_of(type,i2d,out,x) \ (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \ out, \ CHECKED_PTR_OF(type, x))) # define ASN1_i2d_bio_of_const(type,i2d,out,x) \ (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \ out, \ CHECKED_PTR_OF(const type, x))) int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x); int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a); int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a); int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a); int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v); int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags); int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off); int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent); int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump); # endif const char *ASN1_tag2str(int tag); /* Used to load and write netscape format cert */ DECLARE_ASN1_FUNCTIONS(NETSCAPE_X509) int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s); int ASN1_TYPE_set_octetstring(ASN1_TYPE *a, unsigned char *data, int len); int ASN1_TYPE_get_octetstring(ASN1_TYPE *a, unsigned char *data, int max_len); int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num, unsigned char *data, int len); int ASN1_TYPE_get_int_octetstring(ASN1_TYPE *a, long *num, unsigned char *data, int max_len); STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, d2i_of_void *d2i, void (*free_func) (OPENSSL_BLOCK)); unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, unsigned char **buf, int *len); void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i); void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it); ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_OCTET_STRING **oct); # define ASN1_pack_string_of(type,obj,i2d,oct) \ (ASN1_pack_string(CHECKED_PTR_OF(type, obj), \ CHECKED_I2D_OF(type, i2d), \ oct)) ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct); void ASN1_STRING_set_default_mask(unsigned long mask); int ASN1_STRING_set_default_mask_asc(const char *p); unsigned long ASN1_STRING_get_default_mask(void); int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask); int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize); ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid); ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid); int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long); void ASN1_STRING_TABLE_cleanup(void); /* ASN1 template functions */ /* Old API compatible functions */ ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it); void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it); ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it); int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it); int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it); void ASN1_add_oid_module(void); ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf); ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf); /* ASN1 Print flags */ /* Indicate missing OPTIONAL fields */ # define ASN1_PCTX_FLAGS_SHOW_ABSENT 0x001 /* Mark start and end of SEQUENCE */ # define ASN1_PCTX_FLAGS_SHOW_SEQUENCE 0x002 /* Mark start and end of SEQUENCE/SET OF */ # define ASN1_PCTX_FLAGS_SHOW_SSOF 0x004 /* Show the ASN1 type of primitives */ # define ASN1_PCTX_FLAGS_SHOW_TYPE 0x008 /* Don't show ASN1 type of ANY */ # define ASN1_PCTX_FLAGS_NO_ANY_TYPE 0x010 /* Don't show ASN1 type of MSTRINGs */ # define ASN1_PCTX_FLAGS_NO_MSTRING_TYPE 0x020 /* Don't show field names in SEQUENCE */ # define ASN1_PCTX_FLAGS_NO_FIELD_NAME 0x040 /* Show structure names of each SEQUENCE field */ # define ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME 0x080 /* Don't show structure name even at top level */ # define ASN1_PCTX_FLAGS_NO_STRUCT_NAME 0x100 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, const ASN1_ITEM *it, const ASN1_PCTX *pctx); ASN1_PCTX *ASN1_PCTX_new(void); void ASN1_PCTX_free(ASN1_PCTX *p); unsigned long ASN1_PCTX_get_flags(ASN1_PCTX *p); void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags); unsigned long ASN1_PCTX_get_nm_flags(ASN1_PCTX *p); void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags); unsigned long ASN1_PCTX_get_cert_flags(ASN1_PCTX *p); void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags); unsigned long ASN1_PCTX_get_oid_flags(ASN1_PCTX *p); void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags); unsigned long ASN1_PCTX_get_str_flags(ASN1_PCTX *p); void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags); BIO_METHOD *BIO_f_asn1(void); BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it); int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const ASN1_ITEM *it); int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, const char *hdr, const ASN1_ITEM *it); int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags, int ctype_nid, int econt_nid, STACK_OF(X509_ALGOR) *mdalgs, const ASN1_ITEM *it); ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it); int SMIME_crlf_copy(BIO *in, BIO *out, int flags); int SMIME_text(BIO *in, BIO *out); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_ASN1_strings(void); /* Error codes for the ASN1 functions. */ /* Function codes. */ # define ASN1_F_A2D_ASN1_OBJECT 100 # define ASN1_F_A2I_ASN1_ENUMERATED 101 # define ASN1_F_A2I_ASN1_INTEGER 102 # define ASN1_F_A2I_ASN1_STRING 103 # define ASN1_F_APPEND_EXP 176 # define ASN1_F_ASN1_BIT_STRING_SET_BIT 183 # define ASN1_F_ASN1_CB 177 # define ASN1_F_ASN1_CHECK_TLEN 104 # define ASN1_F_ASN1_COLLATE_PRIMITIVE 105 # define ASN1_F_ASN1_COLLECT 106 # define ASN1_F_ASN1_D2I_EX_PRIMITIVE 108 # define ASN1_F_ASN1_D2I_FP 109 # define ASN1_F_ASN1_D2I_READ_BIO 107 # define ASN1_F_ASN1_DIGEST 184 # define ASN1_F_ASN1_DO_ADB 110 # define ASN1_F_ASN1_DUP 111 # define ASN1_F_ASN1_ENUMERATED_SET 112 # define ASN1_F_ASN1_ENUMERATED_TO_BN 113 # define ASN1_F_ASN1_EX_C2I 204 # define ASN1_F_ASN1_FIND_END 190 # define ASN1_F_ASN1_GENERALIZEDTIME_ADJ 216 # define ASN1_F_ASN1_GENERALIZEDTIME_SET 185 # define ASN1_F_ASN1_GENERATE_V3 178 # define ASN1_F_ASN1_GET_OBJECT 114 # define ASN1_F_ASN1_HEADER_NEW 115 # define ASN1_F_ASN1_I2D_BIO 116 # define ASN1_F_ASN1_I2D_FP 117 # define ASN1_F_ASN1_INTEGER_SET 118 # define ASN1_F_ASN1_INTEGER_TO_BN 119 # define ASN1_F_ASN1_ITEM_D2I_FP 206 # define ASN1_F_ASN1_ITEM_DUP 191 # define ASN1_F_ASN1_ITEM_EX_COMBINE_NEW 121 # define ASN1_F_ASN1_ITEM_EX_D2I 120 # define ASN1_F_ASN1_ITEM_I2D_BIO 192 # define ASN1_F_ASN1_ITEM_I2D_FP 193 # define ASN1_F_ASN1_ITEM_PACK 198 # define ASN1_F_ASN1_ITEM_SIGN 195 # define ASN1_F_ASN1_ITEM_SIGN_CTX 220 # define ASN1_F_ASN1_ITEM_UNPACK 199 # define ASN1_F_ASN1_ITEM_VERIFY 197 # define ASN1_F_ASN1_MBSTRING_NCOPY 122 # define ASN1_F_ASN1_OBJECT_NEW 123 # define ASN1_F_ASN1_OUTPUT_DATA 214 # define ASN1_F_ASN1_PACK_STRING 124 # define ASN1_F_ASN1_PCTX_NEW 205 # define ASN1_F_ASN1_PKCS5_PBE_SET 125 # define ASN1_F_ASN1_SEQ_PACK 126 # define ASN1_F_ASN1_SEQ_UNPACK 127 # define ASN1_F_ASN1_SIGN 128 # define ASN1_F_ASN1_STR2TYPE 179 # define ASN1_F_ASN1_STRING_SET 186 # define ASN1_F_ASN1_STRING_TABLE_ADD 129 # define ASN1_F_ASN1_STRING_TYPE_NEW 130 # define ASN1_F_ASN1_TEMPLATE_EX_D2I 132 # define ASN1_F_ASN1_TEMPLATE_NEW 133 # define ASN1_F_ASN1_TEMPLATE_NOEXP_D2I 131 # define ASN1_F_ASN1_TIME_ADJ 217 # define ASN1_F_ASN1_TIME_SET 175 # define ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING 134 # define ASN1_F_ASN1_TYPE_GET_OCTETSTRING 135 # define ASN1_F_ASN1_UNPACK_STRING 136 # define ASN1_F_ASN1_UTCTIME_ADJ 218 # define ASN1_F_ASN1_UTCTIME_SET 187 # define ASN1_F_ASN1_VERIFY 137 # define ASN1_F_B64_READ_ASN1 209 # define ASN1_F_B64_WRITE_ASN1 210 # define ASN1_F_BIO_NEW_NDEF 208 # define ASN1_F_BITSTR_CB 180 # define ASN1_F_BN_TO_ASN1_ENUMERATED 138 # define ASN1_F_BN_TO_ASN1_INTEGER 139 # define ASN1_F_C2I_ASN1_BIT_STRING 189 # define ASN1_F_C2I_ASN1_INTEGER 194 # define ASN1_F_C2I_ASN1_OBJECT 196 # define ASN1_F_COLLECT_DATA 140 # define ASN1_F_D2I_ASN1_BIT_STRING 141 # define ASN1_F_D2I_ASN1_BOOLEAN 142 # define ASN1_F_D2I_ASN1_BYTES 143 # define ASN1_F_D2I_ASN1_GENERALIZEDTIME 144 # define ASN1_F_D2I_ASN1_HEADER 145 # define ASN1_F_D2I_ASN1_INTEGER 146 # define ASN1_F_D2I_ASN1_OBJECT 147 # define ASN1_F_D2I_ASN1_SET 148 # define ASN1_F_D2I_ASN1_TYPE_BYTES 149 # define ASN1_F_D2I_ASN1_UINTEGER 150 # define ASN1_F_D2I_ASN1_UTCTIME 151 # define ASN1_F_D2I_AUTOPRIVATEKEY 207 # define ASN1_F_D2I_NETSCAPE_RSA 152 # define ASN1_F_D2I_NETSCAPE_RSA_2 153 # define ASN1_F_D2I_PRIVATEKEY 154 # define ASN1_F_D2I_PUBLICKEY 155 # define ASN1_F_D2I_RSA_NET 200 # define ASN1_F_D2I_RSA_NET_2 201 # define ASN1_F_D2I_X509 156 # define ASN1_F_D2I_X509_CINF 157 # define ASN1_F_D2I_X509_PKEY 159 # define ASN1_F_I2D_ASN1_BIO_STREAM 211 # define ASN1_F_I2D_ASN1_SET 188 # define ASN1_F_I2D_ASN1_TIME 160 # define ASN1_F_I2D_DSA_PUBKEY 161 # define ASN1_F_I2D_EC_PUBKEY 181 # define ASN1_F_I2D_PRIVATEKEY 163 # define ASN1_F_I2D_PUBLICKEY 164 # define ASN1_F_I2D_RSA_NET 162 # define ASN1_F_I2D_RSA_PUBKEY 165 # define ASN1_F_LONG_C2I 166 # define ASN1_F_OID_MODULE_INIT 174 # define ASN1_F_PARSE_TAGGING 182 # define ASN1_F_PKCS5_PBE2_SET_IV 167 # define ASN1_F_PKCS5_PBE_SET 202 # define ASN1_F_PKCS5_PBE_SET0_ALGOR 215 # define ASN1_F_PKCS5_PBKDF2_SET 219 # define ASN1_F_SMIME_READ_ASN1 212 # define ASN1_F_SMIME_TEXT 213 # define ASN1_F_X509_CINF_NEW 168 # define ASN1_F_X509_CRL_ADD0_REVOKED 169 # define ASN1_F_X509_INFO_NEW 170 # define ASN1_F_X509_NAME_ENCODE 203 # define ASN1_F_X509_NAME_EX_D2I 158 # define ASN1_F_X509_NAME_EX_NEW 171 # define ASN1_F_X509_NEW 172 # define ASN1_F_X509_PKEY_NEW 173 /* Reason codes. */ # define ASN1_R_ADDING_OBJECT 171 # define ASN1_R_ASN1_PARSE_ERROR 203 # define ASN1_R_ASN1_SIG_PARSE_ERROR 204 # define ASN1_R_AUX_ERROR 100 # define ASN1_R_BAD_CLASS 101 # define ASN1_R_BAD_OBJECT_HEADER 102 # define ASN1_R_BAD_PASSWORD_READ 103 # define ASN1_R_BAD_TAG 104 # define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 214 # define ASN1_R_BN_LIB 105 # define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106 # define ASN1_R_BUFFER_TOO_SMALL 107 # define ASN1_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 108 # define ASN1_R_CONTEXT_NOT_INITIALISED 217 # define ASN1_R_DATA_IS_WRONG 109 # define ASN1_R_DECODE_ERROR 110 # define ASN1_R_DECODING_ERROR 111 # define ASN1_R_DEPTH_EXCEEDED 174 # define ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED 198 # define ASN1_R_ENCODE_ERROR 112 # define ASN1_R_ERROR_GETTING_TIME 173 # define ASN1_R_ERROR_LOADING_SECTION 172 # define ASN1_R_ERROR_PARSING_SET_ELEMENT 113 # define ASN1_R_ERROR_SETTING_CIPHER_PARAMS 114 # define ASN1_R_EXPECTING_AN_INTEGER 115 # define ASN1_R_EXPECTING_AN_OBJECT 116 # define ASN1_R_EXPECTING_A_BOOLEAN 117 # define ASN1_R_EXPECTING_A_TIME 118 # define ASN1_R_EXPLICIT_LENGTH_MISMATCH 119 # define ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED 120 # define ASN1_R_FIELD_MISSING 121 # define ASN1_R_FIRST_NUM_TOO_LARGE 122 # define ASN1_R_HEADER_TOO_LONG 123 # define ASN1_R_ILLEGAL_BITSTRING_FORMAT 175 # define ASN1_R_ILLEGAL_BOOLEAN 176 # define ASN1_R_ILLEGAL_CHARACTERS 124 # define ASN1_R_ILLEGAL_FORMAT 177 # define ASN1_R_ILLEGAL_HEX 178 # define ASN1_R_ILLEGAL_IMPLICIT_TAG 179 # define ASN1_R_ILLEGAL_INTEGER 180 # define ASN1_R_ILLEGAL_NESTED_TAGGING 181 # define ASN1_R_ILLEGAL_NULL 125 # define ASN1_R_ILLEGAL_NULL_VALUE 182 # define ASN1_R_ILLEGAL_OBJECT 183 # define ASN1_R_ILLEGAL_OPTIONAL_ANY 126 # define ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE 170 # define ASN1_R_ILLEGAL_TAGGED_ANY 127 # define ASN1_R_ILLEGAL_TIME_VALUE 184 # define ASN1_R_INTEGER_NOT_ASCII_FORMAT 185 # define ASN1_R_INTEGER_TOO_LARGE_FOR_LONG 128 # define ASN1_R_INVALID_BIT_STRING_BITS_LEFT 220 # define ASN1_R_INVALID_BMPSTRING_LENGTH 129 # define ASN1_R_INVALID_DIGIT 130 # define ASN1_R_INVALID_MIME_TYPE 205 # define ASN1_R_INVALID_MODIFIER 186 # define ASN1_R_INVALID_NUMBER 187 # define ASN1_R_INVALID_OBJECT_ENCODING 216 # define ASN1_R_INVALID_SEPARATOR 131 # define ASN1_R_INVALID_TIME_FORMAT 132 # define ASN1_R_INVALID_UNIVERSALSTRING_LENGTH 133 # define ASN1_R_INVALID_UTF8STRING 134 # define ASN1_R_IV_TOO_LARGE 135 # define ASN1_R_LENGTH_ERROR 136 # define ASN1_R_LIST_ERROR 188 # define ASN1_R_MIME_NO_CONTENT_TYPE 206 # define ASN1_R_MIME_PARSE_ERROR 207 # define ASN1_R_MIME_SIG_PARSE_ERROR 208 # define ASN1_R_MISSING_EOC 137 # define ASN1_R_MISSING_SECOND_NUMBER 138 # define ASN1_R_MISSING_VALUE 189 # define ASN1_R_MSTRING_NOT_UNIVERSAL 139 # define ASN1_R_MSTRING_WRONG_TAG 140 # define ASN1_R_NESTED_ASN1_STRING 197 # define ASN1_R_NESTED_TOO_DEEP 219 # define ASN1_R_NON_HEX_CHARACTERS 141 # define ASN1_R_NOT_ASCII_FORMAT 190 # define ASN1_R_NOT_ENOUGH_DATA 142 # define ASN1_R_NO_CONTENT_TYPE 209 # define ASN1_R_NO_DEFAULT_DIGEST 201 # define ASN1_R_NO_MATCHING_CHOICE_TYPE 143 # define ASN1_R_NO_MULTIPART_BODY_FAILURE 210 # define ASN1_R_NO_MULTIPART_BOUNDARY 211 # define ASN1_R_NO_SIG_CONTENT_TYPE 212 # define ASN1_R_NULL_IS_WRONG_LENGTH 144 # define ASN1_R_OBJECT_NOT_ASCII_FORMAT 191 # define ASN1_R_ODD_NUMBER_OF_CHARS 145 # define ASN1_R_PRIVATE_KEY_HEADER_MISSING 146 # define ASN1_R_SECOND_NUMBER_TOO_LARGE 147 # define ASN1_R_SEQUENCE_LENGTH_MISMATCH 148 # define ASN1_R_SEQUENCE_NOT_CONSTRUCTED 149 # define ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG 192 # define ASN1_R_SHORT_LINE 150 # define ASN1_R_SIG_INVALID_MIME_TYPE 213 # define ASN1_R_STREAMING_NOT_SUPPORTED 202 # define ASN1_R_STRING_TOO_LONG 151 # define ASN1_R_STRING_TOO_SHORT 152 # define ASN1_R_TAG_VALUE_TOO_HIGH 153 # define ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 154 # define ASN1_R_TIME_NOT_ASCII_FORMAT 193 # define ASN1_R_TOO_LONG 155 # define ASN1_R_TYPE_NOT_CONSTRUCTED 156 # define ASN1_R_TYPE_NOT_PRIMITIVE 218 # define ASN1_R_UNABLE_TO_DECODE_RSA_KEY 157 # define ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY 158 # define ASN1_R_UNEXPECTED_EOC 159 # define ASN1_R_UNIVERSALSTRING_IS_WRONG_LENGTH 215 # define ASN1_R_UNKNOWN_FORMAT 160 # define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 161 # define ASN1_R_UNKNOWN_OBJECT_TYPE 162 # define ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE 163 # define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 199 # define ASN1_R_UNKNOWN_TAG 194 # define ASN1_R_UNKOWN_FORMAT 195 # define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 164 # define ASN1_R_UNSUPPORTED_CIPHER 165 # define ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM 166 # define ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE 167 # define ASN1_R_UNSUPPORTED_TYPE 196 # define ASN1_R_WRONG_PUBLIC_KEY_TYPE 200 # define ASN1_R_WRONG_TAG 168 # define ASN1_R_WRONG_TYPE 169 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/asn1_mac.h ================================================ /* crypto/asn1/asn1_mac.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_ASN1_MAC_H # define HEADER_ASN1_MAC_H # include #ifdef __cplusplus extern "C" { #endif # ifndef ASN1_MAC_ERR_LIB # define ASN1_MAC_ERR_LIB ERR_LIB_ASN1 # endif # define ASN1_MAC_H_err(f,r,line) \ ERR_PUT_error(ASN1_MAC_ERR_LIB,(f),(r),__FILE__,(line)) # define M_ASN1_D2I_vars(a,type,func) \ ASN1_const_CTX c; \ type ret=NULL; \ \ c.pp=(const unsigned char **)pp; \ c.q= *(const unsigned char **)pp; \ c.error=ERR_R_NESTED_ASN1_ERROR; \ if ((a == NULL) || ((*a) == NULL)) \ { if ((ret=(type)func()) == NULL) \ { c.line=__LINE__; goto err; } } \ else ret=(*a); # define M_ASN1_D2I_Init() \ c.p= *(const unsigned char **)pp; \ c.max=(length == 0)?0:(c.p+length); # define M_ASN1_D2I_Finish_2(a) \ if (!asn1_const_Finish(&c)) \ { c.line=__LINE__; goto err; } \ *(const unsigned char **)pp=c.p; \ if (a != NULL) (*a)=ret; \ return(ret); # define M_ASN1_D2I_Finish(a,func,e) \ M_ASN1_D2I_Finish_2(a); \ err:\ ASN1_MAC_H_err((e),c.error,c.line); \ asn1_add_error(*(const unsigned char **)pp,(int)(c.q- *pp)); \ if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \ return(NULL) # define M_ASN1_D2I_start_sequence() \ if (!asn1_GetSequence(&c,&length)) \ { c.line=__LINE__; goto err; } /* Begin reading ASN1 without a surrounding sequence */ # define M_ASN1_D2I_begin() \ c.slen = length; /* End reading ASN1 with no check on length */ # define M_ASN1_D2I_Finish_nolen(a, func, e) \ *pp=c.p; \ if (a != NULL) (*a)=ret; \ return(ret); \ err:\ ASN1_MAC_H_err((e),c.error,c.line); \ asn1_add_error(*pp,(int)(c.q- *pp)); \ if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \ return(NULL) # define M_ASN1_D2I_end_sequence() \ (((c.inf&1) == 0)?(c.slen <= 0): \ (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen))) /* Don't use this with d2i_ASN1_BOOLEAN() */ # define M_ASN1_D2I_get(b, func) \ c.q=c.p; \ if (func(&(b),&c.p,c.slen) == NULL) \ {c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); /* Don't use this with d2i_ASN1_BOOLEAN() */ # define M_ASN1_D2I_get_x(type,b,func) \ c.q=c.p; \ if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL) \ {c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); /* use this instead () */ # define M_ASN1_D2I_get_int(b,func) \ c.q=c.p; \ if (func(&(b),&c.p,c.slen) < 0) \ {c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); # define M_ASN1_D2I_get_opt(b,func,type) \ if ((c.slen != 0) && ((M_ASN1_next & (~V_ASN1_CONSTRUCTED)) \ == (V_ASN1_UNIVERSAL|(type)))) \ { \ M_ASN1_D2I_get(b,func); \ } # define M_ASN1_D2I_get_int_opt(b,func,type) \ if ((c.slen != 0) && ((M_ASN1_next & (~V_ASN1_CONSTRUCTED)) \ == (V_ASN1_UNIVERSAL|(type)))) \ { \ M_ASN1_D2I_get_int(b,func); \ } # define M_ASN1_D2I_get_imp(b,func, type) \ M_ASN1_next=(_tmp& V_ASN1_CONSTRUCTED)|type; \ c.q=c.p; \ if (func(&(b),&c.p,c.slen) == NULL) \ {c.line=__LINE__; M_ASN1_next_prev = _tmp; goto err; } \ c.slen-=(c.p-c.q);\ M_ASN1_next_prev=_tmp; # define M_ASN1_D2I_get_IMP_opt(b,func,tag,type) \ if ((c.slen != 0) && ((M_ASN1_next & (~V_ASN1_CONSTRUCTED)) == \ (V_ASN1_CONTEXT_SPECIFIC|(tag)))) \ { \ unsigned char _tmp = M_ASN1_next; \ M_ASN1_D2I_get_imp(b,func, type);\ } # define M_ASN1_D2I_get_set(r,func,free_func) \ M_ASN1_D2I_get_imp_set(r,func,free_func, \ V_ASN1_SET,V_ASN1_UNIVERSAL); # define M_ASN1_D2I_get_set_type(type,r,func,free_func) \ M_ASN1_D2I_get_imp_set_type(type,r,func,free_func, \ V_ASN1_SET,V_ASN1_UNIVERSAL); # define M_ASN1_D2I_get_set_opt(r,func,free_func) \ if ((c.slen != 0) && (M_ASN1_next == (V_ASN1_UNIVERSAL| \ V_ASN1_CONSTRUCTED|V_ASN1_SET)))\ { M_ASN1_D2I_get_set(r,func,free_func); } # define M_ASN1_D2I_get_set_opt_type(type,r,func,free_func) \ if ((c.slen != 0) && (M_ASN1_next == (V_ASN1_UNIVERSAL| \ V_ASN1_CONSTRUCTED|V_ASN1_SET)))\ { M_ASN1_D2I_get_set_type(type,r,func,free_func); } # define M_ASN1_I2D_len_SET_opt(a,f) \ if ((a != NULL) && (sk_num(a) != 0)) \ M_ASN1_I2D_len_SET(a,f); # define M_ASN1_I2D_put_SET_opt(a,f) \ if ((a != NULL) && (sk_num(a) != 0)) \ M_ASN1_I2D_put_SET(a,f); # define M_ASN1_I2D_put_SEQUENCE_opt(a,f) \ if ((a != NULL) && (sk_num(a) != 0)) \ M_ASN1_I2D_put_SEQUENCE(a,f); # define M_ASN1_I2D_put_SEQUENCE_opt_type(type,a,f) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ M_ASN1_I2D_put_SEQUENCE_type(type,a,f); # define M_ASN1_D2I_get_IMP_set_opt(b,func,free_func,tag) \ if ((c.slen != 0) && \ (M_ASN1_next == \ (V_ASN1_CONTEXT_SPECIFIC|V_ASN1_CONSTRUCTED|(tag))))\ { \ M_ASN1_D2I_get_imp_set(b,func,free_func,\ tag,V_ASN1_CONTEXT_SPECIFIC); \ } # define M_ASN1_D2I_get_IMP_set_opt_type(type,b,func,free_func,tag) \ if ((c.slen != 0) && \ (M_ASN1_next == \ (V_ASN1_CONTEXT_SPECIFIC|V_ASN1_CONSTRUCTED|(tag))))\ { \ M_ASN1_D2I_get_imp_set_type(type,b,func,free_func,\ tag,V_ASN1_CONTEXT_SPECIFIC); \ } # define M_ASN1_D2I_get_seq(r,func,free_func) \ M_ASN1_D2I_get_imp_set(r,func,free_func,\ V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL); # define M_ASN1_D2I_get_seq_type(type,r,func,free_func) \ M_ASN1_D2I_get_imp_set_type(type,r,func,free_func,\ V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL) # define M_ASN1_D2I_get_seq_opt(r,func,free_func) \ if ((c.slen != 0) && (M_ASN1_next == (V_ASN1_UNIVERSAL| \ V_ASN1_CONSTRUCTED|V_ASN1_SEQUENCE)))\ { M_ASN1_D2I_get_seq(r,func,free_func); } # define M_ASN1_D2I_get_seq_opt_type(type,r,func,free_func) \ if ((c.slen != 0) && (M_ASN1_next == (V_ASN1_UNIVERSAL| \ V_ASN1_CONSTRUCTED|V_ASN1_SEQUENCE)))\ { M_ASN1_D2I_get_seq_type(type,r,func,free_func); } # define M_ASN1_D2I_get_IMP_set(r,func,free_func,x) \ M_ASN1_D2I_get_imp_set(r,func,free_func,\ x,V_ASN1_CONTEXT_SPECIFIC); # define M_ASN1_D2I_get_IMP_set_type(type,r,func,free_func,x) \ M_ASN1_D2I_get_imp_set_type(type,r,func,free_func,\ x,V_ASN1_CONTEXT_SPECIFIC); # define M_ASN1_D2I_get_imp_set(r,func,free_func,a,b) \ c.q=c.p; \ if (d2i_ASN1_SET(&(r),&c.p,c.slen,(char *(*)())func,\ (void (*)())free_func,a,b) == NULL) \ { c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); # define M_ASN1_D2I_get_imp_set_type(type,r,func,free_func,a,b) \ c.q=c.p; \ if (d2i_ASN1_SET_OF_##type(&(r),&c.p,c.slen,func,\ free_func,a,b) == NULL) \ { c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); # define M_ASN1_D2I_get_set_strings(r,func,a,b) \ c.q=c.p; \ if (d2i_ASN1_STRING_SET(&(r),&c.p,c.slen,a,b) == NULL) \ { c.line=__LINE__; goto err; } \ c.slen-=(c.p-c.q); # define M_ASN1_D2I_get_EXP_opt(r,func,tag) \ if ((c.slen != 0L) && (M_ASN1_next == \ (V_ASN1_CONSTRUCTED|V_ASN1_CONTEXT_SPECIFIC|tag))) \ { \ int Tinf,Ttag,Tclass; \ long Tlen; \ \ c.q=c.p; \ Tinf=ASN1_get_object(&c.p,&Tlen,&Ttag,&Tclass,c.slen); \ if (Tinf & 0x80) \ { c.error=ERR_R_BAD_ASN1_OBJECT_HEADER; \ c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) \ Tlen = c.slen - (c.p - c.q) - 2; \ if (func(&(r),&c.p,Tlen) == NULL) \ { c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) { \ Tlen = c.slen - (c.p - c.q); \ if(!ASN1_const_check_infinite_end(&c.p, Tlen)) \ { c.error=ERR_R_MISSING_ASN1_EOS; \ c.line=__LINE__; goto err; } \ }\ c.slen-=(c.p-c.q); \ } # define M_ASN1_D2I_get_EXP_set_opt(r,func,free_func,tag,b) \ if ((c.slen != 0) && (M_ASN1_next == \ (V_ASN1_CONSTRUCTED|V_ASN1_CONTEXT_SPECIFIC|tag))) \ { \ int Tinf,Ttag,Tclass; \ long Tlen; \ \ c.q=c.p; \ Tinf=ASN1_get_object(&c.p,&Tlen,&Ttag,&Tclass,c.slen); \ if (Tinf & 0x80) \ { c.error=ERR_R_BAD_ASN1_OBJECT_HEADER; \ c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) \ Tlen = c.slen - (c.p - c.q) - 2; \ if (d2i_ASN1_SET(&(r),&c.p,Tlen,(char *(*)())func, \ (void (*)())free_func, \ b,V_ASN1_UNIVERSAL) == NULL) \ { c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) { \ Tlen = c.slen - (c.p - c.q); \ if(!ASN1_check_infinite_end(&c.p, Tlen)) \ { c.error=ERR_R_MISSING_ASN1_EOS; \ c.line=__LINE__; goto err; } \ }\ c.slen-=(c.p-c.q); \ } # define M_ASN1_D2I_get_EXP_set_opt_type(type,r,func,free_func,tag,b) \ if ((c.slen != 0) && (M_ASN1_next == \ (V_ASN1_CONSTRUCTED|V_ASN1_CONTEXT_SPECIFIC|tag))) \ { \ int Tinf,Ttag,Tclass; \ long Tlen; \ \ c.q=c.p; \ Tinf=ASN1_get_object(&c.p,&Tlen,&Ttag,&Tclass,c.slen); \ if (Tinf & 0x80) \ { c.error=ERR_R_BAD_ASN1_OBJECT_HEADER; \ c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) \ Tlen = c.slen - (c.p - c.q) - 2; \ if (d2i_ASN1_SET_OF_##type(&(r),&c.p,Tlen,func, \ free_func,b,V_ASN1_UNIVERSAL) == NULL) \ { c.line=__LINE__; goto err; } \ if (Tinf == (V_ASN1_CONSTRUCTED+1)) { \ Tlen = c.slen - (c.p - c.q); \ if(!ASN1_check_infinite_end(&c.p, Tlen)) \ { c.error=ERR_R_MISSING_ASN1_EOS; \ c.line=__LINE__; goto err; } \ }\ c.slen-=(c.p-c.q); \ } /* New macros */ # define M_ASN1_New_Malloc(ret,type) \ if ((ret=(type *)OPENSSL_malloc(sizeof(type))) == NULL) \ { c.line=__LINE__; goto err2; } # define M_ASN1_New(arg,func) \ if (((arg)=func()) == NULL) return(NULL) # define M_ASN1_New_Error(a) \ /*- err: ASN1_MAC_H_err((a),ERR_R_NESTED_ASN1_ERROR,c.line); \ return(NULL);*/ \ err2: ASN1_MAC_H_err((a),ERR_R_MALLOC_FAILURE,c.line); \ return(NULL) /* * BIG UGLY WARNING! This is so damn ugly I wanna puke. Unfortunately, some * macros that use ASN1_const_CTX still insist on writing in the input * stream. ARGH! ARGH! ARGH! Let's get rid of this macro package. Please? -- * Richard Levitte */ # define M_ASN1_next (*((unsigned char *)(c.p))) # define M_ASN1_next_prev (*((unsigned char *)(c.q))) /*************************************************/ # define M_ASN1_I2D_vars(a) int r=0,ret=0; \ unsigned char *p; \ if (a == NULL) return(0) /* Length Macros */ # define M_ASN1_I2D_len(a,f) ret+=f(a,NULL) # define M_ASN1_I2D_len_IMP_opt(a,f) if (a != NULL) M_ASN1_I2D_len(a,f) # define M_ASN1_I2D_len_SET(a,f) \ ret+=i2d_ASN1_SET(a,NULL,f,V_ASN1_SET,V_ASN1_UNIVERSAL,IS_SET); # define M_ASN1_I2D_len_SET_type(type,a,f) \ ret+=i2d_ASN1_SET_OF_##type(a,NULL,f,V_ASN1_SET, \ V_ASN1_UNIVERSAL,IS_SET); # define M_ASN1_I2D_len_SEQUENCE(a,f) \ ret+=i2d_ASN1_SET(a,NULL,f,V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL, \ IS_SEQUENCE); # define M_ASN1_I2D_len_SEQUENCE_type(type,a,f) \ ret+=i2d_ASN1_SET_OF_##type(a,NULL,f,V_ASN1_SEQUENCE, \ V_ASN1_UNIVERSAL,IS_SEQUENCE) # define M_ASN1_I2D_len_SEQUENCE_opt(a,f) \ if ((a != NULL) && (sk_num(a) != 0)) \ M_ASN1_I2D_len_SEQUENCE(a,f); # define M_ASN1_I2D_len_SEQUENCE_opt_type(type,a,f) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ M_ASN1_I2D_len_SEQUENCE_type(type,a,f); # define M_ASN1_I2D_len_IMP_SET(a,f,x) \ ret+=i2d_ASN1_SET(a,NULL,f,x,V_ASN1_CONTEXT_SPECIFIC,IS_SET); # define M_ASN1_I2D_len_IMP_SET_type(type,a,f,x) \ ret+=i2d_ASN1_SET_OF_##type(a,NULL,f,x, \ V_ASN1_CONTEXT_SPECIFIC,IS_SET); # define M_ASN1_I2D_len_IMP_SET_opt(a,f,x) \ if ((a != NULL) && (sk_num(a) != 0)) \ ret+=i2d_ASN1_SET(a,NULL,f,x,V_ASN1_CONTEXT_SPECIFIC, \ IS_SET); # define M_ASN1_I2D_len_IMP_SET_opt_type(type,a,f,x) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ ret+=i2d_ASN1_SET_OF_##type(a,NULL,f,x, \ V_ASN1_CONTEXT_SPECIFIC,IS_SET); # define M_ASN1_I2D_len_IMP_SEQUENCE(a,f,x) \ ret+=i2d_ASN1_SET(a,NULL,f,x,V_ASN1_CONTEXT_SPECIFIC, \ IS_SEQUENCE); # define M_ASN1_I2D_len_IMP_SEQUENCE_opt(a,f,x) \ if ((a != NULL) && (sk_num(a) != 0)) \ ret+=i2d_ASN1_SET(a,NULL,f,x,V_ASN1_CONTEXT_SPECIFIC, \ IS_SEQUENCE); # define M_ASN1_I2D_len_IMP_SEQUENCE_opt_type(type,a,f,x) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ ret+=i2d_ASN1_SET_OF_##type(a,NULL,f,x, \ V_ASN1_CONTEXT_SPECIFIC, \ IS_SEQUENCE); # define M_ASN1_I2D_len_EXP_opt(a,f,mtag,v) \ if (a != NULL)\ { \ v=f(a,NULL); \ ret+=ASN1_object_size(1,v,mtag); \ } # define M_ASN1_I2D_len_EXP_SET_opt(a,f,mtag,tag,v) \ if ((a != NULL) && (sk_num(a) != 0))\ { \ v=i2d_ASN1_SET(a,NULL,f,tag,V_ASN1_UNIVERSAL,IS_SET); \ ret+=ASN1_object_size(1,v,mtag); \ } # define M_ASN1_I2D_len_EXP_SEQUENCE_opt(a,f,mtag,tag,v) \ if ((a != NULL) && (sk_num(a) != 0))\ { \ v=i2d_ASN1_SET(a,NULL,f,tag,V_ASN1_UNIVERSAL, \ IS_SEQUENCE); \ ret+=ASN1_object_size(1,v,mtag); \ } # define M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(type,a,f,mtag,tag,v) \ if ((a != NULL) && (sk_##type##_num(a) != 0))\ { \ v=i2d_ASN1_SET_OF_##type(a,NULL,f,tag, \ V_ASN1_UNIVERSAL, \ IS_SEQUENCE); \ ret+=ASN1_object_size(1,v,mtag); \ } /* Put Macros */ # define M_ASN1_I2D_put(a,f) f(a,&p) # define M_ASN1_I2D_put_IMP_opt(a,f,t) \ if (a != NULL) \ { \ unsigned char *q=p; \ f(a,&p); \ *q=(V_ASN1_CONTEXT_SPECIFIC|t|(*q&V_ASN1_CONSTRUCTED));\ } # define M_ASN1_I2D_put_SET(a,f) i2d_ASN1_SET(a,&p,f,V_ASN1_SET,\ V_ASN1_UNIVERSAL,IS_SET) # define M_ASN1_I2D_put_SET_type(type,a,f) \ i2d_ASN1_SET_OF_##type(a,&p,f,V_ASN1_SET,V_ASN1_UNIVERSAL,IS_SET) # define M_ASN1_I2D_put_IMP_SET(a,f,x) i2d_ASN1_SET(a,&p,f,x,\ V_ASN1_CONTEXT_SPECIFIC,IS_SET) # define M_ASN1_I2D_put_IMP_SET_type(type,a,f,x) \ i2d_ASN1_SET_OF_##type(a,&p,f,x,V_ASN1_CONTEXT_SPECIFIC,IS_SET) # define M_ASN1_I2D_put_IMP_SEQUENCE(a,f,x) i2d_ASN1_SET(a,&p,f,x,\ V_ASN1_CONTEXT_SPECIFIC,IS_SEQUENCE) # define M_ASN1_I2D_put_SEQUENCE(a,f) i2d_ASN1_SET(a,&p,f,V_ASN1_SEQUENCE,\ V_ASN1_UNIVERSAL,IS_SEQUENCE) # define M_ASN1_I2D_put_SEQUENCE_type(type,a,f) \ i2d_ASN1_SET_OF_##type(a,&p,f,V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL, \ IS_SEQUENCE) # define M_ASN1_I2D_put_SEQUENCE_opt(a,f) \ if ((a != NULL) && (sk_num(a) != 0)) \ M_ASN1_I2D_put_SEQUENCE(a,f); # define M_ASN1_I2D_put_IMP_SET_opt(a,f,x) \ if ((a != NULL) && (sk_num(a) != 0)) \ { i2d_ASN1_SET(a,&p,f,x,V_ASN1_CONTEXT_SPECIFIC, \ IS_SET); } # define M_ASN1_I2D_put_IMP_SET_opt_type(type,a,f,x) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ { i2d_ASN1_SET_OF_##type(a,&p,f,x, \ V_ASN1_CONTEXT_SPECIFIC, \ IS_SET); } # define M_ASN1_I2D_put_IMP_SEQUENCE_opt(a,f,x) \ if ((a != NULL) && (sk_num(a) != 0)) \ { i2d_ASN1_SET(a,&p,f,x,V_ASN1_CONTEXT_SPECIFIC, \ IS_SEQUENCE); } # define M_ASN1_I2D_put_IMP_SEQUENCE_opt_type(type,a,f,x) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ { i2d_ASN1_SET_OF_##type(a,&p,f,x, \ V_ASN1_CONTEXT_SPECIFIC, \ IS_SEQUENCE); } # define M_ASN1_I2D_put_EXP_opt(a,f,tag,v) \ if (a != NULL) \ { \ ASN1_put_object(&p,1,v,tag,V_ASN1_CONTEXT_SPECIFIC); \ f(a,&p); \ } # define M_ASN1_I2D_put_EXP_SET_opt(a,f,mtag,tag,v) \ if ((a != NULL) && (sk_num(a) != 0)) \ { \ ASN1_put_object(&p,1,v,mtag,V_ASN1_CONTEXT_SPECIFIC); \ i2d_ASN1_SET(a,&p,f,tag,V_ASN1_UNIVERSAL,IS_SET); \ } # define M_ASN1_I2D_put_EXP_SEQUENCE_opt(a,f,mtag,tag,v) \ if ((a != NULL) && (sk_num(a) != 0)) \ { \ ASN1_put_object(&p,1,v,mtag,V_ASN1_CONTEXT_SPECIFIC); \ i2d_ASN1_SET(a,&p,f,tag,V_ASN1_UNIVERSAL,IS_SEQUENCE); \ } # define M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(type,a,f,mtag,tag,v) \ if ((a != NULL) && (sk_##type##_num(a) != 0)) \ { \ ASN1_put_object(&p,1,v,mtag,V_ASN1_CONTEXT_SPECIFIC); \ i2d_ASN1_SET_OF_##type(a,&p,f,tag,V_ASN1_UNIVERSAL, \ IS_SEQUENCE); \ } # define M_ASN1_I2D_seq_total() \ r=ASN1_object_size(1,ret,V_ASN1_SEQUENCE); \ if (pp == NULL) return(r); \ p= *pp; \ ASN1_put_object(&p,1,ret,V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL) # define M_ASN1_I2D_INF_seq_start(tag,ctx) \ *(p++)=(V_ASN1_CONSTRUCTED|(tag)|(ctx)); \ *(p++)=0x80 # define M_ASN1_I2D_INF_seq_end() *(p++)=0x00; *(p++)=0x00 # define M_ASN1_I2D_finish() *pp=p; \ return(r); int asn1_GetSequence(ASN1_const_CTX *c, long *length); void asn1_add_error(const unsigned char *address, int offset); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/asn1t.h ================================================ /* asn1t.h */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project * 2000. */ /* ==================================================================== * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_ASN1T_H # define HEADER_ASN1T_H # include # include # include # ifdef OPENSSL_BUILD_SHLIBCRYPTO # undef OPENSSL_EXTERN # define OPENSSL_EXTERN OPENSSL_EXPORT # endif /* ASN1 template defines, structures and functions */ #ifdef __cplusplus extern "C" { #endif # ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION /* Macro to obtain ASN1_ADB pointer from a type (only used internally) */ # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr)) /* Macros for start and end of ASN1_ITEM definition */ # define ASN1_ITEM_start(itname) \ OPENSSL_GLOBAL const ASN1_ITEM itname##_it = { # define ASN1_ITEM_end(itname) \ }; # else /* Macro to obtain ASN1_ADB pointer from a type (only used internally) */ # define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr())) /* Macros for start and end of ASN1_ITEM definition */ # define ASN1_ITEM_start(itname) \ const ASN1_ITEM * itname##_it(void) \ { \ static const ASN1_ITEM local_it = { # define ASN1_ITEM_end(itname) \ }; \ return &local_it; \ } # endif /* Macros to aid ASN1 template writing */ # define ASN1_ITEM_TEMPLATE(tname) \ static const ASN1_TEMPLATE tname##_item_tt # define ASN1_ITEM_TEMPLATE_END(tname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_PRIMITIVE,\ -1,\ &tname##_item_tt,\ 0,\ NULL,\ 0,\ #tname \ ASN1_ITEM_end(tname) /* This is a ASN1 type which just embeds a template */ /*- * This pair helps declare a SEQUENCE. We can do: * * ASN1_SEQUENCE(stname) = { * ... SEQUENCE components ... * } ASN1_SEQUENCE_END(stname) * * This will produce an ASN1_ITEM called stname_it * for a structure called stname. * * If you want the same structure but a different * name then use: * * ASN1_SEQUENCE(itname) = { * ... SEQUENCE components ... * } ASN1_SEQUENCE_END_name(stname, itname) * * This will create an item called itname_it using * a structure called stname. */ # define ASN1_SEQUENCE(tname) \ static const ASN1_TEMPLATE tname##_seq_tt[] # define ASN1_SEQUENCE_END(stname) ASN1_SEQUENCE_END_name(stname, stname) # define ASN1_SEQUENCE_END_name(stname, tname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_SEQUENCE,\ V_ASN1_SEQUENCE,\ tname##_seq_tt,\ sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\ NULL,\ sizeof(stname),\ #stname \ ASN1_ITEM_end(tname) # define ASN1_NDEF_SEQUENCE(tname) \ ASN1_SEQUENCE(tname) # define ASN1_NDEF_SEQUENCE_cb(tname, cb) \ ASN1_SEQUENCE_cb(tname, cb) # define ASN1_SEQUENCE_cb(tname, cb) \ static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \ ASN1_SEQUENCE(tname) # define ASN1_BROKEN_SEQUENCE(tname) \ static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_BROKEN, 0, 0, 0, 0}; \ ASN1_SEQUENCE(tname) # define ASN1_SEQUENCE_ref(tname, cb, lck) \ static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_REFCOUNT, offsetof(tname, references), lck, cb, 0}; \ ASN1_SEQUENCE(tname) # define ASN1_SEQUENCE_enc(tname, enc, cb) \ static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_ENCODING, 0, 0, cb, offsetof(tname, enc)}; \ ASN1_SEQUENCE(tname) # define ASN1_NDEF_SEQUENCE_END(tname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_NDEF_SEQUENCE,\ V_ASN1_SEQUENCE,\ tname##_seq_tt,\ sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\ NULL,\ sizeof(tname),\ #tname \ ASN1_ITEM_end(tname) # define ASN1_BROKEN_SEQUENCE_END(stname) ASN1_SEQUENCE_END_ref(stname, stname) # define ASN1_SEQUENCE_END_enc(stname, tname) ASN1_SEQUENCE_END_ref(stname, tname) # define ASN1_SEQUENCE_END_cb(stname, tname) ASN1_SEQUENCE_END_ref(stname, tname) # define ASN1_SEQUENCE_END_ref(stname, tname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_SEQUENCE,\ V_ASN1_SEQUENCE,\ tname##_seq_tt,\ sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\ &tname##_aux,\ sizeof(stname),\ #stname \ ASN1_ITEM_end(tname) # define ASN1_NDEF_SEQUENCE_END_cb(stname, tname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_NDEF_SEQUENCE,\ V_ASN1_SEQUENCE,\ tname##_seq_tt,\ sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\ &tname##_aux,\ sizeof(stname),\ #stname \ ASN1_ITEM_end(tname) /*- * This pair helps declare a CHOICE type. We can do: * * ASN1_CHOICE(chname) = { * ... CHOICE options ... * ASN1_CHOICE_END(chname) * * This will produce an ASN1_ITEM called chname_it * for a structure called chname. The structure * definition must look like this: * typedef struct { * int type; * union { * ASN1_SOMETHING *opt1; * ASN1_SOMEOTHER *opt2; * } value; * } chname; * * the name of the selector must be 'type'. * to use an alternative selector name use the * ASN1_CHOICE_END_selector() version. */ # define ASN1_CHOICE(tname) \ static const ASN1_TEMPLATE tname##_ch_tt[] # define ASN1_CHOICE_cb(tname, cb) \ static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \ ASN1_CHOICE(tname) # define ASN1_CHOICE_END(stname) ASN1_CHOICE_END_name(stname, stname) # define ASN1_CHOICE_END_name(stname, tname) ASN1_CHOICE_END_selector(stname, tname, type) # define ASN1_CHOICE_END_selector(stname, tname, selname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_CHOICE,\ offsetof(stname,selname) ,\ tname##_ch_tt,\ sizeof(tname##_ch_tt) / sizeof(ASN1_TEMPLATE),\ NULL,\ sizeof(stname),\ #stname \ ASN1_ITEM_end(tname) # define ASN1_CHOICE_END_cb(stname, tname, selname) \ ;\ ASN1_ITEM_start(tname) \ ASN1_ITYPE_CHOICE,\ offsetof(stname,selname) ,\ tname##_ch_tt,\ sizeof(tname##_ch_tt) / sizeof(ASN1_TEMPLATE),\ &tname##_aux,\ sizeof(stname),\ #stname \ ASN1_ITEM_end(tname) /* This helps with the template wrapper form of ASN1_ITEM */ # define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \ (flags), (tag), 0,\ #name, ASN1_ITEM_ref(type) } /* These help with SEQUENCE or CHOICE components */ /* used to declare other types */ # define ASN1_EX_TYPE(flags, tag, stname, field, type) { \ (flags), (tag), offsetof(stname, field),\ #field, ASN1_ITEM_ref(type) } /* used when the structure is combined with the parent */ # define ASN1_EX_COMBINE(flags, tag, type) { \ (flags)|ASN1_TFLG_COMBINE, (tag), 0, NULL, ASN1_ITEM_ref(type) } /* implicit and explicit helper macros */ # define ASN1_IMP_EX(stname, field, type, tag, ex) \ ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type) # define ASN1_EXP_EX(stname, field, type, tag, ex) \ ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type) /* Any defined by macros: the field used is in the table itself */ # ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION # define ASN1_ADB_OBJECT(tblname) { ASN1_TFLG_ADB_OID, -1, 0, #tblname, (const ASN1_ITEM *)&(tblname##_adb) } # define ASN1_ADB_INTEGER(tblname) { ASN1_TFLG_ADB_INT, -1, 0, #tblname, (const ASN1_ITEM *)&(tblname##_adb) } # else # define ASN1_ADB_OBJECT(tblname) { ASN1_TFLG_ADB_OID, -1, 0, #tblname, tblname##_adb } # define ASN1_ADB_INTEGER(tblname) { ASN1_TFLG_ADB_INT, -1, 0, #tblname, tblname##_adb } # endif /* Plain simple type */ # define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, type) /* OPTIONAL simple type */ # define ASN1_OPT(stname, field, type) ASN1_EX_TYPE(ASN1_TFLG_OPTIONAL, 0, stname, field, type) /* IMPLICIT tagged simple type */ # define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, 0) /* IMPLICIT tagged OPTIONAL simple type */ # define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL) /* Same as above but EXPLICIT */ # define ASN1_EXP(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, 0) # define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL) /* SEQUENCE OF type */ # define ASN1_SEQUENCE_OF(stname, field, type) \ ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, stname, field, type) /* OPTIONAL SEQUENCE OF */ # define ASN1_SEQUENCE_OF_OPT(stname, field, type) \ ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL, 0, stname, field, type) /* Same as above but for SET OF */ # define ASN1_SET_OF(stname, field, type) \ ASN1_EX_TYPE(ASN1_TFLG_SET_OF, 0, stname, field, type) # define ASN1_SET_OF_OPT(stname, field, type) \ ASN1_EX_TYPE(ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL, 0, stname, field, type) /* Finally compound types of SEQUENCE, SET, IMPLICIT, EXPLICIT and OPTIONAL */ # define ASN1_IMP_SET_OF(stname, field, type, tag) \ ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF) # define ASN1_EXP_SET_OF(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF) # define ASN1_IMP_SET_OF_OPT(stname, field, type, tag) \ ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL) # define ASN1_EXP_SET_OF_OPT(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL) # define ASN1_IMP_SEQUENCE_OF(stname, field, type, tag) \ ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF) # define ASN1_IMP_SEQUENCE_OF_OPT(stname, field, type, tag) \ ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL) # define ASN1_EXP_SEQUENCE_OF(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF) # define ASN1_EXP_SEQUENCE_OF_OPT(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL) /* EXPLICIT using indefinite length constructed form */ # define ASN1_NDEF_EXP(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_NDEF) /* EXPLICIT OPTIONAL using indefinite length constructed form */ # define ASN1_NDEF_EXP_OPT(stname, field, type, tag) \ ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL|ASN1_TFLG_NDEF) /* Macros for the ASN1_ADB structure */ # define ASN1_ADB(name) \ static const ASN1_ADB_TABLE name##_adbtbl[] # ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION # define ASN1_ADB_END(name, flags, field, app_table, def, none) \ ;\ static const ASN1_ADB name##_adb = {\ flags,\ offsetof(name, field),\ app_table,\ name##_adbtbl,\ sizeof(name##_adbtbl) / sizeof(ASN1_ADB_TABLE),\ def,\ none\ } # else # define ASN1_ADB_END(name, flags, field, app_table, def, none) \ ;\ static const ASN1_ITEM *name##_adb(void) \ { \ static const ASN1_ADB internal_adb = \ {\ flags,\ offsetof(name, field),\ app_table,\ name##_adbtbl,\ sizeof(name##_adbtbl) / sizeof(ASN1_ADB_TABLE),\ def,\ none\ }; \ return (const ASN1_ITEM *) &internal_adb; \ } \ void dummy_function(void) # endif # define ADB_ENTRY(val, template) {val, template} # define ASN1_ADB_TEMPLATE(name) \ static const ASN1_TEMPLATE name##_tt /* * This is the ASN1 template structure that defines a wrapper round the * actual type. It determines the actual position of the field in the value * structure, various flags such as OPTIONAL and the field name. */ struct ASN1_TEMPLATE_st { unsigned long flags; /* Various flags */ long tag; /* tag, not used if no tagging */ unsigned long offset; /* Offset of this field in structure */ # ifndef NO_ASN1_FIELD_NAMES const char *field_name; /* Field name */ # endif ASN1_ITEM_EXP *item; /* Relevant ASN1_ITEM or ASN1_ADB */ }; /* Macro to extract ASN1_ITEM and ASN1_ADB pointer from ASN1_TEMPLATE */ # define ASN1_TEMPLATE_item(t) (t->item_ptr) # define ASN1_TEMPLATE_adb(t) (t->item_ptr) typedef struct ASN1_ADB_TABLE_st ASN1_ADB_TABLE; typedef struct ASN1_ADB_st ASN1_ADB; struct ASN1_ADB_st { unsigned long flags; /* Various flags */ unsigned long offset; /* Offset of selector field */ STACK_OF(ASN1_ADB_TABLE) **app_items; /* Application defined items */ const ASN1_ADB_TABLE *tbl; /* Table of possible types */ long tblcount; /* Number of entries in tbl */ const ASN1_TEMPLATE *default_tt; /* Type to use if no match */ const ASN1_TEMPLATE *null_tt; /* Type to use if selector is NULL */ }; struct ASN1_ADB_TABLE_st { long value; /* NID for an object or value for an int */ const ASN1_TEMPLATE tt; /* item for this value */ }; /* template flags */ /* Field is optional */ # define ASN1_TFLG_OPTIONAL (0x1) /* Field is a SET OF */ # define ASN1_TFLG_SET_OF (0x1 << 1) /* Field is a SEQUENCE OF */ # define ASN1_TFLG_SEQUENCE_OF (0x2 << 1) /* * Special case: this refers to a SET OF that will be sorted into DER order * when encoded *and* the corresponding STACK will be modified to match the * new order. */ # define ASN1_TFLG_SET_ORDER (0x3 << 1) /* Mask for SET OF or SEQUENCE OF */ # define ASN1_TFLG_SK_MASK (0x3 << 1) /* * These flags mean the tag should be taken from the tag field. If EXPLICIT * then the underlying type is used for the inner tag. */ /* IMPLICIT tagging */ # define ASN1_TFLG_IMPTAG (0x1 << 3) /* EXPLICIT tagging, inner tag from underlying type */ # define ASN1_TFLG_EXPTAG (0x2 << 3) # define ASN1_TFLG_TAG_MASK (0x3 << 3) /* context specific IMPLICIT */ # define ASN1_TFLG_IMPLICIT ASN1_TFLG_IMPTAG|ASN1_TFLG_CONTEXT /* context specific EXPLICIT */ # define ASN1_TFLG_EXPLICIT ASN1_TFLG_EXPTAG|ASN1_TFLG_CONTEXT /* * If tagging is in force these determine the type of tag to use. Otherwise * the tag is determined by the underlying type. These values reflect the * actual octet format. */ /* Universal tag */ # define ASN1_TFLG_UNIVERSAL (0x0<<6) /* Application tag */ # define ASN1_TFLG_APPLICATION (0x1<<6) /* Context specific tag */ # define ASN1_TFLG_CONTEXT (0x2<<6) /* Private tag */ # define ASN1_TFLG_PRIVATE (0x3<<6) # define ASN1_TFLG_TAG_CLASS (0x3<<6) /* * These are for ANY DEFINED BY type. In this case the 'item' field points to * an ASN1_ADB structure which contains a table of values to decode the * relevant type */ # define ASN1_TFLG_ADB_MASK (0x3<<8) # define ASN1_TFLG_ADB_OID (0x1<<8) # define ASN1_TFLG_ADB_INT (0x1<<9) /* * This flag means a parent structure is passed instead of the field: this is * useful is a SEQUENCE is being combined with a CHOICE for example. Since * this means the structure and item name will differ we need to use the * ASN1_CHOICE_END_name() macro for example. */ # define ASN1_TFLG_COMBINE (0x1<<10) /* * This flag when present in a SEQUENCE OF, SET OF or EXPLICIT causes * indefinite length constructed encoding to be used if required. */ # define ASN1_TFLG_NDEF (0x1<<11) /* This is the actual ASN1 item itself */ struct ASN1_ITEM_st { char itype; /* The item type, primitive, SEQUENCE, CHOICE * or extern */ long utype; /* underlying type */ const ASN1_TEMPLATE *templates; /* If SEQUENCE or CHOICE this contains * the contents */ long tcount; /* Number of templates if SEQUENCE or CHOICE */ const void *funcs; /* functions that handle this type */ long size; /* Structure size (usually) */ # ifndef NO_ASN1_FIELD_NAMES const char *sname; /* Structure name */ # endif }; /*- * These are values for the itype field and * determine how the type is interpreted. * * For PRIMITIVE types the underlying type * determines the behaviour if items is NULL. * * Otherwise templates must contain a single * template and the type is treated in the * same way as the type specified in the template. * * For SEQUENCE types the templates field points * to the members, the size field is the * structure size. * * For CHOICE types the templates field points * to each possible member (typically a union) * and the 'size' field is the offset of the * selector. * * The 'funcs' field is used for application * specific functions. * * For COMPAT types the funcs field gives a * set of functions that handle this type, this * supports the old d2i, i2d convention. * * The EXTERN type uses a new style d2i/i2d. * The new style should be used where possible * because it avoids things like the d2i IMPLICIT * hack. * * MSTRING is a multiple string type, it is used * for a CHOICE of character strings where the * actual strings all occupy an ASN1_STRING * structure. In this case the 'utype' field * has a special meaning, it is used as a mask * of acceptable types using the B_ASN1 constants. * * NDEF_SEQUENCE is the same as SEQUENCE except * that it will use indefinite length constructed * encoding if requested. * */ # define ASN1_ITYPE_PRIMITIVE 0x0 # define ASN1_ITYPE_SEQUENCE 0x1 # define ASN1_ITYPE_CHOICE 0x2 # define ASN1_ITYPE_COMPAT 0x3 # define ASN1_ITYPE_EXTERN 0x4 # define ASN1_ITYPE_MSTRING 0x5 # define ASN1_ITYPE_NDEF_SEQUENCE 0x6 /* * Cache for ASN1 tag and length, so we don't keep re-reading it for things * like CHOICE */ struct ASN1_TLC_st { char valid; /* Values below are valid */ int ret; /* return value */ long plen; /* length */ int ptag; /* class value */ int pclass; /* class value */ int hdrlen; /* header length */ }; /* Typedefs for ASN1 function pointers */ typedef ASN1_VALUE *ASN1_new_func(void); typedef void ASN1_free_func(ASN1_VALUE *a); typedef ASN1_VALUE *ASN1_d2i_func(ASN1_VALUE **a, const unsigned char **in, long length); typedef int ASN1_i2d_func(ASN1_VALUE *a, unsigned char **in); typedef int ASN1_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx); typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass); typedef int ASN1_ex_new_func(ASN1_VALUE **pval, const ASN1_ITEM *it); typedef void ASN1_ex_free_func(ASN1_VALUE **pval, const ASN1_ITEM *it); typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval, int indent, const char *fname, const ASN1_PCTX *pctx); typedef int ASN1_primitive_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it); typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it); typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx); typedef struct ASN1_COMPAT_FUNCS_st { ASN1_new_func *asn1_new; ASN1_free_func *asn1_free; ASN1_d2i_func *asn1_d2i; ASN1_i2d_func *asn1_i2d; } ASN1_COMPAT_FUNCS; typedef struct ASN1_EXTERN_FUNCS_st { void *app_data; ASN1_ex_new_func *asn1_ex_new; ASN1_ex_free_func *asn1_ex_free; ASN1_ex_free_func *asn1_ex_clear; ASN1_ex_d2i *asn1_ex_d2i; ASN1_ex_i2d *asn1_ex_i2d; ASN1_ex_print_func *asn1_ex_print; } ASN1_EXTERN_FUNCS; typedef struct ASN1_PRIMITIVE_FUNCS_st { void *app_data; unsigned long flags; ASN1_ex_new_func *prim_new; ASN1_ex_free_func *prim_free; ASN1_ex_free_func *prim_clear; ASN1_primitive_c2i *prim_c2i; ASN1_primitive_i2c *prim_i2c; ASN1_primitive_print *prim_print; } ASN1_PRIMITIVE_FUNCS; /* * This is the ASN1_AUX structure: it handles various miscellaneous * requirements. For example the use of reference counts and an informational * callback. The "informational callback" is called at various points during * the ASN1 encoding and decoding. It can be used to provide minor * customisation of the structures used. This is most useful where the * supplied routines *almost* do the right thing but need some extra help at * a few points. If the callback returns zero then it is assumed a fatal * error has occurred and the main operation should be abandoned. If major * changes in the default behaviour are required then an external type is * more appropriate. */ typedef int ASN1_aux_cb(int operation, ASN1_VALUE **in, const ASN1_ITEM *it, void *exarg); typedef struct ASN1_AUX_st { void *app_data; int flags; int ref_offset; /* Offset of reference value */ int ref_lock; /* Lock type to use */ ASN1_aux_cb *asn1_cb; int enc_offset; /* Offset of ASN1_ENCODING structure */ } ASN1_AUX; /* For print related callbacks exarg points to this structure */ typedef struct ASN1_PRINT_ARG_st { BIO *out; int indent; const ASN1_PCTX *pctx; } ASN1_PRINT_ARG; /* For streaming related callbacks exarg points to this structure */ typedef struct ASN1_STREAM_ARG_st { /* BIO to stream through */ BIO *out; /* BIO with filters appended */ BIO *ndef_bio; /* Streaming I/O boundary */ unsigned char **boundary; } ASN1_STREAM_ARG; /* Flags in ASN1_AUX */ /* Use a reference count */ # define ASN1_AFLG_REFCOUNT 1 /* Save the encoding of structure (useful for signatures) */ # define ASN1_AFLG_ENCODING 2 /* The Sequence length is invalid */ # define ASN1_AFLG_BROKEN 4 /* operation values for asn1_cb */ # define ASN1_OP_NEW_PRE 0 # define ASN1_OP_NEW_POST 1 # define ASN1_OP_FREE_PRE 2 # define ASN1_OP_FREE_POST 3 # define ASN1_OP_D2I_PRE 4 # define ASN1_OP_D2I_POST 5 # define ASN1_OP_I2D_PRE 6 # define ASN1_OP_I2D_POST 7 # define ASN1_OP_PRINT_PRE 8 # define ASN1_OP_PRINT_POST 9 # define ASN1_OP_STREAM_PRE 10 # define ASN1_OP_STREAM_POST 11 # define ASN1_OP_DETACHED_PRE 12 # define ASN1_OP_DETACHED_POST 13 /* Macro to implement a primitive type */ # define IMPLEMENT_ASN1_TYPE(stname) IMPLEMENT_ASN1_TYPE_ex(stname, stname, 0) # define IMPLEMENT_ASN1_TYPE_ex(itname, vname, ex) \ ASN1_ITEM_start(itname) \ ASN1_ITYPE_PRIMITIVE, V_##vname, NULL, 0, NULL, ex, #itname \ ASN1_ITEM_end(itname) /* Macro to implement a multi string type */ # define IMPLEMENT_ASN1_MSTRING(itname, mask) \ ASN1_ITEM_start(itname) \ ASN1_ITYPE_MSTRING, mask, NULL, 0, NULL, sizeof(ASN1_STRING), #itname \ ASN1_ITEM_end(itname) /* Macro to implement an ASN1_ITEM in terms of old style funcs */ # define IMPLEMENT_COMPAT_ASN1(sname) IMPLEMENT_COMPAT_ASN1_type(sname, V_ASN1_SEQUENCE) # define IMPLEMENT_COMPAT_ASN1_type(sname, tag) \ static const ASN1_COMPAT_FUNCS sname##_ff = { \ (ASN1_new_func *)sname##_new, \ (ASN1_free_func *)sname##_free, \ (ASN1_d2i_func *)d2i_##sname, \ (ASN1_i2d_func *)i2d_##sname, \ }; \ ASN1_ITEM_start(sname) \ ASN1_ITYPE_COMPAT, \ tag, \ NULL, \ 0, \ &sname##_ff, \ 0, \ #sname \ ASN1_ITEM_end(sname) # define IMPLEMENT_EXTERN_ASN1(sname, tag, fptrs) \ ASN1_ITEM_start(sname) \ ASN1_ITYPE_EXTERN, \ tag, \ NULL, \ 0, \ &fptrs, \ 0, \ #sname \ ASN1_ITEM_end(sname) /* Macro to implement standard functions in terms of ASN1_ITEM structures */ # define IMPLEMENT_ASN1_FUNCTIONS(stname) IMPLEMENT_ASN1_FUNCTIONS_fname(stname, stname, stname) # define IMPLEMENT_ASN1_FUNCTIONS_name(stname, itname) IMPLEMENT_ASN1_FUNCTIONS_fname(stname, itname, itname) # define IMPLEMENT_ASN1_FUNCTIONS_ENCODE_name(stname, itname) \ IMPLEMENT_ASN1_FUNCTIONS_ENCODE_fname(stname, itname, itname) # define IMPLEMENT_STATIC_ASN1_ALLOC_FUNCTIONS(stname) \ IMPLEMENT_ASN1_ALLOC_FUNCTIONS_pfname(static, stname, stname, stname) # define IMPLEMENT_ASN1_ALLOC_FUNCTIONS(stname) \ IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, stname, stname) # define IMPLEMENT_ASN1_ALLOC_FUNCTIONS_pfname(pre, stname, itname, fname) \ pre stname *fname##_new(void) \ { \ return (stname *)ASN1_item_new(ASN1_ITEM_rptr(itname)); \ } \ pre void fname##_free(stname *a) \ { \ ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \ } # define IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname) \ stname *fname##_new(void) \ { \ return (stname *)ASN1_item_new(ASN1_ITEM_rptr(itname)); \ } \ void fname##_free(stname *a) \ { \ ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \ } # define IMPLEMENT_ASN1_FUNCTIONS_fname(stname, itname, fname) \ IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(stname, itname, fname) \ IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname) # define IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(stname, itname, fname) \ stname *d2i_##fname(stname **a, const unsigned char **in, long len) \ { \ return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, ASN1_ITEM_rptr(itname));\ } \ int i2d_##fname(stname *a, unsigned char **out) \ { \ return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\ } # define IMPLEMENT_ASN1_NDEF_FUNCTION(stname) \ int i2d_##stname##_NDEF(stname *a, unsigned char **out) \ { \ return ASN1_item_ndef_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname));\ } /* * This includes evil casts to remove const: they will go away when full ASN1 * constification is done. */ # define IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(stname, itname, fname) \ stname *d2i_##fname(stname **a, const unsigned char **in, long len) \ { \ return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, ASN1_ITEM_rptr(itname));\ } \ int i2d_##fname(const stname *a, unsigned char **out) \ { \ return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\ } # define IMPLEMENT_ASN1_DUP_FUNCTION(stname) \ stname * stname##_dup(stname *x) \ { \ return ASN1_item_dup(ASN1_ITEM_rptr(stname), x); \ } # define IMPLEMENT_ASN1_PRINT_FUNCTION(stname) \ IMPLEMENT_ASN1_PRINT_FUNCTION_fname(stname, stname, stname) # define IMPLEMENT_ASN1_PRINT_FUNCTION_fname(stname, itname, fname) \ int fname##_print_ctx(BIO *out, stname *x, int indent, \ const ASN1_PCTX *pctx) \ { \ return ASN1_item_print(out, (ASN1_VALUE *)x, indent, \ ASN1_ITEM_rptr(itname), pctx); \ } # define IMPLEMENT_ASN1_FUNCTIONS_const(name) \ IMPLEMENT_ASN1_FUNCTIONS_const_fname(name, name, name) # define IMPLEMENT_ASN1_FUNCTIONS_const_fname(stname, itname, fname) \ IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(stname, itname, fname) \ IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname) /* external definitions for primitive types */ DECLARE_ASN1_ITEM(ASN1_BOOLEAN) DECLARE_ASN1_ITEM(ASN1_TBOOLEAN) DECLARE_ASN1_ITEM(ASN1_FBOOLEAN) DECLARE_ASN1_ITEM(ASN1_SEQUENCE) DECLARE_ASN1_ITEM(CBIGNUM) DECLARE_ASN1_ITEM(BIGNUM) DECLARE_ASN1_ITEM(LONG) DECLARE_ASN1_ITEM(ZLONG) DECLARE_STACK_OF(ASN1_VALUE) /* Functions used internally by the ASN1 code */ int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it); void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it); int ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); int ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it); void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt); int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx); int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass); int ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt); void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it); int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it); int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it); int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it); int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it); ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt); const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt, int nullerr); int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it); void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it); void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it); int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval, const ASN1_ITEM *it); int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen, const ASN1_ITEM *it); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/bio.h ================================================ /* crypto/bio/bio.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_BIO_H # define HEADER_BIO_H # include # ifndef OPENSSL_NO_FP_API # include # endif # include # include # ifndef OPENSSL_NO_SCTP # ifndef OPENSSL_SYS_VMS # include # else # include # endif # endif #ifdef __cplusplus extern "C" { #endif /* These are the 'types' of BIOs */ # define BIO_TYPE_NONE 0 # define BIO_TYPE_MEM (1|0x0400) # define BIO_TYPE_FILE (2|0x0400) # define BIO_TYPE_FD (4|0x0400|0x0100) # define BIO_TYPE_SOCKET (5|0x0400|0x0100) # define BIO_TYPE_NULL (6|0x0400) # define BIO_TYPE_SSL (7|0x0200) # define BIO_TYPE_MD (8|0x0200)/* passive filter */ # define BIO_TYPE_BUFFER (9|0x0200)/* filter */ # define BIO_TYPE_CIPHER (10|0x0200)/* filter */ # define BIO_TYPE_BASE64 (11|0x0200)/* filter */ # define BIO_TYPE_CONNECT (12|0x0400|0x0100)/* socket - connect */ # define BIO_TYPE_ACCEPT (13|0x0400|0x0100)/* socket for accept */ # define BIO_TYPE_PROXY_CLIENT (14|0x0200)/* client proxy BIO */ # define BIO_TYPE_PROXY_SERVER (15|0x0200)/* server proxy BIO */ # define BIO_TYPE_NBIO_TEST (16|0x0200)/* server proxy BIO */ # define BIO_TYPE_NULL_FILTER (17|0x0200) # define BIO_TYPE_BER (18|0x0200)/* BER -> bin filter */ # define BIO_TYPE_BIO (19|0x0400)/* (half a) BIO pair */ # define BIO_TYPE_LINEBUFFER (20|0x0200)/* filter */ # define BIO_TYPE_DGRAM (21|0x0400|0x0100) # ifndef OPENSSL_NO_SCTP # define BIO_TYPE_DGRAM_SCTP (24|0x0400|0x0100) # endif # define BIO_TYPE_ASN1 (22|0x0200)/* filter */ # define BIO_TYPE_COMP (23|0x0200)/* filter */ # define BIO_TYPE_DESCRIPTOR 0x0100/* socket, fd, connect or accept */ # define BIO_TYPE_FILTER 0x0200 # define BIO_TYPE_SOURCE_SINK 0x0400 /* * BIO_FILENAME_READ|BIO_CLOSE to open or close on free. * BIO_set_fp(in,stdin,BIO_NOCLOSE); */ # define BIO_NOCLOSE 0x00 # define BIO_CLOSE 0x01 /* * These are used in the following macros and are passed to BIO_ctrl() */ # define BIO_CTRL_RESET 1/* opt - rewind/zero etc */ # define BIO_CTRL_EOF 2/* opt - are we at the eof */ # define BIO_CTRL_INFO 3/* opt - extra tit-bits */ # define BIO_CTRL_SET 4/* man - set the 'IO' type */ # define BIO_CTRL_GET 5/* man - get the 'IO' type */ # define BIO_CTRL_PUSH 6/* opt - internal, used to signify change */ # define BIO_CTRL_POP 7/* opt - internal, used to signify change */ # define BIO_CTRL_GET_CLOSE 8/* man - set the 'close' on free */ # define BIO_CTRL_SET_CLOSE 9/* man - set the 'close' on free */ # define BIO_CTRL_PENDING 10/* opt - is their more data buffered */ # define BIO_CTRL_FLUSH 11/* opt - 'flush' buffered output */ # define BIO_CTRL_DUP 12/* man - extra stuff for 'duped' BIO */ # define BIO_CTRL_WPENDING 13/* opt - number of bytes still to write */ /* callback is int cb(BIO *bio,state,ret); */ # define BIO_CTRL_SET_CALLBACK 14/* opt - set callback function */ # define BIO_CTRL_GET_CALLBACK 15/* opt - set callback function */ # define BIO_CTRL_SET_FILENAME 30/* BIO_s_file special */ /* dgram BIO stuff */ # define BIO_CTRL_DGRAM_CONNECT 31/* BIO dgram special */ # define BIO_CTRL_DGRAM_SET_CONNECTED 32/* allow for an externally connected * socket to be passed in */ # define BIO_CTRL_DGRAM_SET_RECV_TIMEOUT 33/* setsockopt, essentially */ # define BIO_CTRL_DGRAM_GET_RECV_TIMEOUT 34/* getsockopt, essentially */ # define BIO_CTRL_DGRAM_SET_SEND_TIMEOUT 35/* setsockopt, essentially */ # define BIO_CTRL_DGRAM_GET_SEND_TIMEOUT 36/* getsockopt, essentially */ # define BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP 37/* flag whether the last */ # define BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP 38/* I/O operation tiemd out */ /* #ifdef IP_MTU_DISCOVER */ # define BIO_CTRL_DGRAM_MTU_DISCOVER 39/* set DF bit on egress packets */ /* #endif */ # define BIO_CTRL_DGRAM_QUERY_MTU 40/* as kernel for current MTU */ # define BIO_CTRL_DGRAM_GET_FALLBACK_MTU 47 # define BIO_CTRL_DGRAM_GET_MTU 41/* get cached value for MTU */ # define BIO_CTRL_DGRAM_SET_MTU 42/* set cached value for MTU. * want to use this if asking * the kernel fails */ # define BIO_CTRL_DGRAM_MTU_EXCEEDED 43/* check whether the MTU was * exceed in the previous write * operation */ # define BIO_CTRL_DGRAM_GET_PEER 46 # define BIO_CTRL_DGRAM_SET_PEER 44/* Destination for the data */ # define BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT 45/* Next DTLS handshake timeout * to adjust socket timeouts */ # define BIO_CTRL_DGRAM_SET_DONT_FRAG 48 # define BIO_CTRL_DGRAM_GET_MTU_OVERHEAD 49 # ifndef OPENSSL_NO_SCTP /* SCTP stuff */ # define BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE 50 # define BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY 51 # define BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY 52 # define BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD 53 # define BIO_CTRL_DGRAM_SCTP_GET_SNDINFO 60 # define BIO_CTRL_DGRAM_SCTP_SET_SNDINFO 61 # define BIO_CTRL_DGRAM_SCTP_GET_RCVINFO 62 # define BIO_CTRL_DGRAM_SCTP_SET_RCVINFO 63 # define BIO_CTRL_DGRAM_SCTP_GET_PRINFO 64 # define BIO_CTRL_DGRAM_SCTP_SET_PRINFO 65 # define BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN 70 # endif /* modifiers */ # define BIO_FP_READ 0x02 # define BIO_FP_WRITE 0x04 # define BIO_FP_APPEND 0x08 # define BIO_FP_TEXT 0x10 # define BIO_FLAGS_READ 0x01 # define BIO_FLAGS_WRITE 0x02 # define BIO_FLAGS_IO_SPECIAL 0x04 # define BIO_FLAGS_RWS (BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL) # define BIO_FLAGS_SHOULD_RETRY 0x08 # ifndef BIO_FLAGS_UPLINK /* * "UPLINK" flag denotes file descriptors provided by application. It * defaults to 0, as most platforms don't require UPLINK interface. */ # define BIO_FLAGS_UPLINK 0 # endif /* Used in BIO_gethostbyname() */ # define BIO_GHBN_CTRL_HITS 1 # define BIO_GHBN_CTRL_MISSES 2 # define BIO_GHBN_CTRL_CACHE_SIZE 3 # define BIO_GHBN_CTRL_GET_ENTRY 4 # define BIO_GHBN_CTRL_FLUSH 5 /* Mostly used in the SSL BIO */ /*- * Not used anymore * #define BIO_FLAGS_PROTOCOL_DELAYED_READ 0x10 * #define BIO_FLAGS_PROTOCOL_DELAYED_WRITE 0x20 * #define BIO_FLAGS_PROTOCOL_STARTUP 0x40 */ # define BIO_FLAGS_BASE64_NO_NL 0x100 /* * This is used with memory BIOs: it means we shouldn't free up or change the * data in any way. */ # define BIO_FLAGS_MEM_RDONLY 0x200 typedef struct bio_st BIO; void BIO_set_flags(BIO *b, int flags); int BIO_test_flags(const BIO *b, int flags); void BIO_clear_flags(BIO *b, int flags); # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) # define BIO_set_retry_special(b) \ BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY)) # define BIO_set_retry_read(b) \ BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY)) # define BIO_set_retry_write(b) \ BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY)) /* These are normally used internally in BIOs */ # define BIO_clear_retry_flags(b) \ BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY)) # define BIO_get_retry_flags(b) \ BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY)) /* These should be used by the application to tell why we should retry */ # define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ) # define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE) # define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL) # define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS) # define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY) /* * The next three are used in conjunction with the BIO_should_io_special() * condition. After this returns true, BIO *BIO_get_retry_BIO(BIO *bio, int * *reason); will walk the BIO stack and return the 'reason' for the special * and the offending BIO. Given a BIO, BIO_get_retry_reason(bio) will return * the code. */ /* * Returned from the SSL bio when the certificate retrieval code had an error */ # define BIO_RR_SSL_X509_LOOKUP 0x01 /* Returned from the connect BIO when a connect would have blocked */ # define BIO_RR_CONNECT 0x02 /* Returned from the accept BIO when an accept would have blocked */ # define BIO_RR_ACCEPT 0x03 /* These are passed by the BIO callback */ # define BIO_CB_FREE 0x01 # define BIO_CB_READ 0x02 # define BIO_CB_WRITE 0x03 # define BIO_CB_PUTS 0x04 # define BIO_CB_GETS 0x05 # define BIO_CB_CTRL 0x06 /* * The callback is called before and after the underling operation, The * BIO_CB_RETURN flag indicates if it is after the call */ # define BIO_CB_RETURN 0x80 # define BIO_CB_return(a) ((a)|BIO_CB_RETURN) # define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN)) # define BIO_cb_post(a) ((a)&BIO_CB_RETURN) long (*BIO_get_callback(const BIO *b)) (struct bio_st *, int, const char *, int, long, long); void BIO_set_callback(BIO *b, long (*callback) (struct bio_st *, int, const char *, int, long, long)); char *BIO_get_callback_arg(const BIO *b); void BIO_set_callback_arg(BIO *b, char *arg); const char *BIO_method_name(const BIO *b); int BIO_method_type(const BIO *b); typedef void bio_info_cb (struct bio_st *, int, const char *, int, long, long); typedef struct bio_method_st { int type; const char *name; int (*bwrite) (BIO *, const char *, int); int (*bread) (BIO *, char *, int); int (*bputs) (BIO *, const char *); int (*bgets) (BIO *, char *, int); long (*ctrl) (BIO *, int, long, void *); int (*create) (BIO *); int (*destroy) (BIO *); long (*callback_ctrl) (BIO *, int, bio_info_cb *); } BIO_METHOD; struct bio_st { BIO_METHOD *method; /* bio, mode, argp, argi, argl, ret */ long (*callback) (struct bio_st *, int, const char *, int, long, long); char *cb_arg; /* first argument for the callback */ int init; int shutdown; int flags; /* extra storage */ int retry_reason; int num; void *ptr; struct bio_st *next_bio; /* used by filter BIOs */ struct bio_st *prev_bio; /* used by filter BIOs */ int references; unsigned long num_read; unsigned long num_write; CRYPTO_EX_DATA ex_data; }; DECLARE_STACK_OF(BIO) typedef struct bio_f_buffer_ctx_struct { /*- * Buffers are setup like this: * * <---------------------- size -----------------------> * +---------------------------------------------------+ * | consumed | remaining | free space | * +---------------------------------------------------+ * <-- off --><------- len -------> */ /*- BIO *bio; *//* * this is now in the BIO struct */ int ibuf_size; /* how big is the input buffer */ int obuf_size; /* how big is the output buffer */ char *ibuf; /* the char array */ int ibuf_len; /* how many bytes are in it */ int ibuf_off; /* write/read offset */ char *obuf; /* the char array */ int obuf_len; /* how many bytes are in it */ int obuf_off; /* write/read offset */ } BIO_F_BUFFER_CTX; /* Prefix and suffix callback in ASN1 BIO */ typedef int asn1_ps_func (BIO *b, unsigned char **pbuf, int *plen, void *parg); # ifndef OPENSSL_NO_SCTP /* SCTP parameter structs */ struct bio_dgram_sctp_sndinfo { uint16_t snd_sid; uint16_t snd_flags; uint32_t snd_ppid; uint32_t snd_context; }; struct bio_dgram_sctp_rcvinfo { uint16_t rcv_sid; uint16_t rcv_ssn; uint16_t rcv_flags; uint32_t rcv_ppid; uint32_t rcv_tsn; uint32_t rcv_cumtsn; uint32_t rcv_context; }; struct bio_dgram_sctp_prinfo { uint16_t pr_policy; uint32_t pr_value; }; # endif /* connect BIO stuff */ # define BIO_CONN_S_BEFORE 1 # define BIO_CONN_S_GET_IP 2 # define BIO_CONN_S_GET_PORT 3 # define BIO_CONN_S_CREATE_SOCKET 4 # define BIO_CONN_S_CONNECT 5 # define BIO_CONN_S_OK 6 # define BIO_CONN_S_BLOCKED_CONNECT 7 # define BIO_CONN_S_NBIO 8 /* * #define BIO_CONN_get_param_hostname BIO_ctrl */ # define BIO_C_SET_CONNECT 100 # define BIO_C_DO_STATE_MACHINE 101 # define BIO_C_SET_NBIO 102 # define BIO_C_SET_PROXY_PARAM 103 # define BIO_C_SET_FD 104 # define BIO_C_GET_FD 105 # define BIO_C_SET_FILE_PTR 106 # define BIO_C_GET_FILE_PTR 107 # define BIO_C_SET_FILENAME 108 # define BIO_C_SET_SSL 109 # define BIO_C_GET_SSL 110 # define BIO_C_SET_MD 111 # define BIO_C_GET_MD 112 # define BIO_C_GET_CIPHER_STATUS 113 # define BIO_C_SET_BUF_MEM 114 # define BIO_C_GET_BUF_MEM_PTR 115 # define BIO_C_GET_BUFF_NUM_LINES 116 # define BIO_C_SET_BUFF_SIZE 117 # define BIO_C_SET_ACCEPT 118 # define BIO_C_SSL_MODE 119 # define BIO_C_GET_MD_CTX 120 # define BIO_C_GET_PROXY_PARAM 121 # define BIO_C_SET_BUFF_READ_DATA 122/* data to read first */ # define BIO_C_GET_CONNECT 123 # define BIO_C_GET_ACCEPT 124 # define BIO_C_SET_SSL_RENEGOTIATE_BYTES 125 # define BIO_C_GET_SSL_NUM_RENEGOTIATES 126 # define BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT 127 # define BIO_C_FILE_SEEK 128 # define BIO_C_GET_CIPHER_CTX 129 # define BIO_C_SET_BUF_MEM_EOF_RETURN 130/* return end of input * value */ # define BIO_C_SET_BIND_MODE 131 # define BIO_C_GET_BIND_MODE 132 # define BIO_C_FILE_TELL 133 # define BIO_C_GET_SOCKS 134 # define BIO_C_SET_SOCKS 135 # define BIO_C_SET_WRITE_BUF_SIZE 136/* for BIO_s_bio */ # define BIO_C_GET_WRITE_BUF_SIZE 137 # define BIO_C_MAKE_BIO_PAIR 138 # define BIO_C_DESTROY_BIO_PAIR 139 # define BIO_C_GET_WRITE_GUARANTEE 140 # define BIO_C_GET_READ_REQUEST 141 # define BIO_C_SHUTDOWN_WR 142 # define BIO_C_NREAD0 143 # define BIO_C_NREAD 144 # define BIO_C_NWRITE0 145 # define BIO_C_NWRITE 146 # define BIO_C_RESET_READ_REQUEST 147 # define BIO_C_SET_MD_CTX 148 # define BIO_C_SET_PREFIX 149 # define BIO_C_GET_PREFIX 150 # define BIO_C_SET_SUFFIX 151 # define BIO_C_GET_SUFFIX 152 # define BIO_C_SET_EX_ARG 153 # define BIO_C_GET_EX_ARG 154 # define BIO_set_app_data(s,arg) BIO_set_ex_data(s,0,arg) # define BIO_get_app_data(s) BIO_get_ex_data(s,0) /* BIO_s_connect() and BIO_s_socks4a_connect() */ # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0,(char *)name) # define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1,(char *)port) # define BIO_set_conn_ip(b,ip) BIO_ctrl(b,BIO_C_SET_CONNECT,2,(char *)ip) # define BIO_set_conn_int_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,3,(char *)port) # define BIO_get_conn_hostname(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,0) # define BIO_get_conn_port(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,1) # define BIO_get_conn_ip(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,2) # define BIO_get_conn_int_port(b) BIO_ctrl(b,BIO_C_GET_CONNECT,3,NULL) # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) /* BIO_s_accept() */ # define BIO_set_accept_port(b,name) BIO_ctrl(b,BIO_C_SET_ACCEPT,0,(char *)name) # define BIO_get_accept_port(b) BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,0) /* #define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) */ # define BIO_set_nbio_accept(b,n) BIO_ctrl(b,BIO_C_SET_ACCEPT,1,(n)?(void *)"a":NULL) # define BIO_set_accept_bios(b,bio) BIO_ctrl(b,BIO_C_SET_ACCEPT,2,(char *)bio) # define BIO_BIND_NORMAL 0 # define BIO_BIND_REUSEADDR_IF_UNUSED 1 # define BIO_BIND_REUSEADDR 2 # define BIO_set_bind_mode(b,mode) BIO_ctrl(b,BIO_C_SET_BIND_MODE,mode,NULL) # define BIO_get_bind_mode(b,mode) BIO_ctrl(b,BIO_C_GET_BIND_MODE,0,NULL) /* BIO_s_accept() and BIO_s_connect() */ # define BIO_do_connect(b) BIO_do_handshake(b) # define BIO_do_accept(b) BIO_do_handshake(b) # define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL) /* BIO_s_proxy_client() */ # define BIO_set_url(b,url) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,0,(char *)(url)) # define BIO_set_proxies(b,p) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,1,(char *)(p)) /* BIO_set_nbio(b,n) */ # define BIO_set_filter_bio(b,s) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,2,(char *)(s)) /* BIO *BIO_get_filter_bio(BIO *bio); */ # define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)())) # define BIO_set_proxy_header(b,sk) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,4,(char *)sk) # define BIO_set_no_connect_return(b,bool) BIO_int_ctrl(b,BIO_C_SET_PROXY_PARAM,5,bool) # define BIO_get_proxy_header(b,skp) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,0,(char *)skp) # define BIO_get_proxies(b,pxy_p) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,1,(char *)(pxy_p)) # define BIO_get_url(b,url) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,2,(char *)(url)) # define BIO_get_no_connect_return(b) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,5,NULL) /* BIO_s_datagram(), BIO_s_fd(), BIO_s_socket(), BIO_s_accept() and BIO_s_connect() */ # define BIO_set_fd(b,fd,c) BIO_int_ctrl(b,BIO_C_SET_FD,c,fd) # define BIO_get_fd(b,c) BIO_ctrl(b,BIO_C_GET_FD,0,(char *)c) /* BIO_s_file() */ # define BIO_set_fp(b,fp,c) BIO_ctrl(b,BIO_C_SET_FILE_PTR,c,(char *)fp) # define BIO_get_fp(b,fpp) BIO_ctrl(b,BIO_C_GET_FILE_PTR,0,(char *)fpp) /* BIO_s_fd() and BIO_s_file() */ # define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL) # define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL) /* * name is cast to lose const, but might be better to route through a * function so we can do it safely */ # ifdef CONST_STRICT /* * If you are wondering why this isn't defined, its because CONST_STRICT is * purely a compile-time kludge to allow const to be checked. */ int BIO_read_filename(BIO *b, const char *name); # else # define BIO_read_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \ BIO_CLOSE|BIO_FP_READ,(char *)name) # endif # define BIO_write_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \ BIO_CLOSE|BIO_FP_WRITE,name) # define BIO_append_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \ BIO_CLOSE|BIO_FP_APPEND,name) # define BIO_rw_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \ BIO_CLOSE|BIO_FP_READ|BIO_FP_WRITE,name) /* * WARNING WARNING, this ups the reference count on the read bio of the SSL * structure. This is because the ssl read BIO is now pointed to by the * next_bio field in the bio. So when you free the BIO, make sure you are * doing a BIO_free_all() to catch the underlying BIO. */ # define BIO_set_ssl(b,ssl,c) BIO_ctrl(b,BIO_C_SET_SSL,c,(char *)ssl) # define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)sslp) # define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL) # define BIO_set_ssl_renegotiate_bytes(b,num) \ BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL) # define BIO_get_num_renegotiates(b) \ BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL) # define BIO_set_ssl_renegotiate_timeout(b,seconds) \ BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL) /* defined in evp.h */ /* #define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,1,(char *)md) */ # define BIO_get_mem_data(b,pp) BIO_ctrl(b,BIO_CTRL_INFO,0,(char *)pp) # define BIO_set_mem_buf(b,bm,c) BIO_ctrl(b,BIO_C_SET_BUF_MEM,c,(char *)bm) # define BIO_get_mem_ptr(b,pp) BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0,(char *)pp) # define BIO_set_mem_eof_return(b,v) \ BIO_ctrl(b,BIO_C_SET_BUF_MEM_EOF_RETURN,v,NULL) /* For the BIO_f_buffer() type */ # define BIO_get_buffer_num_lines(b) BIO_ctrl(b,BIO_C_GET_BUFF_NUM_LINES,0,NULL) # define BIO_set_buffer_size(b,size) BIO_ctrl(b,BIO_C_SET_BUFF_SIZE,size,NULL) # define BIO_set_read_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,0) # define BIO_set_write_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,1) # define BIO_set_buffer_read_data(b,buf,num) BIO_ctrl(b,BIO_C_SET_BUFF_READ_DATA,num,buf) /* Don't use the next one unless you know what you are doing :-) */ # define BIO_dup_state(b,ret) BIO_ctrl(b,BIO_CTRL_DUP,0,(char *)(ret)) # define BIO_reset(b) (int)BIO_ctrl(b,BIO_CTRL_RESET,0,NULL) # define BIO_eof(b) (int)BIO_ctrl(b,BIO_CTRL_EOF,0,NULL) # define BIO_set_close(b,c) (int)BIO_ctrl(b,BIO_CTRL_SET_CLOSE,(c),NULL) # define BIO_get_close(b) (int)BIO_ctrl(b,BIO_CTRL_GET_CLOSE,0,NULL) # define BIO_pending(b) (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL) # define BIO_wpending(b) (int)BIO_ctrl(b,BIO_CTRL_WPENDING,0,NULL) /* ...pending macros have inappropriate return type */ size_t BIO_ctrl_pending(BIO *b); size_t BIO_ctrl_wpending(BIO *b); # define BIO_flush(b) (int)BIO_ctrl(b,BIO_CTRL_FLUSH,0,NULL) # define BIO_get_info_callback(b,cbp) (int)BIO_ctrl(b,BIO_CTRL_GET_CALLBACK,0, \ cbp) # define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb) /* For the BIO_f_buffer() type */ # define BIO_buffer_get_num_lines(b) BIO_ctrl(b,BIO_CTRL_GET,0,NULL) /* For BIO_s_bio() */ # define BIO_set_write_buf_size(b,size) (int)BIO_ctrl(b,BIO_C_SET_WRITE_BUF_SIZE,size,NULL) # define BIO_get_write_buf_size(b,size) (size_t)BIO_ctrl(b,BIO_C_GET_WRITE_BUF_SIZE,size,NULL) # define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2) # define BIO_destroy_bio_pair(b) (int)BIO_ctrl(b,BIO_C_DESTROY_BIO_PAIR,0,NULL) # define BIO_shutdown_wr(b) (int)BIO_ctrl(b, BIO_C_SHUTDOWN_WR, 0, NULL) /* macros with inappropriate type -- but ...pending macros use int too: */ # define BIO_get_write_guarantee(b) (int)BIO_ctrl(b,BIO_C_GET_WRITE_GUARANTEE,0,NULL) # define BIO_get_read_request(b) (int)BIO_ctrl(b,BIO_C_GET_READ_REQUEST,0,NULL) size_t BIO_ctrl_get_write_guarantee(BIO *b); size_t BIO_ctrl_get_read_request(BIO *b); int BIO_ctrl_reset_read_request(BIO *b); /* ctrl macros for dgram */ # define BIO_ctrl_dgram_connect(b,peer) \ (int)BIO_ctrl(b,BIO_CTRL_DGRAM_CONNECT,0, (char *)peer) # define BIO_ctrl_set_connected(b, state, peer) \ (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_CONNECTED, state, (char *)peer) # define BIO_dgram_recv_timedout(b) \ (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP, 0, NULL) # define BIO_dgram_send_timedout(b) \ (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP, 0, NULL) # define BIO_dgram_get_peer(b,peer) \ (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_PEER, 0, (char *)peer) # define BIO_dgram_set_peer(b,peer) \ (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, (char *)peer) # define BIO_dgram_get_mtu_overhead(b) \ (unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_MTU_OVERHEAD, 0, NULL) /* These two aren't currently implemented */ /* int BIO_get_ex_num(BIO *bio); */ /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */ int BIO_set_ex_data(BIO *bio, int idx, void *data); void *BIO_get_ex_data(BIO *bio, int idx); int BIO_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); unsigned long BIO_number_read(BIO *bio); unsigned long BIO_number_written(BIO *bio); /* For BIO_f_asn1() */ int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix, asn1_ps_func *prefix_free); int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix, asn1_ps_func **pprefix_free); int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, asn1_ps_func *suffix_free); int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_func **psuffix_free); # ifndef OPENSSL_NO_FP_API BIO_METHOD *BIO_s_file(void); BIO *BIO_new_file(const char *filename, const char *mode); BIO *BIO_new_fp(FILE *stream, int close_flag); # define BIO_s_file_internal BIO_s_file # endif BIO *BIO_new(BIO_METHOD *type); int BIO_set(BIO *a, BIO_METHOD *type); int BIO_free(BIO *a); void BIO_vfree(BIO *a); int BIO_read(BIO *b, void *data, int len); int BIO_gets(BIO *bp, char *buf, int size); int BIO_write(BIO *b, const void *data, int len); int BIO_puts(BIO *bp, const char *buf); int BIO_indent(BIO *b, int indent, int max); long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg); long BIO_callback_ctrl(BIO *b, int cmd, void (*fp) (struct bio_st *, int, const char *, int, long, long)); char *BIO_ptr_ctrl(BIO *bp, int cmd, long larg); long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg); BIO *BIO_push(BIO *b, BIO *append); BIO *BIO_pop(BIO *b); void BIO_free_all(BIO *a); BIO *BIO_find_type(BIO *b, int bio_type); BIO *BIO_next(BIO *b); BIO *BIO_get_retry_BIO(BIO *bio, int *reason); int BIO_get_retry_reason(BIO *bio); BIO *BIO_dup_chain(BIO *in); int BIO_nread0(BIO *bio, char **buf); int BIO_nread(BIO *bio, char **buf, int num); int BIO_nwrite0(BIO *bio, char **buf); int BIO_nwrite(BIO *bio, char **buf, int num); long BIO_debug_callback(BIO *bio, int cmd, const char *argp, int argi, long argl, long ret); BIO_METHOD *BIO_s_mem(void); BIO *BIO_new_mem_buf(const void *buf, int len); BIO_METHOD *BIO_s_socket(void); BIO_METHOD *BIO_s_connect(void); BIO_METHOD *BIO_s_accept(void); BIO_METHOD *BIO_s_fd(void); # ifndef OPENSSL_SYS_OS2 BIO_METHOD *BIO_s_log(void); # endif BIO_METHOD *BIO_s_bio(void); BIO_METHOD *BIO_s_null(void); BIO_METHOD *BIO_f_null(void); BIO_METHOD *BIO_f_buffer(void); # ifdef OPENSSL_SYS_VMS BIO_METHOD *BIO_f_linebuffer(void); # endif BIO_METHOD *BIO_f_nbio_test(void); # ifndef OPENSSL_NO_DGRAM BIO_METHOD *BIO_s_datagram(void); # ifndef OPENSSL_NO_SCTP BIO_METHOD *BIO_s_datagram_sctp(void); # endif # endif /* BIO_METHOD *BIO_f_ber(void); */ int BIO_sock_should_retry(int i); int BIO_sock_non_fatal_error(int error); int BIO_dgram_non_fatal_error(int error); int BIO_fd_should_retry(int i); int BIO_fd_non_fatal_error(int error); int BIO_dump_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const char *s, int len); int BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u), void *u, const char *s, int len, int indent); int BIO_dump(BIO *b, const char *bytes, int len); int BIO_dump_indent(BIO *b, const char *bytes, int len, int indent); # ifndef OPENSSL_NO_FP_API int BIO_dump_fp(FILE *fp, const char *s, int len); int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent); # endif int BIO_hex_string(BIO *out, int indent, int width, unsigned char *data, int datalen); struct hostent *BIO_gethostbyname(const char *name); /*- * We might want a thread-safe interface too: * struct hostent *BIO_gethostbyname_r(const char *name, * struct hostent *result, void *buffer, size_t buflen); * or something similar (caller allocates a struct hostent, * pointed to by "result", and additional buffer space for the various * substructures; if the buffer does not suffice, NULL is returned * and an appropriate error code is set). */ int BIO_sock_error(int sock); int BIO_socket_ioctl(int fd, long type, void *arg); int BIO_socket_nbio(int fd, int mode); int BIO_get_port(const char *str, unsigned short *port_ptr); int BIO_get_host_ip(const char *str, unsigned char *ip); int BIO_get_accept_socket(char *host_port, int mode); int BIO_accept(int sock, char **ip_port); int BIO_sock_init(void); void BIO_sock_cleanup(void); int BIO_set_tcp_ndelay(int sock, int turn_on); BIO *BIO_new_socket(int sock, int close_flag); BIO *BIO_new_dgram(int fd, int close_flag); # ifndef OPENSSL_NO_SCTP BIO *BIO_new_dgram_sctp(int fd, int close_flag); int BIO_dgram_is_sctp(BIO *bio); int BIO_dgram_sctp_notification_cb(BIO *b, void (*handle_notifications) (BIO *bio, void *context, void *buf), void *context); int BIO_dgram_sctp_wait_for_dry(BIO *b); int BIO_dgram_sctp_msg_waiting(BIO *b); # endif BIO *BIO_new_fd(int fd, int close_flag); BIO *BIO_new_connect(const char *host_port); BIO *BIO_new_accept(const char *host_port); int BIO_new_bio_pair(BIO **bio1, size_t writebuf1, BIO **bio2, size_t writebuf2); /* * If successful, returns 1 and in *bio1, *bio2 two BIO pair endpoints. * Otherwise returns 0 and sets *bio1 and *bio2 to NULL. Size 0 uses default * value. */ void BIO_copy_next_retry(BIO *b); /* * long BIO_ghbn_ctrl(int cmd,int iarg,char *parg); */ # ifdef __GNUC__ # define __bio_h__attr__ __attribute__ # else # define __bio_h__attr__(x) # endif int BIO_printf(BIO *bio, const char *format, ...) __bio_h__attr__((__format__(__printf__, 2, 3))); int BIO_vprintf(BIO *bio, const char *format, va_list args) __bio_h__attr__((__format__(__printf__, 2, 0))); int BIO_snprintf(char *buf, size_t n, const char *format, ...) __bio_h__attr__((__format__(__printf__, 3, 4))); int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) __bio_h__attr__((__format__(__printf__, 3, 0))); # undef __bio_h__attr__ /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_BIO_strings(void); /* Error codes for the BIO functions. */ /* Function codes. */ # define BIO_F_ACPT_STATE 100 # define BIO_F_BIO_ACCEPT 101 # define BIO_F_BIO_BER_GET_HEADER 102 # define BIO_F_BIO_CALLBACK_CTRL 131 # define BIO_F_BIO_CTRL 103 # define BIO_F_BIO_GETHOSTBYNAME 120 # define BIO_F_BIO_GETS 104 # define BIO_F_BIO_GET_ACCEPT_SOCKET 105 # define BIO_F_BIO_GET_HOST_IP 106 # define BIO_F_BIO_GET_PORT 107 # define BIO_F_BIO_MAKE_PAIR 121 # define BIO_F_BIO_NEW 108 # define BIO_F_BIO_NEW_FILE 109 # define BIO_F_BIO_NEW_MEM_BUF 126 # define BIO_F_BIO_NREAD 123 # define BIO_F_BIO_NREAD0 124 # define BIO_F_BIO_NWRITE 125 # define BIO_F_BIO_NWRITE0 122 # define BIO_F_BIO_PUTS 110 # define BIO_F_BIO_READ 111 # define BIO_F_BIO_SOCK_INIT 112 # define BIO_F_BIO_WRITE 113 # define BIO_F_BUFFER_CTRL 114 # define BIO_F_CONN_CTRL 127 # define BIO_F_CONN_STATE 115 # define BIO_F_DGRAM_SCTP_READ 132 # define BIO_F_DGRAM_SCTP_WRITE 133 # define BIO_F_FILE_CTRL 116 # define BIO_F_FILE_READ 130 # define BIO_F_LINEBUFFER_CTRL 129 # define BIO_F_MEM_READ 128 # define BIO_F_MEM_WRITE 117 # define BIO_F_SSL_NEW 118 # define BIO_F_WSASTARTUP 119 /* Reason codes. */ # define BIO_R_ACCEPT_ERROR 100 # define BIO_R_BAD_FOPEN_MODE 101 # define BIO_R_BAD_HOSTNAME_LOOKUP 102 # define BIO_R_BROKEN_PIPE 124 # define BIO_R_CONNECT_ERROR 103 # define BIO_R_EOF_ON_MEMORY_BIO 127 # define BIO_R_ERROR_SETTING_NBIO 104 # define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPTED_SOCKET 105 # define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPT_SOCKET 106 # define BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET 107 # define BIO_R_INVALID_ARGUMENT 125 # define BIO_R_INVALID_IP_ADDRESS 108 # define BIO_R_IN_USE 123 # define BIO_R_KEEPALIVE 109 # define BIO_R_NBIO_CONNECT_ERROR 110 # define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111 # define BIO_R_NO_HOSTNAME_SPECIFIED 112 # define BIO_R_NO_PORT_DEFINED 113 # define BIO_R_NO_PORT_SPECIFIED 114 # define BIO_R_NO_SUCH_FILE 128 # define BIO_R_NULL_PARAMETER 115 # define BIO_R_TAG_MISMATCH 116 # define BIO_R_UNABLE_TO_BIND_SOCKET 117 # define BIO_R_UNABLE_TO_CREATE_SOCKET 118 # define BIO_R_UNABLE_TO_LISTEN_SOCKET 119 # define BIO_R_UNINITIALIZED 120 # define BIO_R_UNSUPPORTED_METHOD 121 # define BIO_R_WRITE_TO_READ_ONLY_BIO 126 # define BIO_R_WSASTARTUP 122 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/blowfish.h ================================================ /* crypto/bf/blowfish.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_BLOWFISH_H # define HEADER_BLOWFISH_H # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_NO_BF # error BF is disabled. # endif # define BF_ENCRYPT 1 # define BF_DECRYPT 0 /*- * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * ! BF_LONG has to be at least 32 bits wide. If it's wider, then ! * ! BF_LONG_LOG2 has to be defined along. ! * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ # if defined(__LP32__) # define BF_LONG unsigned long # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) # define BF_LONG unsigned long # define BF_LONG_LOG2 3 /* * _CRAY note. I could declare short, but I have no idea what impact * does it have on performance on none-T3E machines. I could declare * int, but at least on C90 sizeof(int) can be chosen at compile time. * So I've chosen long... * */ # else # define BF_LONG unsigned int # endif # define BF_ROUNDS 16 # define BF_BLOCK 8 typedef struct bf_key_st { BF_LONG P[BF_ROUNDS + 2]; BF_LONG S[4 * 256]; } BF_KEY; # ifdef OPENSSL_FIPS void private_BF_set_key(BF_KEY *key, int len, const unsigned char *data); # endif void BF_set_key(BF_KEY *key, int len, const unsigned char *data); void BF_encrypt(BF_LONG *data, const BF_KEY *key); void BF_decrypt(BF_LONG *data, const BF_KEY *key); void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, const BF_KEY *key, int enc); void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, const BF_KEY *schedule, unsigned char *ivec, int enc); void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, const BF_KEY *schedule, unsigned char *ivec, int *num, int enc); void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, const BF_KEY *schedule, unsigned char *ivec, int *num); const char *BF_options(void); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/bn.h ================================================ /* crypto/bn/bn.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * Portions of the attached software ("Contribution") are developed by * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. * * The Contribution is licensed pursuant to the Eric Young open source * license provided above. * * The binary polynomial arithmetic software is originally written by * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories. * */ #ifndef HEADER_BN_H # define HEADER_BN_H # include # include # ifndef OPENSSL_NO_FP_API # include /* FILE */ # endif # include # include #ifdef __cplusplus extern "C" { #endif /* * These preprocessor symbols control various aspects of the bignum headers * and library code. They're not defined by any "normal" configuration, as * they are intended for development and testing purposes. NB: defining all * three can be useful for debugging application code as well as openssl * itself. BN_DEBUG - turn on various debugging alterations to the bignum * code BN_DEBUG_RAND - uses random poisoning of unused words to trip up * mismanagement of bignum internals. You must also define BN_DEBUG. */ /* #define BN_DEBUG */ /* #define BN_DEBUG_RAND */ # ifndef OPENSSL_SMALL_FOOTPRINT # define BN_MUL_COMBA # define BN_SQR_COMBA # define BN_RECURSION # endif /* * This next option uses the C libraries (2 word)/(1 word) function. If it is * not defined, I use my C version (which is slower). The reason for this * flag is that when the particular C compiler library routine is used, and * the library is linked with a different compiler, the library is missing. * This mostly happens when the library is built with gcc and then linked * using normal cc. This would be a common occurrence because gcc normally * produces code that is 2 times faster than system compilers for the big * number stuff. For machines with only one compiler (or shared libraries), * this should be on. Again this in only really a problem on machines using * "long long's", are 32bit, and are not using my assembler code. */ # if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WINDOWS) || \ defined(OPENSSL_SYS_WIN32) || defined(linux) # ifndef BN_DIV2W # define BN_DIV2W # endif # endif /* * assuming long is 64bit - this is the DEC Alpha unsigned long long is only * 64 bits :-(, don't define BN_LLONG for the DEC Alpha */ # ifdef SIXTY_FOUR_BIT_LONG # define BN_ULLONG unsigned long long # define BN_ULONG unsigned long # define BN_LONG long # define BN_BITS 128 # define BN_BYTES 8 # define BN_BITS2 64 # define BN_BITS4 32 # define BN_MASK (0xffffffffffffffffffffffffffffffffLL) # define BN_MASK2 (0xffffffffffffffffL) # define BN_MASK2l (0xffffffffL) # define BN_MASK2h (0xffffffff00000000L) # define BN_MASK2h1 (0xffffffff80000000L) # define BN_TBIT (0x8000000000000000L) # define BN_DEC_CONV (10000000000000000000UL) # define BN_DEC_FMT1 "%lu" # define BN_DEC_FMT2 "%019lu" # define BN_DEC_NUM 19 # define BN_HEX_FMT1 "%lX" # define BN_HEX_FMT2 "%016lX" # endif /* * This is where the long long data type is 64 bits, but long is 32. For * machines where there are 64bit registers, this is the mode to use. IRIX, * on R4000 and above should use this mode, along with the relevant assembler * code :-). Do NOT define BN_LLONG. */ # ifdef SIXTY_FOUR_BIT # undef BN_LLONG # undef BN_ULLONG # define BN_ULONG unsigned long long # define BN_LONG long long # define BN_BITS 128 # define BN_BYTES 8 # define BN_BITS2 64 # define BN_BITS4 32 # define BN_MASK2 (0xffffffffffffffffLL) # define BN_MASK2l (0xffffffffL) # define BN_MASK2h (0xffffffff00000000LL) # define BN_MASK2h1 (0xffffffff80000000LL) # define BN_TBIT (0x8000000000000000LL) # define BN_DEC_CONV (10000000000000000000ULL) # define BN_DEC_FMT1 "%llu" # define BN_DEC_FMT2 "%019llu" # define BN_DEC_NUM 19 # define BN_HEX_FMT1 "%llX" # define BN_HEX_FMT2 "%016llX" # endif # ifdef THIRTY_TWO_BIT # ifdef BN_LLONG # if defined(_WIN32) && !defined(__GNUC__) # define BN_ULLONG unsigned __int64 # define BN_MASK (0xffffffffffffffffI64) # else # define BN_ULLONG unsigned long long # define BN_MASK (0xffffffffffffffffLL) # endif # endif # define BN_ULONG unsigned int # define BN_LONG int # define BN_BITS 64 # define BN_BYTES 4 # define BN_BITS2 32 # define BN_BITS4 16 # define BN_MASK2 (0xffffffffL) # define BN_MASK2l (0xffff) # define BN_MASK2h1 (0xffff8000L) # define BN_MASK2h (0xffff0000L) # define BN_TBIT (0x80000000L) # define BN_DEC_CONV (1000000000L) # define BN_DEC_FMT1 "%u" # define BN_DEC_FMT2 "%09u" # define BN_DEC_NUM 9 # define BN_HEX_FMT1 "%X" # define BN_HEX_FMT2 "%08X" # endif # define BN_DEFAULT_BITS 1280 # define BN_FLG_MALLOCED 0x01 # define BN_FLG_STATIC_DATA 0x02 /* * avoid leaking exponent information through timing, * BN_mod_exp_mont() will call BN_mod_exp_mont_consttime, * BN_div() will call BN_div_no_branch, * BN_mod_inverse() will call BN_mod_inverse_no_branch. */ # define BN_FLG_CONSTTIME 0x04 # ifdef OPENSSL_NO_DEPRECATED /* deprecated name for the flag */ # define BN_FLG_EXP_CONSTTIME BN_FLG_CONSTTIME /* * avoid leaking exponent information through timings * (BN_mod_exp_mont() will call BN_mod_exp_mont_consttime) */ # endif # ifndef OPENSSL_NO_DEPRECATED # define BN_FLG_FREE 0x8000 /* used for debuging */ # endif # define BN_set_flags(b,n) ((b)->flags|=(n)) # define BN_get_flags(b,n) ((b)->flags&(n)) /* * get a clone of a BIGNUM with changed flags, for *temporary* use only (the * two BIGNUMs cannot not be used in parallel!) */ # define BN_with_flags(dest,b,n) ((dest)->d=(b)->d, \ (dest)->top=(b)->top, \ (dest)->dmax=(b)->dmax, \ (dest)->neg=(b)->neg, \ (dest)->flags=(((dest)->flags & BN_FLG_MALLOCED) \ | ((b)->flags & ~BN_FLG_MALLOCED) \ | BN_FLG_STATIC_DATA \ | (n))) /* Already declared in ossl_typ.h */ # if 0 typedef struct bignum_st BIGNUM; /* Used for temp variables (declaration hidden in bn_lcl.h) */ typedef struct bignum_ctx BN_CTX; typedef struct bn_blinding_st BN_BLINDING; typedef struct bn_mont_ctx_st BN_MONT_CTX; typedef struct bn_recp_ctx_st BN_RECP_CTX; typedef struct bn_gencb_st BN_GENCB; # endif struct bignum_st { BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit * chunks. */ int top; /* Index of last used d +1. */ /* The next are internal book keeping for bn_expand. */ int dmax; /* Size of the d array. */ int neg; /* one if the number is negative */ int flags; }; /* Used for montgomery multiplication */ struct bn_mont_ctx_st { int ri; /* number of bits in R */ BIGNUM RR; /* used to convert to montgomery form */ BIGNUM N; /* The modulus */ BIGNUM Ni; /* R*(1/R mod N) - N*Ni = 1 (Ni is only * stored for bignum algorithm) */ BN_ULONG n0[2]; /* least significant word(s) of Ni; (type * changed with 0.9.9, was "BN_ULONG n0;" * before) */ int flags; }; /* * Used for reciprocal division/mod functions It cannot be shared between * threads */ struct bn_recp_ctx_st { BIGNUM N; /* the divisor */ BIGNUM Nr; /* the reciprocal */ int num_bits; int shift; int flags; }; /* Used for slow "generation" functions. */ struct bn_gencb_st { unsigned int ver; /* To handle binary (in)compatibility */ void *arg; /* callback-specific data */ union { /* if(ver==1) - handles old style callbacks */ void (*cb_1) (int, int, void *); /* if(ver==2) - new callback style */ int (*cb_2) (int, int, BN_GENCB *); } cb; }; /* Wrapper function to make using BN_GENCB easier, */ int BN_GENCB_call(BN_GENCB *cb, int a, int b); /* Macro to populate a BN_GENCB structure with an "old"-style callback */ # define BN_GENCB_set_old(gencb, callback, cb_arg) { \ BN_GENCB *tmp_gencb = (gencb); \ tmp_gencb->ver = 1; \ tmp_gencb->arg = (cb_arg); \ tmp_gencb->cb.cb_1 = (callback); } /* Macro to populate a BN_GENCB structure with a "new"-style callback */ # define BN_GENCB_set(gencb, callback, cb_arg) { \ BN_GENCB *tmp_gencb = (gencb); \ tmp_gencb->ver = 2; \ tmp_gencb->arg = (cb_arg); \ tmp_gencb->cb.cb_2 = (callback); } # define BN_prime_checks 0 /* default: select number of iterations based * on the size of the number */ /* * number of Miller-Rabin iterations for an error rate of less than 2^-80 for * random 'b'-bit input, b >= 100 (taken from table 4.4 in the Handbook of * Applied Cryptography [Menezes, van Oorschot, Vanstone; CRC Press 1996]; * original paper: Damgaard, Landrock, Pomerance: Average case error * estimates for the strong probable prime test. -- Math. Comp. 61 (1993) * 177-194) */ # define BN_prime_checks_for_size(b) ((b) >= 1300 ? 2 : \ (b) >= 850 ? 3 : \ (b) >= 650 ? 4 : \ (b) >= 550 ? 5 : \ (b) >= 450 ? 6 : \ (b) >= 400 ? 7 : \ (b) >= 350 ? 8 : \ (b) >= 300 ? 9 : \ (b) >= 250 ? 12 : \ (b) >= 200 ? 15 : \ (b) >= 150 ? 18 : \ /* b >= 100 */ 27) # define BN_num_bytes(a) ((BN_num_bits(a)+7)/8) /* Note that BN_abs_is_word didn't work reliably for w == 0 until 0.9.8 */ # define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \ (((w) == 0) && ((a)->top == 0))) # define BN_is_zero(a) ((a)->top == 0) # define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg) # define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg)) # define BN_is_odd(a) (((a)->top > 0) && ((a)->d[0] & 1)) # define BN_one(a) (BN_set_word((a),1)) # define BN_zero_ex(a) \ do { \ BIGNUM *_tmp_bn = (a); \ _tmp_bn->top = 0; \ _tmp_bn->neg = 0; \ } while(0) # ifdef OPENSSL_NO_DEPRECATED # define BN_zero(a) BN_zero_ex(a) # else # define BN_zero(a) (BN_set_word((a),0)) # endif const BIGNUM *BN_value_one(void); char *BN_options(void); BN_CTX *BN_CTX_new(void); # ifndef OPENSSL_NO_DEPRECATED void BN_CTX_init(BN_CTX *c); # endif void BN_CTX_free(BN_CTX *c); void BN_CTX_start(BN_CTX *ctx); BIGNUM *BN_CTX_get(BN_CTX *ctx); void BN_CTX_end(BN_CTX *ctx); int BN_rand(BIGNUM *rnd, int bits, int top, int bottom); int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom); int BN_rand_range(BIGNUM *rnd, const BIGNUM *range); int BN_pseudo_rand_range(BIGNUM *rnd, const BIGNUM *range); int BN_num_bits(const BIGNUM *a); int BN_num_bits_word(BN_ULONG); BIGNUM *BN_new(void); void BN_init(BIGNUM *); void BN_clear_free(BIGNUM *a); BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b); void BN_swap(BIGNUM *a, BIGNUM *b); BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret); int BN_bn2bin(const BIGNUM *a, unsigned char *to); BIGNUM *BN_mpi2bn(const unsigned char *s, int len, BIGNUM *ret); int BN_bn2mpi(const BIGNUM *a, unsigned char *to); int BN_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); int BN_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx); /** BN_set_negative sets sign of a BIGNUM * \param b pointer to the BIGNUM object * \param n 0 if the BIGNUM b should be positive and a value != 0 otherwise */ void BN_set_negative(BIGNUM *b, int n); /** BN_is_negative returns 1 if the BIGNUM is negative * \param a pointer to the BIGNUM object * \return 1 if a < 0 and 0 otherwise */ # define BN_is_negative(a) ((a)->neg != 0) int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx); # define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx)) int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx); int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx); int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m); int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx); int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m); int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx); int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx); int BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx); int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m); int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, BN_CTX *ctx); int BN_mod_lshift_quick(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m); BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w); BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w); int BN_mul_word(BIGNUM *a, BN_ULONG w); int BN_add_word(BIGNUM *a, BN_ULONG w); int BN_sub_word(BIGNUM *a, BN_ULONG w); int BN_set_word(BIGNUM *a, BN_ULONG w); BN_ULONG BN_get_word(const BIGNUM *a); int BN_cmp(const BIGNUM *a, const BIGNUM *b); void BN_free(BIGNUM *a); int BN_is_bit_set(const BIGNUM *a, int n); int BN_lshift(BIGNUM *r, const BIGNUM *a, int n); int BN_lshift1(BIGNUM *r, const BIGNUM *a); int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx); int BN_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont); int BN_mod_exp_mont_word(BIGNUM *r, BN_ULONG a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int BN_mod_exp2_mont(BIGNUM *r, const BIGNUM *a1, const BIGNUM *p1, const BIGNUM *a2, const BIGNUM *p2, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int BN_mod_exp_simple(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx); int BN_mask_bits(BIGNUM *a, int n); # ifndef OPENSSL_NO_FP_API int BN_print_fp(FILE *fp, const BIGNUM *a); # endif # ifdef HEADER_BIO_H int BN_print(BIO *fp, const BIGNUM *a); # else int BN_print(void *fp, const BIGNUM *a); # endif int BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx); int BN_rshift(BIGNUM *r, const BIGNUM *a, int n); int BN_rshift1(BIGNUM *r, const BIGNUM *a); void BN_clear(BIGNUM *a); BIGNUM *BN_dup(const BIGNUM *a); int BN_ucmp(const BIGNUM *a, const BIGNUM *b); int BN_set_bit(BIGNUM *a, int n); int BN_clear_bit(BIGNUM *a, int n); char *BN_bn2hex(const BIGNUM *a); char *BN_bn2dec(const BIGNUM *a); int BN_hex2bn(BIGNUM **a, const char *str); int BN_dec2bn(BIGNUM **a, const char *str); int BN_asc2bn(BIGNUM **a, const char *str); int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); /* returns * -2 for * error */ BIGNUM *BN_mod_inverse(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx); BIGNUM *BN_mod_sqrt(BIGNUM *ret, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx); void BN_consttime_swap(BN_ULONG swap, BIGNUM *a, BIGNUM *b, int nwords); /* Deprecated versions */ # ifndef OPENSSL_NO_DEPRECATED BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, void (*callback) (int, int, void *), void *cb_arg); int BN_is_prime(const BIGNUM *p, int nchecks, void (*callback) (int, int, void *), BN_CTX *ctx, void *cb_arg); int BN_is_prime_fasttest(const BIGNUM *p, int nchecks, void (*callback) (int, int, void *), BN_CTX *ctx, void *cb_arg, int do_trial_division); # endif /* !defined(OPENSSL_NO_DEPRECATED) */ /* Newer versions */ int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb); int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb); int BN_is_prime_fasttest_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, int do_trial_division, BN_GENCB *cb); int BN_X931_generate_Xpq(BIGNUM *Xp, BIGNUM *Xq, int nbits, BN_CTX *ctx); int BN_X931_derive_prime_ex(BIGNUM *p, BIGNUM *p1, BIGNUM *p2, const BIGNUM *Xp, const BIGNUM *Xp1, const BIGNUM *Xp2, const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); int BN_X931_generate_prime_ex(BIGNUM *p, BIGNUM *p1, BIGNUM *p2, BIGNUM *Xp1, BIGNUM *Xp2, const BIGNUM *Xp, const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb); BN_MONT_CTX *BN_MONT_CTX_new(void); void BN_MONT_CTX_init(BN_MONT_CTX *ctx); int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_MONT_CTX *mont, BN_CTX *ctx); # define BN_to_montgomery(r,a,mont,ctx) BN_mod_mul_montgomery(\ (r),(a),&((mont)->RR),(mont),(ctx)) int BN_from_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx); void BN_MONT_CTX_free(BN_MONT_CTX *mont); int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx); BN_MONT_CTX *BN_MONT_CTX_copy(BN_MONT_CTX *to, BN_MONT_CTX *from); BN_MONT_CTX *BN_MONT_CTX_set_locked(BN_MONT_CTX **pmont, int lock, const BIGNUM *mod, BN_CTX *ctx); /* BN_BLINDING flags */ # define BN_BLINDING_NO_UPDATE 0x00000001 # define BN_BLINDING_NO_RECREATE 0x00000002 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod); void BN_BLINDING_free(BN_BLINDING *b); int BN_BLINDING_update(BN_BLINDING *b, BN_CTX *ctx); int BN_BLINDING_convert(BIGNUM *n, BN_BLINDING *b, BN_CTX *ctx); int BN_BLINDING_invert(BIGNUM *n, BN_BLINDING *b, BN_CTX *ctx); int BN_BLINDING_convert_ex(BIGNUM *n, BIGNUM *r, BN_BLINDING *b, BN_CTX *); int BN_BLINDING_invert_ex(BIGNUM *n, const BIGNUM *r, BN_BLINDING *b, BN_CTX *); # ifndef OPENSSL_NO_DEPRECATED unsigned long BN_BLINDING_get_thread_id(const BN_BLINDING *); void BN_BLINDING_set_thread_id(BN_BLINDING *, unsigned long); # endif CRYPTO_THREADID *BN_BLINDING_thread_id(BN_BLINDING *); unsigned long BN_BLINDING_get_flags(const BN_BLINDING *); void BN_BLINDING_set_flags(BN_BLINDING *, unsigned long); BN_BLINDING *BN_BLINDING_create_param(BN_BLINDING *b, const BIGNUM *e, BIGNUM *m, BN_CTX *ctx, int (*bn_mod_exp) (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx), BN_MONT_CTX *m_ctx); # ifndef OPENSSL_NO_DEPRECATED void BN_set_params(int mul, int high, int low, int mont); int BN_get_params(int which); /* 0, mul, 1 high, 2 low, 3 mont */ # endif void BN_RECP_CTX_init(BN_RECP_CTX *recp); BN_RECP_CTX *BN_RECP_CTX_new(void); void BN_RECP_CTX_free(BN_RECP_CTX *recp); int BN_RECP_CTX_set(BN_RECP_CTX *recp, const BIGNUM *rdiv, BN_CTX *ctx); int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y, BN_RECP_CTX *recp, BN_CTX *ctx); int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx); int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, BN_RECP_CTX *recp, BN_CTX *ctx); # ifndef OPENSSL_NO_EC2M /* * Functions for arithmetic over binary polynomials represented by BIGNUMs. * The BIGNUM::neg property of BIGNUMs representing binary polynomials is * ignored. Note that input arguments are not const so that their bit arrays * can be expanded to the appropriate size if needed. */ /* * r = a + b */ int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b); # define BN_GF2m_sub(r, a, b) BN_GF2m_add(r, a, b) /* * r=a mod p */ int BN_GF2m_mod(BIGNUM *r, const BIGNUM *a, const BIGNUM *p); /* r = (a * b) mod p */ int BN_GF2m_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *p, BN_CTX *ctx); /* r = (a * a) mod p */ int BN_GF2m_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); /* r = (1 / b) mod p */ int BN_GF2m_mod_inv(BIGNUM *r, const BIGNUM *b, const BIGNUM *p, BN_CTX *ctx); /* r = (a / b) mod p */ int BN_GF2m_mod_div(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *p, BN_CTX *ctx); /* r = (a ^ b) mod p */ int BN_GF2m_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *p, BN_CTX *ctx); /* r = sqrt(a) mod p */ int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); /* r^2 + r = a mod p */ int BN_GF2m_mod_solve_quad(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); # define BN_GF2m_cmp(a, b) BN_ucmp((a), (b)) /*- * Some functions allow for representation of the irreducible polynomials * as an unsigned int[], say p. The irreducible f(t) is then of the form: * t^p[0] + t^p[1] + ... + t^p[k] * where m = p[0] > p[1] > ... > p[k] = 0. */ /* r = a mod p */ int BN_GF2m_mod_arr(BIGNUM *r, const BIGNUM *a, const int p[]); /* r = (a * b) mod p */ int BN_GF2m_mod_mul_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const int p[], BN_CTX *ctx); /* r = (a * a) mod p */ int BN_GF2m_mod_sqr_arr(BIGNUM *r, const BIGNUM *a, const int p[], BN_CTX *ctx); /* r = (1 / b) mod p */ int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *b, const int p[], BN_CTX *ctx); /* r = (a / b) mod p */ int BN_GF2m_mod_div_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const int p[], BN_CTX *ctx); /* r = (a ^ b) mod p */ int BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const int p[], BN_CTX *ctx); /* r = sqrt(a) mod p */ int BN_GF2m_mod_sqrt_arr(BIGNUM *r, const BIGNUM *a, const int p[], BN_CTX *ctx); /* r^2 + r = a mod p */ int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a, const int p[], BN_CTX *ctx); int BN_GF2m_poly2arr(const BIGNUM *a, int p[], int max); int BN_GF2m_arr2poly(const int p[], BIGNUM *a); # endif /* * faster mod functions for the 'NIST primes' 0 <= a < p^2 */ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); const BIGNUM *BN_get0_nist_prime_192(void); const BIGNUM *BN_get0_nist_prime_224(void); const BIGNUM *BN_get0_nist_prime_256(void); const BIGNUM *BN_get0_nist_prime_384(void); const BIGNUM *BN_get0_nist_prime_521(void); /* library internal functions */ # define bn_expand(a,bits) \ ( \ bits > (INT_MAX - BN_BITS2 + 1) ? \ NULL \ : \ (((bits+BN_BITS2-1)/BN_BITS2) <= (a)->dmax) ? \ (a) \ : \ bn_expand2((a),(bits+BN_BITS2-1)/BN_BITS2) \ ) # define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) BIGNUM *bn_expand2(BIGNUM *a, int words); # ifndef OPENSSL_NO_DEPRECATED BIGNUM *bn_dup_expand(const BIGNUM *a, int words); /* unused */ # endif /*- * Bignum consistency macros * There is one "API" macro, bn_fix_top(), for stripping leading zeroes from * bignum data after direct manipulations on the data. There is also an * "internal" macro, bn_check_top(), for verifying that there are no leading * zeroes. Unfortunately, some auditing is required due to the fact that * bn_fix_top() has become an overabused duct-tape because bignum data is * occasionally passed around in an inconsistent state. So the following * changes have been made to sort this out; * - bn_fix_top()s implementation has been moved to bn_correct_top() * - if BN_DEBUG isn't defined, bn_fix_top() maps to bn_correct_top(), and * bn_check_top() is as before. * - if BN_DEBUG *is* defined; * - bn_check_top() tries to pollute unused words even if the bignum 'top' is * consistent. (ed: only if BN_DEBUG_RAND is defined) * - bn_fix_top() maps to bn_check_top() rather than "fixing" anything. * The idea is to have debug builds flag up inconsistent bignums when they * occur. If that occurs in a bn_fix_top(), we examine the code in question; if * the use of bn_fix_top() was appropriate (ie. it follows directly after code * that manipulates the bignum) it is converted to bn_correct_top(), and if it * was not appropriate, we convert it permanently to bn_check_top() and track * down the cause of the bug. Eventually, no internal code should be using the * bn_fix_top() macro. External applications and libraries should try this with * their own code too, both in terms of building against the openssl headers * with BN_DEBUG defined *and* linking with a version of OpenSSL built with it * defined. This not only improves external code, it provides more test * coverage for openssl's own code. */ # ifdef BN_DEBUG /* We only need assert() when debugging */ # include # ifdef BN_DEBUG_RAND /* To avoid "make update" cvs wars due to BN_DEBUG, use some tricks */ # ifndef RAND_pseudo_bytes int RAND_pseudo_bytes(unsigned char *buf, int num); # define BN_DEBUG_TRIX # endif # define bn_pollute(a) \ do { \ const BIGNUM *_bnum1 = (a); \ if(_bnum1->top < _bnum1->dmax) { \ unsigned char _tmp_char; \ /* We cast away const without the compiler knowing, any \ * *genuinely* constant variables that aren't mutable \ * wouldn't be constructed with top!=dmax. */ \ BN_ULONG *_not_const; \ memcpy(&_not_const, &_bnum1->d, sizeof(BN_ULONG*)); \ /* Debug only - safe to ignore error return */ \ RAND_pseudo_bytes(&_tmp_char, 1); \ memset((unsigned char *)(_not_const + _bnum1->top), _tmp_char, \ (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \ } \ } while(0) # ifdef BN_DEBUG_TRIX # undef RAND_pseudo_bytes # endif # else # define bn_pollute(a) # endif # define bn_check_top(a) \ do { \ const BIGNUM *_bnum2 = (a); \ if (_bnum2 != NULL) { \ assert((_bnum2->top == 0) || \ (_bnum2->d[_bnum2->top - 1] != 0)); \ bn_pollute(_bnum2); \ } \ } while(0) # define bn_fix_top(a) bn_check_top(a) # define bn_check_size(bn, bits) bn_wcheck_size(bn, ((bits+BN_BITS2-1))/BN_BITS2) # define bn_wcheck_size(bn, words) \ do { \ const BIGNUM *_bnum2 = (bn); \ assert((words) <= (_bnum2)->dmax && (words) >= (_bnum2)->top); \ /* avoid unused variable warning with NDEBUG */ \ (void)(_bnum2); \ } while(0) # else /* !BN_DEBUG */ # define bn_pollute(a) # define bn_check_top(a) # define bn_fix_top(a) bn_correct_top(a) # define bn_check_size(bn, bits) # define bn_wcheck_size(bn, words) # endif # define bn_correct_top(a) \ { \ BN_ULONG *ftl; \ int tmp_top = (a)->top; \ if (tmp_top > 0) \ { \ for (ftl= &((a)->d[tmp_top-1]); tmp_top > 0; tmp_top--) \ if (*(ftl--)) break; \ (a)->top = tmp_top; \ } \ if ((a)->top == 0) \ (a)->neg = 0; \ bn_pollute(a); \ } BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w); BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w); void bn_sqr_words(BN_ULONG *rp, const BN_ULONG *ap, int num); BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d); BN_ULONG bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, int num); BN_ULONG bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, int num); /* Primes from RFC 2409 */ BIGNUM *get_rfc2409_prime_768(BIGNUM *bn); BIGNUM *get_rfc2409_prime_1024(BIGNUM *bn); /* Primes from RFC 3526 */ BIGNUM *get_rfc3526_prime_1536(BIGNUM *bn); BIGNUM *get_rfc3526_prime_2048(BIGNUM *bn); BIGNUM *get_rfc3526_prime_3072(BIGNUM *bn); BIGNUM *get_rfc3526_prime_4096(BIGNUM *bn); BIGNUM *get_rfc3526_prime_6144(BIGNUM *bn); BIGNUM *get_rfc3526_prime_8192(BIGNUM *bn); int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_BN_strings(void); /* Error codes for the BN functions. */ /* Function codes. */ # define BN_F_BNRAND 127 # define BN_F_BN_BLINDING_CONVERT_EX 100 # define BN_F_BN_BLINDING_CREATE_PARAM 128 # define BN_F_BN_BLINDING_INVERT_EX 101 # define BN_F_BN_BLINDING_NEW 102 # define BN_F_BN_BLINDING_UPDATE 103 # define BN_F_BN_BN2DEC 104 # define BN_F_BN_BN2HEX 105 # define BN_F_BN_CTX_GET 116 # define BN_F_BN_CTX_NEW 106 # define BN_F_BN_CTX_START 129 # define BN_F_BN_DIV 107 # define BN_F_BN_DIV_NO_BRANCH 138 # define BN_F_BN_DIV_RECP 130 # define BN_F_BN_EXP 123 # define BN_F_BN_EXPAND2 108 # define BN_F_BN_EXPAND_INTERNAL 120 # define BN_F_BN_GF2M_MOD 131 # define BN_F_BN_GF2M_MOD_EXP 132 # define BN_F_BN_GF2M_MOD_MUL 133 # define BN_F_BN_GF2M_MOD_SOLVE_QUAD 134 # define BN_F_BN_GF2M_MOD_SOLVE_QUAD_ARR 135 # define BN_F_BN_GF2M_MOD_SQR 136 # define BN_F_BN_GF2M_MOD_SQRT 137 # define BN_F_BN_LSHIFT 145 # define BN_F_BN_MOD_EXP2_MONT 118 # define BN_F_BN_MOD_EXP_MONT 109 # define BN_F_BN_MOD_EXP_MONT_CONSTTIME 124 # define BN_F_BN_MOD_EXP_MONT_WORD 117 # define BN_F_BN_MOD_EXP_RECP 125 # define BN_F_BN_MOD_EXP_SIMPLE 126 # define BN_F_BN_MOD_INVERSE 110 # define BN_F_BN_MOD_INVERSE_NO_BRANCH 139 # define BN_F_BN_MOD_LSHIFT_QUICK 119 # define BN_F_BN_MOD_MUL_RECIPROCAL 111 # define BN_F_BN_MOD_SQRT 121 # define BN_F_BN_MPI2BN 112 # define BN_F_BN_NEW 113 # define BN_F_BN_RAND 114 # define BN_F_BN_RAND_RANGE 122 # define BN_F_BN_RSHIFT 146 # define BN_F_BN_USUB 115 /* Reason codes. */ # define BN_R_ARG2_LT_ARG3 100 # define BN_R_BAD_RECIPROCAL 101 # define BN_R_BIGNUM_TOO_LONG 114 # define BN_R_BITS_TOO_SMALL 118 # define BN_R_CALLED_WITH_EVEN_MODULUS 102 # define BN_R_DIV_BY_ZERO 103 # define BN_R_ENCODING_ERROR 104 # define BN_R_EXPAND_ON_STATIC_BIGNUM_DATA 105 # define BN_R_INPUT_NOT_REDUCED 110 # define BN_R_INVALID_LENGTH 106 # define BN_R_INVALID_RANGE 115 # define BN_R_INVALID_SHIFT 119 # define BN_R_NOT_A_SQUARE 111 # define BN_R_NOT_INITIALIZED 107 # define BN_R_NO_INVERSE 108 # define BN_R_NO_SOLUTION 116 # define BN_R_P_IS_NOT_PRIME 112 # define BN_R_TOO_MANY_ITERATIONS 113 # define BN_R_TOO_MANY_TEMPORARY_VARIABLES 109 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/buffer.h ================================================ /* crypto/buffer/buffer.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_BUFFER_H # define HEADER_BUFFER_H # include #ifdef __cplusplus extern "C" { #endif # include # if !defined(NO_SYS_TYPES_H) # include # endif /* Already declared in ossl_typ.h */ /* typedef struct buf_mem_st BUF_MEM; */ struct buf_mem_st { size_t length; /* current number of bytes */ char *data; size_t max; /* size of buffer */ }; BUF_MEM *BUF_MEM_new(void); void BUF_MEM_free(BUF_MEM *a); int BUF_MEM_grow(BUF_MEM *str, size_t len); int BUF_MEM_grow_clean(BUF_MEM *str, size_t len); size_t BUF_strnlen(const char *str, size_t maxlen); char *BUF_strdup(const char *str); /* * Like strndup, but in addition, explicitly guarantees to never read past the * first |siz| bytes of |str|. */ char *BUF_strndup(const char *str, size_t siz); void *BUF_memdup(const void *data, size_t siz); void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz); /* safe string functions */ size_t BUF_strlcpy(char *dst, const char *src, size_t siz); size_t BUF_strlcat(char *dst, const char *src, size_t siz); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_BUF_strings(void); /* Error codes for the BUF functions. */ /* Function codes. */ # define BUF_F_BUF_MEMDUP 103 # define BUF_F_BUF_MEM_GROW 100 # define BUF_F_BUF_MEM_GROW_CLEAN 105 # define BUF_F_BUF_MEM_NEW 101 # define BUF_F_BUF_STRDUP 102 # define BUF_F_BUF_STRNDUP 104 /* Reason codes. */ #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/camellia.h ================================================ /* crypto/camellia/camellia.h */ /* ==================================================================== * Copyright (c) 2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * */ #ifndef HEADER_CAMELLIA_H # define HEADER_CAMELLIA_H # include # ifdef OPENSSL_NO_CAMELLIA # error CAMELLIA is disabled. # endif # include # define CAMELLIA_ENCRYPT 1 # define CAMELLIA_DECRYPT 0 /* * Because array size can't be a const in C, the following two are macros. * Both sizes are in bytes. */ #ifdef __cplusplus extern "C" { #endif /* This should be a hidden type, but EVP requires that the size be known */ # define CAMELLIA_BLOCK_SIZE 16 # define CAMELLIA_TABLE_BYTE_LEN 272 # define CAMELLIA_TABLE_WORD_LEN (CAMELLIA_TABLE_BYTE_LEN / 4) typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match * with WORD */ struct camellia_key_st { union { double d; /* ensures 64-bit align */ KEY_TABLE_TYPE rd_key; } u; int grand_rounds; }; typedef struct camellia_key_st CAMELLIA_KEY; # ifdef OPENSSL_FIPS int private_Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key); # endif int Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key); void Camellia_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key); void Camellia_decrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key); void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key, const int enc); void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, const int enc); void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc); void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc); void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num, const int enc); void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char *ivec, int *num); void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const CAMELLIA_KEY *key, unsigned char ivec[CAMELLIA_BLOCK_SIZE], unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], unsigned int *num); #ifdef __cplusplus } #endif #endif /* !HEADER_Camellia_H */ ================================================ FILE: third_party/include/openssl/cast.h ================================================ /* crypto/cast/cast.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_CAST_H # define HEADER_CAST_H #ifdef __cplusplus extern "C" { #endif # include # ifdef OPENSSL_NO_CAST # error CAST is disabled. # endif # define CAST_ENCRYPT 1 # define CAST_DECRYPT 0 # define CAST_LONG unsigned int # define CAST_BLOCK 8 # define CAST_KEY_LENGTH 16 typedef struct cast_key_st { CAST_LONG data[32]; int short_key; /* Use reduced rounds for short key */ } CAST_KEY; # ifdef OPENSSL_FIPS void private_CAST_set_key(CAST_KEY *key, int len, const unsigned char *data); # endif void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data); void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, const CAST_KEY *key, int enc); void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key); void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key); void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, const CAST_KEY *ks, unsigned char *iv, int enc); void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, const CAST_KEY *schedule, unsigned char *ivec, int *num, int enc); void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, const CAST_KEY *schedule, unsigned char *ivec, int *num); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/cmac.h ================================================ /* crypto/cmac/cmac.h */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ /* ==================================================================== * Copyright (c) 2010 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== */ #ifndef HEADER_CMAC_H # define HEADER_CMAC_H #ifdef __cplusplus extern "C" { #endif # include /* Opaque */ typedef struct CMAC_CTX_st CMAC_CTX; CMAC_CTX *CMAC_CTX_new(void); void CMAC_CTX_cleanup(CMAC_CTX *ctx); void CMAC_CTX_free(CMAC_CTX *ctx); EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx); int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in); int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen, const EVP_CIPHER *cipher, ENGINE *impl); int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen); int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen); int CMAC_resume(CMAC_CTX *ctx); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/cms.h ================================================ /* crypto/cms/cms.h */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== */ #ifndef HEADER_CMS_H # define HEADER_CMS_H # include # ifdef OPENSSL_NO_CMS # error CMS is disabled. # endif #ifdef __cplusplus extern "C" { #endif typedef struct CMS_ContentInfo_st CMS_ContentInfo; typedef struct CMS_SignerInfo_st CMS_SignerInfo; typedef struct CMS_CertificateChoices CMS_CertificateChoices; typedef struct CMS_RevocationInfoChoice_st CMS_RevocationInfoChoice; typedef struct CMS_RecipientInfo_st CMS_RecipientInfo; typedef struct CMS_ReceiptRequest_st CMS_ReceiptRequest; typedef struct CMS_Receipt_st CMS_Receipt; typedef struct CMS_RecipientEncryptedKey_st CMS_RecipientEncryptedKey; typedef struct CMS_OtherKeyAttribute_st CMS_OtherKeyAttribute; DECLARE_STACK_OF(CMS_SignerInfo) DECLARE_STACK_OF(GENERAL_NAMES) DECLARE_STACK_OF(CMS_RecipientEncryptedKey) DECLARE_ASN1_FUNCTIONS(CMS_ContentInfo) DECLARE_ASN1_FUNCTIONS(CMS_ReceiptRequest) DECLARE_ASN1_PRINT_FUNCTION(CMS_ContentInfo) # define CMS_SIGNERINFO_ISSUER_SERIAL 0 # define CMS_SIGNERINFO_KEYIDENTIFIER 1 # define CMS_RECIPINFO_NONE -1 # define CMS_RECIPINFO_TRANS 0 # define CMS_RECIPINFO_AGREE 1 # define CMS_RECIPINFO_KEK 2 # define CMS_RECIPINFO_PASS 3 # define CMS_RECIPINFO_OTHER 4 /* S/MIME related flags */ # define CMS_TEXT 0x1 # define CMS_NOCERTS 0x2 # define CMS_NO_CONTENT_VERIFY 0x4 # define CMS_NO_ATTR_VERIFY 0x8 # define CMS_NOSIGS \ (CMS_NO_CONTENT_VERIFY|CMS_NO_ATTR_VERIFY) # define CMS_NOINTERN 0x10 # define CMS_NO_SIGNER_CERT_VERIFY 0x20 # define CMS_NOVERIFY 0x20 # define CMS_DETACHED 0x40 # define CMS_BINARY 0x80 # define CMS_NOATTR 0x100 # define CMS_NOSMIMECAP 0x200 # define CMS_NOOLDMIMETYPE 0x400 # define CMS_CRLFEOL 0x800 # define CMS_STREAM 0x1000 # define CMS_NOCRL 0x2000 # define CMS_PARTIAL 0x4000 # define CMS_REUSE_DIGEST 0x8000 # define CMS_USE_KEYID 0x10000 # define CMS_DEBUG_DECRYPT 0x20000 # define CMS_KEY_PARAM 0x40000 const ASN1_OBJECT *CMS_get0_type(CMS_ContentInfo *cms); BIO *CMS_dataInit(CMS_ContentInfo *cms, BIO *icont); int CMS_dataFinal(CMS_ContentInfo *cms, BIO *bio); ASN1_OCTET_STRING **CMS_get0_content(CMS_ContentInfo *cms); int CMS_is_detached(CMS_ContentInfo *cms); int CMS_set_detached(CMS_ContentInfo *cms, int detached); # ifdef HEADER_PEM_H DECLARE_PEM_rw_const(CMS, CMS_ContentInfo) # endif int CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms); CMS_ContentInfo *d2i_CMS_bio(BIO *bp, CMS_ContentInfo **cms); int i2d_CMS_bio(BIO *bp, CMS_ContentInfo *cms); BIO *BIO_new_CMS(BIO *out, CMS_ContentInfo *cms); int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags); int PEM_write_bio_CMS_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags); CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont); int SMIME_write_CMS(BIO *bio, CMS_ContentInfo *cms, BIO *data, int flags); int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, unsigned int flags); CMS_ContentInfo *CMS_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, unsigned int flags); CMS_ContentInfo *CMS_sign_receipt(CMS_SignerInfo *si, X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, unsigned int flags); int CMS_data(CMS_ContentInfo *cms, BIO *out, unsigned int flags); CMS_ContentInfo *CMS_data_create(BIO *in, unsigned int flags); int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out, unsigned int flags); CMS_ContentInfo *CMS_digest_create(BIO *in, const EVP_MD *md, unsigned int flags); int CMS_EncryptedData_decrypt(CMS_ContentInfo *cms, const unsigned char *key, size_t keylen, BIO *dcont, BIO *out, unsigned int flags); CMS_ContentInfo *CMS_EncryptedData_encrypt(BIO *in, const EVP_CIPHER *cipher, const unsigned char *key, size_t keylen, unsigned int flags); int CMS_EncryptedData_set1_key(CMS_ContentInfo *cms, const EVP_CIPHER *ciph, const unsigned char *key, size_t keylen); int CMS_verify(CMS_ContentInfo *cms, STACK_OF(X509) *certs, X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags); int CMS_verify_receipt(CMS_ContentInfo *rcms, CMS_ContentInfo *ocms, STACK_OF(X509) *certs, X509_STORE *store, unsigned int flags); STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms); CMS_ContentInfo *CMS_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, unsigned int flags); int CMS_decrypt(CMS_ContentInfo *cms, EVP_PKEY *pkey, X509 *cert, BIO *dcont, BIO *out, unsigned int flags); int CMS_decrypt_set1_pkey(CMS_ContentInfo *cms, EVP_PKEY *pk, X509 *cert); int CMS_decrypt_set1_key(CMS_ContentInfo *cms, unsigned char *key, size_t keylen, unsigned char *id, size_t idlen); int CMS_decrypt_set1_password(CMS_ContentInfo *cms, unsigned char *pass, ossl_ssize_t passlen); STACK_OF(CMS_RecipientInfo) *CMS_get0_RecipientInfos(CMS_ContentInfo *cms); int CMS_RecipientInfo_type(CMS_RecipientInfo *ri); EVP_PKEY_CTX *CMS_RecipientInfo_get0_pkey_ctx(CMS_RecipientInfo *ri); CMS_ContentInfo *CMS_EnvelopedData_create(const EVP_CIPHER *cipher); CMS_RecipientInfo *CMS_add1_recipient_cert(CMS_ContentInfo *cms, X509 *recip, unsigned int flags); int CMS_RecipientInfo_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pkey); int CMS_RecipientInfo_ktri_cert_cmp(CMS_RecipientInfo *ri, X509 *cert); int CMS_RecipientInfo_ktri_get0_algs(CMS_RecipientInfo *ri, EVP_PKEY **pk, X509 **recip, X509_ALGOR **palg); int CMS_RecipientInfo_ktri_get0_signer_id(CMS_RecipientInfo *ri, ASN1_OCTET_STRING **keyid, X509_NAME **issuer, ASN1_INTEGER **sno); CMS_RecipientInfo *CMS_add0_recipient_key(CMS_ContentInfo *cms, int nid, unsigned char *key, size_t keylen, unsigned char *id, size_t idlen, ASN1_GENERALIZEDTIME *date, ASN1_OBJECT *otherTypeId, ASN1_TYPE *otherType); int CMS_RecipientInfo_kekri_get0_id(CMS_RecipientInfo *ri, X509_ALGOR **palg, ASN1_OCTET_STRING **pid, ASN1_GENERALIZEDTIME **pdate, ASN1_OBJECT **potherid, ASN1_TYPE **pothertype); int CMS_RecipientInfo_set0_key(CMS_RecipientInfo *ri, unsigned char *key, size_t keylen); int CMS_RecipientInfo_kekri_id_cmp(CMS_RecipientInfo *ri, const unsigned char *id, size_t idlen); int CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, unsigned char *pass, ossl_ssize_t passlen); CMS_RecipientInfo *CMS_add0_recipient_password(CMS_ContentInfo *cms, int iter, int wrap_nid, int pbe_nid, unsigned char *pass, ossl_ssize_t passlen, const EVP_CIPHER *kekciph); int CMS_RecipientInfo_decrypt(CMS_ContentInfo *cms, CMS_RecipientInfo *ri); int CMS_RecipientInfo_encrypt(CMS_ContentInfo *cms, CMS_RecipientInfo *ri); int CMS_uncompress(CMS_ContentInfo *cms, BIO *dcont, BIO *out, unsigned int flags); CMS_ContentInfo *CMS_compress(BIO *in, int comp_nid, unsigned int flags); int CMS_set1_eContentType(CMS_ContentInfo *cms, const ASN1_OBJECT *oid); const ASN1_OBJECT *CMS_get0_eContentType(CMS_ContentInfo *cms); CMS_CertificateChoices *CMS_add0_CertificateChoices(CMS_ContentInfo *cms); int CMS_add0_cert(CMS_ContentInfo *cms, X509 *cert); int CMS_add1_cert(CMS_ContentInfo *cms, X509 *cert); STACK_OF(X509) *CMS_get1_certs(CMS_ContentInfo *cms); CMS_RevocationInfoChoice *CMS_add0_RevocationInfoChoice(CMS_ContentInfo *cms); int CMS_add0_crl(CMS_ContentInfo *cms, X509_CRL *crl); int CMS_add1_crl(CMS_ContentInfo *cms, X509_CRL *crl); STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms); int CMS_SignedData_init(CMS_ContentInfo *cms); CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms, X509 *signer, EVP_PKEY *pk, const EVP_MD *md, unsigned int flags); EVP_PKEY_CTX *CMS_SignerInfo_get0_pkey_ctx(CMS_SignerInfo *si); EVP_MD_CTX *CMS_SignerInfo_get0_md_ctx(CMS_SignerInfo *si); STACK_OF(CMS_SignerInfo) *CMS_get0_SignerInfos(CMS_ContentInfo *cms); void CMS_SignerInfo_set1_signer_cert(CMS_SignerInfo *si, X509 *signer); int CMS_SignerInfo_get0_signer_id(CMS_SignerInfo *si, ASN1_OCTET_STRING **keyid, X509_NAME **issuer, ASN1_INTEGER **sno); int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert); int CMS_set1_signers_certs(CMS_ContentInfo *cms, STACK_OF(X509) *certs, unsigned int flags); void CMS_SignerInfo_get0_algs(CMS_SignerInfo *si, EVP_PKEY **pk, X509 **signer, X509_ALGOR **pdig, X509_ALGOR **psig); ASN1_OCTET_STRING *CMS_SignerInfo_get0_signature(CMS_SignerInfo *si); int CMS_SignerInfo_sign(CMS_SignerInfo *si); int CMS_SignerInfo_verify(CMS_SignerInfo *si); int CMS_SignerInfo_verify_content(CMS_SignerInfo *si, BIO *chain); int CMS_add_smimecap(CMS_SignerInfo *si, STACK_OF(X509_ALGOR) *algs); int CMS_add_simple_smimecap(STACK_OF(X509_ALGOR) **algs, int algnid, int keysize); int CMS_add_standard_smimecap(STACK_OF(X509_ALGOR) **smcap); int CMS_signed_get_attr_count(const CMS_SignerInfo *si); int CMS_signed_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos); int CMS_signed_get_attr_by_OBJ(const CMS_SignerInfo *si, ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *CMS_signed_get_attr(const CMS_SignerInfo *si, int loc); X509_ATTRIBUTE *CMS_signed_delete_attr(CMS_SignerInfo *si, int loc); int CMS_signed_add1_attr(CMS_SignerInfo *si, X509_ATTRIBUTE *attr); int CMS_signed_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len); int CMS_signed_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len); int CMS_signed_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len); void *CMS_signed_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid, int lastpos, int type); int CMS_unsigned_get_attr_count(const CMS_SignerInfo *si); int CMS_unsigned_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos); int CMS_unsigned_get_attr_by_OBJ(const CMS_SignerInfo *si, ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *CMS_unsigned_get_attr(const CMS_SignerInfo *si, int loc); X509_ATTRIBUTE *CMS_unsigned_delete_attr(CMS_SignerInfo *si, int loc); int CMS_unsigned_add1_attr(CMS_SignerInfo *si, X509_ATTRIBUTE *attr); int CMS_unsigned_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len); int CMS_unsigned_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len); int CMS_unsigned_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len); void *CMS_unsigned_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid, int lastpos, int type); # ifdef HEADER_X509V3_H int CMS_get1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest **prr); CMS_ReceiptRequest *CMS_ReceiptRequest_create0(unsigned char *id, int idlen, int allorfirst, STACK_OF(GENERAL_NAMES) *receiptList, STACK_OF(GENERAL_NAMES) *receiptsTo); int CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr); void CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid, int *pallorfirst, STACK_OF(GENERAL_NAMES) **plist, STACK_OF(GENERAL_NAMES) **prto); # endif int CMS_RecipientInfo_kari_get0_alg(CMS_RecipientInfo *ri, X509_ALGOR **palg, ASN1_OCTET_STRING **pukm); STACK_OF(CMS_RecipientEncryptedKey) *CMS_RecipientInfo_kari_get0_reks(CMS_RecipientInfo *ri); int CMS_RecipientInfo_kari_get0_orig_id(CMS_RecipientInfo *ri, X509_ALGOR **pubalg, ASN1_BIT_STRING **pubkey, ASN1_OCTET_STRING **keyid, X509_NAME **issuer, ASN1_INTEGER **sno); int CMS_RecipientInfo_kari_orig_id_cmp(CMS_RecipientInfo *ri, X509 *cert); int CMS_RecipientEncryptedKey_get0_id(CMS_RecipientEncryptedKey *rek, ASN1_OCTET_STRING **keyid, ASN1_GENERALIZEDTIME **tm, CMS_OtherKeyAttribute **other, X509_NAME **issuer, ASN1_INTEGER **sno); int CMS_RecipientEncryptedKey_cert_cmp(CMS_RecipientEncryptedKey *rek, X509 *cert); int CMS_RecipientInfo_kari_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pk); EVP_CIPHER_CTX *CMS_RecipientInfo_kari_get0_ctx(CMS_RecipientInfo *ri); int CMS_RecipientInfo_kari_decrypt(CMS_ContentInfo *cms, CMS_RecipientInfo *ri, CMS_RecipientEncryptedKey *rek); int CMS_SharedInfo_encode(unsigned char **pder, X509_ALGOR *kekalg, ASN1_OCTET_STRING *ukm, int keylen); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_CMS_strings(void); /* Error codes for the CMS functions. */ /* Function codes. */ # define CMS_F_CHECK_CONTENT 99 # define CMS_F_CMS_ADD0_CERT 164 # define CMS_F_CMS_ADD0_RECIPIENT_KEY 100 # define CMS_F_CMS_ADD0_RECIPIENT_PASSWORD 165 # define CMS_F_CMS_ADD1_RECEIPTREQUEST 158 # define CMS_F_CMS_ADD1_RECIPIENT_CERT 101 # define CMS_F_CMS_ADD1_SIGNER 102 # define CMS_F_CMS_ADD1_SIGNINGTIME 103 # define CMS_F_CMS_COMPRESS 104 # define CMS_F_CMS_COMPRESSEDDATA_CREATE 105 # define CMS_F_CMS_COMPRESSEDDATA_INIT_BIO 106 # define CMS_F_CMS_COPY_CONTENT 107 # define CMS_F_CMS_COPY_MESSAGEDIGEST 108 # define CMS_F_CMS_DATA 109 # define CMS_F_CMS_DATAFINAL 110 # define CMS_F_CMS_DATAINIT 111 # define CMS_F_CMS_DECRYPT 112 # define CMS_F_CMS_DECRYPT_SET1_KEY 113 # define CMS_F_CMS_DECRYPT_SET1_PASSWORD 166 # define CMS_F_CMS_DECRYPT_SET1_PKEY 114 # define CMS_F_CMS_DIGESTALGORITHM_FIND_CTX 115 # define CMS_F_CMS_DIGESTALGORITHM_INIT_BIO 116 # define CMS_F_CMS_DIGESTEDDATA_DO_FINAL 117 # define CMS_F_CMS_DIGEST_VERIFY 118 # define CMS_F_CMS_ENCODE_RECEIPT 161 # define CMS_F_CMS_ENCRYPT 119 # define CMS_F_CMS_ENCRYPTEDCONTENT_INIT_BIO 120 # define CMS_F_CMS_ENCRYPTEDDATA_DECRYPT 121 # define CMS_F_CMS_ENCRYPTEDDATA_ENCRYPT 122 # define CMS_F_CMS_ENCRYPTEDDATA_SET1_KEY 123 # define CMS_F_CMS_ENVELOPEDDATA_CREATE 124 # define CMS_F_CMS_ENVELOPEDDATA_INIT_BIO 125 # define CMS_F_CMS_ENVELOPED_DATA_INIT 126 # define CMS_F_CMS_ENV_ASN1_CTRL 171 # define CMS_F_CMS_FINAL 127 # define CMS_F_CMS_GET0_CERTIFICATE_CHOICES 128 # define CMS_F_CMS_GET0_CONTENT 129 # define CMS_F_CMS_GET0_ECONTENT_TYPE 130 # define CMS_F_CMS_GET0_ENVELOPED 131 # define CMS_F_CMS_GET0_REVOCATION_CHOICES 132 # define CMS_F_CMS_GET0_SIGNED 133 # define CMS_F_CMS_MSGSIGDIGEST_ADD1 162 # define CMS_F_CMS_RECEIPTREQUEST_CREATE0 159 # define CMS_F_CMS_RECEIPT_VERIFY 160 # define CMS_F_CMS_RECIPIENTINFO_DECRYPT 134 # define CMS_F_CMS_RECIPIENTINFO_ENCRYPT 169 # define CMS_F_CMS_RECIPIENTINFO_KARI_ENCRYPT 178 # define CMS_F_CMS_RECIPIENTINFO_KARI_GET0_ALG 175 # define CMS_F_CMS_RECIPIENTINFO_KARI_GET0_ORIG_ID 173 # define CMS_F_CMS_RECIPIENTINFO_KARI_GET0_REKS 172 # define CMS_F_CMS_RECIPIENTINFO_KARI_ORIG_ID_CMP 174 # define CMS_F_CMS_RECIPIENTINFO_KEKRI_DECRYPT 135 # define CMS_F_CMS_RECIPIENTINFO_KEKRI_ENCRYPT 136 # define CMS_F_CMS_RECIPIENTINFO_KEKRI_GET0_ID 137 # define CMS_F_CMS_RECIPIENTINFO_KEKRI_ID_CMP 138 # define CMS_F_CMS_RECIPIENTINFO_KTRI_CERT_CMP 139 # define CMS_F_CMS_RECIPIENTINFO_KTRI_DECRYPT 140 # define CMS_F_CMS_RECIPIENTINFO_KTRI_ENCRYPT 141 # define CMS_F_CMS_RECIPIENTINFO_KTRI_GET0_ALGS 142 # define CMS_F_CMS_RECIPIENTINFO_KTRI_GET0_SIGNER_ID 143 # define CMS_F_CMS_RECIPIENTINFO_PWRI_CRYPT 167 # define CMS_F_CMS_RECIPIENTINFO_SET0_KEY 144 # define CMS_F_CMS_RECIPIENTINFO_SET0_PASSWORD 168 # define CMS_F_CMS_RECIPIENTINFO_SET0_PKEY 145 # define CMS_F_CMS_SD_ASN1_CTRL 170 # define CMS_F_CMS_SET1_IAS 176 # define CMS_F_CMS_SET1_KEYID 177 # define CMS_F_CMS_SET1_SIGNERIDENTIFIER 146 # define CMS_F_CMS_SET_DETACHED 147 # define CMS_F_CMS_SIGN 148 # define CMS_F_CMS_SIGNED_DATA_INIT 149 # define CMS_F_CMS_SIGNERINFO_CONTENT_SIGN 150 # define CMS_F_CMS_SIGNERINFO_SIGN 151 # define CMS_F_CMS_SIGNERINFO_VERIFY 152 # define CMS_F_CMS_SIGNERINFO_VERIFY_CERT 153 # define CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT 154 # define CMS_F_CMS_SIGN_RECEIPT 163 # define CMS_F_CMS_STREAM 155 # define CMS_F_CMS_UNCOMPRESS 156 # define CMS_F_CMS_VERIFY 157 /* Reason codes. */ # define CMS_R_ADD_SIGNER_ERROR 99 # define CMS_R_CERTIFICATE_ALREADY_PRESENT 175 # define CMS_R_CERTIFICATE_HAS_NO_KEYID 160 # define CMS_R_CERTIFICATE_VERIFY_ERROR 100 # define CMS_R_CIPHER_INITIALISATION_ERROR 101 # define CMS_R_CIPHER_PARAMETER_INITIALISATION_ERROR 102 # define CMS_R_CMS_DATAFINAL_ERROR 103 # define CMS_R_CMS_LIB 104 # define CMS_R_CONTENTIDENTIFIER_MISMATCH 170 # define CMS_R_CONTENT_NOT_FOUND 105 # define CMS_R_CONTENT_TYPE_MISMATCH 171 # define CMS_R_CONTENT_TYPE_NOT_COMPRESSED_DATA 106 # define CMS_R_CONTENT_TYPE_NOT_ENVELOPED_DATA 107 # define CMS_R_CONTENT_TYPE_NOT_SIGNED_DATA 108 # define CMS_R_CONTENT_VERIFY_ERROR 109 # define CMS_R_CTRL_ERROR 110 # define CMS_R_CTRL_FAILURE 111 # define CMS_R_DECRYPT_ERROR 112 # define CMS_R_DIGEST_ERROR 161 # define CMS_R_ERROR_GETTING_PUBLIC_KEY 113 # define CMS_R_ERROR_READING_MESSAGEDIGEST_ATTRIBUTE 114 # define CMS_R_ERROR_SETTING_KEY 115 # define CMS_R_ERROR_SETTING_RECIPIENTINFO 116 # define CMS_R_INVALID_ENCRYPTED_KEY_LENGTH 117 # define CMS_R_INVALID_KEY_ENCRYPTION_PARAMETER 176 # define CMS_R_INVALID_KEY_LENGTH 118 # define CMS_R_MD_BIO_INIT_ERROR 119 # define CMS_R_MESSAGEDIGEST_ATTRIBUTE_WRONG_LENGTH 120 # define CMS_R_MESSAGEDIGEST_WRONG_LENGTH 121 # define CMS_R_MSGSIGDIGEST_ERROR 172 # define CMS_R_MSGSIGDIGEST_VERIFICATION_FAILURE 162 # define CMS_R_MSGSIGDIGEST_WRONG_LENGTH 163 # define CMS_R_NEED_ONE_SIGNER 164 # define CMS_R_NOT_A_SIGNED_RECEIPT 165 # define CMS_R_NOT_ENCRYPTED_DATA 122 # define CMS_R_NOT_KEK 123 # define CMS_R_NOT_KEY_AGREEMENT 181 # define CMS_R_NOT_KEY_TRANSPORT 124 # define CMS_R_NOT_PWRI 177 # define CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE 125 # define CMS_R_NO_CIPHER 126 # define CMS_R_NO_CONTENT 127 # define CMS_R_NO_CONTENT_TYPE 173 # define CMS_R_NO_DEFAULT_DIGEST 128 # define CMS_R_NO_DIGEST_SET 129 # define CMS_R_NO_KEY 130 # define CMS_R_NO_KEY_OR_CERT 174 # define CMS_R_NO_MATCHING_DIGEST 131 # define CMS_R_NO_MATCHING_RECIPIENT 132 # define CMS_R_NO_MATCHING_SIGNATURE 166 # define CMS_R_NO_MSGSIGDIGEST 167 # define CMS_R_NO_PASSWORD 178 # define CMS_R_NO_PRIVATE_KEY 133 # define CMS_R_NO_PUBLIC_KEY 134 # define CMS_R_NO_RECEIPT_REQUEST 168 # define CMS_R_NO_SIGNERS 135 # define CMS_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 136 # define CMS_R_RECEIPT_DECODE_ERROR 169 # define CMS_R_RECIPIENT_ERROR 137 # define CMS_R_SIGNER_CERTIFICATE_NOT_FOUND 138 # define CMS_R_SIGNFINAL_ERROR 139 # define CMS_R_SMIME_TEXT_ERROR 140 # define CMS_R_STORE_INIT_ERROR 141 # define CMS_R_TYPE_NOT_COMPRESSED_DATA 142 # define CMS_R_TYPE_NOT_DATA 143 # define CMS_R_TYPE_NOT_DIGESTED_DATA 144 # define CMS_R_TYPE_NOT_ENCRYPTED_DATA 145 # define CMS_R_TYPE_NOT_ENVELOPED_DATA 146 # define CMS_R_UNABLE_TO_FINALIZE_CONTEXT 147 # define CMS_R_UNKNOWN_CIPHER 148 # define CMS_R_UNKNOWN_DIGEST_ALGORIHM 149 # define CMS_R_UNKNOWN_ID 150 # define CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM 151 # define CMS_R_UNSUPPORTED_CONTENT_TYPE 152 # define CMS_R_UNSUPPORTED_KEK_ALGORITHM 153 # define CMS_R_UNSUPPORTED_KEY_ENCRYPTION_ALGORITHM 179 # define CMS_R_UNSUPPORTED_RECIPIENT_TYPE 154 # define CMS_R_UNSUPPORTED_RECPIENTINFO_TYPE 155 # define CMS_R_UNSUPPORTED_TYPE 156 # define CMS_R_UNWRAP_ERROR 157 # define CMS_R_UNWRAP_FAILURE 180 # define CMS_R_VERIFICATION_FAILURE 158 # define CMS_R_WRAP_ERROR 159 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/comp.h ================================================ #ifndef HEADER_COMP_H # define HEADER_COMP_H # include # ifdef OPENSSL_NO_COMP # error COMP is disabled. # endif #ifdef __cplusplus extern "C" { #endif typedef struct comp_ctx_st COMP_CTX; struct comp_method_st { int type; /* NID for compression library */ const char *name; /* A text string to identify the library */ int (*init) (COMP_CTX *ctx); void (*finish) (COMP_CTX *ctx); int (*compress) (COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen); int (*expand) (COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen); /* * The following two do NOTHING, but are kept for backward compatibility */ long (*ctrl) (void); long (*callback_ctrl) (void); }; struct comp_ctx_st { COMP_METHOD *meth; unsigned long compress_in; unsigned long compress_out; unsigned long expand_in; unsigned long expand_out; CRYPTO_EX_DATA ex_data; }; COMP_CTX *COMP_CTX_new(COMP_METHOD *meth); void COMP_CTX_free(COMP_CTX *ctx); int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen); int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen); COMP_METHOD *COMP_rle(void); COMP_METHOD *COMP_zlib(void); void COMP_zlib_cleanup(void); # ifdef HEADER_BIO_H # ifdef ZLIB BIO_METHOD *BIO_f_zlib(void); # endif # endif /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_COMP_strings(void); /* Error codes for the COMP functions. */ /* Function codes. */ # define COMP_F_BIO_ZLIB_FLUSH 99 # define COMP_F_BIO_ZLIB_NEW 100 # define COMP_F_BIO_ZLIB_READ 101 # define COMP_F_BIO_ZLIB_WRITE 102 /* Reason codes. */ # define COMP_R_ZLIB_DEFLATE_ERROR 99 # define COMP_R_ZLIB_INFLATE_ERROR 100 # define COMP_R_ZLIB_NOT_SUPPORTED 101 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/conf.h ================================================ /* crypto/conf/conf.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_CONF_H # define HEADER_CONF_H # include # include # include # include # include # include #ifdef __cplusplus extern "C" { #endif typedef struct { char *section; char *name; char *value; } CONF_VALUE; DECLARE_STACK_OF(CONF_VALUE) DECLARE_LHASH_OF(CONF_VALUE); struct conf_st; struct conf_method_st; typedef struct conf_method_st CONF_METHOD; struct conf_method_st { const char *name; CONF *(*create) (CONF_METHOD *meth); int (*init) (CONF *conf); int (*destroy) (CONF *conf); int (*destroy_data) (CONF *conf); int (*load_bio) (CONF *conf, BIO *bp, long *eline); int (*dump) (const CONF *conf, BIO *bp); int (*is_number) (const CONF *conf, char c); int (*to_int) (const CONF *conf, char c); int (*load) (CONF *conf, const char *name, long *eline); }; /* Module definitions */ typedef struct conf_imodule_st CONF_IMODULE; typedef struct conf_module_st CONF_MODULE; DECLARE_STACK_OF(CONF_MODULE) DECLARE_STACK_OF(CONF_IMODULE) /* DSO module function typedefs */ typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf); typedef void conf_finish_func (CONF_IMODULE *md); # define CONF_MFLAGS_IGNORE_ERRORS 0x1 # define CONF_MFLAGS_IGNORE_RETURN_CODES 0x2 # define CONF_MFLAGS_SILENT 0x4 # define CONF_MFLAGS_NO_DSO 0x8 # define CONF_MFLAGS_IGNORE_MISSING_FILE 0x10 # define CONF_MFLAGS_DEFAULT_SECTION 0x20 int CONF_set_default_method(CONF_METHOD *meth); void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash); LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file, long *eline); # ifndef OPENSSL_NO_FP_API LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp, long *eline); # endif LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp, long *eline); STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf, const char *section); char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group, const char *name); long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group, const char *name); void CONF_free(LHASH_OF(CONF_VALUE) *conf); int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out); int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out); void OPENSSL_config(const char *config_name); void OPENSSL_no_config(void); /* * New conf code. The semantics are different from the functions above. If * that wasn't the case, the above functions would have been replaced */ struct conf_st { CONF_METHOD *meth; void *meth_data; LHASH_OF(CONF_VALUE) *data; }; CONF *NCONF_new(CONF_METHOD *meth); CONF_METHOD *NCONF_default(void); CONF_METHOD *NCONF_WIN32(void); # if 0 /* Just to give you an idea of what I have in * mind */ CONF_METHOD *NCONF_XML(void); # endif void NCONF_free(CONF *conf); void NCONF_free_data(CONF *conf); int NCONF_load(CONF *conf, const char *file, long *eline); # ifndef OPENSSL_NO_FP_API int NCONF_load_fp(CONF *conf, FILE *fp, long *eline); # endif int NCONF_load_bio(CONF *conf, BIO *bp, long *eline); STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section); char *NCONF_get_string(const CONF *conf, const char *group, const char *name); int NCONF_get_number_e(const CONF *conf, const char *group, const char *name, long *result); int NCONF_dump_fp(const CONF *conf, FILE *out); int NCONF_dump_bio(const CONF *conf, BIO *out); # if 0 /* The following function has no error * checking, and should therefore be avoided */ long NCONF_get_number(CONF *conf, char *group, char *name); # else # define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r) # endif /* Module functions */ int CONF_modules_load(const CONF *cnf, const char *appname, unsigned long flags); int CONF_modules_load_file(const char *filename, const char *appname, unsigned long flags); void CONF_modules_unload(int all); void CONF_modules_finish(void); void CONF_modules_free(void); int CONF_module_add(const char *name, conf_init_func *ifunc, conf_finish_func *ffunc); const char *CONF_imodule_get_name(const CONF_IMODULE *md); const char *CONF_imodule_get_value(const CONF_IMODULE *md); void *CONF_imodule_get_usr_data(const CONF_IMODULE *md); void CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data); CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md); unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md); void CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags); void *CONF_module_get_usr_data(CONF_MODULE *pmod); void CONF_module_set_usr_data(CONF_MODULE *pmod, void *usr_data); char *CONF_get1_default_config_file(void); int CONF_parse_list(const char *list, int sep, int nospc, int (*list_cb) (const char *elem, int len, void *usr), void *arg); void OPENSSL_load_builtin_modules(void); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_CONF_strings(void); /* Error codes for the CONF functions. */ /* Function codes. */ # define CONF_F_CONF_DUMP_FP 104 # define CONF_F_CONF_LOAD 100 # define CONF_F_CONF_LOAD_BIO 102 # define CONF_F_CONF_LOAD_FP 103 # define CONF_F_CONF_MODULES_LOAD 116 # define CONF_F_CONF_PARSE_LIST 119 # define CONF_F_DEF_LOAD 120 # define CONF_F_DEF_LOAD_BIO 121 # define CONF_F_MODULE_INIT 115 # define CONF_F_MODULE_LOAD_DSO 117 # define CONF_F_MODULE_RUN 118 # define CONF_F_NCONF_DUMP_BIO 105 # define CONF_F_NCONF_DUMP_FP 106 # define CONF_F_NCONF_GET_NUMBER 107 # define CONF_F_NCONF_GET_NUMBER_E 112 # define CONF_F_NCONF_GET_SECTION 108 # define CONF_F_NCONF_GET_STRING 109 # define CONF_F_NCONF_LOAD 113 # define CONF_F_NCONF_LOAD_BIO 110 # define CONF_F_NCONF_LOAD_FP 114 # define CONF_F_NCONF_NEW 111 # define CONF_F_STR_COPY 101 /* Reason codes. */ # define CONF_R_ERROR_LOADING_DSO 110 # define CONF_R_LIST_CANNOT_BE_NULL 115 # define CONF_R_MISSING_CLOSE_SQUARE_BRACKET 100 # define CONF_R_MISSING_EQUAL_SIGN 101 # define CONF_R_MISSING_FINISH_FUNCTION 111 # define CONF_R_MISSING_INIT_FUNCTION 112 # define CONF_R_MODULE_INITIALIZATION_ERROR 109 # define CONF_R_NO_CLOSE_BRACE 102 # define CONF_R_NO_CONF 105 # define CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE 106 # define CONF_R_NO_SECTION 107 # define CONF_R_NO_SUCH_FILE 114 # define CONF_R_NO_VALUE 108 # define CONF_R_UNABLE_TO_CREATE_NEW_SECTION 103 # define CONF_R_UNKNOWN_MODULE_NAME 113 # define CONF_R_VARIABLE_EXPANSION_TOO_LONG 116 # define CONF_R_VARIABLE_HAS_NO_VALUE 104 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/conf_api.h ================================================ /* conf_api.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_CONF_API_H # define HEADER_CONF_API_H # include # include #ifdef __cplusplus extern "C" { #endif /* Up until OpenSSL 0.9.5a, this was new_section */ CONF_VALUE *_CONF_new_section(CONF *conf, const char *section); /* Up until OpenSSL 0.9.5a, this was get_section */ CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section); /* Up until OpenSSL 0.9.5a, this was CONF_get_section */ STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, const char *section); int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value); char *_CONF_get_string(const CONF *conf, const char *section, const char *name); long _CONF_get_number(const CONF *conf, const char *section, const char *name); int _CONF_new_data(CONF *conf); void _CONF_free_data(CONF *conf); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/crypto.h ================================================ /* crypto/crypto.h */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECDH support in OpenSSL originally developed by * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ #ifndef HEADER_CRYPTO_H # define HEADER_CRYPTO_H # include # include # ifndef OPENSSL_NO_FP_API # include # endif # include # include # include # include # ifdef CHARSET_EBCDIC # include # endif /* * Resolve problems on some operating systems with symbol names that clash * one way or another */ # include #ifdef __cplusplus extern "C" { #endif /* Backward compatibility to SSLeay */ /* * This is more to be used to check the correct DLL is being used in the MS * world. */ # define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER # define SSLEAY_VERSION 0 /* #define SSLEAY_OPTIONS 1 no longer supported */ # define SSLEAY_CFLAGS 2 # define SSLEAY_BUILT_ON 3 # define SSLEAY_PLATFORM 4 # define SSLEAY_DIR 5 /* Already declared in ossl_typ.h */ # if 0 typedef struct crypto_ex_data_st CRYPTO_EX_DATA; /* Called when a new object is created */ typedef int CRYPTO_EX_new (void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp); /* Called when an object is free()ed */ typedef void CRYPTO_EX_free (void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp); /* Called when we need to dup an object */ typedef int CRYPTO_EX_dup (CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, int idx, long argl, void *argp); # endif /* A generic structure to pass assorted data in a expandable way */ typedef struct openssl_item_st { int code; void *value; /* Not used for flag attributes */ size_t value_size; /* Max size of value for output, length for * input */ size_t *value_length; /* Returned length of value for output */ } OPENSSL_ITEM; /* * When changing the CRYPTO_LOCK_* list, be sure to maintin the text lock * names in cryptlib.c */ # define CRYPTO_LOCK_ERR 1 # define CRYPTO_LOCK_EX_DATA 2 # define CRYPTO_LOCK_X509 3 # define CRYPTO_LOCK_X509_INFO 4 # define CRYPTO_LOCK_X509_PKEY 5 # define CRYPTO_LOCK_X509_CRL 6 # define CRYPTO_LOCK_X509_REQ 7 # define CRYPTO_LOCK_DSA 8 # define CRYPTO_LOCK_RSA 9 # define CRYPTO_LOCK_EVP_PKEY 10 # define CRYPTO_LOCK_X509_STORE 11 # define CRYPTO_LOCK_SSL_CTX 12 # define CRYPTO_LOCK_SSL_CERT 13 # define CRYPTO_LOCK_SSL_SESSION 14 # define CRYPTO_LOCK_SSL_SESS_CERT 15 # define CRYPTO_LOCK_SSL 16 # define CRYPTO_LOCK_SSL_METHOD 17 # define CRYPTO_LOCK_RAND 18 # define CRYPTO_LOCK_RAND2 19 # define CRYPTO_LOCK_MALLOC 20 # define CRYPTO_LOCK_BIO 21 # define CRYPTO_LOCK_GETHOSTBYNAME 22 # define CRYPTO_LOCK_GETSERVBYNAME 23 # define CRYPTO_LOCK_READDIR 24 # define CRYPTO_LOCK_RSA_BLINDING 25 # define CRYPTO_LOCK_DH 26 # define CRYPTO_LOCK_MALLOC2 27 # define CRYPTO_LOCK_DSO 28 # define CRYPTO_LOCK_DYNLOCK 29 # define CRYPTO_LOCK_ENGINE 30 # define CRYPTO_LOCK_UI 31 # define CRYPTO_LOCK_ECDSA 32 # define CRYPTO_LOCK_EC 33 # define CRYPTO_LOCK_ECDH 34 # define CRYPTO_LOCK_BN 35 # define CRYPTO_LOCK_EC_PRE_COMP 36 # define CRYPTO_LOCK_STORE 37 # define CRYPTO_LOCK_COMP 38 # define CRYPTO_LOCK_FIPS 39 # define CRYPTO_LOCK_FIPS2 40 # define CRYPTO_NUM_LOCKS 41 # define CRYPTO_LOCK 1 # define CRYPTO_UNLOCK 2 # define CRYPTO_READ 4 # define CRYPTO_WRITE 8 # ifndef OPENSSL_NO_LOCKING # ifndef CRYPTO_w_lock # define CRYPTO_w_lock(type) \ CRYPTO_lock(CRYPTO_LOCK|CRYPTO_WRITE,type,__FILE__,__LINE__) # define CRYPTO_w_unlock(type) \ CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_WRITE,type,__FILE__,__LINE__) # define CRYPTO_r_lock(type) \ CRYPTO_lock(CRYPTO_LOCK|CRYPTO_READ,type,__FILE__,__LINE__) # define CRYPTO_r_unlock(type) \ CRYPTO_lock(CRYPTO_UNLOCK|CRYPTO_READ,type,__FILE__,__LINE__) # define CRYPTO_add(addr,amount,type) \ CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__) # endif # else # define CRYPTO_w_lock(a) # define CRYPTO_w_unlock(a) # define CRYPTO_r_lock(a) # define CRYPTO_r_unlock(a) # define CRYPTO_add(a,b,c) ((*(a))+=(b)) # endif /* * Some applications as well as some parts of OpenSSL need to allocate and * deallocate locks in a dynamic fashion. The following typedef makes this * possible in a type-safe manner. */ /* struct CRYPTO_dynlock_value has to be defined by the application. */ typedef struct { int references; struct CRYPTO_dynlock_value *data; } CRYPTO_dynlock; /* * The following can be used to detect memory leaks in the SSLeay library. It * used, it turns on malloc checking */ # define CRYPTO_MEM_CHECK_OFF 0x0/* an enume */ # define CRYPTO_MEM_CHECK_ON 0x1/* a bit */ # define CRYPTO_MEM_CHECK_ENABLE 0x2/* a bit */ # define CRYPTO_MEM_CHECK_DISABLE 0x3/* an enume */ /* * The following are bit values to turn on or off options connected to the * malloc checking functionality */ /* Adds time to the memory checking information */ # define V_CRYPTO_MDEBUG_TIME 0x1/* a bit */ /* Adds thread number to the memory checking information */ # define V_CRYPTO_MDEBUG_THREAD 0x2/* a bit */ # define V_CRYPTO_MDEBUG_ALL (V_CRYPTO_MDEBUG_TIME | V_CRYPTO_MDEBUG_THREAD) /* predec of the BIO type */ typedef struct bio_st BIO_dummy; struct crypto_ex_data_st { STACK_OF(void) *sk; /* gcc is screwing up this data structure :-( */ int dummy; }; DECLARE_STACK_OF(void) /* * This stuff is basically class callback functions The current classes are * SSL_CTX, SSL, SSL_SESSION, and a few more */ typedef struct crypto_ex_data_func_st { long argl; /* Arbitary long */ void *argp; /* Arbitary void * */ CRYPTO_EX_new *new_func; CRYPTO_EX_free *free_func; CRYPTO_EX_dup *dup_func; } CRYPTO_EX_DATA_FUNCS; DECLARE_STACK_OF(CRYPTO_EX_DATA_FUNCS) /* * Per class, we have a STACK of CRYPTO_EX_DATA_FUNCS for each CRYPTO_EX_DATA * entry. */ # define CRYPTO_EX_INDEX_BIO 0 # define CRYPTO_EX_INDEX_SSL 1 # define CRYPTO_EX_INDEX_SSL_CTX 2 # define CRYPTO_EX_INDEX_SSL_SESSION 3 # define CRYPTO_EX_INDEX_X509_STORE 4 # define CRYPTO_EX_INDEX_X509_STORE_CTX 5 # define CRYPTO_EX_INDEX_RSA 6 # define CRYPTO_EX_INDEX_DSA 7 # define CRYPTO_EX_INDEX_DH 8 # define CRYPTO_EX_INDEX_ENGINE 9 # define CRYPTO_EX_INDEX_X509 10 # define CRYPTO_EX_INDEX_UI 11 # define CRYPTO_EX_INDEX_ECDSA 12 # define CRYPTO_EX_INDEX_ECDH 13 # define CRYPTO_EX_INDEX_COMP 14 # define CRYPTO_EX_INDEX_STORE 15 /* * Dynamically assigned indexes start from this value (don't use directly, * use via CRYPTO_ex_data_new_class). */ # define CRYPTO_EX_INDEX_USER 100 /* * This is the default callbacks, but we can have others as well: this is * needed in Win32 where the application malloc and the library malloc may * not be the same. */ # define CRYPTO_malloc_init() CRYPTO_set_mem_functions(\ malloc, realloc, free) # if defined CRYPTO_MDEBUG_ALL || defined CRYPTO_MDEBUG_TIME || defined CRYPTO_MDEBUG_THREAD # ifndef CRYPTO_MDEBUG /* avoid duplicate #define */ # define CRYPTO_MDEBUG # endif # endif /* * Set standard debugging functions (not done by default unless CRYPTO_MDEBUG * is defined) */ # define CRYPTO_malloc_debug_init() do {\ CRYPTO_set_mem_debug_functions(\ CRYPTO_dbg_malloc,\ CRYPTO_dbg_realloc,\ CRYPTO_dbg_free,\ CRYPTO_dbg_set_options,\ CRYPTO_dbg_get_options);\ } while(0) int CRYPTO_mem_ctrl(int mode); int CRYPTO_is_mem_check_on(void); /* for applications */ # define MemCheck_start() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON) # define MemCheck_stop() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF) /* for library-internal use */ # define MemCheck_on() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE) # define MemCheck_off() CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE) # define is_MemCheck_on() CRYPTO_is_mem_check_on() # define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__) # define OPENSSL_strdup(str) CRYPTO_strdup((str),__FILE__,__LINE__) # define OPENSSL_realloc(addr,num) \ CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__) # define OPENSSL_realloc_clean(addr,old_num,num) \ CRYPTO_realloc_clean(addr,old_num,num,__FILE__,__LINE__) # define OPENSSL_remalloc(addr,num) \ CRYPTO_remalloc((char **)addr,(int)num,__FILE__,__LINE__) # define OPENSSL_freeFunc CRYPTO_free # define OPENSSL_free(addr) CRYPTO_free(addr) # define OPENSSL_malloc_locked(num) \ CRYPTO_malloc_locked((int)num,__FILE__,__LINE__) # define OPENSSL_free_locked(addr) CRYPTO_free_locked(addr) const char *SSLeay_version(int type); unsigned long SSLeay(void); int OPENSSL_issetugid(void); /* An opaque type representing an implementation of "ex_data" support */ typedef struct st_CRYPTO_EX_DATA_IMPL CRYPTO_EX_DATA_IMPL; /* Return an opaque pointer to the current "ex_data" implementation */ const CRYPTO_EX_DATA_IMPL *CRYPTO_get_ex_data_implementation(void); /* Sets the "ex_data" implementation to be used (if it's not too late) */ int CRYPTO_set_ex_data_implementation(const CRYPTO_EX_DATA_IMPL *i); /* Get a new "ex_data" class, and return the corresponding "class_index" */ int CRYPTO_ex_data_new_class(void); /* Within a given class, get/register a new index */ int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); /* * Initialise/duplicate/free CRYPTO_EX_DATA variables corresponding to a * given class (invokes whatever per-class callbacks are applicable) */ int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad); int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from); void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad); /* * Get/set data in a CRYPTO_EX_DATA variable corresponding to a particular * index (relative to the class type involved) */ int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val); void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad, int idx); /* * This function cleans up all "ex_data" state. It mustn't be called under * potential race-conditions. */ void CRYPTO_cleanup_all_ex_data(void); int CRYPTO_get_new_lockid(char *name); int CRYPTO_num_locks(void); /* return CRYPTO_NUM_LOCKS (shared libs!) */ void CRYPTO_lock(int mode, int type, const char *file, int line); void CRYPTO_set_locking_callback(void (*func) (int mode, int type, const char *file, int line)); void (*CRYPTO_get_locking_callback(void)) (int mode, int type, const char *file, int line); void CRYPTO_set_add_lock_callback(int (*func) (int *num, int mount, int type, const char *file, int line)); int (*CRYPTO_get_add_lock_callback(void)) (int *num, int mount, int type, const char *file, int line); /* Don't use this structure directly. */ typedef struct crypto_threadid_st { void *ptr; unsigned long val; } CRYPTO_THREADID; /* Only use CRYPTO_THREADID_set_[numeric|pointer]() within callbacks */ void CRYPTO_THREADID_set_numeric(CRYPTO_THREADID *id, unsigned long val); void CRYPTO_THREADID_set_pointer(CRYPTO_THREADID *id, void *ptr); int CRYPTO_THREADID_set_callback(void (*threadid_func) (CRYPTO_THREADID *)); void (*CRYPTO_THREADID_get_callback(void)) (CRYPTO_THREADID *); void CRYPTO_THREADID_current(CRYPTO_THREADID *id); int CRYPTO_THREADID_cmp(const CRYPTO_THREADID *a, const CRYPTO_THREADID *b); void CRYPTO_THREADID_cpy(CRYPTO_THREADID *dest, const CRYPTO_THREADID *src); unsigned long CRYPTO_THREADID_hash(const CRYPTO_THREADID *id); # ifndef OPENSSL_NO_DEPRECATED void CRYPTO_set_id_callback(unsigned long (*func) (void)); unsigned long (*CRYPTO_get_id_callback(void)) (void); unsigned long CRYPTO_thread_id(void); # endif const char *CRYPTO_get_lock_name(int type); int CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, int line); int CRYPTO_get_new_dynlockid(void); void CRYPTO_destroy_dynlockid(int i); struct CRYPTO_dynlock_value *CRYPTO_get_dynlock_value(int i); void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function) (const char *file, int line)); void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function) (int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)); void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function) (struct CRYPTO_dynlock_value *l, const char *file, int line)); struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void)) (const char *file, int line); void (*CRYPTO_get_dynlock_lock_callback(void)) (int mode, struct CRYPTO_dynlock_value *l, const char *file, int line); void (*CRYPTO_get_dynlock_destroy_callback(void)) (struct CRYPTO_dynlock_value *l, const char *file, int line); /* * CRYPTO_set_mem_functions includes CRYPTO_set_locked_mem_functions -- call * the latter last if you need different functions */ int CRYPTO_set_mem_functions(void *(*m) (size_t), void *(*r) (void *, size_t), void (*f) (void *)); int CRYPTO_set_locked_mem_functions(void *(*m) (size_t), void (*free_func) (void *)); int CRYPTO_set_mem_ex_functions(void *(*m) (size_t, const char *, int), void *(*r) (void *, size_t, const char *, int), void (*f) (void *)); int CRYPTO_set_locked_mem_ex_functions(void *(*m) (size_t, const char *, int), void (*free_func) (void *)); int CRYPTO_set_mem_debug_functions(void (*m) (void *, int, const char *, int, int), void (*r) (void *, void *, int, const char *, int, int), void (*f) (void *, int), void (*so) (long), long (*go) (void)); void CRYPTO_get_mem_functions(void *(**m) (size_t), void *(**r) (void *, size_t), void (**f) (void *)); void CRYPTO_get_locked_mem_functions(void *(**m) (size_t), void (**f) (void *)); void CRYPTO_get_mem_ex_functions(void *(**m) (size_t, const char *, int), void *(**r) (void *, size_t, const char *, int), void (**f) (void *)); void CRYPTO_get_locked_mem_ex_functions(void *(**m) (size_t, const char *, int), void (**f) (void *)); void CRYPTO_get_mem_debug_functions(void (**m) (void *, int, const char *, int, int), void (**r) (void *, void *, int, const char *, int, int), void (**f) (void *, int), void (**so) (long), long (**go) (void)); void *CRYPTO_malloc_locked(int num, const char *file, int line); void CRYPTO_free_locked(void *ptr); void *CRYPTO_malloc(int num, const char *file, int line); char *CRYPTO_strdup(const char *str, const char *file, int line); void CRYPTO_free(void *ptr); void *CRYPTO_realloc(void *addr, int num, const char *file, int line); void *CRYPTO_realloc_clean(void *addr, int old_num, int num, const char *file, int line); void *CRYPTO_remalloc(void *addr, int num, const char *file, int line); void OPENSSL_cleanse(void *ptr, size_t len); void CRYPTO_set_mem_debug_options(long bits); long CRYPTO_get_mem_debug_options(void); # define CRYPTO_push_info(info) \ CRYPTO_push_info_(info, __FILE__, __LINE__); int CRYPTO_push_info_(const char *info, const char *file, int line); int CRYPTO_pop_info(void); int CRYPTO_remove_all_info(void); /* * Default debugging functions (enabled by CRYPTO_malloc_debug_init() macro; * used as default in CRYPTO_MDEBUG compilations): */ /*- * The last argument has the following significance: * * 0: called before the actual memory allocation has taken place * 1: called after the actual memory allocation has taken place */ void CRYPTO_dbg_malloc(void *addr, int num, const char *file, int line, int before_p); void CRYPTO_dbg_realloc(void *addr1, void *addr2, int num, const char *file, int line, int before_p); void CRYPTO_dbg_free(void *addr, int before_p); /*- * Tell the debugging code about options. By default, the following values * apply: * * 0: Clear all options. * V_CRYPTO_MDEBUG_TIME (1): Set the "Show Time" option. * V_CRYPTO_MDEBUG_THREAD (2): Set the "Show Thread Number" option. * V_CRYPTO_MDEBUG_ALL (3): 1 + 2 */ void CRYPTO_dbg_set_options(long bits); long CRYPTO_dbg_get_options(void); # ifndef OPENSSL_NO_FP_API void CRYPTO_mem_leaks_fp(FILE *); # endif void CRYPTO_mem_leaks(struct bio_st *bio); /* unsigned long order, char *file, int line, int num_bytes, char *addr */ typedef void *CRYPTO_MEM_LEAK_CB (unsigned long, const char *, int, int, void *); void CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb); /* die if we have to */ void OpenSSLDie(const char *file, int line, const char *assertion); # define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1)) unsigned long *OPENSSL_ia32cap_loc(void); # define OPENSSL_ia32cap (*(OPENSSL_ia32cap_loc())) int OPENSSL_isservice(void); int FIPS_mode(void); int FIPS_mode_set(int r); void OPENSSL_init(void); # define fips_md_init(alg) fips_md_init_ctx(alg, alg) # ifdef OPENSSL_FIPS # define fips_md_init_ctx(alg, cx) \ int alg##_Init(cx##_CTX *c) \ { \ if (FIPS_mode()) OpenSSLDie(__FILE__, __LINE__, \ "Low level API call to digest " #alg " forbidden in FIPS mode!"); \ return private_##alg##_Init(c); \ } \ int private_##alg##_Init(cx##_CTX *c) # define fips_cipher_abort(alg) \ if (FIPS_mode()) OpenSSLDie(__FILE__, __LINE__, \ "Low level API call to cipher " #alg " forbidden in FIPS mode!") # else # define fips_md_init_ctx(alg, cx) \ int alg##_Init(cx##_CTX *c) # define fips_cipher_abort(alg) while(0) # endif /* * CRYPTO_memcmp returns zero iff the |len| bytes at |a| and |b| are equal. * It takes an amount of time dependent on |len|, but independent of the * contents of |a| and |b|. Unlike memcmp, it cannot be used to put elements * into a defined order as the return value when a != b is undefined, other * than to be non-zero. */ int CRYPTO_memcmp(const volatile void *a, const volatile void *b, size_t len); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_CRYPTO_strings(void); /* Error codes for the CRYPTO functions. */ /* Function codes. */ # define CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX 100 # define CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID 103 # define CRYPTO_F_CRYPTO_GET_NEW_LOCKID 101 # define CRYPTO_F_CRYPTO_SET_EX_DATA 102 # define CRYPTO_F_DEF_ADD_INDEX 104 # define CRYPTO_F_DEF_GET_CLASS 105 # define CRYPTO_F_FIPS_MODE_SET 109 # define CRYPTO_F_INT_DUP_EX_DATA 106 # define CRYPTO_F_INT_FREE_EX_DATA 107 # define CRYPTO_F_INT_NEW_EX_DATA 108 /* Reason codes. */ # define CRYPTO_R_FIPS_MODE_NOT_SUPPORTED 101 # define CRYPTO_R_NO_DYNLOCK_CREATE_CALLBACK 100 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/des.h ================================================ /* crypto/des/des.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_NEW_DES_H # define HEADER_NEW_DES_H # include /* OPENSSL_EXTERN, OPENSSL_NO_DES, DES_LONG * (via openssl/opensslconf.h */ # ifdef OPENSSL_NO_DES # error DES is disabled. # endif # ifdef OPENSSL_BUILD_SHLIBCRYPTO # undef OPENSSL_EXTERN # define OPENSSL_EXTERN OPENSSL_EXPORT # endif #ifdef __cplusplus extern "C" { #endif typedef unsigned char DES_cblock[8]; typedef /* const */ unsigned char const_DES_cblock[8]; /* * With "const", gcc 2.8.1 on Solaris thinks that DES_cblock * and * const_DES_cblock * are incompatible pointer types. */ typedef struct DES_ks { union { DES_cblock cblock; /* * make sure things are correct size on machines with 8 byte longs */ DES_LONG deslong[2]; } ks[16]; } DES_key_schedule; # ifndef OPENSSL_DISABLE_OLD_DES_SUPPORT # ifndef OPENSSL_ENABLE_OLD_DES_SUPPORT # define OPENSSL_ENABLE_OLD_DES_SUPPORT # endif # endif # ifdef OPENSSL_ENABLE_OLD_DES_SUPPORT # include # endif # define DES_KEY_SZ (sizeof(DES_cblock)) # define DES_SCHEDULE_SZ (sizeof(DES_key_schedule)) # define DES_ENCRYPT 1 # define DES_DECRYPT 0 # define DES_CBC_MODE 0 # define DES_PCBC_MODE 1 # define DES_ecb2_encrypt(i,o,k1,k2,e) \ DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e)) # define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e)) # define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e)) # define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n)) OPENSSL_DECLARE_GLOBAL(int, DES_check_key); /* defaults to false */ # define DES_check_key OPENSSL_GLOBAL_REF(DES_check_key) OPENSSL_DECLARE_GLOBAL(int, DES_rw_mode); /* defaults to DES_PCBC_MODE */ # define DES_rw_mode OPENSSL_GLOBAL_REF(DES_rw_mode) const char *DES_options(void); void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, int enc); DES_LONG DES_cbc_cksum(const unsigned char *input, DES_cblock *output, long length, DES_key_schedule *schedule, const_DES_cblock *ivec); /* DES_cbc_encrypt does not update the IV! Use DES_ncbc_encrypt instead. */ void DES_cbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc); void DES_ncbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc); void DES_xcbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, const_DES_cblock *inw, const_DES_cblock *outw, int enc); void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc); void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, DES_key_schedule *ks, int enc); /* * This is the DES encryption function that gets called by just about every * other DES routine in the library. You should not use this function except * to implement 'modes' of DES. I say this because the functions that call * this routine do the conversion from 'char *' to long, and this needs to be * done to make sure 'non-aligned' memory access do not occur. The * characters are loaded 'little endian'. Data is a pointer to 2 unsigned * long's and ks is the DES_key_schedule to use. enc, is non zero specifies * encryption, zero if decryption. */ void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc); /* * This functions is the same as DES_encrypt1() except that the DES initial * permutation (IP) and final permutation (FP) have been left out. As for * DES_encrypt1(), you should not use this function. It is used by the * routines in the library that implement triple DES. IP() DES_encrypt2() * DES_encrypt2() DES_encrypt2() FP() is the same as DES_encrypt1() * DES_encrypt1() DES_encrypt1() except faster :-). */ void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc); void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3); void DES_decrypt3(DES_LONG *data, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3); void DES_ede3_cbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec, int enc); void DES_ede3_cbcm_encrypt(const unsigned char *in, unsigned char *out, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec1, DES_cblock *ivec2, int enc); void DES_ede3_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec, int *num, int enc); void DES_ede3_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec, int enc); void DES_ede3_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec, int *num); # if 0 void DES_xwhite_in2out(const_DES_cblock *DES_key, const_DES_cblock *in_white, DES_cblock *out_white); # endif int DES_enc_read(int fd, void *buf, int len, DES_key_schedule *sched, DES_cblock *iv); int DES_enc_write(int fd, const void *buf, int len, DES_key_schedule *sched, DES_cblock *iv); char *DES_fcrypt(const char *buf, const char *salt, char *ret); char *DES_crypt(const char *buf, const char *salt); void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, long length, DES_key_schedule *schedule, DES_cblock *ivec); void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output, long length, DES_key_schedule *schedule, DES_cblock *ivec, int enc); DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[], long length, int out_count, DES_cblock *seed); int DES_random_key(DES_cblock *ret); void DES_set_odd_parity(DES_cblock *key); int DES_check_key_parity(const_DES_cblock *key); int DES_is_weak_key(const_DES_cblock *key); /* * DES_set_key (= set_key = DES_key_sched = key_sched) calls * DES_set_key_checked if global variable DES_check_key is set, * DES_set_key_unchecked otherwise. */ int DES_set_key(const_DES_cblock *key, DES_key_schedule *schedule); int DES_key_sched(const_DES_cblock *key, DES_key_schedule *schedule); int DES_set_key_checked(const_DES_cblock *key, DES_key_schedule *schedule); void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule); # ifdef OPENSSL_FIPS void private_DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule); # endif void DES_string_to_key(const char *str, DES_cblock *key); void DES_string_to_2keys(const char *str, DES_cblock *key1, DES_cblock *key2); void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, DES_key_schedule *schedule, DES_cblock *ivec, int *num, int enc); void DES_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, DES_key_schedule *schedule, DES_cblock *ivec, int *num); int DES_read_password(DES_cblock *key, const char *prompt, int verify); int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, int verify); # define DES_fixup_key_parity DES_set_odd_parity #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/des_old.h ================================================ /* crypto/des/des_old.h */ /*- * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING * * The function names in here are deprecated and are only present to * provide an interface compatible with openssl 0.9.6 and older as * well as libdes. OpenSSL now provides functions where "des_" has * been replaced with "DES_" in the names, to make it possible to * make incompatible changes that are needed for C type security and * other stuff. * * This include files has two compatibility modes: * * - If OPENSSL_DES_LIBDES_COMPATIBILITY is defined, you get an API * that is compatible with libdes and SSLeay. * - If OPENSSL_DES_LIBDES_COMPATIBILITY isn't defined, you get an * API that is compatible with OpenSSL 0.9.5x to 0.9.6x. * * Note that these modes break earlier snapshots of OpenSSL, where * libdes compatibility was the only available mode or (later on) the * prefered compatibility mode. However, after much consideration * (and more or less violent discussions with external parties), it * was concluded that OpenSSL should be compatible with earlier versions * of itself before anything else. Also, in all honesty, libdes is * an old beast that shouldn't really be used any more. * * Please consider starting to use the DES_ functions rather than the * des_ ones. The des_ functions will disappear completely before * OpenSSL 1.0! * * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING */ /* * Written by Richard Levitte (richard@levitte.org) for the OpenSSL project * 2001. */ /* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_DES_H # define HEADER_DES_H # include /* OPENSSL_EXTERN, OPENSSL_NO_DES, DES_LONG */ # ifdef OPENSSL_NO_DES # error DES is disabled. # endif # ifndef HEADER_NEW_DES_H # error You must include des.h, not des_old.h directly. # endif # ifdef _KERBEROS_DES_H # error replaces . # endif # include # ifdef OPENSSL_BUILD_SHLIBCRYPTO # undef OPENSSL_EXTERN # define OPENSSL_EXTERN OPENSSL_EXPORT # endif #ifdef __cplusplus extern "C" { #endif # ifdef _ # undef _ # endif typedef unsigned char _ossl_old_des_cblock[8]; typedef struct _ossl_old_des_ks_struct { union { _ossl_old_des_cblock _; /* * make sure things are correct size on machines with 8 byte longs */ DES_LONG pad[2]; } ks; } _ossl_old_des_key_schedule[16]; # ifndef OPENSSL_DES_LIBDES_COMPATIBILITY # define des_cblock DES_cblock # define const_des_cblock const_DES_cblock # define des_key_schedule DES_key_schedule # define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e)) # define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e)) # define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\ DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e)) # define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e)) # define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n)) # define des_options()\ DES_options() # define des_cbc_cksum(i,o,l,k,iv)\ DES_cbc_cksum((i),(o),(l),&(k),(iv)) # define des_cbc_encrypt(i,o,l,k,iv,e)\ DES_cbc_encrypt((i),(o),(l),&(k),(iv),(e)) # define des_ncbc_encrypt(i,o,l,k,iv,e)\ DES_ncbc_encrypt((i),(o),(l),&(k),(iv),(e)) # define des_xcbc_encrypt(i,o,l,k,iv,inw,outw,e)\ DES_xcbc_encrypt((i),(o),(l),&(k),(iv),(inw),(outw),(e)) # define des_cfb_encrypt(i,o,n,l,k,iv,e)\ DES_cfb_encrypt((i),(o),(n),(l),&(k),(iv),(e)) # define des_ecb_encrypt(i,o,k,e)\ DES_ecb_encrypt((i),(o),&(k),(e)) # define des_encrypt1(d,k,e)\ DES_encrypt1((d),&(k),(e)) # define des_encrypt2(d,k,e)\ DES_encrypt2((d),&(k),(e)) # define des_encrypt3(d,k1,k2,k3)\ DES_encrypt3((d),&(k1),&(k2),&(k3)) # define des_decrypt3(d,k1,k2,k3)\ DES_decrypt3((d),&(k1),&(k2),&(k3)) # define des_xwhite_in2out(k,i,o)\ DES_xwhite_in2out((k),(i),(o)) # define des_enc_read(f,b,l,k,iv)\ DES_enc_read((f),(b),(l),&(k),(iv)) # define des_enc_write(f,b,l,k,iv)\ DES_enc_write((f),(b),(l),&(k),(iv)) # define des_fcrypt(b,s,r)\ DES_fcrypt((b),(s),(r)) # if 0 # define des_crypt(b,s)\ DES_crypt((b),(s)) # if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) && !defined(__OpenBSD__) # define crypt(b,s)\ DES_crypt((b),(s)) # endif # endif # define des_ofb_encrypt(i,o,n,l,k,iv)\ DES_ofb_encrypt((i),(o),(n),(l),&(k),(iv)) # define des_pcbc_encrypt(i,o,l,k,iv,e)\ DES_pcbc_encrypt((i),(o),(l),&(k),(iv),(e)) # define des_quad_cksum(i,o,l,c,s)\ DES_quad_cksum((i),(o),(l),(c),(s)) # define des_random_seed(k)\ _ossl_096_des_random_seed((k)) # define des_random_key(r)\ DES_random_key((r)) # define des_read_password(k,p,v) \ DES_read_password((k),(p),(v)) # define des_read_2passwords(k1,k2,p,v) \ DES_read_2passwords((k1),(k2),(p),(v)) # define des_set_odd_parity(k)\ DES_set_odd_parity((k)) # define des_check_key_parity(k)\ DES_check_key_parity((k)) # define des_is_weak_key(k)\ DES_is_weak_key((k)) # define des_set_key(k,ks)\ DES_set_key((k),&(ks)) # define des_key_sched(k,ks)\ DES_key_sched((k),&(ks)) # define des_set_key_checked(k,ks)\ DES_set_key_checked((k),&(ks)) # define des_set_key_unchecked(k,ks)\ DES_set_key_unchecked((k),&(ks)) # define des_string_to_key(s,k)\ DES_string_to_key((s),(k)) # define des_string_to_2keys(s,k1,k2)\ DES_string_to_2keys((s),(k1),(k2)) # define des_cfb64_encrypt(i,o,l,ks,iv,n,e)\ DES_cfb64_encrypt((i),(o),(l),&(ks),(iv),(n),(e)) # define des_ofb64_encrypt(i,o,l,ks,iv,n)\ DES_ofb64_encrypt((i),(o),(l),&(ks),(iv),(n)) # define des_ecb2_encrypt(i,o,k1,k2,e) \ des_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e)) # define des_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ des_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e)) # define des_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ des_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e)) # define des_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ des_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n)) # define des_check_key DES_check_key # define des_rw_mode DES_rw_mode # else /* libdes compatibility */ /* * Map all symbol names to _ossl_old_des_* form, so we avoid all clashes with * libdes */ # define des_cblock _ossl_old_des_cblock # define des_key_schedule _ossl_old_des_key_schedule # define des_ecb3_encrypt(i,o,k1,k2,k3,e)\ _ossl_old_des_ecb3_encrypt((i),(o),(k1),(k2),(k3),(e)) # define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\ _ossl_old_des_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k3),(iv),(e)) # define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\ _ossl_old_des_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k3),(iv),(n),(e)) # define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\ _ossl_old_des_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k3),(iv),(n)) # define des_options()\ _ossl_old_des_options() # define des_cbc_cksum(i,o,l,k,iv)\ _ossl_old_des_cbc_cksum((i),(o),(l),(k),(iv)) # define des_cbc_encrypt(i,o,l,k,iv,e)\ _ossl_old_des_cbc_encrypt((i),(o),(l),(k),(iv),(e)) # define des_ncbc_encrypt(i,o,l,k,iv,e)\ _ossl_old_des_ncbc_encrypt((i),(o),(l),(k),(iv),(e)) # define des_xcbc_encrypt(i,o,l,k,iv,inw,outw,e)\ _ossl_old_des_xcbc_encrypt((i),(o),(l),(k),(iv),(inw),(outw),(e)) # define des_cfb_encrypt(i,o,n,l,k,iv,e)\ _ossl_old_des_cfb_encrypt((i),(o),(n),(l),(k),(iv),(e)) # define des_ecb_encrypt(i,o,k,e)\ _ossl_old_des_ecb_encrypt((i),(o),(k),(e)) # define des_encrypt(d,k,e)\ _ossl_old_des_encrypt((d),(k),(e)) # define des_encrypt2(d,k,e)\ _ossl_old_des_encrypt2((d),(k),(e)) # define des_encrypt3(d,k1,k2,k3)\ _ossl_old_des_encrypt3((d),(k1),(k2),(k3)) # define des_decrypt3(d,k1,k2,k3)\ _ossl_old_des_decrypt3((d),(k1),(k2),(k3)) # define des_xwhite_in2out(k,i,o)\ _ossl_old_des_xwhite_in2out((k),(i),(o)) # define des_enc_read(f,b,l,k,iv)\ _ossl_old_des_enc_read((f),(b),(l),(k),(iv)) # define des_enc_write(f,b,l,k,iv)\ _ossl_old_des_enc_write((f),(b),(l),(k),(iv)) # define des_fcrypt(b,s,r)\ _ossl_old_des_fcrypt((b),(s),(r)) # define des_crypt(b,s)\ _ossl_old_des_crypt((b),(s)) # if 0 # define crypt(b,s)\ _ossl_old_crypt((b),(s)) # endif # define des_ofb_encrypt(i,o,n,l,k,iv)\ _ossl_old_des_ofb_encrypt((i),(o),(n),(l),(k),(iv)) # define des_pcbc_encrypt(i,o,l,k,iv,e)\ _ossl_old_des_pcbc_encrypt((i),(o),(l),(k),(iv),(e)) # define des_quad_cksum(i,o,l,c,s)\ _ossl_old_des_quad_cksum((i),(o),(l),(c),(s)) # define des_random_seed(k)\ _ossl_old_des_random_seed((k)) # define des_random_key(r)\ _ossl_old_des_random_key((r)) # define des_read_password(k,p,v) \ _ossl_old_des_read_password((k),(p),(v)) # define des_read_2passwords(k1,k2,p,v) \ _ossl_old_des_read_2passwords((k1),(k2),(p),(v)) # define des_set_odd_parity(k)\ _ossl_old_des_set_odd_parity((k)) # define des_is_weak_key(k)\ _ossl_old_des_is_weak_key((k)) # define des_set_key(k,ks)\ _ossl_old_des_set_key((k),(ks)) # define des_key_sched(k,ks)\ _ossl_old_des_key_sched((k),(ks)) # define des_string_to_key(s,k)\ _ossl_old_des_string_to_key((s),(k)) # define des_string_to_2keys(s,k1,k2)\ _ossl_old_des_string_to_2keys((s),(k1),(k2)) # define des_cfb64_encrypt(i,o,l,ks,iv,n,e)\ _ossl_old_des_cfb64_encrypt((i),(o),(l),(ks),(iv),(n),(e)) # define des_ofb64_encrypt(i,o,l,ks,iv,n)\ _ossl_old_des_ofb64_encrypt((i),(o),(l),(ks),(iv),(n)) # define des_ecb2_encrypt(i,o,k1,k2,e) \ des_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e)) # define des_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ des_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e)) # define des_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ des_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e)) # define des_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ des_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n)) # define des_check_key DES_check_key # define des_rw_mode DES_rw_mode # endif const char *_ossl_old_des_options(void); void _ossl_old_des_ecb3_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3, int enc); DES_LONG _ossl_old_des_cbc_cksum(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec); void _ossl_old_des_cbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int enc); void _ossl_old_des_ncbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int enc); void _ossl_old_des_xcbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, _ossl_old_des_cblock *inw, _ossl_old_des_cblock *outw, int enc); void _ossl_old_des_cfb_encrypt(unsigned char *in, unsigned char *out, int numbits, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int enc); void _ossl_old_des_ecb_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, _ossl_old_des_key_schedule ks, int enc); void _ossl_old_des_encrypt(DES_LONG *data, _ossl_old_des_key_schedule ks, int enc); void _ossl_old_des_encrypt2(DES_LONG *data, _ossl_old_des_key_schedule ks, int enc); void _ossl_old_des_encrypt3(DES_LONG *data, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3); void _ossl_old_des_decrypt3(DES_LONG *data, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3); void _ossl_old_des_ede3_cbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3, _ossl_old_des_cblock *ivec, int enc); void _ossl_old_des_ede3_cfb64_encrypt(unsigned char *in, unsigned char *out, long length, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3, _ossl_old_des_cblock *ivec, int *num, int enc); void _ossl_old_des_ede3_ofb64_encrypt(unsigned char *in, unsigned char *out, long length, _ossl_old_des_key_schedule ks1, _ossl_old_des_key_schedule ks2, _ossl_old_des_key_schedule ks3, _ossl_old_des_cblock *ivec, int *num); # if 0 void _ossl_old_des_xwhite_in2out(_ossl_old_des_cblock (*des_key), _ossl_old_des_cblock (*in_white), _ossl_old_des_cblock (*out_white)); # endif int _ossl_old_des_enc_read(int fd, char *buf, int len, _ossl_old_des_key_schedule sched, _ossl_old_des_cblock *iv); int _ossl_old_des_enc_write(int fd, char *buf, int len, _ossl_old_des_key_schedule sched, _ossl_old_des_cblock *iv); char *_ossl_old_des_fcrypt(const char *buf, const char *salt, char *ret); char *_ossl_old_des_crypt(const char *buf, const char *salt); # if !defined(PERL5) && !defined(NeXT) char *_ossl_old_crypt(const char *buf, const char *salt); # endif void _ossl_old_des_ofb_encrypt(unsigned char *in, unsigned char *out, int numbits, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec); void _ossl_old_des_pcbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int enc); DES_LONG _ossl_old_des_quad_cksum(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output, long length, int out_count, _ossl_old_des_cblock *seed); void _ossl_old_des_random_seed(_ossl_old_des_cblock key); void _ossl_old_des_random_key(_ossl_old_des_cblock ret); int _ossl_old_des_read_password(_ossl_old_des_cblock *key, const char *prompt, int verify); int _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2, const char *prompt, int verify); void _ossl_old_des_set_odd_parity(_ossl_old_des_cblock *key); int _ossl_old_des_is_weak_key(_ossl_old_des_cblock *key); int _ossl_old_des_set_key(_ossl_old_des_cblock *key, _ossl_old_des_key_schedule schedule); int _ossl_old_des_key_sched(_ossl_old_des_cblock *key, _ossl_old_des_key_schedule schedule); void _ossl_old_des_string_to_key(char *str, _ossl_old_des_cblock *key); void _ossl_old_des_string_to_2keys(char *str, _ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2); void _ossl_old_des_cfb64_encrypt(unsigned char *in, unsigned char *out, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int *num, int enc); void _ossl_old_des_ofb64_encrypt(unsigned char *in, unsigned char *out, long length, _ossl_old_des_key_schedule schedule, _ossl_old_des_cblock *ivec, int *num); void _ossl_096_des_random_seed(des_cblock *key); /* * The following definitions provide compatibility with the MIT Kerberos * library. The _ossl_old_des_key_schedule structure is not binary * compatible. */ # define _KERBEROS_DES_H # define KRBDES_ENCRYPT DES_ENCRYPT # define KRBDES_DECRYPT DES_DECRYPT # ifdef KERBEROS # define ENCRYPT DES_ENCRYPT # define DECRYPT DES_DECRYPT # endif # ifndef NCOMPAT # define C_Block des_cblock # define Key_schedule des_key_schedule # define KEY_SZ DES_KEY_SZ # define string_to_key des_string_to_key # define read_pw_string des_read_pw_string # define random_key des_random_key # define pcbc_encrypt des_pcbc_encrypt # define set_key des_set_key # define key_sched des_key_sched # define ecb_encrypt des_ecb_encrypt # define cbc_encrypt des_cbc_encrypt # define ncbc_encrypt des_ncbc_encrypt # define xcbc_encrypt des_xcbc_encrypt # define cbc_cksum des_cbc_cksum # define quad_cksum des_quad_cksum # define check_parity des_check_key_parity # endif # define des_fixup_key_parity DES_fixup_key_parity #ifdef __cplusplus } #endif /* for DES_read_pw_string et al */ # include #endif ================================================ FILE: third_party/include/openssl/dh.h ================================================ /* crypto/dh/dh.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_DH_H # define HEADER_DH_H # include # ifdef OPENSSL_NO_DH # error DH is disabled. # endif # ifndef OPENSSL_NO_BIO # include # endif # include # ifndef OPENSSL_NO_DEPRECATED # include # endif # ifndef OPENSSL_DH_MAX_MODULUS_BITS # define OPENSSL_DH_MAX_MODULUS_BITS 10000 # endif # define DH_FLAG_CACHE_MONT_P 0x01 /* * new with 0.9.7h; the built-in DH * implementation now uses constant time * modular exponentiation for secret exponents * by default. This flag causes the * faster variable sliding window method to * be used for all exponents. */ # define DH_FLAG_NO_EXP_CONSTTIME 0x02 /* * If this flag is set the DH method is FIPS compliant and can be used in * FIPS mode. This is set in the validated module method. If an application * sets this flag in its own methods it is its reposibility to ensure the * result is compliant. */ # define DH_FLAG_FIPS_METHOD 0x0400 /* * If this flag is set the operations normally disabled in FIPS mode are * permitted it is then the applications responsibility to ensure that the * usage is compliant. */ # define DH_FLAG_NON_FIPS_ALLOW 0x0400 #ifdef __cplusplus extern "C" { #endif /* Already defined in ossl_typ.h */ /* typedef struct dh_st DH; */ /* typedef struct dh_method DH_METHOD; */ struct dh_method { const char *name; /* Methods here */ int (*generate_key) (DH *dh); int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh); /* Can be null */ int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int (*init) (DH *dh); int (*finish) (DH *dh); int flags; char *app_data; /* If this is non-NULL, it will be used to generate parameters */ int (*generate_params) (DH *dh, int prime_len, int generator, BN_GENCB *cb); }; struct dh_st { /* * This first argument is used to pick up errors when a DH is passed * instead of a EVP_PKEY */ int pad; int version; BIGNUM *p; BIGNUM *g; long length; /* optional */ BIGNUM *pub_key; /* g^x % p */ BIGNUM *priv_key; /* x */ int flags; BN_MONT_CTX *method_mont_p; /* Place holders if we want to do X9.42 DH */ BIGNUM *q; BIGNUM *j; unsigned char *seed; int seedlen; BIGNUM *counter; int references; CRYPTO_EX_DATA ex_data; const DH_METHOD *meth; ENGINE *engine; }; # define DH_GENERATOR_2 2 /* #define DH_GENERATOR_3 3 */ # define DH_GENERATOR_5 5 /* DH_check error codes */ # define DH_CHECK_P_NOT_PRIME 0x01 # define DH_CHECK_P_NOT_SAFE_PRIME 0x02 # define DH_UNABLE_TO_CHECK_GENERATOR 0x04 # define DH_NOT_SUITABLE_GENERATOR 0x08 # define DH_CHECK_Q_NOT_PRIME 0x10 # define DH_CHECK_INVALID_Q_VALUE 0x20 # define DH_CHECK_INVALID_J_VALUE 0x40 /* DH_check_pub_key error codes */ # define DH_CHECK_PUBKEY_TOO_SMALL 0x01 # define DH_CHECK_PUBKEY_TOO_LARGE 0x02 # define DH_CHECK_PUBKEY_INVALID 0x04 /* * primes p where (p-1)/2 is prime too are called "safe"; we define this for * backward compatibility: */ # define DH_CHECK_P_NOT_STRONG_PRIME DH_CHECK_P_NOT_SAFE_PRIME # define d2i_DHparams_fp(fp,x) \ (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ (char *(*)())d2i_DHparams, \ (fp), \ (unsigned char **)(x)) # define i2d_DHparams_fp(fp,x) \ ASN1_i2d_fp(i2d_DHparams,(fp), (unsigned char *)(x)) # define d2i_DHparams_bio(bp,x) \ ASN1_d2i_bio_of(DH, DH_new, d2i_DHparams, bp, x) # define i2d_DHparams_bio(bp,x) \ ASN1_i2d_bio_of_const(DH,i2d_DHparams,bp,x) # define d2i_DHxparams_fp(fp,x) \ (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ (char *(*)())d2i_DHxparams, \ (fp), \ (unsigned char **)(x)) # define i2d_DHxparams_fp(fp,x) \ ASN1_i2d_fp(i2d_DHxparams,(fp), (unsigned char *)(x)) # define d2i_DHxparams_bio(bp,x) \ ASN1_d2i_bio_of(DH, DH_new, d2i_DHxparams, bp, x) # define i2d_DHxparams_bio(bp,x) \ ASN1_i2d_bio_of_const(DH, i2d_DHxparams, bp, x) DH *DHparams_dup(DH *); const DH_METHOD *DH_OpenSSL(void); void DH_set_default_method(const DH_METHOD *meth); const DH_METHOD *DH_get_default_method(void); int DH_set_method(DH *dh, const DH_METHOD *meth); DH *DH_new_method(ENGINE *engine); DH *DH_new(void); void DH_free(DH *dh); int DH_up_ref(DH *dh); int DH_size(const DH *dh); int DH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int DH_set_ex_data(DH *d, int idx, void *arg); void *DH_get_ex_data(DH *d, int idx); /* Deprecated version */ # ifndef OPENSSL_NO_DEPRECATED DH *DH_generate_parameters(int prime_len, int generator, void (*callback) (int, int, void *), void *cb_arg); # endif /* !defined(OPENSSL_NO_DEPRECATED) */ /* New version */ int DH_generate_parameters_ex(DH *dh, int prime_len, int generator, BN_GENCB *cb); int DH_check(const DH *dh, int *codes); int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *codes); int DH_generate_key(DH *dh); int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh); int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh); DH *d2i_DHparams(DH **a, const unsigned char **pp, long length); int i2d_DHparams(const DH *a, unsigned char **pp); DH *d2i_DHxparams(DH **a, const unsigned char **pp, long length); int i2d_DHxparams(const DH *a, unsigned char **pp); # ifndef OPENSSL_NO_FP_API int DHparams_print_fp(FILE *fp, const DH *x); # endif # ifndef OPENSSL_NO_BIO int DHparams_print(BIO *bp, const DH *x); # else int DHparams_print(char *bp, const DH *x); # endif /* RFC 5114 parameters */ DH *DH_get_1024_160(void); DH *DH_get_2048_224(void); DH *DH_get_2048_256(void); # ifndef OPENSSL_NO_CMS /* RFC2631 KDF */ int DH_KDF_X9_42(unsigned char *out, size_t outlen, const unsigned char *Z, size_t Zlen, ASN1_OBJECT *key_oid, const unsigned char *ukm, size_t ukmlen, const EVP_MD *md); # endif # define EVP_PKEY_CTX_set_dh_paramgen_prime_len(ctx, len) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_PARAMGEN_PRIME_LEN, len, NULL) # define EVP_PKEY_CTX_set_dh_paramgen_subprime_len(ctx, len) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_PARAMGEN_SUBPRIME_LEN, len, NULL) # define EVP_PKEY_CTX_set_dh_paramgen_type(ctx, typ) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_PARAMGEN_TYPE, typ, NULL) # define EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, gen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DH, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR, gen, NULL) # define EVP_PKEY_CTX_set_dh_rfc5114(ctx, gen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_RFC5114, gen, NULL) # define EVP_PKEY_CTX_set_dhx_rfc5114(ctx, gen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DH_RFC5114, gen, NULL) # define EVP_PKEY_CTX_set_dh_kdf_type(ctx, kdf) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_TYPE, kdf, NULL) # define EVP_PKEY_CTX_get_dh_kdf_type(ctx) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_TYPE, -2, NULL) # define EVP_PKEY_CTX_set0_dh_kdf_oid(ctx, oid) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_OID, 0, (void *)oid) # define EVP_PKEY_CTX_get0_dh_kdf_oid(ctx, poid) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_DH_KDF_OID, 0, (void *)poid) # define EVP_PKEY_CTX_set_dh_kdf_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_MD, 0, (void *)md) # define EVP_PKEY_CTX_get_dh_kdf_md(ctx, pmd) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_DH_KDF_MD, 0, (void *)pmd) # define EVP_PKEY_CTX_set_dh_kdf_outlen(ctx, len) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_OUTLEN, len, NULL) # define EVP_PKEY_CTX_get_dh_kdf_outlen(ctx, plen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_DH_KDF_OUTLEN, 0, (void *)plen) # define EVP_PKEY_CTX_set0_dh_kdf_ukm(ctx, p, plen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_DH_KDF_UKM, plen, (void *)p) # define EVP_PKEY_CTX_get0_dh_kdf_ukm(ctx, p) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DHX, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_DH_KDF_UKM, 0, (void *)p) # define EVP_PKEY_CTRL_DH_PARAMGEN_PRIME_LEN (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR (EVP_PKEY_ALG_CTRL + 2) # define EVP_PKEY_CTRL_DH_RFC5114 (EVP_PKEY_ALG_CTRL + 3) # define EVP_PKEY_CTRL_DH_PARAMGEN_SUBPRIME_LEN (EVP_PKEY_ALG_CTRL + 4) # define EVP_PKEY_CTRL_DH_PARAMGEN_TYPE (EVP_PKEY_ALG_CTRL + 5) # define EVP_PKEY_CTRL_DH_KDF_TYPE (EVP_PKEY_ALG_CTRL + 6) # define EVP_PKEY_CTRL_DH_KDF_MD (EVP_PKEY_ALG_CTRL + 7) # define EVP_PKEY_CTRL_GET_DH_KDF_MD (EVP_PKEY_ALG_CTRL + 8) # define EVP_PKEY_CTRL_DH_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 9) # define EVP_PKEY_CTRL_GET_DH_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 10) # define EVP_PKEY_CTRL_DH_KDF_UKM (EVP_PKEY_ALG_CTRL + 11) # define EVP_PKEY_CTRL_GET_DH_KDF_UKM (EVP_PKEY_ALG_CTRL + 12) # define EVP_PKEY_CTRL_DH_KDF_OID (EVP_PKEY_ALG_CTRL + 13) # define EVP_PKEY_CTRL_GET_DH_KDF_OID (EVP_PKEY_ALG_CTRL + 14) /* KDF types */ # define EVP_PKEY_DH_KDF_NONE 1 # define EVP_PKEY_DH_KDF_X9_42 2 /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_DH_strings(void); /* Error codes for the DH functions. */ /* Function codes. */ # define DH_F_COMPUTE_KEY 102 # define DH_F_DHPARAMS_PRINT_FP 101 # define DH_F_DH_BUILTIN_GENPARAMS 106 # define DH_F_DH_CMS_DECRYPT 117 # define DH_F_DH_CMS_SET_PEERKEY 118 # define DH_F_DH_CMS_SET_SHARED_INFO 119 # define DH_F_DH_COMPUTE_KEY 114 # define DH_F_DH_GENERATE_KEY 115 # define DH_F_DH_GENERATE_PARAMETERS_EX 116 # define DH_F_DH_NEW_METHOD 105 # define DH_F_DH_PARAM_DECODE 107 # define DH_F_DH_PRIV_DECODE 110 # define DH_F_DH_PRIV_ENCODE 111 # define DH_F_DH_PUB_DECODE 108 # define DH_F_DH_PUB_ENCODE 109 # define DH_F_DO_DH_PRINT 100 # define DH_F_GENERATE_KEY 103 # define DH_F_GENERATE_PARAMETERS 104 # define DH_F_PKEY_DH_DERIVE 112 # define DH_F_PKEY_DH_KEYGEN 113 /* Reason codes. */ # define DH_R_BAD_GENERATOR 101 # define DH_R_BN_DECODE_ERROR 109 # define DH_R_BN_ERROR 106 # define DH_R_DECODE_ERROR 104 # define DH_R_INVALID_PUBKEY 102 # define DH_R_KDF_PARAMETER_ERROR 112 # define DH_R_KEYS_NOT_SET 108 # define DH_R_KEY_SIZE_TOO_SMALL 110 # define DH_R_MODULUS_TOO_LARGE 103 # define DH_R_NON_FIPS_METHOD 111 # define DH_R_NO_PARAMETERS_SET 107 # define DH_R_NO_PRIVATE_VALUE 100 # define DH_R_PARAMETER_ENCODING_ERROR 105 # define DH_R_PEER_KEY_ERROR 113 # define DH_R_SHARED_INFO_ERROR 114 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/dsa.h ================================================ /* crypto/dsa/dsa.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* * The DSS routines are based on patches supplied by * Steven Schoch . He basically did the * work and I have just tweaked them a little to fit into my * stylistic vision for SSLeay :-) */ #ifndef HEADER_DSA_H # define HEADER_DSA_H # include # ifdef OPENSSL_NO_DSA # error DSA is disabled. # endif # ifndef OPENSSL_NO_BIO # include # endif # include # include # ifndef OPENSSL_NO_DEPRECATED # include # ifndef OPENSSL_NO_DH # include # endif # endif # ifndef OPENSSL_DSA_MAX_MODULUS_BITS # define OPENSSL_DSA_MAX_MODULUS_BITS 10000 # endif # define DSA_FLAG_CACHE_MONT_P 0x01 /* * new with 0.9.7h; the built-in DSA implementation now uses constant time * modular exponentiation for secret exponents by default. This flag causes * the faster variable sliding window method to be used for all exponents. */ # define DSA_FLAG_NO_EXP_CONSTTIME 0x02 /* * If this flag is set the DSA method is FIPS compliant and can be used in * FIPS mode. This is set in the validated module method. If an application * sets this flag in its own methods it is its reposibility to ensure the * result is compliant. */ # define DSA_FLAG_FIPS_METHOD 0x0400 /* * If this flag is set the operations normally disabled in FIPS mode are * permitted it is then the applications responsibility to ensure that the * usage is compliant. */ # define DSA_FLAG_NON_FIPS_ALLOW 0x0400 #ifdef __cplusplus extern "C" { #endif /* Already defined in ossl_typ.h */ /* typedef struct dsa_st DSA; */ /* typedef struct dsa_method DSA_METHOD; */ typedef struct DSA_SIG_st { BIGNUM *r; BIGNUM *s; } DSA_SIG; struct dsa_method { const char *name; DSA_SIG *(*dsa_do_sign) (const unsigned char *dgst, int dlen, DSA *dsa); int (*dsa_sign_setup) (DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp); int (*dsa_do_verify) (const unsigned char *dgst, int dgst_len, DSA_SIG *sig, DSA *dsa); int (*dsa_mod_exp) (DSA *dsa, BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont); /* Can be null */ int (*bn_mod_exp) (DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int (*init) (DSA *dsa); int (*finish) (DSA *dsa); int flags; char *app_data; /* If this is non-NULL, it is used to generate DSA parameters */ int (*dsa_paramgen) (DSA *dsa, int bits, const unsigned char *seed, int seed_len, int *counter_ret, unsigned long *h_ret, BN_GENCB *cb); /* If this is non-NULL, it is used to generate DSA keys */ int (*dsa_keygen) (DSA *dsa); }; struct dsa_st { /* * This first variable is used to pick up errors where a DSA is passed * instead of of a EVP_PKEY */ int pad; long version; int write_params; BIGNUM *p; BIGNUM *q; /* == 20 */ BIGNUM *g; BIGNUM *pub_key; /* y public key */ BIGNUM *priv_key; /* x private key */ BIGNUM *kinv; /* Signing pre-calc */ BIGNUM *r; /* Signing pre-calc */ int flags; /* Normally used to cache montgomery values */ BN_MONT_CTX *method_mont_p; int references; CRYPTO_EX_DATA ex_data; const DSA_METHOD *meth; /* functional reference if 'meth' is ENGINE-provided */ ENGINE *engine; }; # define d2i_DSAparams_fp(fp,x) (DSA *)ASN1_d2i_fp((char *(*)())DSA_new, \ (char *(*)())d2i_DSAparams,(fp),(unsigned char **)(x)) # define i2d_DSAparams_fp(fp,x) ASN1_i2d_fp(i2d_DSAparams,(fp), \ (unsigned char *)(x)) # define d2i_DSAparams_bio(bp,x) ASN1_d2i_bio_of(DSA,DSA_new,d2i_DSAparams,bp,x) # define i2d_DSAparams_bio(bp,x) ASN1_i2d_bio_of_const(DSA,i2d_DSAparams,bp,x) DSA *DSAparams_dup(DSA *x); DSA_SIG *DSA_SIG_new(void); void DSA_SIG_free(DSA_SIG *a); int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp); DSA_SIG *d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length); DSA_SIG *DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa); int DSA_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig, DSA *dsa); const DSA_METHOD *DSA_OpenSSL(void); void DSA_set_default_method(const DSA_METHOD *); const DSA_METHOD *DSA_get_default_method(void); int DSA_set_method(DSA *dsa, const DSA_METHOD *); DSA *DSA_new(void); DSA *DSA_new_method(ENGINE *engine); void DSA_free(DSA *r); /* "up" the DSA object's reference count */ int DSA_up_ref(DSA *r); int DSA_size(const DSA *); /* next 4 return -1 on error */ int DSA_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp); int DSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, DSA *dsa); int DSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sigbuf, int siglen, DSA *dsa); int DSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int DSA_set_ex_data(DSA *d, int idx, void *arg); void *DSA_get_ex_data(DSA *d, int idx); DSA *d2i_DSAPublicKey(DSA **a, const unsigned char **pp, long length); DSA *d2i_DSAPrivateKey(DSA **a, const unsigned char **pp, long length); DSA *d2i_DSAparams(DSA **a, const unsigned char **pp, long length); /* Deprecated version */ # ifndef OPENSSL_NO_DEPRECATED DSA *DSA_generate_parameters(int bits, unsigned char *seed, int seed_len, int *counter_ret, unsigned long *h_ret, void (*callback) (int, int, void *), void *cb_arg); # endif /* !defined(OPENSSL_NO_DEPRECATED) */ /* New version */ int DSA_generate_parameters_ex(DSA *dsa, int bits, const unsigned char *seed, int seed_len, int *counter_ret, unsigned long *h_ret, BN_GENCB *cb); int DSA_generate_key(DSA *a); int i2d_DSAPublicKey(const DSA *a, unsigned char **pp); int i2d_DSAPrivateKey(const DSA *a, unsigned char **pp); int i2d_DSAparams(const DSA *a, unsigned char **pp); # ifndef OPENSSL_NO_BIO int DSAparams_print(BIO *bp, const DSA *x); int DSA_print(BIO *bp, const DSA *x, int off); # endif # ifndef OPENSSL_NO_FP_API int DSAparams_print_fp(FILE *fp, const DSA *x); int DSA_print_fp(FILE *bp, const DSA *x, int off); # endif # define DSS_prime_checks 50 /* * Primality test according to FIPS PUB 186[-1], Appendix 2.1: 50 rounds of * Rabin-Miller */ # define DSA_is_prime(n, callback, cb_arg) \ BN_is_prime(n, DSS_prime_checks, callback, NULL, cb_arg) # ifndef OPENSSL_NO_DH /* * Convert DSA structure (key or just parameters) into DH structure (be * careful to avoid small subgroup attacks when using this!) */ DH *DSA_dup_DH(const DSA *r); # endif # define EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DSA, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTRL_DSA_PARAMGEN_BITS, nbits, NULL) # define EVP_PKEY_CTRL_DSA_PARAMGEN_BITS (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS (EVP_PKEY_ALG_CTRL + 2) # define EVP_PKEY_CTRL_DSA_PARAMGEN_MD (EVP_PKEY_ALG_CTRL + 3) /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_DSA_strings(void); /* Error codes for the DSA functions. */ /* Function codes. */ # define DSA_F_D2I_DSA_SIG 110 # define DSA_F_DO_DSA_PRINT 104 # define DSA_F_DSAPARAMS_PRINT 100 # define DSA_F_DSAPARAMS_PRINT_FP 101 # define DSA_F_DSA_BUILTIN_PARAMGEN2 126 # define DSA_F_DSA_DO_SIGN 112 # define DSA_F_DSA_DO_VERIFY 113 # define DSA_F_DSA_GENERATE_KEY 124 # define DSA_F_DSA_GENERATE_PARAMETERS_EX 123 # define DSA_F_DSA_NEW_METHOD 103 # define DSA_F_DSA_PARAM_DECODE 119 # define DSA_F_DSA_PRINT_FP 105 # define DSA_F_DSA_PRIV_DECODE 115 # define DSA_F_DSA_PRIV_ENCODE 116 # define DSA_F_DSA_PUB_DECODE 117 # define DSA_F_DSA_PUB_ENCODE 118 # define DSA_F_DSA_SIGN 106 # define DSA_F_DSA_SIGN_SETUP 107 # define DSA_F_DSA_SIG_NEW 109 # define DSA_F_DSA_SIG_PRINT 125 # define DSA_F_DSA_VERIFY 108 # define DSA_F_I2D_DSA_SIG 111 # define DSA_F_OLD_DSA_PRIV_DECODE 122 # define DSA_F_PKEY_DSA_CTRL 120 # define DSA_F_PKEY_DSA_KEYGEN 121 # define DSA_F_SIG_CB 114 /* Reason codes. */ # define DSA_R_BAD_Q_VALUE 102 # define DSA_R_BN_DECODE_ERROR 108 # define DSA_R_BN_ERROR 109 # define DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 100 # define DSA_R_DECODE_ERROR 104 # define DSA_R_INVALID_DIGEST_TYPE 106 # define DSA_R_INVALID_PARAMETERS 112 # define DSA_R_MISSING_PARAMETERS 101 # define DSA_R_MODULUS_TOO_LARGE 103 # define DSA_R_NEED_NEW_SETUP_VALUES 110 # define DSA_R_NON_FIPS_DSA_METHOD 111 # define DSA_R_NO_PARAMETERS_SET 107 # define DSA_R_PARAMETER_ENCODING_ERROR 105 # define DSA_R_Q_NOT_PRIME 113 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/dso.h ================================================ /* dso.h */ /* * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project * 2000. */ /* ==================================================================== * Copyright (c) 2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_DSO_H # define HEADER_DSO_H # include #ifdef __cplusplus extern "C" { #endif /* These values are used as commands to DSO_ctrl() */ # define DSO_CTRL_GET_FLAGS 1 # define DSO_CTRL_SET_FLAGS 2 # define DSO_CTRL_OR_FLAGS 3 /* * By default, DSO_load() will translate the provided filename into a form * typical for the platform (more specifically the DSO_METHOD) using the * dso_name_converter function of the method. Eg. win32 will transform "blah" * into "blah.dll", and dlfcn will transform it into "libblah.so". The * behaviour can be overriden by setting the name_converter callback in the * DSO object (using DSO_set_name_converter()). This callback could even * utilise the DSO_METHOD's converter too if it only wants to override * behaviour for one or two possible DSO methods. However, the following flag * can be set in a DSO to prevent *any* native name-translation at all - eg. * if the caller has prompted the user for a path to a driver library so the * filename should be interpreted as-is. */ # define DSO_FLAG_NO_NAME_TRANSLATION 0x01 /* * An extra flag to give if only the extension should be added as * translation. This is obviously only of importance on Unix and other * operating systems where the translation also may prefix the name with * something, like 'lib', and ignored everywhere else. This flag is also * ignored if DSO_FLAG_NO_NAME_TRANSLATION is used at the same time. */ # define DSO_FLAG_NAME_TRANSLATION_EXT_ONLY 0x02 /* * The following flag controls the translation of symbol names to upper case. * This is currently only being implemented for OpenVMS. */ # define DSO_FLAG_UPCASE_SYMBOL 0x10 /* * This flag loads the library with public symbols. Meaning: The exported * symbols of this library are public to all libraries loaded after this * library. At the moment only implemented in unix. */ # define DSO_FLAG_GLOBAL_SYMBOLS 0x20 typedef void (*DSO_FUNC_TYPE) (void); typedef struct dso_st DSO; /* * The function prototype used for method functions (or caller-provided * callbacks) that transform filenames. They are passed a DSO structure * pointer (or NULL if they are to be used independantly of a DSO object) and * a filename to transform. They should either return NULL (if there is an * error condition) or a newly allocated string containing the transformed * form that the caller will need to free with OPENSSL_free() when done. */ typedef char *(*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); /* * The function prototype used for method functions (or caller-provided * callbacks) that merge two file specifications. They are passed a DSO * structure pointer (or NULL if they are to be used independantly of a DSO * object) and two file specifications to merge. They should either return * NULL (if there is an error condition) or a newly allocated string * containing the result of merging that the caller will need to free with * OPENSSL_free() when done. Here, merging means that bits and pieces are * taken from each of the file specifications and added together in whatever * fashion that is sensible for the DSO method in question. The only rule * that really applies is that if the two specification contain pieces of the * same type, the copy from the first string takes priority. One could see * it as the first specification is the one given by the user and the second * being a bunch of defaults to add on if they're missing in the first. */ typedef char *(*DSO_MERGER_FUNC)(DSO *, const char *, const char *); typedef struct dso_meth_st { const char *name; /* * Loads a shared library, NB: new DSO_METHODs must ensure that a * successful load populates the loaded_filename field, and likewise a * successful unload OPENSSL_frees and NULLs it out. */ int (*dso_load) (DSO *dso); /* Unloads a shared library */ int (*dso_unload) (DSO *dso); /* Binds a variable */ void *(*dso_bind_var) (DSO *dso, const char *symname); /* * Binds a function - assumes a return type of DSO_FUNC_TYPE. This should * be cast to the real function prototype by the caller. Platforms that * don't have compatible representations for different prototypes (this * is possible within ANSI C) are highly unlikely to have shared * libraries at all, let alone a DSO_METHOD implemented for them. */ DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname); /* I don't think this would actually be used in any circumstances. */ # if 0 /* Unbinds a variable */ int (*dso_unbind_var) (DSO *dso, char *symname, void *symptr); /* Unbinds a function */ int (*dso_unbind_func) (DSO *dso, char *symname, DSO_FUNC_TYPE symptr); # endif /* * The generic (yuck) "ctrl()" function. NB: Negative return values * (rather than zero) indicate errors. */ long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg); /* * The default DSO_METHOD-specific function for converting filenames to a * canonical native form. */ DSO_NAME_CONVERTER_FUNC dso_name_converter; /* * The default DSO_METHOD-specific function for converting filenames to a * canonical native form. */ DSO_MERGER_FUNC dso_merger; /* [De]Initialisation handlers. */ int (*init) (DSO *dso); int (*finish) (DSO *dso); /* Return pathname of the module containing location */ int (*pathbyaddr) (void *addr, char *path, int sz); /* Perform global symbol lookup, i.e. among *all* modules */ void *(*globallookup) (const char *symname); } DSO_METHOD; /**********************************************************************/ /* The low-level handle type used to refer to a loaded shared library */ struct dso_st { DSO_METHOD *meth; /* * Standard dlopen uses a (void *). Win32 uses a HANDLE. VMS doesn't use * anything but will need to cache the filename for use in the dso_bind * handler. All in all, let each method control its own destiny. * "Handles" and such go in a STACK. */ STACK_OF(void) *meth_data; int references; int flags; /* * For use by applications etc ... use this for your bits'n'pieces, don't * touch meth_data! */ CRYPTO_EX_DATA ex_data; /* * If this callback function pointer is set to non-NULL, then it will be * used in DSO_load() in place of meth->dso_name_converter. NB: This * should normally set using DSO_set_name_converter(). */ DSO_NAME_CONVERTER_FUNC name_converter; /* * If this callback function pointer is set to non-NULL, then it will be * used in DSO_load() in place of meth->dso_merger. NB: This should * normally set using DSO_set_merger(). */ DSO_MERGER_FUNC merger; /* * This is populated with (a copy of) the platform-independant filename * used for this DSO. */ char *filename; /* * This is populated with (a copy of) the translated filename by which * the DSO was actually loaded. It is NULL iff the DSO is not currently * loaded. NB: This is here because the filename translation process may * involve a callback being invoked more than once not only to convert to * a platform-specific form, but also to try different filenames in the * process of trying to perform a load. As such, this variable can be * used to indicate (a) whether this DSO structure corresponds to a * loaded library or not, and (b) the filename with which it was actually * loaded. */ char *loaded_filename; }; DSO *DSO_new(void); DSO *DSO_new_method(DSO_METHOD *method); int DSO_free(DSO *dso); int DSO_flags(DSO *dso); int DSO_up_ref(DSO *dso); long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg); /* * This function sets the DSO's name_converter callback. If it is non-NULL, * then it will be used instead of the associated DSO_METHOD's function. If * oldcb is non-NULL then it is set to the function pointer value being * replaced. Return value is non-zero for success. */ int DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, DSO_NAME_CONVERTER_FUNC *oldcb); /* * These functions can be used to get/set the platform-independant filename * used for a DSO. NB: set will fail if the DSO is already loaded. */ const char *DSO_get_filename(DSO *dso); int DSO_set_filename(DSO *dso, const char *filename); /* * This function will invoke the DSO's name_converter callback to translate a * filename, or if the callback isn't set it will instead use the DSO_METHOD's * converter. If "filename" is NULL, the "filename" in the DSO itself will be * used. If the DSO_FLAG_NO_NAME_TRANSLATION flag is set, then the filename is * simply duplicated. NB: This function is usually called from within a * DSO_METHOD during the processing of a DSO_load() call, and is exposed so * that caller-created DSO_METHODs can do the same thing. A non-NULL return * value will need to be OPENSSL_free()'d. */ char *DSO_convert_filename(DSO *dso, const char *filename); /* * This function will invoke the DSO's merger callback to merge two file * specifications, or if the callback isn't set it will instead use the * DSO_METHOD's merger. A non-NULL return value will need to be * OPENSSL_free()'d. */ char *DSO_merge(DSO *dso, const char *filespec1, const char *filespec2); /* * If the DSO is currently loaded, this returns the filename that it was * loaded under, otherwise it returns NULL. So it is also useful as a test as * to whether the DSO is currently loaded. NB: This will not necessarily * return the same value as DSO_convert_filename(dso, dso->filename), because * the DSO_METHOD's load function may have tried a variety of filenames (with * and/or without the aid of the converters) before settling on the one it * actually loaded. */ const char *DSO_get_loaded_filename(DSO *dso); void DSO_set_default_method(DSO_METHOD *meth); DSO_METHOD *DSO_get_default_method(void); DSO_METHOD *DSO_get_method(DSO *dso); DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth); /* * The all-singing all-dancing load function, you normally pass NULL for the * first and third parameters. Use DSO_up and DSO_free for subsequent * reference count handling. Any flags passed in will be set in the * constructed DSO after its init() function but before the load operation. * If 'dso' is non-NULL, 'flags' is ignored. */ DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags); /* This function binds to a variable inside a shared library. */ void *DSO_bind_var(DSO *dso, const char *symname); /* This function binds to a function inside a shared library. */ DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname); /* * This method is the default, but will beg, borrow, or steal whatever method * should be the default on any particular platform (including * DSO_METH_null() if necessary). */ DSO_METHOD *DSO_METHOD_openssl(void); /* * This method is defined for all platforms - if a platform has no DSO * support then this will be the only method! */ DSO_METHOD *DSO_METHOD_null(void); /* * If DSO_DLFCN is defined, the standard dlfcn.h-style functions (dlopen, * dlclose, dlsym, etc) will be used and incorporated into this method. If * not, this method will return NULL. */ DSO_METHOD *DSO_METHOD_dlfcn(void); /* * If DSO_DL is defined, the standard dl.h-style functions (shl_load, * shl_unload, shl_findsym, etc) will be used and incorporated into this * method. If not, this method will return NULL. */ DSO_METHOD *DSO_METHOD_dl(void); /* If WIN32 is defined, use DLLs. If not, return NULL. */ DSO_METHOD *DSO_METHOD_win32(void); /* If VMS is defined, use shared images. If not, return NULL. */ DSO_METHOD *DSO_METHOD_vms(void); /* * This function writes null-terminated pathname of DSO module containing * 'addr' into 'sz' large caller-provided 'path' and returns the number of * characters [including trailing zero] written to it. If 'sz' is 0 or * negative, 'path' is ignored and required amount of charachers [including * trailing zero] to accomodate pathname is returned. If 'addr' is NULL, then * pathname of cryptolib itself is returned. Negative or zero return value * denotes error. */ int DSO_pathbyaddr(void *addr, char *path, int sz); /* * This function should be used with caution! It looks up symbols in *all* * loaded modules and if module gets unloaded by somebody else attempt to * dereference the pointer is doomed to have fatal consequences. Primary * usage for this function is to probe *core* system functionality, e.g. * check if getnameinfo(3) is available at run-time without bothering about * OS-specific details such as libc.so.versioning or where does it actually * reside: in libc itself or libsocket. */ void *DSO_global_lookup(const char *name); /* If BeOS is defined, use shared images. If not, return NULL. */ DSO_METHOD *DSO_METHOD_beos(void); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_DSO_strings(void); /* Error codes for the DSO functions. */ /* Function codes. */ # define DSO_F_BEOS_BIND_FUNC 144 # define DSO_F_BEOS_BIND_VAR 145 # define DSO_F_BEOS_LOAD 146 # define DSO_F_BEOS_NAME_CONVERTER 147 # define DSO_F_BEOS_UNLOAD 148 # define DSO_F_DLFCN_BIND_FUNC 100 # define DSO_F_DLFCN_BIND_VAR 101 # define DSO_F_DLFCN_LOAD 102 # define DSO_F_DLFCN_MERGER 130 # define DSO_F_DLFCN_NAME_CONVERTER 123 # define DSO_F_DLFCN_UNLOAD 103 # define DSO_F_DL_BIND_FUNC 104 # define DSO_F_DL_BIND_VAR 105 # define DSO_F_DL_LOAD 106 # define DSO_F_DL_MERGER 131 # define DSO_F_DL_NAME_CONVERTER 124 # define DSO_F_DL_UNLOAD 107 # define DSO_F_DSO_BIND_FUNC 108 # define DSO_F_DSO_BIND_VAR 109 # define DSO_F_DSO_CONVERT_FILENAME 126 # define DSO_F_DSO_CTRL 110 # define DSO_F_DSO_FREE 111 # define DSO_F_DSO_GET_FILENAME 127 # define DSO_F_DSO_GET_LOADED_FILENAME 128 # define DSO_F_DSO_GLOBAL_LOOKUP 139 # define DSO_F_DSO_LOAD 112 # define DSO_F_DSO_MERGE 132 # define DSO_F_DSO_NEW_METHOD 113 # define DSO_F_DSO_PATHBYADDR 140 # define DSO_F_DSO_SET_FILENAME 129 # define DSO_F_DSO_SET_NAME_CONVERTER 122 # define DSO_F_DSO_UP_REF 114 # define DSO_F_GLOBAL_LOOKUP_FUNC 138 # define DSO_F_PATHBYADDR 137 # define DSO_F_VMS_BIND_SYM 115 # define DSO_F_VMS_LOAD 116 # define DSO_F_VMS_MERGER 133 # define DSO_F_VMS_UNLOAD 117 # define DSO_F_WIN32_BIND_FUNC 118 # define DSO_F_WIN32_BIND_VAR 119 # define DSO_F_WIN32_GLOBALLOOKUP 142 # define DSO_F_WIN32_GLOBALLOOKUP_FUNC 143 # define DSO_F_WIN32_JOINER 135 # define DSO_F_WIN32_LOAD 120 # define DSO_F_WIN32_MERGER 134 # define DSO_F_WIN32_NAME_CONVERTER 125 # define DSO_F_WIN32_PATHBYADDR 141 # define DSO_F_WIN32_SPLITTER 136 # define DSO_F_WIN32_UNLOAD 121 /* Reason codes. */ # define DSO_R_CTRL_FAILED 100 # define DSO_R_DSO_ALREADY_LOADED 110 # define DSO_R_EMPTY_FILE_STRUCTURE 113 # define DSO_R_FAILURE 114 # define DSO_R_FILENAME_TOO_BIG 101 # define DSO_R_FINISH_FAILED 102 # define DSO_R_INCORRECT_FILE_SYNTAX 115 # define DSO_R_LOAD_FAILED 103 # define DSO_R_NAME_TRANSLATION_FAILED 109 # define DSO_R_NO_FILENAME 111 # define DSO_R_NO_FILE_SPECIFICATION 116 # define DSO_R_NULL_HANDLE 104 # define DSO_R_SET_FILENAME_FAILED 112 # define DSO_R_STACK_ERROR 105 # define DSO_R_SYM_FAILURE 106 # define DSO_R_UNLOAD_FAILED 107 # define DSO_R_UNSUPPORTED 108 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/dtls1.h ================================================ /* ssl/dtls1.h */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. */ /* ==================================================================== * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_DTLS1_H # define HEADER_DTLS1_H # include # include # ifdef OPENSSL_SYS_VMS # include # include # endif # ifdef OPENSSL_SYS_WIN32 /* Needed for struct timeval */ # include # elif defined(OPENSSL_SYS_NETWARE) && !defined(_WINSOCK2API_) # include # else # if defined(OPENSSL_SYS_VXWORKS) # include # else # include # endif # endif #ifdef __cplusplus extern "C" { #endif # define DTLS1_VERSION 0xFEFF # define DTLS1_2_VERSION 0xFEFD # define DTLS_MAX_VERSION DTLS1_2_VERSION # define DTLS1_VERSION_MAJOR 0xFE # define DTLS1_BAD_VER 0x0100 /* Special value for method supporting multiple versions */ # define DTLS_ANY_VERSION 0x1FFFF # if 0 /* this alert description is not specified anywhere... */ # define DTLS1_AD_MISSING_HANDSHAKE_MESSAGE 110 # endif /* lengths of messages */ # define DTLS1_COOKIE_LENGTH 256 # define DTLS1_RT_HEADER_LENGTH 13 # define DTLS1_HM_HEADER_LENGTH 12 # define DTLS1_HM_BAD_FRAGMENT -2 # define DTLS1_HM_FRAGMENT_RETRY -3 # define DTLS1_CCS_HEADER_LENGTH 1 # ifdef DTLS1_AD_MISSING_HANDSHAKE_MESSAGE # define DTLS1_AL_HEADER_LENGTH 7 # else # define DTLS1_AL_HEADER_LENGTH 2 # endif # ifndef OPENSSL_NO_SSL_INTERN # ifndef OPENSSL_NO_SCTP # define DTLS1_SCTP_AUTH_LABEL "EXPORTER_DTLS_OVER_SCTP" # endif /* Max MTU overhead we know about so far is 40 for IPv6 + 8 for UDP */ # define DTLS1_MAX_MTU_OVERHEAD 48 typedef struct dtls1_bitmap_st { unsigned long map; /* track 32 packets on 32-bit systems and 64 * - on 64-bit systems */ unsigned char max_seq_num[8]; /* max record number seen so far, 64-bit * value in big-endian encoding */ } DTLS1_BITMAP; struct dtls1_retransmit_state { EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ EVP_MD_CTX *write_hash; /* used for mac generation */ # ifndef OPENSSL_NO_COMP COMP_CTX *compress; /* compression */ # else char *compress; # endif SSL_SESSION *session; unsigned short epoch; }; struct hm_header_st { unsigned char type; unsigned long msg_len; unsigned short seq; unsigned long frag_off; unsigned long frag_len; unsigned int is_ccs; struct dtls1_retransmit_state saved_retransmit_state; }; struct ccs_header_st { unsigned char type; unsigned short seq; }; struct dtls1_timeout_st { /* Number of read timeouts so far */ unsigned int read_timeouts; /* Number of write timeouts so far */ unsigned int write_timeouts; /* Number of alerts received so far */ unsigned int num_alerts; }; typedef struct record_pqueue_st { unsigned short epoch; pqueue q; } record_pqueue; typedef struct hm_fragment_st { struct hm_header_st msg_header; unsigned char *fragment; unsigned char *reassembly; } hm_fragment; typedef struct dtls1_state_st { unsigned int send_cookie; unsigned char cookie[DTLS1_COOKIE_LENGTH]; unsigned char rcvd_cookie[DTLS1_COOKIE_LENGTH]; unsigned int cookie_len; /* * The current data and handshake epoch. This is initially * undefined, and starts at zero once the initial handshake is * completed */ unsigned short r_epoch; unsigned short w_epoch; /* records being received in the current epoch */ DTLS1_BITMAP bitmap; /* renegotiation starts a new set of sequence numbers */ DTLS1_BITMAP next_bitmap; /* handshake message numbers */ unsigned short handshake_write_seq; unsigned short next_handshake_write_seq; unsigned short handshake_read_seq; /* save last sequence number for retransmissions */ unsigned char last_write_sequence[8]; /* Received handshake records (processed and unprocessed) */ record_pqueue unprocessed_rcds; record_pqueue processed_rcds; /* Buffered handshake messages */ pqueue buffered_messages; /* Buffered (sent) handshake records */ pqueue sent_messages; /* * Buffered application records. Only for records between CCS and * Finished to prevent either protocol violation or unnecessary message * loss. */ record_pqueue buffered_app_data; /* Is set when listening for new connections with dtls1_listen() */ unsigned int listen; unsigned int link_mtu; /* max on-the-wire DTLS packet size */ unsigned int mtu; /* max DTLS packet size */ struct hm_header_st w_msg_hdr; struct hm_header_st r_msg_hdr; struct dtls1_timeout_st timeout; /* * Indicates when the last handshake msg or heartbeat sent will timeout */ struct timeval next_timeout; /* Timeout duration */ unsigned short timeout_duration; /* * storage for Alert/Handshake protocol data received but not yet * processed by ssl3_read_bytes: */ unsigned char alert_fragment[DTLS1_AL_HEADER_LENGTH]; unsigned int alert_fragment_len; unsigned char handshake_fragment[DTLS1_HM_HEADER_LENGTH]; unsigned int handshake_fragment_len; unsigned int retransmitting; /* * Set when the handshake is ready to process peer's ChangeCipherSpec message. * Cleared after the message has been processed. */ unsigned int change_cipher_spec_ok; # ifndef OPENSSL_NO_SCTP /* used when SSL_ST_XX_FLUSH is entered */ int next_state; int shutdown_received; # endif } DTLS1_STATE; typedef struct dtls1_record_data_st { unsigned char *packet; unsigned int packet_length; SSL3_BUFFER rbuf; SSL3_RECORD rrec; # ifndef OPENSSL_NO_SCTP struct bio_dgram_sctp_rcvinfo recordinfo; # endif } DTLS1_RECORD_DATA; # endif /* Timeout multipliers (timeout slice is defined in apps/timeouts.h */ # define DTLS1_TMO_READ_COUNT 2 # define DTLS1_TMO_WRITE_COUNT 2 # define DTLS1_TMO_ALERT_COUNT 12 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/e_os2.h ================================================ /* e_os2.h */ /* ==================================================================== * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #include #ifndef HEADER_E_OS2_H # define HEADER_E_OS2_H #ifdef __cplusplus extern "C" { #endif /****************************************************************************** * Detect operating systems. This probably needs completing. * The result is that at least one OPENSSL_SYS_os macro should be defined. * However, if none is defined, Unix is assumed. **/ # define OPENSSL_SYS_UNIX /* ---------------------- Macintosh, before MacOS X ----------------------- */ # if defined(__MWERKS__) && defined(macintosh) || defined(OPENSSL_SYSNAME_MAC) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_MACINTOSH_CLASSIC # endif /* ---------------------- NetWare ----------------------------------------- */ # if defined(NETWARE) || defined(OPENSSL_SYSNAME_NETWARE) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_NETWARE # endif /* --------------------- Microsoft operating systems ---------------------- */ /* * Note that MSDOS actually denotes 32-bit environments running on top of * MS-DOS, such as DJGPP one. */ # if defined(OPENSSL_SYSNAME_MSDOS) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_MSDOS # endif /* * For 32 bit environment, there seems to be the CygWin environment and then * all the others that try to do the same thing Microsoft does... */ # if defined(OPENSSL_SYSNAME_UWIN) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WIN32_UWIN # else # if defined(__CYGWIN__) || defined(OPENSSL_SYSNAME_CYGWIN) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WIN32_CYGWIN # else # if defined(_WIN32) || defined(OPENSSL_SYSNAME_WIN32) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WIN32 # endif # if defined(_WIN64) || defined(OPENSSL_SYSNAME_WIN64) # undef OPENSSL_SYS_UNIX # if !defined(OPENSSL_SYS_WIN64) # define OPENSSL_SYS_WIN64 # endif # endif # if defined(OPENSSL_SYSNAME_WINNT) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WINNT # endif # if defined(OPENSSL_SYSNAME_WINCE) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WINCE # endif # endif # endif /* Anything that tries to look like Microsoft is "Windows" */ # if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN64) || defined(OPENSSL_SYS_WINNT) || defined(OPENSSL_SYS_WINCE) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_WINDOWS # ifndef OPENSSL_SYS_MSDOS # define OPENSSL_SYS_MSDOS # endif # endif /* * DLL settings. This part is a bit tough, because it's up to the * application implementor how he or she will link the application, so it * requires some macro to be used. */ # ifdef OPENSSL_SYS_WINDOWS # ifndef OPENSSL_OPT_WINDLL # if defined(_WINDLL) /* This is used when building OpenSSL to * indicate that DLL linkage should be used */ # define OPENSSL_OPT_WINDLL # endif # endif # endif /* ------------------------------- OpenVMS -------------------------------- */ # if defined(__VMS) || defined(VMS) || defined(OPENSSL_SYSNAME_VMS) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_VMS # if defined(__DECC) # define OPENSSL_SYS_VMS_DECC # elif defined(__DECCXX) # define OPENSSL_SYS_VMS_DECC # define OPENSSL_SYS_VMS_DECCXX # else # define OPENSSL_SYS_VMS_NODECC # endif # endif /* -------------------------------- OS/2 ---------------------------------- */ # if defined(__EMX__) || defined(__OS2__) # undef OPENSSL_SYS_UNIX # define OPENSSL_SYS_OS2 # endif /* -------------------------------- Unix ---------------------------------- */ # ifdef OPENSSL_SYS_UNIX # if defined(linux) || defined(__linux__) || defined(OPENSSL_SYSNAME_LINUX) # define OPENSSL_SYS_LINUX # endif # ifdef OPENSSL_SYSNAME_MPE # define OPENSSL_SYS_MPE # endif # ifdef OPENSSL_SYSNAME_SNI # define OPENSSL_SYS_SNI # endif # ifdef OPENSSL_SYSNAME_ULTRASPARC # define OPENSSL_SYS_ULTRASPARC # endif # ifdef OPENSSL_SYSNAME_NEWS4 # define OPENSSL_SYS_NEWS4 # endif # ifdef OPENSSL_SYSNAME_MACOSX # define OPENSSL_SYS_MACOSX # endif # ifdef OPENSSL_SYSNAME_MACOSX_RHAPSODY # define OPENSSL_SYS_MACOSX_RHAPSODY # define OPENSSL_SYS_MACOSX # endif # ifdef OPENSSL_SYSNAME_SUNOS # define OPENSSL_SYS_SUNOS # endif # if defined(_CRAY) || defined(OPENSSL_SYSNAME_CRAY) # define OPENSSL_SYS_CRAY # endif # if defined(_AIX) || defined(OPENSSL_SYSNAME_AIX) # define OPENSSL_SYS_AIX # endif # endif /* -------------------------------- VOS ----------------------------------- */ # if defined(__VOS__) || defined(OPENSSL_SYSNAME_VOS) # define OPENSSL_SYS_VOS # ifdef __HPPA__ # define OPENSSL_SYS_VOS_HPPA # endif # ifdef __IA32__ # define OPENSSL_SYS_VOS_IA32 # endif # endif /* ------------------------------ VxWorks --------------------------------- */ # ifdef OPENSSL_SYSNAME_VXWORKS # define OPENSSL_SYS_VXWORKS # endif /* -------------------------------- BeOS ---------------------------------- */ # if defined(__BEOS__) # define OPENSSL_SYS_BEOS # include # if defined(BONE_VERSION) # define OPENSSL_SYS_BEOS_BONE # else # define OPENSSL_SYS_BEOS_R5 # endif # endif /** * That's it for OS-specific stuff *****************************************************************************/ /* Specials for I/O an exit */ # ifdef OPENSSL_SYS_MSDOS # define OPENSSL_UNISTD_IO # define OPENSSL_DECLARE_EXIT extern void exit(int); # else # define OPENSSL_UNISTD_IO OPENSSL_UNISTD # define OPENSSL_DECLARE_EXIT /* declared in unistd.h */ # endif /*- * Definitions of OPENSSL_GLOBAL and OPENSSL_EXTERN, to define and declare * certain global symbols that, with some compilers under VMS, have to be * defined and declared explicitely with globaldef and globalref. * Definitions of OPENSSL_EXPORT and OPENSSL_IMPORT, to define and declare * DLL exports and imports for compilers under Win32. These are a little * more complicated to use. Basically, for any library that exports some * global variables, the following code must be present in the header file * that declares them, before OPENSSL_EXTERN is used: * * #ifdef SOME_BUILD_FLAG_MACRO * # undef OPENSSL_EXTERN * # define OPENSSL_EXTERN OPENSSL_EXPORT * #endif * * The default is to have OPENSSL_EXPORT, OPENSSL_IMPORT and OPENSSL_GLOBAL * have some generally sensible values, and for OPENSSL_EXTERN to have the * value OPENSSL_IMPORT. */ # if defined(OPENSSL_SYS_VMS_NODECC) # define OPENSSL_EXPORT globalref # define OPENSSL_IMPORT globalref # define OPENSSL_GLOBAL globaldef # elif defined(OPENSSL_SYS_WINDOWS) && defined(OPENSSL_OPT_WINDLL) # define OPENSSL_EXPORT extern __declspec(dllexport) # define OPENSSL_IMPORT extern __declspec(dllimport) # define OPENSSL_GLOBAL # else # define OPENSSL_EXPORT extern # define OPENSSL_IMPORT extern # define OPENSSL_GLOBAL # endif # define OPENSSL_EXTERN OPENSSL_IMPORT /*- * Macros to allow global variables to be reached through function calls when * required (if a shared library version requires it, for example. * The way it's done allows definitions like this: * * // in foobar.c * OPENSSL_IMPLEMENT_GLOBAL(int,foobar,0) * // in foobar.h * OPENSSL_DECLARE_GLOBAL(int,foobar); * #define foobar OPENSSL_GLOBAL_REF(foobar) */ # ifdef OPENSSL_EXPORT_VAR_AS_FUNCTION # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) \ type *_shadow_##name(void) \ { static type _hide_##name=value; return &_hide_##name; } # define OPENSSL_DECLARE_GLOBAL(type,name) type *_shadow_##name(void) # define OPENSSL_GLOBAL_REF(name) (*(_shadow_##name())) # else # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) OPENSSL_GLOBAL type _shadow_##name=value; # define OPENSSL_DECLARE_GLOBAL(type,name) OPENSSL_EXPORT type _shadow_##name # define OPENSSL_GLOBAL_REF(name) _shadow_##name # endif # if defined(OPENSSL_SYS_MACINTOSH_CLASSIC) && macintosh==1 && !defined(MAC_OS_GUSI_SOURCE) # define ossl_ssize_t long # endif # ifdef OPENSSL_SYS_MSDOS # define ossl_ssize_t long # endif # if defined(NeXT) || defined(OPENSSL_SYS_NEWS4) || defined(OPENSSL_SYS_SUNOS) # define ssize_t int # endif # if defined(__ultrix) && !defined(ssize_t) # define ossl_ssize_t int # endif # ifndef ossl_ssize_t # define ossl_ssize_t ssize_t # endif #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ebcdic.h ================================================ /* crypto/ebcdic.h */ #ifndef HEADER_EBCDIC_H # define HEADER_EBCDIC_H # include #ifdef __cplusplus extern "C" { #endif /* Avoid name clashes with other applications */ # define os_toascii _openssl_os_toascii # define os_toebcdic _openssl_os_toebcdic # define ebcdic2ascii _openssl_ebcdic2ascii # define ascii2ebcdic _openssl_ascii2ebcdic extern const unsigned char os_toascii[256]; extern const unsigned char os_toebcdic[256]; void *ebcdic2ascii(void *dest, const void *srce, size_t count); void *ascii2ebcdic(void *dest, const void *srce, size_t count); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ec.h ================================================ /* crypto/ec/ec.h */ /* * Originally written by Bodo Moeller for the OpenSSL project. */ /** * \file crypto/ec/ec.h Include file for the OpenSSL EC functions * \author Originally written by Bodo Moeller for the OpenSSL project */ /* ==================================================================== * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * Portions of the attached software ("Contribution") are developed by * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. * * The Contribution is licensed pursuant to the OpenSSL open source * license provided above. * * The elliptic curve binary polynomial software is originally written by * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories. * */ #ifndef HEADER_EC_H # define HEADER_EC_H # include # ifdef OPENSSL_NO_EC # error EC is disabled. # endif # include # include # ifndef OPENSSL_NO_DEPRECATED # include # endif # ifdef __cplusplus extern "C" { # elif defined(__SUNPRO_C) # if __SUNPRO_C >= 0x520 # pragma error_messages (off,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE) # endif # endif # ifndef OPENSSL_ECC_MAX_FIELD_BITS # define OPENSSL_ECC_MAX_FIELD_BITS 661 # endif /** Enum for the point conversion form as defined in X9.62 (ECDSA) * for the encoding of a elliptic curve point (x,y) */ typedef enum { /** the point is encoded as z||x, where the octet z specifies * which solution of the quadratic equation y is */ POINT_CONVERSION_COMPRESSED = 2, /** the point is encoded as z||x||y, where z is the octet 0x04 */ POINT_CONVERSION_UNCOMPRESSED = 4, /** the point is encoded as z||x||y, where the octet z specifies * which solution of the quadratic equation y is */ POINT_CONVERSION_HYBRID = 6 } point_conversion_form_t; typedef struct ec_method_st EC_METHOD; typedef struct ec_group_st /*- EC_METHOD *meth; -- field definition -- curve coefficients -- optional generator with associated information (order, cofactor) -- optional extra data (precomputed table for fast computation of multiples of generator) -- ASN1 stuff */ EC_GROUP; typedef struct ec_point_st EC_POINT; /********************************************************************/ /* EC_METHODs for curves over GF(p) */ /********************************************************************/ /** Returns the basic GFp ec methods which provides the basis for the * optimized methods. * \return EC_METHOD object */ const EC_METHOD *EC_GFp_simple_method(void); /** Returns GFp methods using montgomery multiplication. * \return EC_METHOD object */ const EC_METHOD *EC_GFp_mont_method(void); /** Returns GFp methods using optimized methods for NIST recommended curves * \return EC_METHOD object */ const EC_METHOD *EC_GFp_nist_method(void); # ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 /** Returns 64-bit optimized methods for nistp224 * \return EC_METHOD object */ const EC_METHOD *EC_GFp_nistp224_method(void); /** Returns 64-bit optimized methods for nistp256 * \return EC_METHOD object */ const EC_METHOD *EC_GFp_nistp256_method(void); /** Returns 64-bit optimized methods for nistp521 * \return EC_METHOD object */ const EC_METHOD *EC_GFp_nistp521_method(void); # endif # ifndef OPENSSL_NO_EC2M /********************************************************************/ /* EC_METHOD for curves over GF(2^m) */ /********************************************************************/ /** Returns the basic GF2m ec method * \return EC_METHOD object */ const EC_METHOD *EC_GF2m_simple_method(void); # endif /********************************************************************/ /* EC_GROUP functions */ /********************************************************************/ /** Creates a new EC_GROUP object * \param meth EC_METHOD to use * \return newly created EC_GROUP object or NULL in case of an error. */ EC_GROUP *EC_GROUP_new(const EC_METHOD *meth); /** Frees a EC_GROUP object * \param group EC_GROUP object to be freed. */ void EC_GROUP_free(EC_GROUP *group); /** Clears and frees a EC_GROUP object * \param group EC_GROUP object to be cleared and freed. */ void EC_GROUP_clear_free(EC_GROUP *group); /** Copies EC_GROUP objects. Note: both EC_GROUPs must use the same EC_METHOD. * \param dst destination EC_GROUP object * \param src source EC_GROUP object * \return 1 on success and 0 if an error occurred. */ int EC_GROUP_copy(EC_GROUP *dst, const EC_GROUP *src); /** Creates a new EC_GROUP object and copies the copies the content * form src to the newly created EC_KEY object * \param src source EC_GROUP object * \return newly created EC_GROUP object or NULL in case of an error. */ EC_GROUP *EC_GROUP_dup(const EC_GROUP *src); /** Returns the EC_METHOD of the EC_GROUP object. * \param group EC_GROUP object * \return EC_METHOD used in this EC_GROUP object. */ const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group); /** Returns the field type of the EC_METHOD. * \param meth EC_METHOD object * \return NID of the underlying field type OID. */ int EC_METHOD_get_field_type(const EC_METHOD *meth); /** Sets the generator and it's order/cofactor of a EC_GROUP object. * \param group EC_GROUP object * \param generator EC_POINT object with the generator. * \param order the order of the group generated by the generator. * \param cofactor the index of the sub-group generated by the generator * in the group of all points on the elliptic curve. * \return 1 on success and 0 if an error occured */ int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor); /** Returns the generator of a EC_GROUP object. * \param group EC_GROUP object * \return the currently used generator (possibly NULL). */ const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group); /** Returns the montgomery data for order(Generator) * \param group EC_GROUP object * \return the currently used generator (possibly NULL). */ BN_MONT_CTX *EC_GROUP_get_mont_data(const EC_GROUP *group); /** Gets the order of a EC_GROUP * \param group EC_GROUP object * \param order BIGNUM to which the order is copied * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx); /** Gets the cofactor of a EC_GROUP * \param group EC_GROUP object * \param cofactor BIGNUM to which the cofactor is copied * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx); /** Sets the name of a EC_GROUP object * \param group EC_GROUP object * \param nid NID of the curve name OID */ void EC_GROUP_set_curve_name(EC_GROUP *group, int nid); /** Returns the curve name of a EC_GROUP object * \param group EC_GROUP object * \return NID of the curve name OID or 0 if not set. */ int EC_GROUP_get_curve_name(const EC_GROUP *group); void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag); int EC_GROUP_get_asn1_flag(const EC_GROUP *group); void EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form); point_conversion_form_t EC_GROUP_get_point_conversion_form(const EC_GROUP *); unsigned char *EC_GROUP_get0_seed(const EC_GROUP *x); size_t EC_GROUP_get_seed_len(const EC_GROUP *); size_t EC_GROUP_set_seed(EC_GROUP *, const unsigned char *, size_t len); /** Sets the parameter of a ec over GFp defined by y^2 = x^3 + a*x + b * \param group EC_GROUP object * \param p BIGNUM with the prime number * \param a BIGNUM with parameter a of the equation * \param b BIGNUM with parameter b of the equation * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); /** Gets the parameter of the ec over GFp defined by y^2 = x^3 + a*x + b * \param group EC_GROUP object * \param p BIGNUM for the prime number * \param a BIGNUM for parameter a of the equation * \param b BIGNUM for parameter b of the equation * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx); # ifndef OPENSSL_NO_EC2M /** Sets the parameter of a ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b * \param group EC_GROUP object * \param p BIGNUM with the polynomial defining the underlying field * \param a BIGNUM with parameter a of the equation * \param b BIGNUM with parameter b of the equation * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); /** Gets the parameter of the ec over GF2m defined by y^2 + x*y = x^3 + a*x^2 + b * \param group EC_GROUP object * \param p BIGNUM for the polynomial defining the underlying field * \param a BIGNUM for parameter a of the equation * \param b BIGNUM for parameter b of the equation * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx); # endif /** Returns the number of bits needed to represent a field element * \param group EC_GROUP object * \return number of bits needed to represent a field element */ int EC_GROUP_get_degree(const EC_GROUP *group); /** Checks whether the parameter in the EC_GROUP define a valid ec group * \param group EC_GROUP object * \param ctx BN_CTX object (optional) * \return 1 if group is a valid ec group and 0 otherwise */ int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx); /** Checks whether the discriminant of the elliptic curve is zero or not * \param group EC_GROUP object * \param ctx BN_CTX object (optional) * \return 1 if the discriminant is not zero and 0 otherwise */ int EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx); /** Compares two EC_GROUP objects * \param a first EC_GROUP object * \param b second EC_GROUP object * \param ctx BN_CTX object (optional) * \return 0 if both groups are equal and 1 otherwise */ int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx); /* * EC_GROUP_new_GF*() calls EC_GROUP_new() and EC_GROUP_set_GF*() after * choosing an appropriate EC_METHOD */ /** Creates a new EC_GROUP object with the specified parameters defined * over GFp (defined by the equation y^2 = x^3 + a*x + b) * \param p BIGNUM with the prime number * \param a BIGNUM with the parameter a of the equation * \param b BIGNUM with the parameter b of the equation * \param ctx BN_CTX object (optional) * \return newly created EC_GROUP object with the specified parameters */ EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); # ifndef OPENSSL_NO_EC2M /** Creates a new EC_GROUP object with the specified parameters defined * over GF2m (defined by the equation y^2 + x*y = x^3 + a*x^2 + b) * \param p BIGNUM with the polynomial defining the underlying field * \param a BIGNUM with the parameter a of the equation * \param b BIGNUM with the parameter b of the equation * \param ctx BN_CTX object (optional) * \return newly created EC_GROUP object with the specified parameters */ EC_GROUP *EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx); # endif /** Creates a EC_GROUP object with a curve specified by a NID * \param nid NID of the OID of the curve name * \return newly created EC_GROUP object with specified curve or NULL * if an error occurred */ EC_GROUP *EC_GROUP_new_by_curve_name(int nid); /********************************************************************/ /* handling of internal curves */ /********************************************************************/ typedef struct { int nid; const char *comment; } EC_builtin_curve; /* * EC_builtin_curves(EC_builtin_curve *r, size_t size) returns number of all * available curves or zero if a error occurred. In case r ist not zero * nitems EC_builtin_curve structures are filled with the data of the first * nitems internal groups */ size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems); const char *EC_curve_nid2nist(int nid); int EC_curve_nist2nid(const char *name); /********************************************************************/ /* EC_POINT functions */ /********************************************************************/ /** Creates a new EC_POINT object for the specified EC_GROUP * \param group EC_GROUP the underlying EC_GROUP object * \return newly created EC_POINT object or NULL if an error occurred */ EC_POINT *EC_POINT_new(const EC_GROUP *group); /** Frees a EC_POINT object * \param point EC_POINT object to be freed */ void EC_POINT_free(EC_POINT *point); /** Clears and frees a EC_POINT object * \param point EC_POINT object to be cleared and freed */ void EC_POINT_clear_free(EC_POINT *point); /** Copies EC_POINT object * \param dst destination EC_POINT object * \param src source EC_POINT object * \return 1 on success and 0 if an error occured */ int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src); /** Creates a new EC_POINT object and copies the content of the supplied * EC_POINT * \param src source EC_POINT object * \param group underlying the EC_GROUP object * \return newly created EC_POINT object or NULL if an error occurred */ EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group); /** Returns the EC_METHOD used in EC_POINT object * \param point EC_POINT object * \return the EC_METHOD used */ const EC_METHOD *EC_POINT_method_of(const EC_POINT *point); /** Sets a point to infinity (neutral element) * \param group underlying EC_GROUP object * \param point EC_POINT to set to infinity * \return 1 on success and 0 if an error occured */ int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point); /** Sets the jacobian projective coordinates of a EC_POINT over GFp * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM with the x-coordinate * \param y BIGNUM with the y-coordinate * \param z BIGNUM with the z-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx); /** Gets the jacobian projective coordinates of a EC_POINT over GFp * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM for the x-coordinate * \param y BIGNUM for the y-coordinate * \param z BIGNUM for the z-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *p, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx); /** Sets the affine coordinates of a EC_POINT over GFp * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM with the x-coordinate * \param y BIGNUM with the y-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx); /** Gets the affine coordinates of a EC_POINT over GFp * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM for the x-coordinate * \param y BIGNUM for the y-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx); /** Sets the x9.62 compressed coordinates of a EC_POINT over GFp * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM with x-coordinate * \param y_bit integer with the y-Bit (either 0 or 1) * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, int y_bit, BN_CTX *ctx); # ifndef OPENSSL_NO_EC2M /** Sets the affine coordinates of a EC_POINT over GF2m * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM with the x-coordinate * \param y BIGNUM with the y-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx); /** Gets the affine coordinates of a EC_POINT over GF2m * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM for the x-coordinate * \param y BIGNUM for the y-coordinate * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx); /** Sets the x9.62 compressed coordinates of a EC_POINT over GF2m * \param group underlying EC_GROUP object * \param p EC_POINT object * \param x BIGNUM with x-coordinate * \param y_bit integer with the y-Bit (either 0 or 1) * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p, const BIGNUM *x, int y_bit, BN_CTX *ctx); # endif /** Encodes a EC_POINT object to a octet string * \param group underlying EC_GROUP object * \param p EC_POINT object * \param form point conversion form * \param buf memory buffer for the result. If NULL the function returns * required buffer size. * \param len length of the memory buffer * \param ctx BN_CTX object (optional) * \return the length of the encoded octet string or 0 if an error occurred */ size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx); /** Decodes a EC_POINT from a octet string * \param group underlying EC_GROUP object * \param p EC_POINT object * \param buf memory buffer with the encoded ec point * \param len length of the encoded ec point * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p, const unsigned char *buf, size_t len, BN_CTX *ctx); /* other interfaces to point2oct/oct2point: */ BIGNUM *EC_POINT_point2bn(const EC_GROUP *, const EC_POINT *, point_conversion_form_t form, BIGNUM *, BN_CTX *); EC_POINT *EC_POINT_bn2point(const EC_GROUP *, const BIGNUM *, EC_POINT *, BN_CTX *); char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *, point_conversion_form_t form, BN_CTX *); EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *, EC_POINT *, BN_CTX *); /********************************************************************/ /* functions for doing EC_POINT arithmetic */ /********************************************************************/ /** Computes the sum of two EC_POINT * \param group underlying EC_GROUP object * \param r EC_POINT object for the result (r = a + b) * \param a EC_POINT object with the first summand * \param b EC_POINT object with the second summand * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx); /** Computes the double of a EC_POINT * \param group underlying EC_GROUP object * \param r EC_POINT object for the result (r = 2 * a) * \param a EC_POINT object * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx); /** Computes the inverse of a EC_POINT * \param group underlying EC_GROUP object * \param a EC_POINT object to be inverted (it's used for the result as well) * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx); /** Checks whether the point is the neutral element of the group * \param group the underlying EC_GROUP object * \param p EC_POINT object * \return 1 if the point is the neutral element and 0 otherwise */ int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p); /** Checks whether the point is on the curve * \param group underlying EC_GROUP object * \param point EC_POINT object to check * \param ctx BN_CTX object (optional) * \return 1 if point if on the curve and 0 otherwise */ int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx); /** Compares two EC_POINTs * \param group underlying EC_GROUP object * \param a first EC_POINT object * \param b second EC_POINT object * \param ctx BN_CTX object (optional) * \return 0 if both points are equal and a value != 0 otherwise */ int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx); int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx); int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx); /** Computes r = generator * n sum_{i=0}^{num-1} p[i] * m[i] * \param group underlying EC_GROUP object * \param r EC_POINT object for the result * \param n BIGNUM with the multiplier for the group generator (optional) * \param num number futher summands * \param p array of size num of EC_POINT objects * \param m array of size num of BIGNUM objects * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, size_t num, const EC_POINT *p[], const BIGNUM *m[], BN_CTX *ctx); /** Computes r = generator * n + q * m * \param group underlying EC_GROUP object * \param r EC_POINT object for the result * \param n BIGNUM with the multiplier for the group generator (optional) * \param q EC_POINT object with the first factor of the second summand * \param m BIGNUM with the second factor of the second summand * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx); /** Stores multiples of generator for faster point multiplication * \param group EC_GROUP object * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occured */ int EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx); /** Reports whether a precomputation has been done * \param group EC_GROUP object * \return 1 if a pre-computation has been done and 0 otherwise */ int EC_GROUP_have_precompute_mult(const EC_GROUP *group); /********************************************************************/ /* ASN1 stuff */ /********************************************************************/ /* * EC_GROUP_get_basis_type() returns the NID of the basis type used to * represent the field elements */ int EC_GROUP_get_basis_type(const EC_GROUP *); # ifndef OPENSSL_NO_EC2M int EC_GROUP_get_trinomial_basis(const EC_GROUP *, unsigned int *k); int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1, unsigned int *k2, unsigned int *k3); # endif # define OPENSSL_EC_NAMED_CURVE 0x001 typedef struct ecpk_parameters_st ECPKPARAMETERS; EC_GROUP *d2i_ECPKParameters(EC_GROUP **, const unsigned char **in, long len); int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out); # define d2i_ECPKParameters_bio(bp,x) ASN1_d2i_bio_of(EC_GROUP,NULL,d2i_ECPKParameters,bp,x) # define i2d_ECPKParameters_bio(bp,x) ASN1_i2d_bio_of_const(EC_GROUP,i2d_ECPKParameters,bp,x) # define d2i_ECPKParameters_fp(fp,x) (EC_GROUP *)ASN1_d2i_fp(NULL, \ (char *(*)())d2i_ECPKParameters,(fp),(unsigned char **)(x)) # define i2d_ECPKParameters_fp(fp,x) ASN1_i2d_fp(i2d_ECPKParameters,(fp), \ (unsigned char *)(x)) # ifndef OPENSSL_NO_BIO int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off); # endif # ifndef OPENSSL_NO_FP_API int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off); # endif /********************************************************************/ /* EC_KEY functions */ /********************************************************************/ typedef struct ec_key_st EC_KEY; /* some values for the encoding_flag */ # define EC_PKEY_NO_PARAMETERS 0x001 # define EC_PKEY_NO_PUBKEY 0x002 /* some values for the flags field */ # define EC_FLAG_NON_FIPS_ALLOW 0x1 # define EC_FLAG_FIPS_CHECKED 0x2 /** Creates a new EC_KEY object. * \return EC_KEY object or NULL if an error occurred. */ EC_KEY *EC_KEY_new(void); int EC_KEY_get_flags(const EC_KEY *key); void EC_KEY_set_flags(EC_KEY *key, int flags); void EC_KEY_clear_flags(EC_KEY *key, int flags); /** Creates a new EC_KEY object using a named curve as underlying * EC_GROUP object. * \param nid NID of the named curve. * \return EC_KEY object or NULL if an error occurred. */ EC_KEY *EC_KEY_new_by_curve_name(int nid); /** Frees a EC_KEY object. * \param key EC_KEY object to be freed. */ void EC_KEY_free(EC_KEY *key); /** Copies a EC_KEY object. * \param dst destination EC_KEY object * \param src src EC_KEY object * \return dst or NULL if an error occurred. */ EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src); /** Creates a new EC_KEY object and copies the content from src to it. * \param src the source EC_KEY object * \return newly created EC_KEY object or NULL if an error occurred. */ EC_KEY *EC_KEY_dup(const EC_KEY *src); /** Increases the internal reference count of a EC_KEY object. * \param key EC_KEY object * \return 1 on success and 0 if an error occurred. */ int EC_KEY_up_ref(EC_KEY *key); /** Returns the EC_GROUP object of a EC_KEY object * \param key EC_KEY object * \return the EC_GROUP object (possibly NULL). */ const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); /** Sets the EC_GROUP of a EC_KEY object. * \param key EC_KEY object * \param group EC_GROUP to use in the EC_KEY object (note: the EC_KEY * object will use an own copy of the EC_GROUP). * \return 1 on success and 0 if an error occurred. */ int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group); /** Returns the private key of a EC_KEY object. * \param key EC_KEY object * \return a BIGNUM with the private key (possibly NULL). */ const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); /** Sets the private key of a EC_KEY object. * \param key EC_KEY object * \param prv BIGNUM with the private key (note: the EC_KEY object * will use an own copy of the BIGNUM). * \return 1 on success and 0 if an error occurred. */ int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv); /** Returns the public key of a EC_KEY object. * \param key the EC_KEY object * \return a EC_POINT object with the public key (possibly NULL) */ const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); /** Sets the public key of a EC_KEY object. * \param key EC_KEY object * \param pub EC_POINT object with the public key (note: the EC_KEY object * will use an own copy of the EC_POINT object). * \return 1 on success and 0 if an error occurred. */ int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub); unsigned EC_KEY_get_enc_flags(const EC_KEY *key); void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags); point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); /* functions to set/get method specific data */ void *EC_KEY_get_key_method_data(EC_KEY *key, void *(*dup_func) (void *), void (*free_func) (void *), void (*clear_free_func) (void *)); /** Sets the key method data of an EC_KEY object, if none has yet been set. * \param key EC_KEY object * \param data opaque data to install. * \param dup_func a function that duplicates |data|. * \param free_func a function that frees |data|. * \param clear_free_func a function that wipes and frees |data|. * \return the previously set data pointer, or NULL if |data| was inserted. */ void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data, void *(*dup_func) (void *), void (*free_func) (void *), void (*clear_free_func) (void *)); /* wrapper functions for the underlying EC_GROUP object */ void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); /** Creates a table of pre-computed multiples of the generator to * accelerate further EC_KEY operations. * \param key EC_KEY object * \param ctx BN_CTX object (optional) * \return 1 on success and 0 if an error occurred. */ int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); /** Creates a new ec private (and optional a new public) key. * \param key EC_KEY object * \return 1 on success and 0 if an error occurred. */ int EC_KEY_generate_key(EC_KEY *key); /** Verifies that a private and/or public key is valid. * \param key the EC_KEY object * \return 1 on success and 0 otherwise. */ int EC_KEY_check_key(const EC_KEY *key); /** Sets a public key from affine coordindates performing * neccessary NIST PKV tests. * \param key the EC_KEY object * \param x public key x coordinate * \param y public key y coordinate * \return 1 on success and 0 otherwise. */ int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y); /********************************************************************/ /* de- and encoding functions for SEC1 ECPrivateKey */ /********************************************************************/ /** Decodes a private key from a memory buffer. * \param key a pointer to a EC_KEY object which should be used (or NULL) * \param in pointer to memory with the DER encoded private key * \param len length of the DER encoded private key * \return the decoded private key or NULL if an error occurred. */ EC_KEY *d2i_ECPrivateKey(EC_KEY **key, const unsigned char **in, long len); /** Encodes a private key object and stores the result in a buffer. * \param key the EC_KEY object to encode * \param out the buffer for the result (if NULL the function returns number * of bytes needed). * \return 1 on success and 0 if an error occurred. */ int i2d_ECPrivateKey(EC_KEY *key, unsigned char **out); /********************************************************************/ /* de- and encoding functions for EC parameters */ /********************************************************************/ /** Decodes ec parameter from a memory buffer. * \param key a pointer to a EC_KEY object which should be used (or NULL) * \param in pointer to memory with the DER encoded ec parameters * \param len length of the DER encoded ec parameters * \return a EC_KEY object with the decoded parameters or NULL if an error * occurred. */ EC_KEY *d2i_ECParameters(EC_KEY **key, const unsigned char **in, long len); /** Encodes ec parameter and stores the result in a buffer. * \param key the EC_KEY object with ec paramters to encode * \param out the buffer for the result (if NULL the function returns number * of bytes needed). * \return 1 on success and 0 if an error occurred. */ int i2d_ECParameters(EC_KEY *key, unsigned char **out); /********************************************************************/ /* de- and encoding functions for EC public key */ /* (octet string, not DER -- hence 'o2i' and 'i2o') */ /********************************************************************/ /** Decodes a ec public key from a octet string. * \param key a pointer to a EC_KEY object which should be used * \param in memory buffer with the encoded public key * \param len length of the encoded public key * \return EC_KEY object with decoded public key or NULL if an error * occurred. */ EC_KEY *o2i_ECPublicKey(EC_KEY **key, const unsigned char **in, long len); /** Encodes a ec public key in an octet string. * \param key the EC_KEY object with the public key * \param out the buffer for the result (if NULL the function returns number * of bytes needed). * \return 1 on success and 0 if an error occurred */ int i2o_ECPublicKey(EC_KEY *key, unsigned char **out); # ifndef OPENSSL_NO_BIO /** Prints out the ec parameters on human readable form. * \param bp BIO object to which the information is printed * \param key EC_KEY object * \return 1 on success and 0 if an error occurred */ int ECParameters_print(BIO *bp, const EC_KEY *key); /** Prints out the contents of a EC_KEY object * \param bp BIO object to which the information is printed * \param key EC_KEY object * \param off line offset * \return 1 on success and 0 if an error occurred */ int EC_KEY_print(BIO *bp, const EC_KEY *key, int off); # endif # ifndef OPENSSL_NO_FP_API /** Prints out the ec parameters on human readable form. * \param fp file descriptor to which the information is printed * \param key EC_KEY object * \return 1 on success and 0 if an error occurred */ int ECParameters_print_fp(FILE *fp, const EC_KEY *key); /** Prints out the contents of a EC_KEY object * \param fp file descriptor to which the information is printed * \param key EC_KEY object * \param off line offset * \return 1 on success and 0 if an error occurred */ int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off); # endif # define ECParameters_dup(x) ASN1_dup_of(EC_KEY,i2d_ECParameters,d2i_ECParameters,x) # ifndef __cplusplus # if defined(__SUNPRO_C) # if __SUNPRO_C >= 0x520 # pragma error_messages (default,E_ARRAY_OF_INCOMPLETE_NONAME,E_ARRAY_OF_INCOMPLETE) # endif # endif # endif # define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_PARAMGEN|EVP_PKEY_OP_KEYGEN, \ EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL) # define EVP_PKEY_CTX_set_ec_param_enc(ctx, flag) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_PARAMGEN|EVP_PKEY_OP_KEYGEN, \ EVP_PKEY_CTRL_EC_PARAM_ENC, flag, NULL) # define EVP_PKEY_CTX_set_ecdh_cofactor_mode(ctx, flag) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_ECDH_COFACTOR, flag, NULL) # define EVP_PKEY_CTX_get_ecdh_cofactor_mode(ctx) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_ECDH_COFACTOR, -2, NULL) # define EVP_PKEY_CTX_set_ecdh_kdf_type(ctx, kdf) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_KDF_TYPE, kdf, NULL) # define EVP_PKEY_CTX_get_ecdh_kdf_type(ctx) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_KDF_TYPE, -2, NULL) # define EVP_PKEY_CTX_set_ecdh_kdf_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_KDF_MD, 0, (void *)md) # define EVP_PKEY_CTX_get_ecdh_kdf_md(ctx, pmd) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_EC_KDF_MD, 0, (void *)pmd) # define EVP_PKEY_CTX_set_ecdh_kdf_outlen(ctx, len) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_KDF_OUTLEN, len, NULL) # define EVP_PKEY_CTX_get_ecdh_kdf_outlen(ctx, plen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN, 0, (void *)plen) # define EVP_PKEY_CTX_set0_ecdh_kdf_ukm(ctx, p, plen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_EC_KDF_UKM, plen, (void *)p) # define EVP_PKEY_CTX_get0_ecdh_kdf_ukm(ctx, p) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, \ EVP_PKEY_OP_DERIVE, \ EVP_PKEY_CTRL_GET_EC_KDF_UKM, 0, (void *)p) # define EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_EC_PARAM_ENC (EVP_PKEY_ALG_CTRL + 2) # define EVP_PKEY_CTRL_EC_ECDH_COFACTOR (EVP_PKEY_ALG_CTRL + 3) # define EVP_PKEY_CTRL_EC_KDF_TYPE (EVP_PKEY_ALG_CTRL + 4) # define EVP_PKEY_CTRL_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 5) # define EVP_PKEY_CTRL_GET_EC_KDF_MD (EVP_PKEY_ALG_CTRL + 6) # define EVP_PKEY_CTRL_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 7) # define EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN (EVP_PKEY_ALG_CTRL + 8) # define EVP_PKEY_CTRL_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 9) # define EVP_PKEY_CTRL_GET_EC_KDF_UKM (EVP_PKEY_ALG_CTRL + 10) /* KDF types */ # define EVP_PKEY_ECDH_KDF_NONE 1 # define EVP_PKEY_ECDH_KDF_X9_62 2 /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_EC_strings(void); /* Error codes for the EC functions. */ /* Function codes. */ # define EC_F_BN_TO_FELEM 224 # define EC_F_COMPUTE_WNAF 143 # define EC_F_D2I_ECPARAMETERS 144 # define EC_F_D2I_ECPKPARAMETERS 145 # define EC_F_D2I_ECPRIVATEKEY 146 # define EC_F_DO_EC_KEY_PRINT 221 # define EC_F_ECDH_CMS_DECRYPT 238 # define EC_F_ECDH_CMS_SET_SHARED_INFO 239 # define EC_F_ECKEY_PARAM2TYPE 223 # define EC_F_ECKEY_PARAM_DECODE 212 # define EC_F_ECKEY_PRIV_DECODE 213 # define EC_F_ECKEY_PRIV_ENCODE 214 # define EC_F_ECKEY_PUB_DECODE 215 # define EC_F_ECKEY_PUB_ENCODE 216 # define EC_F_ECKEY_TYPE2PARAM 220 # define EC_F_ECPARAMETERS_PRINT 147 # define EC_F_ECPARAMETERS_PRINT_FP 148 # define EC_F_ECPKPARAMETERS_PRINT 149 # define EC_F_ECPKPARAMETERS_PRINT_FP 150 # define EC_F_ECP_NISTZ256_GET_AFFINE 240 # define EC_F_ECP_NISTZ256_MULT_PRECOMPUTE 243 # define EC_F_ECP_NISTZ256_POINTS_MUL 241 # define EC_F_ECP_NISTZ256_PRE_COMP_NEW 244 # define EC_F_ECP_NISTZ256_SET_WORDS 245 # define EC_F_ECP_NISTZ256_WINDOWED_MUL 242 # define EC_F_ECP_NIST_MOD_192 203 # define EC_F_ECP_NIST_MOD_224 204 # define EC_F_ECP_NIST_MOD_256 205 # define EC_F_ECP_NIST_MOD_521 206 # define EC_F_EC_ASN1_GROUP2CURVE 153 # define EC_F_EC_ASN1_GROUP2FIELDID 154 # define EC_F_EC_ASN1_GROUP2PARAMETERS 155 # define EC_F_EC_ASN1_GROUP2PKPARAMETERS 156 # define EC_F_EC_ASN1_PARAMETERS2GROUP 157 # define EC_F_EC_ASN1_PKPARAMETERS2GROUP 158 # define EC_F_EC_EX_DATA_SET_DATA 211 # define EC_F_EC_GF2M_MONTGOMERY_POINT_MULTIPLY 208 # define EC_F_EC_GF2M_SIMPLE_GROUP_CHECK_DISCRIMINANT 159 # define EC_F_EC_GF2M_SIMPLE_GROUP_SET_CURVE 195 # define EC_F_EC_GF2M_SIMPLE_OCT2POINT 160 # define EC_F_EC_GF2M_SIMPLE_POINT2OCT 161 # define EC_F_EC_GF2M_SIMPLE_POINT_GET_AFFINE_COORDINATES 162 # define EC_F_EC_GF2M_SIMPLE_POINT_SET_AFFINE_COORDINATES 163 # define EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES 164 # define EC_F_EC_GFP_MONT_FIELD_DECODE 133 # define EC_F_EC_GFP_MONT_FIELD_ENCODE 134 # define EC_F_EC_GFP_MONT_FIELD_MUL 131 # define EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE 209 # define EC_F_EC_GFP_MONT_FIELD_SQR 132 # define EC_F_EC_GFP_MONT_GROUP_SET_CURVE 189 # define EC_F_EC_GFP_MONT_GROUP_SET_CURVE_GFP 135 # define EC_F_EC_GFP_NISTP224_GROUP_SET_CURVE 225 # define EC_F_EC_GFP_NISTP224_POINTS_MUL 228 # define EC_F_EC_GFP_NISTP224_POINT_GET_AFFINE_COORDINATES 226 # define EC_F_EC_GFP_NISTP256_GROUP_SET_CURVE 230 # define EC_F_EC_GFP_NISTP256_POINTS_MUL 231 # define EC_F_EC_GFP_NISTP256_POINT_GET_AFFINE_COORDINATES 232 # define EC_F_EC_GFP_NISTP521_GROUP_SET_CURVE 233 # define EC_F_EC_GFP_NISTP521_POINTS_MUL 234 # define EC_F_EC_GFP_NISTP521_POINT_GET_AFFINE_COORDINATES 235 # define EC_F_EC_GFP_NIST_FIELD_MUL 200 # define EC_F_EC_GFP_NIST_FIELD_SQR 201 # define EC_F_EC_GFP_NIST_GROUP_SET_CURVE 202 # define EC_F_EC_GFP_SIMPLE_GROUP_CHECK_DISCRIMINANT 165 # define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE 166 # define EC_F_EC_GFP_SIMPLE_GROUP_SET_CURVE_GFP 100 # define EC_F_EC_GFP_SIMPLE_GROUP_SET_GENERATOR 101 # define EC_F_EC_GFP_SIMPLE_MAKE_AFFINE 102 # define EC_F_EC_GFP_SIMPLE_OCT2POINT 103 # define EC_F_EC_GFP_SIMPLE_POINT2OCT 104 # define EC_F_EC_GFP_SIMPLE_POINTS_MAKE_AFFINE 137 # define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES 167 # define EC_F_EC_GFP_SIMPLE_POINT_GET_AFFINE_COORDINATES_GFP 105 # define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES 168 # define EC_F_EC_GFP_SIMPLE_POINT_SET_AFFINE_COORDINATES_GFP 128 # define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES 169 # define EC_F_EC_GFP_SIMPLE_SET_COMPRESSED_COORDINATES_GFP 129 # define EC_F_EC_GROUP_CHECK 170 # define EC_F_EC_GROUP_CHECK_DISCRIMINANT 171 # define EC_F_EC_GROUP_COPY 106 # define EC_F_EC_GROUP_GET0_GENERATOR 139 # define EC_F_EC_GROUP_GET_COFACTOR 140 # define EC_F_EC_GROUP_GET_CURVE_GF2M 172 # define EC_F_EC_GROUP_GET_CURVE_GFP 130 # define EC_F_EC_GROUP_GET_DEGREE 173 # define EC_F_EC_GROUP_GET_ORDER 141 # define EC_F_EC_GROUP_GET_PENTANOMIAL_BASIS 193 # define EC_F_EC_GROUP_GET_TRINOMIAL_BASIS 194 # define EC_F_EC_GROUP_NEW 108 # define EC_F_EC_GROUP_NEW_BY_CURVE_NAME 174 # define EC_F_EC_GROUP_NEW_FROM_DATA 175 # define EC_F_EC_GROUP_PRECOMPUTE_MULT 142 # define EC_F_EC_GROUP_SET_CURVE_GF2M 176 # define EC_F_EC_GROUP_SET_CURVE_GFP 109 # define EC_F_EC_GROUP_SET_EXTRA_DATA 110 # define EC_F_EC_GROUP_SET_GENERATOR 111 # define EC_F_EC_KEY_CHECK_KEY 177 # define EC_F_EC_KEY_COPY 178 # define EC_F_EC_KEY_GENERATE_KEY 179 # define EC_F_EC_KEY_NEW 182 # define EC_F_EC_KEY_PRINT 180 # define EC_F_EC_KEY_PRINT_FP 181 # define EC_F_EC_KEY_SET_PUBLIC_KEY_AFFINE_COORDINATES 229 # define EC_F_EC_POINTS_MAKE_AFFINE 136 # define EC_F_EC_POINT_ADD 112 # define EC_F_EC_POINT_CMP 113 # define EC_F_EC_POINT_COPY 114 # define EC_F_EC_POINT_DBL 115 # define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GF2M 183 # define EC_F_EC_POINT_GET_AFFINE_COORDINATES_GFP 116 # define EC_F_EC_POINT_GET_JPROJECTIVE_COORDINATES_GFP 117 # define EC_F_EC_POINT_INVERT 210 # define EC_F_EC_POINT_IS_AT_INFINITY 118 # define EC_F_EC_POINT_IS_ON_CURVE 119 # define EC_F_EC_POINT_MAKE_AFFINE 120 # define EC_F_EC_POINT_MUL 184 # define EC_F_EC_POINT_NEW 121 # define EC_F_EC_POINT_OCT2POINT 122 # define EC_F_EC_POINT_POINT2OCT 123 # define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GF2M 185 # define EC_F_EC_POINT_SET_AFFINE_COORDINATES_GFP 124 # define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GF2M 186 # define EC_F_EC_POINT_SET_COMPRESSED_COORDINATES_GFP 125 # define EC_F_EC_POINT_SET_JPROJECTIVE_COORDINATES_GFP 126 # define EC_F_EC_POINT_SET_TO_INFINITY 127 # define EC_F_EC_PRE_COMP_DUP 207 # define EC_F_EC_PRE_COMP_NEW 196 # define EC_F_EC_WNAF_MUL 187 # define EC_F_EC_WNAF_PRECOMPUTE_MULT 188 # define EC_F_I2D_ECPARAMETERS 190 # define EC_F_I2D_ECPKPARAMETERS 191 # define EC_F_I2D_ECPRIVATEKEY 192 # define EC_F_I2O_ECPUBLICKEY 151 # define EC_F_NISTP224_PRE_COMP_NEW 227 # define EC_F_NISTP256_PRE_COMP_NEW 236 # define EC_F_NISTP521_PRE_COMP_NEW 237 # define EC_F_O2I_ECPUBLICKEY 152 # define EC_F_OLD_EC_PRIV_DECODE 222 # define EC_F_PKEY_EC_CTRL 197 # define EC_F_PKEY_EC_CTRL_STR 198 # define EC_F_PKEY_EC_DERIVE 217 # define EC_F_PKEY_EC_KEYGEN 199 # define EC_F_PKEY_EC_PARAMGEN 219 # define EC_F_PKEY_EC_SIGN 218 /* Reason codes. */ # define EC_R_ASN1_ERROR 115 # define EC_R_ASN1_UNKNOWN_FIELD 116 # define EC_R_BIGNUM_OUT_OF_RANGE 144 # define EC_R_BUFFER_TOO_SMALL 100 # define EC_R_COORDINATES_OUT_OF_RANGE 146 # define EC_R_D2I_ECPKPARAMETERS_FAILURE 117 # define EC_R_DECODE_ERROR 142 # define EC_R_DISCRIMINANT_IS_ZERO 118 # define EC_R_EC_GROUP_NEW_BY_NAME_FAILURE 119 # define EC_R_FIELD_TOO_LARGE 143 # define EC_R_GF2M_NOT_SUPPORTED 147 # define EC_R_GROUP2PKPARAMETERS_FAILURE 120 # define EC_R_I2D_ECPKPARAMETERS_FAILURE 121 # define EC_R_INCOMPATIBLE_OBJECTS 101 # define EC_R_INVALID_ARGUMENT 112 # define EC_R_INVALID_COMPRESSED_POINT 110 # define EC_R_INVALID_COMPRESSION_BIT 109 # define EC_R_INVALID_CURVE 141 # define EC_R_INVALID_DIGEST 151 # define EC_R_INVALID_DIGEST_TYPE 138 # define EC_R_INVALID_ENCODING 102 # define EC_R_INVALID_FIELD 103 # define EC_R_INVALID_FORM 104 # define EC_R_INVALID_GROUP_ORDER 122 # define EC_R_INVALID_PENTANOMIAL_BASIS 132 # define EC_R_INVALID_PRIVATE_KEY 123 # define EC_R_INVALID_TRINOMIAL_BASIS 137 # define EC_R_KDF_PARAMETER_ERROR 148 # define EC_R_KEYS_NOT_SET 140 # define EC_R_MISSING_PARAMETERS 124 # define EC_R_MISSING_PRIVATE_KEY 125 # define EC_R_NOT_A_NIST_PRIME 135 # define EC_R_NOT_A_SUPPORTED_NIST_PRIME 136 # define EC_R_NOT_IMPLEMENTED 126 # define EC_R_NOT_INITIALIZED 111 # define EC_R_NO_FIELD_MOD 133 # define EC_R_NO_PARAMETERS_SET 139 # define EC_R_PASSED_NULL_PARAMETER 134 # define EC_R_PEER_KEY_ERROR 149 # define EC_R_PKPARAMETERS2GROUP_FAILURE 127 # define EC_R_POINT_AT_INFINITY 106 # define EC_R_POINT_IS_NOT_ON_CURVE 107 # define EC_R_SHARED_INFO_ERROR 150 # define EC_R_SLOT_FULL 108 # define EC_R_UNDEFINED_GENERATOR 113 # define EC_R_UNDEFINED_ORDER 128 # define EC_R_UNKNOWN_GROUP 129 # define EC_R_UNKNOWN_ORDER 114 # define EC_R_UNSUPPORTED_FIELD 131 # define EC_R_WRONG_CURVE_PARAMETERS 145 # define EC_R_WRONG_ORDER 130 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ecdh.h ================================================ /* crypto/ecdh/ecdh.h */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * The Elliptic Curve Public-Key Crypto Library (ECC Code) included * herein is developed by SUN MICROSYSTEMS, INC., and is contributed * to the OpenSSL project. * * The ECC Code is licensed pursuant to the OpenSSL open source * license provided below. * * The ECDH software is originally written by Douglas Stebila of * Sun Microsystems Laboratories. * */ /* ==================================================================== * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_ECDH_H # define HEADER_ECDH_H # include # ifdef OPENSSL_NO_ECDH # error ECDH is disabled. # endif # include # include # ifndef OPENSSL_NO_DEPRECATED # include # endif #ifdef __cplusplus extern "C" { #endif # define EC_FLAG_COFACTOR_ECDH 0x1000 const ECDH_METHOD *ECDH_OpenSSL(void); void ECDH_set_default_method(const ECDH_METHOD *); const ECDH_METHOD *ECDH_get_default_method(void); int ECDH_set_method(EC_KEY *, const ECDH_METHOD *); int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)); int ECDH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg); void *ECDH_get_ex_data(EC_KEY *d, int idx); int ECDH_KDF_X9_62(unsigned char *out, size_t outlen, const unsigned char *Z, size_t Zlen, const unsigned char *sinfo, size_t sinfolen, const EVP_MD *md); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_ECDH_strings(void); /* Error codes for the ECDH functions. */ /* Function codes. */ # define ECDH_F_ECDH_CHECK 102 # define ECDH_F_ECDH_COMPUTE_KEY 100 # define ECDH_F_ECDH_DATA_NEW_METHOD 101 /* Reason codes. */ # define ECDH_R_KDF_FAILED 102 # define ECDH_R_NON_FIPS_METHOD 103 # define ECDH_R_NO_PRIVATE_VALUE 100 # define ECDH_R_POINT_ARITHMETIC_FAILURE 101 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ecdsa.h ================================================ /* crypto/ecdsa/ecdsa.h */ /** * \file crypto/ecdsa/ecdsa.h Include file for the OpenSSL ECDSA functions * \author Written by Nils Larsch for the OpenSSL project */ /* ==================================================================== * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_ECDSA_H # define HEADER_ECDSA_H # include # ifdef OPENSSL_NO_ECDSA # error ECDSA is disabled. # endif # include # include # ifndef OPENSSL_NO_DEPRECATED # include # endif #ifdef __cplusplus extern "C" { #endif typedef struct ECDSA_SIG_st { BIGNUM *r; BIGNUM *s; } ECDSA_SIG; /** Allocates and initialize a ECDSA_SIG structure * \return pointer to a ECDSA_SIG structure or NULL if an error occurred */ ECDSA_SIG *ECDSA_SIG_new(void); /** frees a ECDSA_SIG structure * \param sig pointer to the ECDSA_SIG structure */ void ECDSA_SIG_free(ECDSA_SIG *sig); /** DER encode content of ECDSA_SIG object (note: this function modifies *pp * (*pp += length of the DER encoded signature)). * \param sig pointer to the ECDSA_SIG object * \param pp pointer to a unsigned char pointer for the output or NULL * \return the length of the DER encoded ECDSA_SIG object or 0 */ int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp); /** Decodes a DER encoded ECDSA signature (note: this function changes *pp * (*pp += len)). * \param sig pointer to ECDSA_SIG pointer (may be NULL) * \param pp memory buffer with the DER encoded signature * \param len length of the buffer * \return pointer to the decoded ECDSA_SIG structure (or NULL) */ ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len); /** Computes the ECDSA signature of the given hash value using * the supplied private key and returns the created signature. * \param dgst pointer to the hash value * \param dgst_len length of the hash value * \param eckey EC_KEY object containing a private EC key * \return pointer to a ECDSA_SIG structure or NULL if an error occurred */ ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len, EC_KEY *eckey); /** Computes ECDSA signature of a given hash value using the supplied * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). * \param dgst pointer to the hash value to sign * \param dgstlen length of the hash value * \param kinv BIGNUM with a pre-computed inverse k (optional) * \param rp BIGNUM with a pre-computed rp value (optioanl), * see ECDSA_sign_setup * \param eckey EC_KEY object containing a private EC key * \return pointer to a ECDSA_SIG structure or NULL if an error occurred */ ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey); /** Verifies that the supplied signature is a valid ECDSA * signature of the supplied hash value using the supplied public key. * \param dgst pointer to the hash value * \param dgst_len length of the hash value * \param sig ECDSA_SIG structure * \param eckey EC_KEY object containing a public EC key * \return 1 if the signature is valid, 0 if the signature is invalid * and -1 on error */ int ECDSA_do_verify(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey); const ECDSA_METHOD *ECDSA_OpenSSL(void); /** Sets the default ECDSA method * \param meth new default ECDSA_METHOD */ void ECDSA_set_default_method(const ECDSA_METHOD *meth); /** Returns the default ECDSA method * \return pointer to ECDSA_METHOD structure containing the default method */ const ECDSA_METHOD *ECDSA_get_default_method(void); /** Sets method to be used for the ECDSA operations * \param eckey EC_KEY object * \param meth new method * \return 1 on success and 0 otherwise */ int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth); /** Returns the maximum length of the DER encoded signature * \param eckey EC_KEY object * \return numbers of bytes required for the DER encoded signature */ int ECDSA_size(const EC_KEY *eckey); /** Precompute parts of the signing operation * \param eckey EC_KEY object containing a private EC key * \param ctx BN_CTX object (optional) * \param kinv BIGNUM pointer for the inverse of k * \param rp BIGNUM pointer for x coordinate of k * generator * \return 1 on success and 0 otherwise */ int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **rp); /** Computes ECDSA signature of a given hash value using the supplied * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). * \param type this parameter is ignored * \param dgst pointer to the hash value to sign * \param dgstlen length of the hash value * \param sig memory for the DER encoded created signature * \param siglen pointer to the length of the returned signature * \param eckey EC_KEY object containing a private EC key * \return 1 on success and 0 otherwise */ int ECDSA_sign(int type, const unsigned char *dgst, int dgstlen, unsigned char *sig, unsigned int *siglen, EC_KEY *eckey); /** Computes ECDSA signature of a given hash value using the supplied * private key (note: sig must point to ECDSA_size(eckey) bytes of memory). * \param type this parameter is ignored * \param dgst pointer to the hash value to sign * \param dgstlen length of the hash value * \param sig buffer to hold the DER encoded signature * \param siglen pointer to the length of the returned signature * \param kinv BIGNUM with a pre-computed inverse k (optional) * \param rp BIGNUM with a pre-computed rp value (optioanl), * see ECDSA_sign_setup * \param eckey EC_KEY object containing a private EC key * \return 1 on success and 0 otherwise */ int ECDSA_sign_ex(int type, const unsigned char *dgst, int dgstlen, unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey); /** Verifies that the given signature is valid ECDSA signature * of the supplied hash value using the specified public key. * \param type this parameter is ignored * \param dgst pointer to the hash value * \param dgstlen length of the hash value * \param sig pointer to the DER encoded signature * \param siglen length of the DER encoded signature * \param eckey EC_KEY object containing a public EC key * \return 1 if the signature is valid, 0 if the signature is invalid * and -1 on error */ int ECDSA_verify(int type, const unsigned char *dgst, int dgstlen, const unsigned char *sig, int siglen, EC_KEY *eckey); /* the standard ex_data functions */ int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg); void *ECDSA_get_ex_data(EC_KEY *d, int idx); /** Allocates and initialize a ECDSA_METHOD structure * \param ecdsa_method pointer to ECDSA_METHOD to copy. (May be NULL) * \return pointer to a ECDSA_METHOD structure or NULL if an error occurred */ ECDSA_METHOD *ECDSA_METHOD_new(const ECDSA_METHOD *ecdsa_method); /** frees a ECDSA_METHOD structure * \param ecdsa_method pointer to the ECDSA_METHOD structure */ void ECDSA_METHOD_free(ECDSA_METHOD *ecdsa_method); /** Sets application specific data in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param app application specific data to set */ void ECDSA_METHOD_set_app_data(ECDSA_METHOD *ecdsa_method, void *app); /** Returns application specific data from a ECDSA_METHOD structure * \param ecdsa_method pointer to ECDSA_METHOD structure * \return pointer to application specific data. */ void *ECDSA_METHOD_get_app_data(ECDSA_METHOD *ecdsa_method); /** Set the ECDSA_do_sign function in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param ecdsa_do_sign a funtion of type ECDSA_do_sign */ void ECDSA_METHOD_set_sign(ECDSA_METHOD *ecdsa_method, ECDSA_SIG *(*ecdsa_do_sign) (const unsigned char *dgst, int dgst_len, const BIGNUM *inv, const BIGNUM *rp, EC_KEY *eckey)); /** Set the ECDSA_sign_setup function in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param ecdsa_sign_setup a funtion of type ECDSA_sign_setup */ void ECDSA_METHOD_set_sign_setup(ECDSA_METHOD *ecdsa_method, int (*ecdsa_sign_setup) (EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv, BIGNUM **r)); /** Set the ECDSA_do_verify function in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param ecdsa_do_verify a funtion of type ECDSA_do_verify */ void ECDSA_METHOD_set_verify(ECDSA_METHOD *ecdsa_method, int (*ecdsa_do_verify) (const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey)); void ECDSA_METHOD_set_flags(ECDSA_METHOD *ecdsa_method, int flags); /** Set the flags field in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param flags flags value to set */ void ECDSA_METHOD_set_name(ECDSA_METHOD *ecdsa_method, char *name); /** Set the name field in the ECDSA_METHOD * \param ecdsa_method pointer to existing ECDSA_METHOD * \param name name to set */ /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_ECDSA_strings(void); /* Error codes for the ECDSA functions. */ /* Function codes. */ # define ECDSA_F_ECDSA_CHECK 104 # define ECDSA_F_ECDSA_DATA_NEW_METHOD 100 # define ECDSA_F_ECDSA_DO_SIGN 101 # define ECDSA_F_ECDSA_DO_VERIFY 102 # define ECDSA_F_ECDSA_METHOD_NEW 105 # define ECDSA_F_ECDSA_SIGN_SETUP 103 /* Reason codes. */ # define ECDSA_R_BAD_SIGNATURE 100 # define ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 101 # define ECDSA_R_ERR_EC_LIB 102 # define ECDSA_R_MISSING_PARAMETERS 103 # define ECDSA_R_NEED_NEW_SETUP_VALUES 106 # define ECDSA_R_NON_FIPS_METHOD 107 # define ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED 104 # define ECDSA_R_SIGNATURE_MALLOC_FAILED 105 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/engine.h ================================================ /* openssl/engine.h */ /* * Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL project * 2000. */ /* ==================================================================== * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECDH support in OpenSSL originally developed by * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ #ifndef HEADER_ENGINE_H # define HEADER_ENGINE_H # include # ifdef OPENSSL_NO_ENGINE # error ENGINE is disabled. # endif # ifndef OPENSSL_NO_DEPRECATED # include # ifndef OPENSSL_NO_RSA # include # endif # ifndef OPENSSL_NO_DSA # include # endif # ifndef OPENSSL_NO_DH # include # endif # ifndef OPENSSL_NO_ECDH # include # endif # ifndef OPENSSL_NO_ECDSA # include # endif # include # include # include # endif # include # include # include #ifdef __cplusplus extern "C" { #endif /* * These flags are used to control combinations of algorithm (methods) by * bitwise "OR"ing. */ # define ENGINE_METHOD_RSA (unsigned int)0x0001 # define ENGINE_METHOD_DSA (unsigned int)0x0002 # define ENGINE_METHOD_DH (unsigned int)0x0004 # define ENGINE_METHOD_RAND (unsigned int)0x0008 # define ENGINE_METHOD_ECDH (unsigned int)0x0010 # define ENGINE_METHOD_ECDSA (unsigned int)0x0020 # define ENGINE_METHOD_CIPHERS (unsigned int)0x0040 # define ENGINE_METHOD_DIGESTS (unsigned int)0x0080 # define ENGINE_METHOD_STORE (unsigned int)0x0100 # define ENGINE_METHOD_PKEY_METHS (unsigned int)0x0200 # define ENGINE_METHOD_PKEY_ASN1_METHS (unsigned int)0x0400 /* Obvious all-or-nothing cases. */ # define ENGINE_METHOD_ALL (unsigned int)0xFFFF # define ENGINE_METHOD_NONE (unsigned int)0x0000 /* * This(ese) flag(s) controls behaviour of the ENGINE_TABLE mechanism used * internally to control registration of ENGINE implementations, and can be * set by ENGINE_set_table_flags(). The "NOINIT" flag prevents attempts to * initialise registered ENGINEs if they are not already initialised. */ # define ENGINE_TABLE_FLAG_NOINIT (unsigned int)0x0001 /* ENGINE flags that can be set by ENGINE_set_flags(). */ /* Not used */ /* #define ENGINE_FLAGS_MALLOCED 0x0001 */ /* * This flag is for ENGINEs that wish to handle the various 'CMD'-related * control commands on their own. Without this flag, ENGINE_ctrl() handles * these control commands on behalf of the ENGINE using their "cmd_defns" * data. */ # define ENGINE_FLAGS_MANUAL_CMD_CTRL (int)0x0002 /* * This flag is for ENGINEs who return new duplicate structures when found * via "ENGINE_by_id()". When an ENGINE must store state (eg. if * ENGINE_ctrl() commands are called in sequence as part of some stateful * process like key-generation setup and execution), it can set this flag - * then each attempt to obtain the ENGINE will result in it being copied into * a new structure. Normally, ENGINEs don't declare this flag so * ENGINE_by_id() just increments the existing ENGINE's structural reference * count. */ # define ENGINE_FLAGS_BY_ID_COPY (int)0x0004 /* * This flag if for an ENGINE that does not want its methods registered as * part of ENGINE_register_all_complete() for example if the methods are not * usable as default methods. */ # define ENGINE_FLAGS_NO_REGISTER_ALL (int)0x0008 /* * ENGINEs can support their own command types, and these flags are used in * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input * each command expects. Currently only numeric and string input is * supported. If a control command supports none of the _NUMERIC, _STRING, or * _NO_INPUT options, then it is regarded as an "internal" control command - * and not for use in config setting situations. As such, they're not * available to the ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl() * access. Changes to this list of 'command types' should be reflected * carefully in ENGINE_cmd_is_executable() and ENGINE_ctrl_cmd_string(). */ /* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */ # define ENGINE_CMD_FLAG_NUMERIC (unsigned int)0x0001 /* * accepts string input (cast from 'void*' to 'const char *', 4th parameter * to ENGINE_ctrl) */ # define ENGINE_CMD_FLAG_STRING (unsigned int)0x0002 /* * Indicates that the control command takes *no* input. Ie. the control * command is unparameterised. */ # define ENGINE_CMD_FLAG_NO_INPUT (unsigned int)0x0004 /* * Indicates that the control command is internal. This control command won't * be shown in any output, and is only usable through the ENGINE_ctrl_cmd() * function. */ # define ENGINE_CMD_FLAG_INTERNAL (unsigned int)0x0008 /* * NB: These 3 control commands are deprecated and should not be used. * ENGINEs relying on these commands should compile conditional support for * compatibility (eg. if these symbols are defined) but should also migrate * the same functionality to their own ENGINE-specific control functions that * can be "discovered" by calling applications. The fact these control * commands wouldn't be "executable" (ie. usable by text-based config) * doesn't change the fact that application code can find and use them * without requiring per-ENGINE hacking. */ /* * These flags are used to tell the ctrl function what should be done. All * command numbers are shared between all engines, even if some don't make * sense to some engines. In such a case, they do nothing but return the * error ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED. */ # define ENGINE_CTRL_SET_LOGSTREAM 1 # define ENGINE_CTRL_SET_PASSWORD_CALLBACK 2 # define ENGINE_CTRL_HUP 3/* Close and reinitialise * any handles/connections * etc. */ # define ENGINE_CTRL_SET_USER_INTERFACE 4/* Alternative to callback */ # define ENGINE_CTRL_SET_CALLBACK_DATA 5/* User-specific data, used * when calling the password * callback and the user * interface */ # define ENGINE_CTRL_LOAD_CONFIGURATION 6/* Load a configuration, * given a string that * represents a file name * or so */ # define ENGINE_CTRL_LOAD_SECTION 7/* Load data from a given * section in the already * loaded configuration */ /* * These control commands allow an application to deal with an arbitrary * engine in a dynamic way. Warn: Negative return values indicate errors FOR * THESE COMMANDS because zero is used to indicate 'end-of-list'. Other * commands, including ENGINE-specific command types, return zero for an * error. An ENGINE can choose to implement these ctrl functions, and can * internally manage things however it chooses - it does so by setting the * ENGINE_FLAGS_MANUAL_CMD_CTRL flag (using ENGINE_set_flags()). Otherwise * the ENGINE_ctrl() code handles this on the ENGINE's behalf using the * cmd_defns data (set using ENGINE_set_cmd_defns()). This means an ENGINE's * ctrl() handler need only implement its own commands - the above "meta" * commands will be taken care of. */ /* * Returns non-zero if the supplied ENGINE has a ctrl() handler. If "not", * then all the remaining control commands will return failure, so it is * worth checking this first if the caller is trying to "discover" the * engine's capabilities and doesn't want errors generated unnecessarily. */ # define ENGINE_CTRL_HAS_CTRL_FUNCTION 10 /* * Returns a positive command number for the first command supported by the * engine. Returns zero if no ctrl commands are supported. */ # define ENGINE_CTRL_GET_FIRST_CMD_TYPE 11 /* * The 'long' argument specifies a command implemented by the engine, and the * return value is the next command supported, or zero if there are no more. */ # define ENGINE_CTRL_GET_NEXT_CMD_TYPE 12 /* * The 'void*' argument is a command name (cast from 'const char *'), and the * return value is the command that corresponds to it. */ # define ENGINE_CTRL_GET_CMD_FROM_NAME 13 /* * The next two allow a command to be converted into its corresponding string * form. In each case, the 'long' argument supplies the command. In the * NAME_LEN case, the return value is the length of the command name (not * counting a trailing EOL). In the NAME case, the 'void*' argument must be a * string buffer large enough, and it will be populated with the name of the * command (WITH a trailing EOL). */ # define ENGINE_CTRL_GET_NAME_LEN_FROM_CMD 14 # define ENGINE_CTRL_GET_NAME_FROM_CMD 15 /* The next two are similar but give a "short description" of a command. */ # define ENGINE_CTRL_GET_DESC_LEN_FROM_CMD 16 # define ENGINE_CTRL_GET_DESC_FROM_CMD 17 /* * With this command, the return value is the OR'd combination of * ENGINE_CMD_FLAG_*** values that indicate what kind of input a given * engine-specific ctrl command expects. */ # define ENGINE_CTRL_GET_CMD_FLAGS 18 /* * ENGINE implementations should start the numbering of their own control * commands from this value. (ie. ENGINE_CMD_BASE, ENGINE_CMD_BASE + 1, etc). */ # define ENGINE_CMD_BASE 200 /* * NB: These 2 nCipher "chil" control commands are deprecated, and their * functionality is now available through ENGINE-specific control commands * (exposed through the above-mentioned 'CMD'-handling). Code using these 2 * commands should be migrated to the more general command handling before * these are removed. */ /* Flags specific to the nCipher "chil" engine */ # define ENGINE_CTRL_CHIL_SET_FORKCHECK 100 /* * Depending on the value of the (long)i argument, this sets or * unsets the SimpleForkCheck flag in the CHIL API to enable or * disable checking and workarounds for applications that fork(). */ # define ENGINE_CTRL_CHIL_NO_LOCKING 101 /* * This prevents the initialisation function from providing mutex * callbacks to the nCipher library. */ /* * If an ENGINE supports its own specific control commands and wishes the * framework to handle the above 'ENGINE_CMD_***'-manipulation commands on * its behalf, it should supply a null-terminated array of ENGINE_CMD_DEFN * entries to ENGINE_set_cmd_defns(). It should also implement a ctrl() * handler that supports the stated commands (ie. the "cmd_num" entries as * described by the array). NB: The array must be ordered in increasing order * of cmd_num. "null-terminated" means that the last ENGINE_CMD_DEFN element * has cmd_num set to zero and/or cmd_name set to NULL. */ typedef struct ENGINE_CMD_DEFN_st { unsigned int cmd_num; /* The command number */ const char *cmd_name; /* The command name itself */ const char *cmd_desc; /* A short description of the command */ unsigned int cmd_flags; /* The input the command expects */ } ENGINE_CMD_DEFN; /* Generic function pointer */ typedef int (*ENGINE_GEN_FUNC_PTR) (void); /* Generic function pointer taking no arguments */ typedef int (*ENGINE_GEN_INT_FUNC_PTR) (ENGINE *); /* Specific control function pointer */ typedef int (*ENGINE_CTRL_FUNC_PTR) (ENGINE *, int, long, void *, void (*f) (void)); /* Generic load_key function pointer */ typedef EVP_PKEY *(*ENGINE_LOAD_KEY_PTR)(ENGINE *, const char *, UI_METHOD *ui_method, void *callback_data); typedef int (*ENGINE_SSL_CLIENT_CERT_PTR) (ENGINE *, SSL *ssl, STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **pkey, STACK_OF(X509) **pother, UI_METHOD *ui_method, void *callback_data); /*- * These callback types are for an ENGINE's handler for cipher and digest logic. * These handlers have these prototypes; * int foo(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); * int foo(ENGINE *e, const EVP_MD **digest, const int **nids, int nid); * Looking at how to implement these handlers in the case of cipher support, if * the framework wants the EVP_CIPHER for 'nid', it will call; * foo(e, &p_evp_cipher, NULL, nid); (return zero for failure) * If the framework wants a list of supported 'nid's, it will call; * foo(e, NULL, &p_nids, 0); (returns number of 'nids' or -1 for error) */ /* * Returns to a pointer to the array of supported cipher 'nid's. If the * second parameter is non-NULL it is set to the size of the returned array. */ typedef int (*ENGINE_CIPHERS_PTR) (ENGINE *, const EVP_CIPHER **, const int **, int); typedef int (*ENGINE_DIGESTS_PTR) (ENGINE *, const EVP_MD **, const int **, int); typedef int (*ENGINE_PKEY_METHS_PTR) (ENGINE *, EVP_PKEY_METHOD **, const int **, int); typedef int (*ENGINE_PKEY_ASN1_METHS_PTR) (ENGINE *, EVP_PKEY_ASN1_METHOD **, const int **, int); /* * STRUCTURE functions ... all of these functions deal with pointers to * ENGINE structures where the pointers have a "structural reference". This * means that their reference is to allowed access to the structure but it * does not imply that the structure is functional. To simply increment or * decrement the structural reference count, use ENGINE_by_id and * ENGINE_free. NB: This is not required when iterating using ENGINE_get_next * as it will automatically decrement the structural reference count of the * "current" ENGINE and increment the structural reference count of the * ENGINE it returns (unless it is NULL). */ /* Get the first/last "ENGINE" type available. */ ENGINE *ENGINE_get_first(void); ENGINE *ENGINE_get_last(void); /* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */ ENGINE *ENGINE_get_next(ENGINE *e); ENGINE *ENGINE_get_prev(ENGINE *e); /* Add another "ENGINE" type into the array. */ int ENGINE_add(ENGINE *e); /* Remove an existing "ENGINE" type from the array. */ int ENGINE_remove(ENGINE *e); /* Retrieve an engine from the list by its unique "id" value. */ ENGINE *ENGINE_by_id(const char *id); /* Add all the built-in engines. */ void ENGINE_load_openssl(void); void ENGINE_load_dynamic(void); # ifndef OPENSSL_NO_STATIC_ENGINE void ENGINE_load_4758cca(void); void ENGINE_load_aep(void); void ENGINE_load_atalla(void); void ENGINE_load_chil(void); void ENGINE_load_cswift(void); void ENGINE_load_nuron(void); void ENGINE_load_sureware(void); void ENGINE_load_ubsec(void); void ENGINE_load_padlock(void); void ENGINE_load_capi(void); # ifndef OPENSSL_NO_GMP void ENGINE_load_gmp(void); # endif # ifndef OPENSSL_NO_GOST void ENGINE_load_gost(void); # endif # endif void ENGINE_load_cryptodev(void); void ENGINE_load_rdrand(void); void ENGINE_load_builtin_engines(void); /* * Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation * "registry" handling. */ unsigned int ENGINE_get_table_flags(void); void ENGINE_set_table_flags(unsigned int flags); /*- Manage registration of ENGINEs per "table". For each type, there are 3 * functions; * ENGINE_register_***(e) - registers the implementation from 'e' (if it has one) * ENGINE_unregister_***(e) - unregister the implementation from 'e' * ENGINE_register_all_***() - call ENGINE_register_***() for each 'e' in the list * Cleanup is automatically registered from each table when required, so * ENGINE_cleanup() will reverse any "register" operations. */ int ENGINE_register_RSA(ENGINE *e); void ENGINE_unregister_RSA(ENGINE *e); void ENGINE_register_all_RSA(void); int ENGINE_register_DSA(ENGINE *e); void ENGINE_unregister_DSA(ENGINE *e); void ENGINE_register_all_DSA(void); int ENGINE_register_ECDH(ENGINE *e); void ENGINE_unregister_ECDH(ENGINE *e); void ENGINE_register_all_ECDH(void); int ENGINE_register_ECDSA(ENGINE *e); void ENGINE_unregister_ECDSA(ENGINE *e); void ENGINE_register_all_ECDSA(void); int ENGINE_register_DH(ENGINE *e); void ENGINE_unregister_DH(ENGINE *e); void ENGINE_register_all_DH(void); int ENGINE_register_RAND(ENGINE *e); void ENGINE_unregister_RAND(ENGINE *e); void ENGINE_register_all_RAND(void); int ENGINE_register_STORE(ENGINE *e); void ENGINE_unregister_STORE(ENGINE *e); void ENGINE_register_all_STORE(void); int ENGINE_register_ciphers(ENGINE *e); void ENGINE_unregister_ciphers(ENGINE *e); void ENGINE_register_all_ciphers(void); int ENGINE_register_digests(ENGINE *e); void ENGINE_unregister_digests(ENGINE *e); void ENGINE_register_all_digests(void); int ENGINE_register_pkey_meths(ENGINE *e); void ENGINE_unregister_pkey_meths(ENGINE *e); void ENGINE_register_all_pkey_meths(void); int ENGINE_register_pkey_asn1_meths(ENGINE *e); void ENGINE_unregister_pkey_asn1_meths(ENGINE *e); void ENGINE_register_all_pkey_asn1_meths(void); /* * These functions register all support from the above categories. Note, use * of these functions can result in static linkage of code your application * may not need. If you only need a subset of functionality, consider using * more selective initialisation. */ int ENGINE_register_complete(ENGINE *e); int ENGINE_register_all_complete(void); /* * Send parametrised control commands to the engine. The possibilities to * send down an integer, a pointer to data or a function pointer are * provided. Any of the parameters may or may not be NULL, depending on the * command number. In actuality, this function only requires a structural * (rather than functional) reference to an engine, but many control commands * may require the engine be functional. The caller should be aware of trying * commands that require an operational ENGINE, and only use functional * references in such situations. */ int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void)); /* * This function tests if an ENGINE-specific command is usable as a * "setting". Eg. in an application's config file that gets processed through * ENGINE_ctrl_cmd_string(). If this returns zero, it is not available to * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl(). */ int ENGINE_cmd_is_executable(ENGINE *e, int cmd); /* * This function works like ENGINE_ctrl() with the exception of taking a * command name instead of a command number, and can handle optional * commands. See the comment on ENGINE_ctrl_cmd_string() for an explanation * on how to use the cmd_name and cmd_optional. */ int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, long i, void *p, void (*f) (void), int cmd_optional); /* * This function passes a command-name and argument to an ENGINE. The * cmd_name is converted to a command number and the control command is * called using 'arg' as an argument (unless the ENGINE doesn't support such * a command, in which case no control command is called). The command is * checked for input flags, and if necessary the argument will be converted * to a numeric value. If cmd_optional is non-zero, then if the ENGINE * doesn't support the given cmd_name the return value will be success * anyway. This function is intended for applications to use so that users * (or config files) can supply engine-specific config data to the ENGINE at * run-time to control behaviour of specific engines. As such, it shouldn't * be used for calling ENGINE_ctrl() functions that return data, deal with * binary data, or that are otherwise supposed to be used directly through * ENGINE_ctrl() in application code. Any "return" data from an ENGINE_ctrl() * operation in this function will be lost - the return value is interpreted * as failure if the return value is zero, success otherwise, and this * function returns a boolean value as a result. In other words, vendors of * 'ENGINE'-enabled devices should write ENGINE implementations with * parameterisations that work in this scheme, so that compliant ENGINE-based * applications can work consistently with the same configuration for the * same ENGINE-enabled devices, across applications. */ int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, int cmd_optional); /* * These functions are useful for manufacturing new ENGINE structures. They * don't address reference counting at all - one uses them to populate an * ENGINE structure with personalised implementations of things prior to * using it directly or adding it to the builtin ENGINE list in OpenSSL. * These are also here so that the ENGINE structure doesn't have to be * exposed and break binary compatibility! */ ENGINE *ENGINE_new(void); int ENGINE_free(ENGINE *e); int ENGINE_up_ref(ENGINE *e); int ENGINE_set_id(ENGINE *e, const char *id); int ENGINE_set_name(ENGINE *e, const char *name); int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); int ENGINE_set_ECDH(ENGINE *e, const ECDH_METHOD *ecdh_meth); int ENGINE_set_ECDSA(ENGINE *e, const ECDSA_METHOD *ecdsa_meth); int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth); int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth); int ENGINE_set_STORE(ENGINE *e, const STORE_METHOD *store_meth); int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f); int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f); int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f); int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f); int ENGINE_set_load_privkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpriv_f); int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f); int ENGINE_set_load_ssl_client_cert_function(ENGINE *e, ENGINE_SSL_CLIENT_CERT_PTR loadssl_f); int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f); int ENGINE_set_digests(ENGINE *e, ENGINE_DIGESTS_PTR f); int ENGINE_set_pkey_meths(ENGINE *e, ENGINE_PKEY_METHS_PTR f); int ENGINE_set_pkey_asn1_meths(ENGINE *e, ENGINE_PKEY_ASN1_METHS_PTR f); int ENGINE_set_flags(ENGINE *e, int flags); int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns); /* These functions allow control over any per-structure ENGINE data. */ int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg); void *ENGINE_get_ex_data(const ENGINE *e, int idx); /* * This function cleans up anything that needs it. Eg. the ENGINE_add() * function automatically ensures the list cleanup function is registered to * be called from ENGINE_cleanup(). Similarly, all ENGINE_register_*** * functions ensure ENGINE_cleanup() will clean up after them. */ void ENGINE_cleanup(void); /* * These return values from within the ENGINE structure. These can be useful * with functional references as well as structural references - it depends * which you obtained. Using the result for functional purposes if you only * obtained a structural reference may be problematic! */ const char *ENGINE_get_id(const ENGINE *e); const char *ENGINE_get_name(const ENGINE *e); const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e); const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e); const ECDH_METHOD *ENGINE_get_ECDH(const ENGINE *e); const ECDSA_METHOD *ENGINE_get_ECDSA(const ENGINE *e); const DH_METHOD *ENGINE_get_DH(const ENGINE *e); const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e); const STORE_METHOD *ENGINE_get_STORE(const ENGINE *e); ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e); ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e); ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e); ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e); ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e); ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e); ENGINE_SSL_CLIENT_CERT_PTR ENGINE_get_ssl_client_cert_function(const ENGINE *e); ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e); ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e); ENGINE_PKEY_METHS_PTR ENGINE_get_pkey_meths(const ENGINE *e); ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e); const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid); const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid); const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid); const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid); const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth_str(ENGINE *e, const char *str, int len); const EVP_PKEY_ASN1_METHOD *ENGINE_pkey_asn1_find_str(ENGINE **pe, const char *str, int len); const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e); int ENGINE_get_flags(const ENGINE *e); /* * FUNCTIONAL functions. These functions deal with ENGINE structures that * have (or will) be initialised for use. Broadly speaking, the structural * functions are useful for iterating the list of available engine types, * creating new engine types, and other "list" operations. These functions * actually deal with ENGINEs that are to be used. As such these functions * can fail (if applicable) when particular engines are unavailable - eg. if * a hardware accelerator is not attached or not functioning correctly. Each * ENGINE has 2 reference counts; structural and functional. Every time a * functional reference is obtained or released, a corresponding structural * reference is automatically obtained or released too. */ /* * Initialise a engine type for use (or up its reference count if it's * already in use). This will fail if the engine is not currently operational * and cannot initialise. */ int ENGINE_init(ENGINE *e); /* * Free a functional reference to a engine type. This does not require a * corresponding call to ENGINE_free as it also releases a structural * reference. */ int ENGINE_finish(ENGINE *e); /* * The following functions handle keys that are stored in some secondary * location, handled by the engine. The storage may be on a card or * whatever. */ EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id, UI_METHOD *ui_method, void *callback_data); EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id, UI_METHOD *ui_method, void *callback_data); int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s, STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **ppkey, STACK_OF(X509) **pother, UI_METHOD *ui_method, void *callback_data); /* * This returns a pointer for the current ENGINE structure that is (by * default) performing any RSA operations. The value returned is an * incremented reference, so it should be free'd (ENGINE_finish) before it is * discarded. */ ENGINE *ENGINE_get_default_RSA(void); /* Same for the other "methods" */ ENGINE *ENGINE_get_default_DSA(void); ENGINE *ENGINE_get_default_ECDH(void); ENGINE *ENGINE_get_default_ECDSA(void); ENGINE *ENGINE_get_default_DH(void); ENGINE *ENGINE_get_default_RAND(void); /* * These functions can be used to get a functional reference to perform * ciphering or digesting corresponding to "nid". */ ENGINE *ENGINE_get_cipher_engine(int nid); ENGINE *ENGINE_get_digest_engine(int nid); ENGINE *ENGINE_get_pkey_meth_engine(int nid); ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid); /* * This sets a new default ENGINE structure for performing RSA operations. If * the result is non-zero (success) then the ENGINE structure will have had * its reference count up'd so the caller should still free their own * reference 'e'. */ int ENGINE_set_default_RSA(ENGINE *e); int ENGINE_set_default_string(ENGINE *e, const char *def_list); /* Same for the other "methods" */ int ENGINE_set_default_DSA(ENGINE *e); int ENGINE_set_default_ECDH(ENGINE *e); int ENGINE_set_default_ECDSA(ENGINE *e); int ENGINE_set_default_DH(ENGINE *e); int ENGINE_set_default_RAND(ENGINE *e); int ENGINE_set_default_ciphers(ENGINE *e); int ENGINE_set_default_digests(ENGINE *e); int ENGINE_set_default_pkey_meths(ENGINE *e); int ENGINE_set_default_pkey_asn1_meths(ENGINE *e); /* * The combination "set" - the flags are bitwise "OR"d from the * ENGINE_METHOD_*** defines above. As with the "ENGINE_register_complete()" * function, this function can result in unnecessary static linkage. If your * application requires only specific functionality, consider using more * selective functions. */ int ENGINE_set_default(ENGINE *e, unsigned int flags); void ENGINE_add_conf_module(void); /* Deprecated functions ... */ /* int ENGINE_clear_defaults(void); */ /**************************/ /* DYNAMIC ENGINE SUPPORT */ /**************************/ /* Binary/behaviour compatibility levels */ # define OSSL_DYNAMIC_VERSION (unsigned long)0x00020000 /* * Binary versions older than this are too old for us (whether we're a loader * or a loadee) */ # define OSSL_DYNAMIC_OLDEST (unsigned long)0x00020000 /* * When compiling an ENGINE entirely as an external shared library, loadable * by the "dynamic" ENGINE, these types are needed. The 'dynamic_fns' * structure type provides the calling application's (or library's) error * functionality and memory management function pointers to the loaded * library. These should be used/set in the loaded library code so that the * loading application's 'state' will be used/changed in all operations. The * 'static_state' pointer allows the loaded library to know if it shares the * same static data as the calling application (or library), and thus whether * these callbacks need to be set or not. */ typedef void *(*dyn_MEM_malloc_cb) (size_t); typedef void *(*dyn_MEM_realloc_cb) (void *, size_t); typedef void (*dyn_MEM_free_cb) (void *); typedef struct st_dynamic_MEM_fns { dyn_MEM_malloc_cb malloc_cb; dyn_MEM_realloc_cb realloc_cb; dyn_MEM_free_cb free_cb; } dynamic_MEM_fns; /* * FIXME: Perhaps the memory and locking code (crypto.h) should declare and * use these types so we (and any other dependant code) can simplify a bit?? */ typedef void (*dyn_lock_locking_cb) (int, int, const char *, int); typedef int (*dyn_lock_add_lock_cb) (int *, int, int, const char *, int); typedef struct CRYPTO_dynlock_value *(*dyn_dynlock_create_cb) (const char *, int); typedef void (*dyn_dynlock_lock_cb) (int, struct CRYPTO_dynlock_value *, const char *, int); typedef void (*dyn_dynlock_destroy_cb) (struct CRYPTO_dynlock_value *, const char *, int); typedef struct st_dynamic_LOCK_fns { dyn_lock_locking_cb lock_locking_cb; dyn_lock_add_lock_cb lock_add_lock_cb; dyn_dynlock_create_cb dynlock_create_cb; dyn_dynlock_lock_cb dynlock_lock_cb; dyn_dynlock_destroy_cb dynlock_destroy_cb; } dynamic_LOCK_fns; /* The top-level structure */ typedef struct st_dynamic_fns { void *static_state; const ERR_FNS *err_fns; const CRYPTO_EX_DATA_IMPL *ex_data_fns; dynamic_MEM_fns mem_fns; dynamic_LOCK_fns lock_fns; } dynamic_fns; /* * The version checking function should be of this prototype. NB: The * ossl_version value passed in is the OSSL_DYNAMIC_VERSION of the loading * code. If this function returns zero, it indicates a (potential) version * incompatibility and the loaded library doesn't believe it can proceed. * Otherwise, the returned value is the (latest) version supported by the * loading library. The loader may still decide that the loaded code's * version is unsatisfactory and could veto the load. The function is * expected to be implemented with the symbol name "v_check", and a default * implementation can be fully instantiated with * IMPLEMENT_DYNAMIC_CHECK_FN(). */ typedef unsigned long (*dynamic_v_check_fn) (unsigned long ossl_version); # define IMPLEMENT_DYNAMIC_CHECK_FN() \ OPENSSL_EXPORT unsigned long v_check(unsigned long v); \ OPENSSL_EXPORT unsigned long v_check(unsigned long v) { \ if(v >= OSSL_DYNAMIC_OLDEST) return OSSL_DYNAMIC_VERSION; \ return 0; } /* * This function is passed the ENGINE structure to initialise with its own * function and command settings. It should not adjust the structural or * functional reference counts. If this function returns zero, (a) the load * will be aborted, (b) the previous ENGINE state will be memcpy'd back onto * the structure, and (c) the shared library will be unloaded. So * implementations should do their own internal cleanup in failure * circumstances otherwise they could leak. The 'id' parameter, if non-NULL, * represents the ENGINE id that the loader is looking for. If this is NULL, * the shared library can choose to return failure or to initialise a * 'default' ENGINE. If non-NULL, the shared library must initialise only an * ENGINE matching the passed 'id'. The function is expected to be * implemented with the symbol name "bind_engine". A standard implementation * can be instantiated with IMPLEMENT_DYNAMIC_BIND_FN(fn) where the parameter * 'fn' is a callback function that populates the ENGINE structure and * returns an int value (zero for failure). 'fn' should have prototype; * [static] int fn(ENGINE *e, const char *id); */ typedef int (*dynamic_bind_engine) (ENGINE *e, const char *id, const dynamic_fns *fns); # define IMPLEMENT_DYNAMIC_BIND_FN(fn) \ OPENSSL_EXPORT \ int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); \ OPENSSL_EXPORT \ int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { \ if(ENGINE_get_static_state() == fns->static_state) goto skip_cbs; \ if(!CRYPTO_set_mem_functions(fns->mem_fns.malloc_cb, \ fns->mem_fns.realloc_cb, fns->mem_fns.free_cb)) \ return 0; \ CRYPTO_set_locking_callback(fns->lock_fns.lock_locking_cb); \ CRYPTO_set_add_lock_callback(fns->lock_fns.lock_add_lock_cb); \ CRYPTO_set_dynlock_create_callback(fns->lock_fns.dynlock_create_cb); \ CRYPTO_set_dynlock_lock_callback(fns->lock_fns.dynlock_lock_cb); \ CRYPTO_set_dynlock_destroy_callback(fns->lock_fns.dynlock_destroy_cb); \ if(!CRYPTO_set_ex_data_implementation(fns->ex_data_fns)) \ return 0; \ if(!ERR_set_implementation(fns->err_fns)) return 0; \ skip_cbs: \ if(!fn(e,id)) return 0; \ return 1; } /* * If the loading application (or library) and the loaded ENGINE library * share the same static data (eg. they're both dynamically linked to the * same libcrypto.so) we need a way to avoid trying to set system callbacks - * this would fail, and for the same reason that it's unnecessary to try. If * the loaded ENGINE has (or gets from through the loader) its own copy of * the libcrypto static data, we will need to set the callbacks. The easiest * way to detect this is to have a function that returns a pointer to some * static data and let the loading application and loaded ENGINE compare * their respective values. */ void *ENGINE_get_static_state(void); # if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV) void ENGINE_setup_bsd_cryptodev(void); # endif /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_ENGINE_strings(void); /* Error codes for the ENGINE functions. */ /* Function codes. */ # define ENGINE_F_DYNAMIC_CTRL 180 # define ENGINE_F_DYNAMIC_GET_DATA_CTX 181 # define ENGINE_F_DYNAMIC_LOAD 182 # define ENGINE_F_DYNAMIC_SET_DATA_CTX 183 # define ENGINE_F_ENGINE_ADD 105 # define ENGINE_F_ENGINE_BY_ID 106 # define ENGINE_F_ENGINE_CMD_IS_EXECUTABLE 170 # define ENGINE_F_ENGINE_CTRL 142 # define ENGINE_F_ENGINE_CTRL_CMD 178 # define ENGINE_F_ENGINE_CTRL_CMD_STRING 171 # define ENGINE_F_ENGINE_FINISH 107 # define ENGINE_F_ENGINE_FREE_UTIL 108 # define ENGINE_F_ENGINE_GET_CIPHER 185 # define ENGINE_F_ENGINE_GET_DEFAULT_TYPE 177 # define ENGINE_F_ENGINE_GET_DIGEST 186 # define ENGINE_F_ENGINE_GET_NEXT 115 # define ENGINE_F_ENGINE_GET_PKEY_ASN1_METH 193 # define ENGINE_F_ENGINE_GET_PKEY_METH 192 # define ENGINE_F_ENGINE_GET_PREV 116 # define ENGINE_F_ENGINE_INIT 119 # define ENGINE_F_ENGINE_LIST_ADD 120 # define ENGINE_F_ENGINE_LIST_REMOVE 121 # define ENGINE_F_ENGINE_LOAD_PRIVATE_KEY 150 # define ENGINE_F_ENGINE_LOAD_PUBLIC_KEY 151 # define ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT 194 # define ENGINE_F_ENGINE_NEW 122 # define ENGINE_F_ENGINE_REMOVE 123 # define ENGINE_F_ENGINE_SET_DEFAULT_STRING 189 # define ENGINE_F_ENGINE_SET_DEFAULT_TYPE 126 # define ENGINE_F_ENGINE_SET_ID 129 # define ENGINE_F_ENGINE_SET_NAME 130 # define ENGINE_F_ENGINE_TABLE_REGISTER 184 # define ENGINE_F_ENGINE_UNLOAD_KEY 152 # define ENGINE_F_ENGINE_UNLOCKED_FINISH 191 # define ENGINE_F_ENGINE_UP_REF 190 # define ENGINE_F_INT_CTRL_HELPER 172 # define ENGINE_F_INT_ENGINE_CONFIGURE 188 # define ENGINE_F_INT_ENGINE_MODULE_INIT 187 # define ENGINE_F_LOG_MESSAGE 141 /* Reason codes. */ # define ENGINE_R_ALREADY_LOADED 100 # define ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER 133 # define ENGINE_R_CMD_NOT_EXECUTABLE 134 # define ENGINE_R_COMMAND_TAKES_INPUT 135 # define ENGINE_R_COMMAND_TAKES_NO_INPUT 136 # define ENGINE_R_CONFLICTING_ENGINE_ID 103 # define ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED 119 # define ENGINE_R_DH_NOT_IMPLEMENTED 139 # define ENGINE_R_DSA_NOT_IMPLEMENTED 140 # define ENGINE_R_DSO_FAILURE 104 # define ENGINE_R_DSO_NOT_FOUND 132 # define ENGINE_R_ENGINES_SECTION_ERROR 148 # define ENGINE_R_ENGINE_CONFIGURATION_ERROR 102 # define ENGINE_R_ENGINE_IS_NOT_IN_LIST 105 # define ENGINE_R_ENGINE_SECTION_ERROR 149 # define ENGINE_R_FAILED_LOADING_PRIVATE_KEY 128 # define ENGINE_R_FAILED_LOADING_PUBLIC_KEY 129 # define ENGINE_R_FINISH_FAILED 106 # define ENGINE_R_GET_HANDLE_FAILED 107 # define ENGINE_R_ID_OR_NAME_MISSING 108 # define ENGINE_R_INIT_FAILED 109 # define ENGINE_R_INTERNAL_LIST_ERROR 110 # define ENGINE_R_INVALID_ARGUMENT 143 # define ENGINE_R_INVALID_CMD_NAME 137 # define ENGINE_R_INVALID_CMD_NUMBER 138 # define ENGINE_R_INVALID_INIT_VALUE 151 # define ENGINE_R_INVALID_STRING 150 # define ENGINE_R_NOT_INITIALISED 117 # define ENGINE_R_NOT_LOADED 112 # define ENGINE_R_NO_CONTROL_FUNCTION 120 # define ENGINE_R_NO_INDEX 144 # define ENGINE_R_NO_LOAD_FUNCTION 125 # define ENGINE_R_NO_REFERENCE 130 # define ENGINE_R_NO_SUCH_ENGINE 116 # define ENGINE_R_NO_UNLOAD_FUNCTION 126 # define ENGINE_R_PROVIDE_PARAMETERS 113 # define ENGINE_R_RSA_NOT_IMPLEMENTED 141 # define ENGINE_R_UNIMPLEMENTED_CIPHER 146 # define ENGINE_R_UNIMPLEMENTED_DIGEST 147 # define ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD 101 # define ENGINE_R_VERSION_INCOMPATIBILITY 145 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/err.h ================================================ /* crypto/err/err.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_ERR_H # define HEADER_ERR_H # include # ifndef OPENSSL_NO_FP_API # include # include # endif # include # ifndef OPENSSL_NO_BIO # include # endif # ifndef OPENSSL_NO_LHASH # include # endif #ifdef __cplusplus extern "C" { #endif # ifndef OPENSSL_NO_ERR # define ERR_PUT_error(a,b,c,d,e) ERR_put_error(a,b,c,d,e) # else # define ERR_PUT_error(a,b,c,d,e) ERR_put_error(a,b,c,NULL,0) # endif # include # define ERR_TXT_MALLOCED 0x01 # define ERR_TXT_STRING 0x02 # define ERR_FLAG_MARK 0x01 # define ERR_NUM_ERRORS 16 typedef struct err_state_st { CRYPTO_THREADID tid; int err_flags[ERR_NUM_ERRORS]; unsigned long err_buffer[ERR_NUM_ERRORS]; char *err_data[ERR_NUM_ERRORS]; int err_data_flags[ERR_NUM_ERRORS]; const char *err_file[ERR_NUM_ERRORS]; int err_line[ERR_NUM_ERRORS]; int top, bottom; } ERR_STATE; /* library */ # define ERR_LIB_NONE 1 # define ERR_LIB_SYS 2 # define ERR_LIB_BN 3 # define ERR_LIB_RSA 4 # define ERR_LIB_DH 5 # define ERR_LIB_EVP 6 # define ERR_LIB_BUF 7 # define ERR_LIB_OBJ 8 # define ERR_LIB_PEM 9 # define ERR_LIB_DSA 10 # define ERR_LIB_X509 11 /* #define ERR_LIB_METH 12 */ # define ERR_LIB_ASN1 13 # define ERR_LIB_CONF 14 # define ERR_LIB_CRYPTO 15 # define ERR_LIB_EC 16 # define ERR_LIB_SSL 20 /* #define ERR_LIB_SSL23 21 */ /* #define ERR_LIB_SSL2 22 */ /* #define ERR_LIB_SSL3 23 */ /* #define ERR_LIB_RSAREF 30 */ /* #define ERR_LIB_PROXY 31 */ # define ERR_LIB_BIO 32 # define ERR_LIB_PKCS7 33 # define ERR_LIB_X509V3 34 # define ERR_LIB_PKCS12 35 # define ERR_LIB_RAND 36 # define ERR_LIB_DSO 37 # define ERR_LIB_ENGINE 38 # define ERR_LIB_OCSP 39 # define ERR_LIB_UI 40 # define ERR_LIB_COMP 41 # define ERR_LIB_ECDSA 42 # define ERR_LIB_ECDH 43 # define ERR_LIB_STORE 44 # define ERR_LIB_FIPS 45 # define ERR_LIB_CMS 46 # define ERR_LIB_TS 47 # define ERR_LIB_HMAC 48 # define ERR_LIB_JPAKE 49 # define ERR_LIB_USER 128 # define SYSerr(f,r) ERR_PUT_error(ERR_LIB_SYS,(f),(r),__FILE__,__LINE__) # define BNerr(f,r) ERR_PUT_error(ERR_LIB_BN,(f),(r),__FILE__,__LINE__) # define RSAerr(f,r) ERR_PUT_error(ERR_LIB_RSA,(f),(r),__FILE__,__LINE__) # define DHerr(f,r) ERR_PUT_error(ERR_LIB_DH,(f),(r),__FILE__,__LINE__) # define EVPerr(f,r) ERR_PUT_error(ERR_LIB_EVP,(f),(r),__FILE__,__LINE__) # define BUFerr(f,r) ERR_PUT_error(ERR_LIB_BUF,(f),(r),__FILE__,__LINE__) # define OBJerr(f,r) ERR_PUT_error(ERR_LIB_OBJ,(f),(r),__FILE__,__LINE__) # define PEMerr(f,r) ERR_PUT_error(ERR_LIB_PEM,(f),(r),__FILE__,__LINE__) # define DSAerr(f,r) ERR_PUT_error(ERR_LIB_DSA,(f),(r),__FILE__,__LINE__) # define X509err(f,r) ERR_PUT_error(ERR_LIB_X509,(f),(r),__FILE__,__LINE__) # define ASN1err(f,r) ERR_PUT_error(ERR_LIB_ASN1,(f),(r),__FILE__,__LINE__) # define CONFerr(f,r) ERR_PUT_error(ERR_LIB_CONF,(f),(r),__FILE__,__LINE__) # define CRYPTOerr(f,r) ERR_PUT_error(ERR_LIB_CRYPTO,(f),(r),__FILE__,__LINE__) # define ECerr(f,r) ERR_PUT_error(ERR_LIB_EC,(f),(r),__FILE__,__LINE__) # define SSLerr(f,r) ERR_PUT_error(ERR_LIB_SSL,(f),(r),__FILE__,__LINE__) # define BIOerr(f,r) ERR_PUT_error(ERR_LIB_BIO,(f),(r),__FILE__,__LINE__) # define PKCS7err(f,r) ERR_PUT_error(ERR_LIB_PKCS7,(f),(r),__FILE__,__LINE__) # define X509V3err(f,r) ERR_PUT_error(ERR_LIB_X509V3,(f),(r),__FILE__,__LINE__) # define PKCS12err(f,r) ERR_PUT_error(ERR_LIB_PKCS12,(f),(r),__FILE__,__LINE__) # define RANDerr(f,r) ERR_PUT_error(ERR_LIB_RAND,(f),(r),__FILE__,__LINE__) # define DSOerr(f,r) ERR_PUT_error(ERR_LIB_DSO,(f),(r),__FILE__,__LINE__) # define ENGINEerr(f,r) ERR_PUT_error(ERR_LIB_ENGINE,(f),(r),__FILE__,__LINE__) # define OCSPerr(f,r) ERR_PUT_error(ERR_LIB_OCSP,(f),(r),__FILE__,__LINE__) # define UIerr(f,r) ERR_PUT_error(ERR_LIB_UI,(f),(r),__FILE__,__LINE__) # define COMPerr(f,r) ERR_PUT_error(ERR_LIB_COMP,(f),(r),__FILE__,__LINE__) # define ECDSAerr(f,r) ERR_PUT_error(ERR_LIB_ECDSA,(f),(r),__FILE__,__LINE__) # define ECDHerr(f,r) ERR_PUT_error(ERR_LIB_ECDH,(f),(r),__FILE__,__LINE__) # define STOREerr(f,r) ERR_PUT_error(ERR_LIB_STORE,(f),(r),__FILE__,__LINE__) # define FIPSerr(f,r) ERR_PUT_error(ERR_LIB_FIPS,(f),(r),__FILE__,__LINE__) # define CMSerr(f,r) ERR_PUT_error(ERR_LIB_CMS,(f),(r),__FILE__,__LINE__) # define TSerr(f,r) ERR_PUT_error(ERR_LIB_TS,(f),(r),__FILE__,__LINE__) # define HMACerr(f,r) ERR_PUT_error(ERR_LIB_HMAC,(f),(r),__FILE__,__LINE__) # define JPAKEerr(f,r) ERR_PUT_error(ERR_LIB_JPAKE,(f),(r),__FILE__,__LINE__) /* * Borland C seems too stupid to be able to shift and do longs in the * pre-processor :-( */ # define ERR_PACK(l,f,r) (((((unsigned long)l)&0xffL)*0x1000000)| \ ((((unsigned long)f)&0xfffL)*0x1000)| \ ((((unsigned long)r)&0xfffL))) # define ERR_GET_LIB(l) (int)((((unsigned long)l)>>24L)&0xffL) # define ERR_GET_FUNC(l) (int)((((unsigned long)l)>>12L)&0xfffL) # define ERR_GET_REASON(l) (int)((l)&0xfffL) # define ERR_FATAL_ERROR(l) (int)((l)&ERR_R_FATAL) /* OS functions */ # define SYS_F_FOPEN 1 # define SYS_F_CONNECT 2 # define SYS_F_GETSERVBYNAME 3 # define SYS_F_SOCKET 4 # define SYS_F_IOCTLSOCKET 5 # define SYS_F_BIND 6 # define SYS_F_LISTEN 7 # define SYS_F_ACCEPT 8 # define SYS_F_WSASTARTUP 9/* Winsock stuff */ # define SYS_F_OPENDIR 10 # define SYS_F_FREAD 11 # define SYS_F_FFLUSH 18 /* reasons */ # define ERR_R_SYS_LIB ERR_LIB_SYS/* 2 */ # define ERR_R_BN_LIB ERR_LIB_BN/* 3 */ # define ERR_R_RSA_LIB ERR_LIB_RSA/* 4 */ # define ERR_R_DH_LIB ERR_LIB_DH/* 5 */ # define ERR_R_EVP_LIB ERR_LIB_EVP/* 6 */ # define ERR_R_BUF_LIB ERR_LIB_BUF/* 7 */ # define ERR_R_OBJ_LIB ERR_LIB_OBJ/* 8 */ # define ERR_R_PEM_LIB ERR_LIB_PEM/* 9 */ # define ERR_R_DSA_LIB ERR_LIB_DSA/* 10 */ # define ERR_R_X509_LIB ERR_LIB_X509/* 11 */ # define ERR_R_ASN1_LIB ERR_LIB_ASN1/* 13 */ # define ERR_R_CONF_LIB ERR_LIB_CONF/* 14 */ # define ERR_R_CRYPTO_LIB ERR_LIB_CRYPTO/* 15 */ # define ERR_R_EC_LIB ERR_LIB_EC/* 16 */ # define ERR_R_SSL_LIB ERR_LIB_SSL/* 20 */ # define ERR_R_BIO_LIB ERR_LIB_BIO/* 32 */ # define ERR_R_PKCS7_LIB ERR_LIB_PKCS7/* 33 */ # define ERR_R_X509V3_LIB ERR_LIB_X509V3/* 34 */ # define ERR_R_PKCS12_LIB ERR_LIB_PKCS12/* 35 */ # define ERR_R_RAND_LIB ERR_LIB_RAND/* 36 */ # define ERR_R_DSO_LIB ERR_LIB_DSO/* 37 */ # define ERR_R_ENGINE_LIB ERR_LIB_ENGINE/* 38 */ # define ERR_R_OCSP_LIB ERR_LIB_OCSP/* 39 */ # define ERR_R_UI_LIB ERR_LIB_UI/* 40 */ # define ERR_R_COMP_LIB ERR_LIB_COMP/* 41 */ # define ERR_R_ECDSA_LIB ERR_LIB_ECDSA/* 42 */ # define ERR_R_ECDH_LIB ERR_LIB_ECDH/* 43 */ # define ERR_R_STORE_LIB ERR_LIB_STORE/* 44 */ # define ERR_R_TS_LIB ERR_LIB_TS/* 45 */ # define ERR_R_NESTED_ASN1_ERROR 58 # define ERR_R_BAD_ASN1_OBJECT_HEADER 59 # define ERR_R_BAD_GET_ASN1_OBJECT_CALL 60 # define ERR_R_EXPECTING_AN_ASN1_SEQUENCE 61 # define ERR_R_ASN1_LENGTH_MISMATCH 62 # define ERR_R_MISSING_ASN1_EOS 63 /* fatal error */ # define ERR_R_FATAL 64 # define ERR_R_MALLOC_FAILURE (1|ERR_R_FATAL) # define ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED (2|ERR_R_FATAL) # define ERR_R_PASSED_NULL_PARAMETER (3|ERR_R_FATAL) # define ERR_R_INTERNAL_ERROR (4|ERR_R_FATAL) # define ERR_R_DISABLED (5|ERR_R_FATAL) /* * 99 is the maximum possible ERR_R_... code, higher values are reserved for * the individual libraries */ typedef struct ERR_string_data_st { unsigned long error; const char *string; } ERR_STRING_DATA; void ERR_put_error(int lib, int func, int reason, const char *file, int line); void ERR_set_error_data(char *data, int flags); unsigned long ERR_get_error(void); unsigned long ERR_get_error_line(const char **file, int *line); unsigned long ERR_get_error_line_data(const char **file, int *line, const char **data, int *flags); unsigned long ERR_peek_error(void); unsigned long ERR_peek_error_line(const char **file, int *line); unsigned long ERR_peek_error_line_data(const char **file, int *line, const char **data, int *flags); unsigned long ERR_peek_last_error(void); unsigned long ERR_peek_last_error_line(const char **file, int *line); unsigned long ERR_peek_last_error_line_data(const char **file, int *line, const char **data, int *flags); void ERR_clear_error(void); char *ERR_error_string(unsigned long e, char *buf); void ERR_error_string_n(unsigned long e, char *buf, size_t len); const char *ERR_lib_error_string(unsigned long e); const char *ERR_func_error_string(unsigned long e); const char *ERR_reason_error_string(unsigned long e); void ERR_print_errors_cb(int (*cb) (const char *str, size_t len, void *u), void *u); # ifndef OPENSSL_NO_FP_API void ERR_print_errors_fp(FILE *fp); # endif # ifndef OPENSSL_NO_BIO void ERR_print_errors(BIO *bp); # endif void ERR_add_error_data(int num, ...); void ERR_add_error_vdata(int num, va_list args); void ERR_load_strings(int lib, ERR_STRING_DATA str[]); void ERR_unload_strings(int lib, ERR_STRING_DATA str[]); void ERR_load_ERR_strings(void); void ERR_load_crypto_strings(void); void ERR_free_strings(void); void ERR_remove_thread_state(const CRYPTO_THREADID *tid); # ifndef OPENSSL_NO_DEPRECATED void ERR_remove_state(unsigned long pid); /* if zero we look it up */ # endif ERR_STATE *ERR_get_state(void); # ifndef OPENSSL_NO_LHASH LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void); LHASH_OF(ERR_STATE) *ERR_get_err_state_table(void); void ERR_release_err_state_table(LHASH_OF(ERR_STATE) **hash); # endif int ERR_get_next_error_library(void); int ERR_set_mark(void); int ERR_pop_to_mark(void); /* Already defined in ossl_typ.h */ /* typedef struct st_ERR_FNS ERR_FNS; */ /* * An application can use this function and provide the return value to * loaded modules that should use the application's ERR state/functionality */ const ERR_FNS *ERR_get_implementation(void); /* * A loaded module should call this function prior to any ERR operations * using the application's "ERR_FNS". */ int ERR_set_implementation(const ERR_FNS *fns); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/evp.h ================================================ /* crypto/evp/evp.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_ENVELOPE_H # define HEADER_ENVELOPE_H # ifdef OPENSSL_ALGORITHM_DEFINES # include # else # define OPENSSL_ALGORITHM_DEFINES # include # undef OPENSSL_ALGORITHM_DEFINES # endif # include # include # ifndef OPENSSL_NO_BIO # include # endif /*- #define EVP_RC2_KEY_SIZE 16 #define EVP_RC4_KEY_SIZE 16 #define EVP_BLOWFISH_KEY_SIZE 16 #define EVP_CAST5_KEY_SIZE 16 #define EVP_RC5_32_12_16_KEY_SIZE 16 */ # define EVP_MAX_MD_SIZE 64/* longest known is SHA512 */ # define EVP_MAX_KEY_LENGTH 64 # define EVP_MAX_IV_LENGTH 16 # define EVP_MAX_BLOCK_LENGTH 32 # define PKCS5_SALT_LEN 8 /* Default PKCS#5 iteration count */ # define PKCS5_DEFAULT_ITER 2048 # include # define EVP_PK_RSA 0x0001 # define EVP_PK_DSA 0x0002 # define EVP_PK_DH 0x0004 # define EVP_PK_EC 0x0008 # define EVP_PKT_SIGN 0x0010 # define EVP_PKT_ENC 0x0020 # define EVP_PKT_EXCH 0x0040 # define EVP_PKS_RSA 0x0100 # define EVP_PKS_DSA 0x0200 # define EVP_PKS_EC 0x0400 # define EVP_PKEY_NONE NID_undef # define EVP_PKEY_RSA NID_rsaEncryption # define EVP_PKEY_RSA2 NID_rsa # define EVP_PKEY_DSA NID_dsa # define EVP_PKEY_DSA1 NID_dsa_2 # define EVP_PKEY_DSA2 NID_dsaWithSHA # define EVP_PKEY_DSA3 NID_dsaWithSHA1 # define EVP_PKEY_DSA4 NID_dsaWithSHA1_2 # define EVP_PKEY_DH NID_dhKeyAgreement # define EVP_PKEY_DHX NID_dhpublicnumber # define EVP_PKEY_EC NID_X9_62_id_ecPublicKey # define EVP_PKEY_HMAC NID_hmac # define EVP_PKEY_CMAC NID_cmac #ifdef __cplusplus extern "C" { #endif /* * Type needs to be a bit field Sub-type needs to be for variations on the * method, as in, can it do arbitrary encryption.... */ struct evp_pkey_st { int type; int save_type; int references; const EVP_PKEY_ASN1_METHOD *ameth; ENGINE *engine; union { char *ptr; # ifndef OPENSSL_NO_RSA struct rsa_st *rsa; /* RSA */ # endif # ifndef OPENSSL_NO_DSA struct dsa_st *dsa; /* DSA */ # endif # ifndef OPENSSL_NO_DH struct dh_st *dh; /* DH */ # endif # ifndef OPENSSL_NO_EC struct ec_key_st *ec; /* ECC */ # endif } pkey; int save_parameters; STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */ } /* EVP_PKEY */ ; # define EVP_PKEY_MO_SIGN 0x0001 # define EVP_PKEY_MO_VERIFY 0x0002 # define EVP_PKEY_MO_ENCRYPT 0x0004 # define EVP_PKEY_MO_DECRYPT 0x0008 # ifndef EVP_MD struct env_md_st { int type; int pkey_type; int md_size; unsigned long flags; int (*init) (EVP_MD_CTX *ctx); int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count); int (*final) (EVP_MD_CTX *ctx, unsigned char *md); int (*copy) (EVP_MD_CTX *to, const EVP_MD_CTX *from); int (*cleanup) (EVP_MD_CTX *ctx); /* FIXME: prototype these some day */ int (*sign) (int type, const unsigned char *m, unsigned int m_length, unsigned char *sigret, unsigned int *siglen, void *key); int (*verify) (int type, const unsigned char *m, unsigned int m_length, const unsigned char *sigbuf, unsigned int siglen, void *key); int required_pkey_type[5]; /* EVP_PKEY_xxx */ int block_size; int ctx_size; /* how big does the ctx->md_data need to be */ /* control function */ int (*md_ctrl) (EVP_MD_CTX *ctx, int cmd, int p1, void *p2); } /* EVP_MD */ ; typedef int evp_sign_method(int type, const unsigned char *m, unsigned int m_length, unsigned char *sigret, unsigned int *siglen, void *key); typedef int evp_verify_method(int type, const unsigned char *m, unsigned int m_length, const unsigned char *sigbuf, unsigned int siglen, void *key); /* digest can only handle a single block */ # define EVP_MD_FLAG_ONESHOT 0x0001 /* * digest is a "clone" digest used * which is a copy of an existing * one for a specific public key type. * EVP_dss1() etc */ # define EVP_MD_FLAG_PKEY_DIGEST 0x0002 /* Digest uses EVP_PKEY_METHOD for signing instead of MD specific signing */ # define EVP_MD_FLAG_PKEY_METHOD_SIGNATURE 0x0004 /* DigestAlgorithmIdentifier flags... */ # define EVP_MD_FLAG_DIGALGID_MASK 0x0018 /* NULL or absent parameter accepted. Use NULL */ # define EVP_MD_FLAG_DIGALGID_NULL 0x0000 /* NULL or absent parameter accepted. Use NULL for PKCS#1 otherwise absent */ # define EVP_MD_FLAG_DIGALGID_ABSENT 0x0008 /* Custom handling via ctrl */ # define EVP_MD_FLAG_DIGALGID_CUSTOM 0x0018 /* Note if suitable for use in FIPS mode */ # define EVP_MD_FLAG_FIPS 0x0400 /* Digest ctrls */ # define EVP_MD_CTRL_DIGALGID 0x1 # define EVP_MD_CTRL_MICALG 0x2 /* Minimum Algorithm specific ctrl value */ # define EVP_MD_CTRL_ALG_CTRL 0x1000 # define EVP_PKEY_NULL_method NULL,NULL,{0,0,0,0} # ifndef OPENSSL_NO_DSA # define EVP_PKEY_DSA_method (evp_sign_method *)DSA_sign, \ (evp_verify_method *)DSA_verify, \ {EVP_PKEY_DSA,EVP_PKEY_DSA2,EVP_PKEY_DSA3, \ EVP_PKEY_DSA4,0} # else # define EVP_PKEY_DSA_method EVP_PKEY_NULL_method # endif # ifndef OPENSSL_NO_ECDSA # define EVP_PKEY_ECDSA_method (evp_sign_method *)ECDSA_sign, \ (evp_verify_method *)ECDSA_verify, \ {EVP_PKEY_EC,0,0,0} # else # define EVP_PKEY_ECDSA_method EVP_PKEY_NULL_method # endif # ifndef OPENSSL_NO_RSA # define EVP_PKEY_RSA_method (evp_sign_method *)RSA_sign, \ (evp_verify_method *)RSA_verify, \ {EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0} # define EVP_PKEY_RSA_ASN1_OCTET_STRING_method \ (evp_sign_method *)RSA_sign_ASN1_OCTET_STRING, \ (evp_verify_method *)RSA_verify_ASN1_OCTET_STRING, \ {EVP_PKEY_RSA,EVP_PKEY_RSA2,0,0} # else # define EVP_PKEY_RSA_method EVP_PKEY_NULL_method # define EVP_PKEY_RSA_ASN1_OCTET_STRING_method EVP_PKEY_NULL_method # endif # endif /* !EVP_MD */ struct env_md_ctx_st { const EVP_MD *digest; ENGINE *engine; /* functional reference if 'digest' is * ENGINE-provided */ unsigned long flags; void *md_data; /* Public key context for sign/verify */ EVP_PKEY_CTX *pctx; /* Update function: usually copied from EVP_MD */ int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count); } /* EVP_MD_CTX */ ; /* values for EVP_MD_CTX flags */ # define EVP_MD_CTX_FLAG_ONESHOT 0x0001/* digest update will be * called once only */ # define EVP_MD_CTX_FLAG_CLEANED 0x0002/* context has already been * cleaned */ # define EVP_MD_CTX_FLAG_REUSE 0x0004/* Don't free up ctx->md_data * in EVP_MD_CTX_cleanup */ /* * FIPS and pad options are ignored in 1.0.0, definitions are here so we * don't accidentally reuse the values for other purposes. */ # define EVP_MD_CTX_FLAG_NON_FIPS_ALLOW 0x0008/* Allow use of non FIPS * digest in FIPS mode */ /* * The following PAD options are also currently ignored in 1.0.0, digest * parameters are handled through EVP_DigestSign*() and EVP_DigestVerify*() * instead. */ # define EVP_MD_CTX_FLAG_PAD_MASK 0xF0/* RSA mode to use */ # define EVP_MD_CTX_FLAG_PAD_PKCS1 0x00/* PKCS#1 v1.5 mode */ # define EVP_MD_CTX_FLAG_PAD_X931 0x10/* X9.31 mode */ # define EVP_MD_CTX_FLAG_PAD_PSS 0x20/* PSS mode */ # define EVP_MD_CTX_FLAG_NO_INIT 0x0100/* Don't initialize md_data */ struct evp_cipher_st { int nid; int block_size; /* Default value for variable length ciphers */ int key_len; int iv_len; /* Various flags */ unsigned long flags; /* init key */ int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key, const unsigned char *iv, int enc); /* encrypt/decrypt data */ int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl); /* cleanup ctx */ int (*cleanup) (EVP_CIPHER_CTX *); /* how big ctx->cipher_data needs to be */ int ctx_size; /* Populate a ASN1_TYPE with parameters */ int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */ int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *); /* Miscellaneous operations */ int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Application data */ void *app_data; } /* EVP_CIPHER */ ; /* Values for cipher flags */ /* Modes for ciphers */ # define EVP_CIPH_STREAM_CIPHER 0x0 # define EVP_CIPH_ECB_MODE 0x1 # define EVP_CIPH_CBC_MODE 0x2 # define EVP_CIPH_CFB_MODE 0x3 # define EVP_CIPH_OFB_MODE 0x4 # define EVP_CIPH_CTR_MODE 0x5 # define EVP_CIPH_GCM_MODE 0x6 # define EVP_CIPH_CCM_MODE 0x7 # define EVP_CIPH_XTS_MODE 0x10001 # define EVP_CIPH_WRAP_MODE 0x10002 # define EVP_CIPH_MODE 0xF0007 /* Set if variable length cipher */ # define EVP_CIPH_VARIABLE_LENGTH 0x8 /* Set if the iv handling should be done by the cipher itself */ # define EVP_CIPH_CUSTOM_IV 0x10 /* Set if the cipher's init() function should be called if key is NULL */ # define EVP_CIPH_ALWAYS_CALL_INIT 0x20 /* Call ctrl() to init cipher parameters */ # define EVP_CIPH_CTRL_INIT 0x40 /* Don't use standard key length function */ # define EVP_CIPH_CUSTOM_KEY_LENGTH 0x80 /* Don't use standard block padding */ # define EVP_CIPH_NO_PADDING 0x100 /* cipher handles random key generation */ # define EVP_CIPH_RAND_KEY 0x200 /* cipher has its own additional copying logic */ # define EVP_CIPH_CUSTOM_COPY 0x400 /* Allow use default ASN1 get/set iv */ # define EVP_CIPH_FLAG_DEFAULT_ASN1 0x1000 /* Buffer length in bits not bytes: CFB1 mode only */ # define EVP_CIPH_FLAG_LENGTH_BITS 0x2000 /* Note if suitable for use in FIPS mode */ # define EVP_CIPH_FLAG_FIPS 0x4000 /* Allow non FIPS cipher in FIPS mode */ # define EVP_CIPH_FLAG_NON_FIPS_ALLOW 0x8000 /* * Cipher handles any and all padding logic as well as finalisation. */ # define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x100000 # define EVP_CIPH_FLAG_AEAD_CIPHER 0x200000 # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0x400000 /* * Cipher context flag to indicate we can handle wrap mode: if allowed in * older applications it could overflow buffers. */ # define EVP_CIPHER_CTX_FLAG_WRAP_ALLOW 0x1 /* ctrl() values */ # define EVP_CTRL_INIT 0x0 # define EVP_CTRL_SET_KEY_LENGTH 0x1 # define EVP_CTRL_GET_RC2_KEY_BITS 0x2 # define EVP_CTRL_SET_RC2_KEY_BITS 0x3 # define EVP_CTRL_GET_RC5_ROUNDS 0x4 # define EVP_CTRL_SET_RC5_ROUNDS 0x5 # define EVP_CTRL_RAND_KEY 0x6 # define EVP_CTRL_PBE_PRF_NID 0x7 # define EVP_CTRL_COPY 0x8 # define EVP_CTRL_GCM_SET_IVLEN 0x9 # define EVP_CTRL_GCM_GET_TAG 0x10 # define EVP_CTRL_GCM_SET_TAG 0x11 # define EVP_CTRL_GCM_SET_IV_FIXED 0x12 # define EVP_CTRL_GCM_IV_GEN 0x13 # define EVP_CTRL_CCM_SET_IVLEN EVP_CTRL_GCM_SET_IVLEN # define EVP_CTRL_CCM_GET_TAG EVP_CTRL_GCM_GET_TAG # define EVP_CTRL_CCM_SET_TAG EVP_CTRL_GCM_SET_TAG # define EVP_CTRL_CCM_SET_L 0x14 # define EVP_CTRL_CCM_SET_MSGLEN 0x15 /* * AEAD cipher deduces payload length and returns number of bytes required to * store MAC and eventual padding. Subsequent call to EVP_Cipher even * appends/verifies MAC. */ # define EVP_CTRL_AEAD_TLS1_AAD 0x16 /* Used by composite AEAD ciphers, no-op in GCM, CCM... */ # define EVP_CTRL_AEAD_SET_MAC_KEY 0x17 /* Set the GCM invocation field, decrypt only */ # define EVP_CTRL_GCM_SET_IV_INV 0x18 # define EVP_CTRL_TLS1_1_MULTIBLOCK_AAD 0x19 # define EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT 0x1a # define EVP_CTRL_TLS1_1_MULTIBLOCK_DECRYPT 0x1b # define EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE 0x1c /* RFC 5246 defines additional data to be 13 bytes in length */ # define EVP_AEAD_TLS1_AAD_LEN 13 typedef struct { unsigned char *out; const unsigned char *inp; size_t len; unsigned int interleave; } EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM; /* GCM TLS constants */ /* Length of fixed part of IV derived from PRF */ # define EVP_GCM_TLS_FIXED_IV_LEN 4 /* Length of explicit part of IV part of TLS records */ # define EVP_GCM_TLS_EXPLICIT_IV_LEN 8 /* Length of tag for TLS */ # define EVP_GCM_TLS_TAG_LEN 16 typedef struct evp_cipher_info_st { const EVP_CIPHER *cipher; unsigned char iv[EVP_MAX_IV_LENGTH]; } EVP_CIPHER_INFO; struct evp_cipher_ctx_st { const EVP_CIPHER *cipher; ENGINE *engine; /* functional reference if 'cipher' is * ENGINE-provided */ int encrypt; /* encrypt or decrypt */ int buf_len; /* number we have left */ unsigned char oiv[EVP_MAX_IV_LENGTH]; /* original iv */ unsigned char iv[EVP_MAX_IV_LENGTH]; /* working iv */ unsigned char buf[EVP_MAX_BLOCK_LENGTH]; /* saved partial block */ int num; /* used by cfb/ofb/ctr mode */ void *app_data; /* application stuff */ int key_len; /* May change for variable length cipher */ unsigned long flags; /* Various flags */ void *cipher_data; /* per EVP data */ int final_used; int block_mask; unsigned char final[EVP_MAX_BLOCK_LENGTH]; /* possible final block */ } /* EVP_CIPHER_CTX */ ; typedef struct evp_Encode_Ctx_st { /* number saved in a partial encode/decode */ int num; /* * The length is either the output line length (in input bytes) or the * shortest input line length that is ok. Once decoding begins, the * length is adjusted up each time a longer line is decoded */ int length; /* data to encode */ unsigned char enc_data[80]; /* number read on current line */ int line_num; int expect_nl; } EVP_ENCODE_CTX; /* Password based encryption function */ typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass, int passlen, ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de); # ifndef OPENSSL_NO_RSA # define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\ (char *)(rsa)) # endif # ifndef OPENSSL_NO_DSA # define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\ (char *)(dsa)) # endif # ifndef OPENSSL_NO_DH # define EVP_PKEY_assign_DH(pkey,dh) EVP_PKEY_assign((pkey),EVP_PKEY_DH,\ (char *)(dh)) # endif # ifndef OPENSSL_NO_EC # define EVP_PKEY_assign_EC_KEY(pkey,eckey) EVP_PKEY_assign((pkey),EVP_PKEY_EC,\ (char *)(eckey)) # endif /* Add some extra combinations */ # define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a)) # define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a)) # define EVP_get_cipherbynid(a) EVP_get_cipherbyname(OBJ_nid2sn(a)) # define EVP_get_cipherbyobj(a) EVP_get_cipherbynid(OBJ_obj2nid(a)) int EVP_MD_type(const EVP_MD *md); # define EVP_MD_nid(e) EVP_MD_type(e) # define EVP_MD_name(e) OBJ_nid2sn(EVP_MD_nid(e)) int EVP_MD_pkey_type(const EVP_MD *md); int EVP_MD_size(const EVP_MD *md); int EVP_MD_block_size(const EVP_MD *md); unsigned long EVP_MD_flags(const EVP_MD *md); const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx); # define EVP_MD_CTX_size(e) EVP_MD_size(EVP_MD_CTX_md(e)) # define EVP_MD_CTX_block_size(e) EVP_MD_block_size(EVP_MD_CTX_md(e)) # define EVP_MD_CTX_type(e) EVP_MD_type(EVP_MD_CTX_md(e)) int EVP_CIPHER_nid(const EVP_CIPHER *cipher); # define EVP_CIPHER_name(e) OBJ_nid2sn(EVP_CIPHER_nid(e)) int EVP_CIPHER_block_size(const EVP_CIPHER *cipher); int EVP_CIPHER_key_length(const EVP_CIPHER *cipher); int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher); # define EVP_CIPHER_mode(e) (EVP_CIPHER_flags(e) & EVP_CIPH_MODE) const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx); int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx); int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx); int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx); int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx); int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in); void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx); void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data); # define EVP_CIPHER_CTX_type(c) EVP_CIPHER_type(EVP_CIPHER_CTX_cipher(c)) unsigned long EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx); # define EVP_CIPHER_CTX_mode(e) (EVP_CIPHER_CTX_flags(e) & EVP_CIPH_MODE) # define EVP_ENCODE_LENGTH(l) (((l+2)/3*4)+(l/48+1)*2+80) # define EVP_DECODE_LENGTH(l) ((l+3)/4*3+80) # define EVP_SignInit_ex(a,b,c) EVP_DigestInit_ex(a,b,c) # define EVP_SignInit(a,b) EVP_DigestInit(a,b) # define EVP_SignUpdate(a,b,c) EVP_DigestUpdate(a,b,c) # define EVP_VerifyInit_ex(a,b,c) EVP_DigestInit_ex(a,b,c) # define EVP_VerifyInit(a,b) EVP_DigestInit(a,b) # define EVP_VerifyUpdate(a,b,c) EVP_DigestUpdate(a,b,c) # define EVP_OpenUpdate(a,b,c,d,e) EVP_DecryptUpdate(a,b,c,d,e) # define EVP_SealUpdate(a,b,c,d,e) EVP_EncryptUpdate(a,b,c,d,e) # define EVP_DigestSignUpdate(a,b,c) EVP_DigestUpdate(a,b,c) # define EVP_DigestVerifyUpdate(a,b,c) EVP_DigestUpdate(a,b,c) # ifdef CONST_STRICT void BIO_set_md(BIO *, const EVP_MD *md); # else # define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,0,(char *)md) # endif # define BIO_get_md(b,mdp) BIO_ctrl(b,BIO_C_GET_MD,0,(char *)mdp) # define BIO_get_md_ctx(b,mdcp) BIO_ctrl(b,BIO_C_GET_MD_CTX,0,(char *)mdcp) # define BIO_set_md_ctx(b,mdcp) BIO_ctrl(b,BIO_C_SET_MD_CTX,0,(char *)mdcp) # define BIO_get_cipher_status(b) BIO_ctrl(b,BIO_C_GET_CIPHER_STATUS,0,NULL) # define BIO_get_cipher_ctx(b,c_pp) BIO_ctrl(b,BIO_C_GET_CIPHER_CTX,0,(char *)c_pp) int EVP_Cipher(EVP_CIPHER_CTX *c, unsigned char *out, const unsigned char *in, unsigned int inl); # define EVP_add_cipher_alias(n,alias) \ OBJ_NAME_add((alias),OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS,(n)) # define EVP_add_digest_alias(n,alias) \ OBJ_NAME_add((alias),OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS,(n)) # define EVP_delete_cipher_alias(alias) \ OBJ_NAME_remove(alias,OBJ_NAME_TYPE_CIPHER_METH|OBJ_NAME_ALIAS); # define EVP_delete_digest_alias(alias) \ OBJ_NAME_remove(alias,OBJ_NAME_TYPE_MD_METH|OBJ_NAME_ALIAS); void EVP_MD_CTX_init(EVP_MD_CTX *ctx); int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx); EVP_MD_CTX *EVP_MD_CTX_create(void); void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx); int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in); void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags); void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, int flags); int EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, int flags); int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl); int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt); int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s); int EVP_Digest(const void *data, size_t count, unsigned char *md, unsigned int *size, const EVP_MD *type, ENGINE *impl); int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in); int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type); int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s); int EVP_read_pw_string(char *buf, int length, const char *prompt, int verify); int EVP_read_pw_string_min(char *buf, int minlen, int maxlen, const char *prompt, int verify); void EVP_set_pw_prompt(const char *prompt); char *EVP_get_pw_prompt(void); int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, const unsigned char *salt, const unsigned char *data, int datal, int count, unsigned char *key, unsigned char *iv); void EVP_CIPHER_CTX_set_flags(EVP_CIPHER_CTX *ctx, int flags); void EVP_CIPHER_CTX_clear_flags(EVP_CIPHER_CTX *ctx, int flags); int EVP_CIPHER_CTX_test_flags(const EVP_CIPHER_CTX *ctx, int flags); int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, const unsigned char *key, const unsigned char *iv); int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv); int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl); int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, const unsigned char *key, const unsigned char *iv); int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv); int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl); int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl); int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl); int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, const unsigned char *key, const unsigned char *iv, int enc); int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv, int enc); int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl); int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl); int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl); int EVP_SignFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s, EVP_PKEY *pkey); int EVP_VerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sigbuf, unsigned int siglen, EVP_PKEY *pkey); int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey); int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen); int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx, const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey); int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig, size_t siglen); int EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, const unsigned char *ek, int ekl, const unsigned char *iv, EVP_PKEY *priv); int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk, int npubk); int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); void EVP_EncodeInit(EVP_ENCODE_CTX *ctx); void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl); void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl); int EVP_EncodeBlock(unsigned char *t, const unsigned char *f, int n); void EVP_DecodeInit(EVP_ENCODE_CTX *ctx); int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, const unsigned char *in, int inl); int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl); int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n); void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *a); int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *a); EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void); void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *a); int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *x, int keylen); int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *c, int pad); int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr); int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key); # ifndef OPENSSL_NO_BIO BIO_METHOD *BIO_f_md(void); BIO_METHOD *BIO_f_base64(void); BIO_METHOD *BIO_f_cipher(void); BIO_METHOD *BIO_f_reliable(void); void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k, const unsigned char *i, int enc); # endif const EVP_MD *EVP_md_null(void); # ifndef OPENSSL_NO_MD2 const EVP_MD *EVP_md2(void); # endif # ifndef OPENSSL_NO_MD4 const EVP_MD *EVP_md4(void); # endif # ifndef OPENSSL_NO_MD5 const EVP_MD *EVP_md5(void); # endif # ifndef OPENSSL_NO_SHA const EVP_MD *EVP_sha(void); const EVP_MD *EVP_sha1(void); const EVP_MD *EVP_dss(void); const EVP_MD *EVP_dss1(void); const EVP_MD *EVP_ecdsa(void); # endif # ifndef OPENSSL_NO_SHA256 const EVP_MD *EVP_sha224(void); const EVP_MD *EVP_sha256(void); # endif # ifndef OPENSSL_NO_SHA512 const EVP_MD *EVP_sha384(void); const EVP_MD *EVP_sha512(void); # endif # ifndef OPENSSL_NO_MDC2 const EVP_MD *EVP_mdc2(void); # endif # ifndef OPENSSL_NO_RIPEMD const EVP_MD *EVP_ripemd160(void); # endif # ifndef OPENSSL_NO_WHIRLPOOL const EVP_MD *EVP_whirlpool(void); # endif const EVP_CIPHER *EVP_enc_null(void); /* does nothing :-) */ # ifndef OPENSSL_NO_DES const EVP_CIPHER *EVP_des_ecb(void); const EVP_CIPHER *EVP_des_ede(void); const EVP_CIPHER *EVP_des_ede3(void); const EVP_CIPHER *EVP_des_ede_ecb(void); const EVP_CIPHER *EVP_des_ede3_ecb(void); const EVP_CIPHER *EVP_des_cfb64(void); # define EVP_des_cfb EVP_des_cfb64 const EVP_CIPHER *EVP_des_cfb1(void); const EVP_CIPHER *EVP_des_cfb8(void); const EVP_CIPHER *EVP_des_ede_cfb64(void); # define EVP_des_ede_cfb EVP_des_ede_cfb64 # if 0 const EVP_CIPHER *EVP_des_ede_cfb1(void); const EVP_CIPHER *EVP_des_ede_cfb8(void); # endif const EVP_CIPHER *EVP_des_ede3_cfb64(void); # define EVP_des_ede3_cfb EVP_des_ede3_cfb64 const EVP_CIPHER *EVP_des_ede3_cfb1(void); const EVP_CIPHER *EVP_des_ede3_cfb8(void); const EVP_CIPHER *EVP_des_ofb(void); const EVP_CIPHER *EVP_des_ede_ofb(void); const EVP_CIPHER *EVP_des_ede3_ofb(void); const EVP_CIPHER *EVP_des_cbc(void); const EVP_CIPHER *EVP_des_ede_cbc(void); const EVP_CIPHER *EVP_des_ede3_cbc(void); const EVP_CIPHER *EVP_desx_cbc(void); const EVP_CIPHER *EVP_des_ede3_wrap(void); /* * This should now be supported through the dev_crypto ENGINE. But also, why * are rc4 and md5 declarations made here inside a "NO_DES" precompiler * branch? */ # if 0 # ifdef OPENSSL_OPENBSD_DEV_CRYPTO const EVP_CIPHER *EVP_dev_crypto_des_ede3_cbc(void); const EVP_CIPHER *EVP_dev_crypto_rc4(void); const EVP_MD *EVP_dev_crypto_md5(void); # endif # endif # endif # ifndef OPENSSL_NO_RC4 const EVP_CIPHER *EVP_rc4(void); const EVP_CIPHER *EVP_rc4_40(void); # ifndef OPENSSL_NO_MD5 const EVP_CIPHER *EVP_rc4_hmac_md5(void); # endif # endif # ifndef OPENSSL_NO_IDEA const EVP_CIPHER *EVP_idea_ecb(void); const EVP_CIPHER *EVP_idea_cfb64(void); # define EVP_idea_cfb EVP_idea_cfb64 const EVP_CIPHER *EVP_idea_ofb(void); const EVP_CIPHER *EVP_idea_cbc(void); # endif # ifndef OPENSSL_NO_RC2 const EVP_CIPHER *EVP_rc2_ecb(void); const EVP_CIPHER *EVP_rc2_cbc(void); const EVP_CIPHER *EVP_rc2_40_cbc(void); const EVP_CIPHER *EVP_rc2_64_cbc(void); const EVP_CIPHER *EVP_rc2_cfb64(void); # define EVP_rc2_cfb EVP_rc2_cfb64 const EVP_CIPHER *EVP_rc2_ofb(void); # endif # ifndef OPENSSL_NO_BF const EVP_CIPHER *EVP_bf_ecb(void); const EVP_CIPHER *EVP_bf_cbc(void); const EVP_CIPHER *EVP_bf_cfb64(void); # define EVP_bf_cfb EVP_bf_cfb64 const EVP_CIPHER *EVP_bf_ofb(void); # endif # ifndef OPENSSL_NO_CAST const EVP_CIPHER *EVP_cast5_ecb(void); const EVP_CIPHER *EVP_cast5_cbc(void); const EVP_CIPHER *EVP_cast5_cfb64(void); # define EVP_cast5_cfb EVP_cast5_cfb64 const EVP_CIPHER *EVP_cast5_ofb(void); # endif # ifndef OPENSSL_NO_RC5 const EVP_CIPHER *EVP_rc5_32_12_16_cbc(void); const EVP_CIPHER *EVP_rc5_32_12_16_ecb(void); const EVP_CIPHER *EVP_rc5_32_12_16_cfb64(void); # define EVP_rc5_32_12_16_cfb EVP_rc5_32_12_16_cfb64 const EVP_CIPHER *EVP_rc5_32_12_16_ofb(void); # endif # ifndef OPENSSL_NO_AES const EVP_CIPHER *EVP_aes_128_ecb(void); const EVP_CIPHER *EVP_aes_128_cbc(void); const EVP_CIPHER *EVP_aes_128_cfb1(void); const EVP_CIPHER *EVP_aes_128_cfb8(void); const EVP_CIPHER *EVP_aes_128_cfb128(void); # define EVP_aes_128_cfb EVP_aes_128_cfb128 const EVP_CIPHER *EVP_aes_128_ofb(void); const EVP_CIPHER *EVP_aes_128_ctr(void); const EVP_CIPHER *EVP_aes_128_ccm(void); const EVP_CIPHER *EVP_aes_128_gcm(void); const EVP_CIPHER *EVP_aes_128_xts(void); const EVP_CIPHER *EVP_aes_128_wrap(void); const EVP_CIPHER *EVP_aes_192_ecb(void); const EVP_CIPHER *EVP_aes_192_cbc(void); const EVP_CIPHER *EVP_aes_192_cfb1(void); const EVP_CIPHER *EVP_aes_192_cfb8(void); const EVP_CIPHER *EVP_aes_192_cfb128(void); # define EVP_aes_192_cfb EVP_aes_192_cfb128 const EVP_CIPHER *EVP_aes_192_ofb(void); const EVP_CIPHER *EVP_aes_192_ctr(void); const EVP_CIPHER *EVP_aes_192_ccm(void); const EVP_CIPHER *EVP_aes_192_gcm(void); const EVP_CIPHER *EVP_aes_192_wrap(void); const EVP_CIPHER *EVP_aes_256_ecb(void); const EVP_CIPHER *EVP_aes_256_cbc(void); const EVP_CIPHER *EVP_aes_256_cfb1(void); const EVP_CIPHER *EVP_aes_256_cfb8(void); const EVP_CIPHER *EVP_aes_256_cfb128(void); # define EVP_aes_256_cfb EVP_aes_256_cfb128 const EVP_CIPHER *EVP_aes_256_ofb(void); const EVP_CIPHER *EVP_aes_256_ctr(void); const EVP_CIPHER *EVP_aes_256_ccm(void); const EVP_CIPHER *EVP_aes_256_gcm(void); const EVP_CIPHER *EVP_aes_256_xts(void); const EVP_CIPHER *EVP_aes_256_wrap(void); # if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1) const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void); const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void); # endif # ifndef OPENSSL_NO_SHA256 const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha256(void); const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha256(void); # endif # endif # ifndef OPENSSL_NO_CAMELLIA const EVP_CIPHER *EVP_camellia_128_ecb(void); const EVP_CIPHER *EVP_camellia_128_cbc(void); const EVP_CIPHER *EVP_camellia_128_cfb1(void); const EVP_CIPHER *EVP_camellia_128_cfb8(void); const EVP_CIPHER *EVP_camellia_128_cfb128(void); # define EVP_camellia_128_cfb EVP_camellia_128_cfb128 const EVP_CIPHER *EVP_camellia_128_ofb(void); const EVP_CIPHER *EVP_camellia_192_ecb(void); const EVP_CIPHER *EVP_camellia_192_cbc(void); const EVP_CIPHER *EVP_camellia_192_cfb1(void); const EVP_CIPHER *EVP_camellia_192_cfb8(void); const EVP_CIPHER *EVP_camellia_192_cfb128(void); # define EVP_camellia_192_cfb EVP_camellia_192_cfb128 const EVP_CIPHER *EVP_camellia_192_ofb(void); const EVP_CIPHER *EVP_camellia_256_ecb(void); const EVP_CIPHER *EVP_camellia_256_cbc(void); const EVP_CIPHER *EVP_camellia_256_cfb1(void); const EVP_CIPHER *EVP_camellia_256_cfb8(void); const EVP_CIPHER *EVP_camellia_256_cfb128(void); # define EVP_camellia_256_cfb EVP_camellia_256_cfb128 const EVP_CIPHER *EVP_camellia_256_ofb(void); # endif # ifndef OPENSSL_NO_SEED const EVP_CIPHER *EVP_seed_ecb(void); const EVP_CIPHER *EVP_seed_cbc(void); const EVP_CIPHER *EVP_seed_cfb128(void); # define EVP_seed_cfb EVP_seed_cfb128 const EVP_CIPHER *EVP_seed_ofb(void); # endif void OPENSSL_add_all_algorithms_noconf(void); void OPENSSL_add_all_algorithms_conf(void); # ifdef OPENSSL_LOAD_CONF # define OpenSSL_add_all_algorithms() \ OPENSSL_add_all_algorithms_conf() # else # define OpenSSL_add_all_algorithms() \ OPENSSL_add_all_algorithms_noconf() # endif void OpenSSL_add_all_ciphers(void); void OpenSSL_add_all_digests(void); # define SSLeay_add_all_algorithms() OpenSSL_add_all_algorithms() # define SSLeay_add_all_ciphers() OpenSSL_add_all_ciphers() # define SSLeay_add_all_digests() OpenSSL_add_all_digests() int EVP_add_cipher(const EVP_CIPHER *cipher); int EVP_add_digest(const EVP_MD *digest); const EVP_CIPHER *EVP_get_cipherbyname(const char *name); const EVP_MD *EVP_get_digestbyname(const char *name); void EVP_cleanup(void); void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg); void EVP_CIPHER_do_all_sorted(void (*fn) (const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg); void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph, const char *from, const char *to, void *x), void *arg); void EVP_MD_do_all_sorted(void (*fn) (const EVP_MD *ciph, const char *from, const char *to, void *x), void *arg); int EVP_PKEY_decrypt_old(unsigned char *dec_key, const unsigned char *enc_key, int enc_key_len, EVP_PKEY *private_key); int EVP_PKEY_encrypt_old(unsigned char *enc_key, const unsigned char *key, int key_len, EVP_PKEY *pub_key); int EVP_PKEY_type(int type); int EVP_PKEY_id(const EVP_PKEY *pkey); int EVP_PKEY_base_id(const EVP_PKEY *pkey); int EVP_PKEY_bits(EVP_PKEY *pkey); int EVP_PKEY_size(EVP_PKEY *pkey); int EVP_PKEY_set_type(EVP_PKEY *pkey, int type); int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len); int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); void *EVP_PKEY_get0(EVP_PKEY *pkey); # ifndef OPENSSL_NO_RSA struct rsa_st; int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, struct rsa_st *key); struct rsa_st *EVP_PKEY_get1_RSA(EVP_PKEY *pkey); # endif # ifndef OPENSSL_NO_DSA struct dsa_st; int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, struct dsa_st *key); struct dsa_st *EVP_PKEY_get1_DSA(EVP_PKEY *pkey); # endif # ifndef OPENSSL_NO_DH struct dh_st; int EVP_PKEY_set1_DH(EVP_PKEY *pkey, struct dh_st *key); struct dh_st *EVP_PKEY_get1_DH(EVP_PKEY *pkey); # endif # ifndef OPENSSL_NO_EC struct ec_key_st; int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, struct ec_key_st *key); struct ec_key_st *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey); # endif EVP_PKEY *EVP_PKEY_new(void); void EVP_PKEY_free(EVP_PKEY *pkey); EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp, long length); int i2d_PublicKey(EVP_PKEY *a, unsigned char **pp); EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp, long length); EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp, long length); int i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp); int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from); int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey); int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode); int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b); int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b); int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx); int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx); int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx); int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid); int EVP_CIPHER_type(const EVP_CIPHER *ctx); /* calls methods */ int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type); int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type); /* These are used by EVP_CIPHER methods */ int EVP_CIPHER_set_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type); int EVP_CIPHER_get_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type); /* PKCS5 password based encryption */ int PKCS5_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de); int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, const unsigned char *salt, int saltlen, int iter, int keylen, unsigned char *out); int PKCS5_PBKDF2_HMAC(const char *pass, int passlen, const unsigned char *salt, int saltlen, int iter, const EVP_MD *digest, int keylen, unsigned char *out); int PKCS5_v2_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de); void PKCS5_PBE_add(void); int EVP_PBE_CipherInit(ASN1_OBJECT *pbe_obj, const char *pass, int passlen, ASN1_TYPE *param, EVP_CIPHER_CTX *ctx, int en_de); /* PBE type */ /* Can appear as the outermost AlgorithmIdentifier */ # define EVP_PBE_TYPE_OUTER 0x0 /* Is an PRF type OID */ # define EVP_PBE_TYPE_PRF 0x1 int EVP_PBE_alg_add_type(int pbe_type, int pbe_nid, int cipher_nid, int md_nid, EVP_PBE_KEYGEN *keygen); int EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md, EVP_PBE_KEYGEN *keygen); int EVP_PBE_find(int type, int pbe_nid, int *pcnid, int *pmnid, EVP_PBE_KEYGEN **pkeygen); void EVP_PBE_cleanup(void); # define ASN1_PKEY_ALIAS 0x1 # define ASN1_PKEY_DYNAMIC 0x2 # define ASN1_PKEY_SIGPARAM_NULL 0x4 # define ASN1_PKEY_CTRL_PKCS7_SIGN 0x1 # define ASN1_PKEY_CTRL_PKCS7_ENCRYPT 0x2 # define ASN1_PKEY_CTRL_DEFAULT_MD_NID 0x3 # define ASN1_PKEY_CTRL_CMS_SIGN 0x5 # define ASN1_PKEY_CTRL_CMS_ENVELOPE 0x7 # define ASN1_PKEY_CTRL_CMS_RI_TYPE 0x8 int EVP_PKEY_asn1_get_count(void); const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx); const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type); const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe, const char *str, int len); int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth); int EVP_PKEY_asn1_add_alias(int to, int from); int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *pkey_base_id, int *ppkey_flags, const char **pinfo, const char **ppem_str, const EVP_PKEY_ASN1_METHOD *ameth); const EVP_PKEY_ASN1_METHOD *EVP_PKEY_get0_asn1(EVP_PKEY *pkey); EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_new(int id, int flags, const char *pem_str, const char *info); void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst, const EVP_PKEY_ASN1_METHOD *src); void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth); void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth, int (*pub_decode) (EVP_PKEY *pk, X509_PUBKEY *pub), int (*pub_encode) (X509_PUBKEY *pub, const EVP_PKEY *pk), int (*pub_cmp) (const EVP_PKEY *a, const EVP_PKEY *b), int (*pub_print) (BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx), int (*pkey_size) (const EVP_PKEY *pk), int (*pkey_bits) (const EVP_PKEY *pk)); void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth, int (*priv_decode) (EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf), int (*priv_encode) (PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk), int (*priv_print) (BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx)); void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth, int (*param_decode) (EVP_PKEY *pkey, const unsigned char **pder, int derlen), int (*param_encode) (const EVP_PKEY *pkey, unsigned char **pder), int (*param_missing) (const EVP_PKEY *pk), int (*param_copy) (EVP_PKEY *to, const EVP_PKEY *from), int (*param_cmp) (const EVP_PKEY *a, const EVP_PKEY *b), int (*param_print) (BIO *out, const EVP_PKEY *pkey, int indent, ASN1_PCTX *pctx)); void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth, void (*pkey_free) (EVP_PKEY *pkey)); void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth, int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2)); void EVP_PKEY_asn1_set_item(EVP_PKEY_ASN1_METHOD *ameth, int (*item_verify) (EVP_MD_CTX *ctx, const ASN1_ITEM *it, void *asn, X509_ALGOR *a, ASN1_BIT_STRING *sig, EVP_PKEY *pkey), int (*item_sign) (EVP_MD_CTX *ctx, const ASN1_ITEM *it, void *asn, X509_ALGOR *alg1, X509_ALGOR *alg2, ASN1_BIT_STRING *sig)); # define EVP_PKEY_OP_UNDEFINED 0 # define EVP_PKEY_OP_PARAMGEN (1<<1) # define EVP_PKEY_OP_KEYGEN (1<<2) # define EVP_PKEY_OP_SIGN (1<<3) # define EVP_PKEY_OP_VERIFY (1<<4) # define EVP_PKEY_OP_VERIFYRECOVER (1<<5) # define EVP_PKEY_OP_SIGNCTX (1<<6) # define EVP_PKEY_OP_VERIFYCTX (1<<7) # define EVP_PKEY_OP_ENCRYPT (1<<8) # define EVP_PKEY_OP_DECRYPT (1<<9) # define EVP_PKEY_OP_DERIVE (1<<10) # define EVP_PKEY_OP_TYPE_SIG \ (EVP_PKEY_OP_SIGN | EVP_PKEY_OP_VERIFY | EVP_PKEY_OP_VERIFYRECOVER \ | EVP_PKEY_OP_SIGNCTX | EVP_PKEY_OP_VERIFYCTX) # define EVP_PKEY_OP_TYPE_CRYPT \ (EVP_PKEY_OP_ENCRYPT | EVP_PKEY_OP_DECRYPT) # define EVP_PKEY_OP_TYPE_NOGEN \ (EVP_PKEY_OP_SIG | EVP_PKEY_OP_CRYPT | EVP_PKEY_OP_DERIVE) # define EVP_PKEY_OP_TYPE_GEN \ (EVP_PKEY_OP_PARAMGEN | EVP_PKEY_OP_KEYGEN) # define EVP_PKEY_CTX_set_signature_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, -1, EVP_PKEY_OP_TYPE_SIG, \ EVP_PKEY_CTRL_MD, 0, (void *)md) # define EVP_PKEY_CTX_get_signature_md(ctx, pmd) \ EVP_PKEY_CTX_ctrl(ctx, -1, EVP_PKEY_OP_TYPE_SIG, \ EVP_PKEY_CTRL_GET_MD, 0, (void *)pmd) # define EVP_PKEY_CTRL_MD 1 # define EVP_PKEY_CTRL_PEER_KEY 2 # define EVP_PKEY_CTRL_PKCS7_ENCRYPT 3 # define EVP_PKEY_CTRL_PKCS7_DECRYPT 4 # define EVP_PKEY_CTRL_PKCS7_SIGN 5 # define EVP_PKEY_CTRL_SET_MAC_KEY 6 # define EVP_PKEY_CTRL_DIGESTINIT 7 /* Used by GOST key encryption in TLS */ # define EVP_PKEY_CTRL_SET_IV 8 # define EVP_PKEY_CTRL_CMS_ENCRYPT 9 # define EVP_PKEY_CTRL_CMS_DECRYPT 10 # define EVP_PKEY_CTRL_CMS_SIGN 11 # define EVP_PKEY_CTRL_CIPHER 12 # define EVP_PKEY_CTRL_GET_MD 13 # define EVP_PKEY_ALG_CTRL 0x1000 # define EVP_PKEY_FLAG_AUTOARGLEN 2 /* * Method handles all operations: don't assume any digest related defaults. */ # define EVP_PKEY_FLAG_SIGCTX_CUSTOM 4 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type); EVP_PKEY_METHOD *EVP_PKEY_meth_new(int id, int flags); void EVP_PKEY_meth_get0_info(int *ppkey_id, int *pflags, const EVP_PKEY_METHOD *meth); void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src); void EVP_PKEY_meth_free(EVP_PKEY_METHOD *pmeth); int EVP_PKEY_meth_add0(const EVP_PKEY_METHOD *pmeth); EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); EVP_PKEY_CTX *EVP_PKEY_CTX_dup(EVP_PKEY_CTX *ctx); void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, int cmd, int p1, void *p2); int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value); int EVP_PKEY_CTX_get_operation(EVP_PKEY_CTX *ctx); void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen); EVP_PKEY *EVP_PKEY_new_mac_key(int type, ENGINE *e, const unsigned char *key, int keylen); void EVP_PKEY_CTX_set_data(EVP_PKEY_CTX *ctx, void *data); void *EVP_PKEY_CTX_get_data(EVP_PKEY_CTX *ctx); EVP_PKEY *EVP_PKEY_CTX_get0_pkey(EVP_PKEY_CTX *ctx); EVP_PKEY *EVP_PKEY_CTX_get0_peerkey(EVP_PKEY_CTX *ctx); void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data); void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx); int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen); int EVP_PKEY_verify_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_verify(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen, const unsigned char *tbs, size_t tbslen); int EVP_PKEY_verify_recover_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_verify_recover(EVP_PKEY_CTX *ctx, unsigned char *rout, size_t *routlen, const unsigned char *sig, size_t siglen); int EVP_PKEY_encrypt_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_encrypt(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen); int EVP_PKEY_decrypt_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_decrypt(EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen); int EVP_PKEY_derive_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer); int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen); typedef int EVP_PKEY_gen_cb (EVP_PKEY_CTX *ctx); int EVP_PKEY_paramgen_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx); int EVP_PKEY_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey); void EVP_PKEY_CTX_set_cb(EVP_PKEY_CTX *ctx, EVP_PKEY_gen_cb *cb); EVP_PKEY_gen_cb *EVP_PKEY_CTX_get_cb(EVP_PKEY_CTX *ctx); int EVP_PKEY_CTX_get_keygen_info(EVP_PKEY_CTX *ctx, int idx); void EVP_PKEY_meth_set_init(EVP_PKEY_METHOD *pmeth, int (*init) (EVP_PKEY_CTX *ctx)); void EVP_PKEY_meth_set_copy(EVP_PKEY_METHOD *pmeth, int (*copy) (EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)); void EVP_PKEY_meth_set_cleanup(EVP_PKEY_METHOD *pmeth, void (*cleanup) (EVP_PKEY_CTX *ctx)); void EVP_PKEY_meth_set_paramgen(EVP_PKEY_METHOD *pmeth, int (*paramgen_init) (EVP_PKEY_CTX *ctx), int (*paramgen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); void EVP_PKEY_meth_set_keygen(EVP_PKEY_METHOD *pmeth, int (*keygen_init) (EVP_PKEY_CTX *ctx), int (*keygen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); void EVP_PKEY_meth_set_sign(EVP_PKEY_METHOD *pmeth, int (*sign_init) (EVP_PKEY_CTX *ctx), int (*sign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_set_verify(EVP_PKEY_METHOD *pmeth, int (*verify_init) (EVP_PKEY_CTX *ctx), int (*verify) (EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_set_verify_recover(EVP_PKEY_METHOD *pmeth, int (*verify_recover_init) (EVP_PKEY_CTX *ctx), int (*verify_recover) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_set_signctx(EVP_PKEY_METHOD *pmeth, int (*signctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), int (*signctx) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, EVP_MD_CTX *mctx)); void EVP_PKEY_meth_set_verifyctx(EVP_PKEY_METHOD *pmeth, int (*verifyctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), int (*verifyctx) (EVP_PKEY_CTX *ctx, const unsigned char *sig, int siglen, EVP_MD_CTX *mctx)); void EVP_PKEY_meth_set_encrypt(EVP_PKEY_METHOD *pmeth, int (*encrypt_init) (EVP_PKEY_CTX *ctx), int (*encryptfn) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen)); void EVP_PKEY_meth_set_decrypt(EVP_PKEY_METHOD *pmeth, int (*decrypt_init) (EVP_PKEY_CTX *ctx), int (*decrypt) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen)); void EVP_PKEY_meth_set_derive(EVP_PKEY_METHOD *pmeth, int (*derive_init) (EVP_PKEY_CTX *ctx), int (*derive) (EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)); void EVP_PKEY_meth_set_ctrl(EVP_PKEY_METHOD *pmeth, int (*ctrl) (EVP_PKEY_CTX *ctx, int type, int p1, void *p2), int (*ctrl_str) (EVP_PKEY_CTX *ctx, const char *type, const char *value)); void EVP_PKEY_meth_get_init(EVP_PKEY_METHOD *pmeth, int (**pinit) (EVP_PKEY_CTX *ctx)); void EVP_PKEY_meth_get_copy(EVP_PKEY_METHOD *pmeth, int (**pcopy) (EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)); void EVP_PKEY_meth_get_cleanup(EVP_PKEY_METHOD *pmeth, void (**pcleanup) (EVP_PKEY_CTX *ctx)); void EVP_PKEY_meth_get_paramgen(EVP_PKEY_METHOD *pmeth, int (**pparamgen_init) (EVP_PKEY_CTX *ctx), int (**pparamgen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); void EVP_PKEY_meth_get_keygen(EVP_PKEY_METHOD *pmeth, int (**pkeygen_init) (EVP_PKEY_CTX *ctx), int (**pkeygen) (EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)); void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, int (**psign_init) (EVP_PKEY_CTX *ctx), int (**psign) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_get_verify(EVP_PKEY_METHOD *pmeth, int (**pverify_init) (EVP_PKEY_CTX *ctx), int (**pverify) (EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_get_verify_recover(EVP_PKEY_METHOD *pmeth, int (**pverify_recover_init) (EVP_PKEY_CTX *ctx), int (**pverify_recover) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, const unsigned char *tbs, size_t tbslen)); void EVP_PKEY_meth_get_signctx(EVP_PKEY_METHOD *pmeth, int (**psignctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), int (**psignctx) (EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, EVP_MD_CTX *mctx)); void EVP_PKEY_meth_get_verifyctx(EVP_PKEY_METHOD *pmeth, int (**pverifyctx_init) (EVP_PKEY_CTX *ctx, EVP_MD_CTX *mctx), int (**pverifyctx) (EVP_PKEY_CTX *ctx, const unsigned char *sig, int siglen, EVP_MD_CTX *mctx)); void EVP_PKEY_meth_get_encrypt(EVP_PKEY_METHOD *pmeth, int (**pencrypt_init) (EVP_PKEY_CTX *ctx), int (**pencryptfn) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen)); void EVP_PKEY_meth_get_decrypt(EVP_PKEY_METHOD *pmeth, int (**pdecrypt_init) (EVP_PKEY_CTX *ctx), int (**pdecrypt) (EVP_PKEY_CTX *ctx, unsigned char *out, size_t *outlen, const unsigned char *in, size_t inlen)); void EVP_PKEY_meth_get_derive(EVP_PKEY_METHOD *pmeth, int (**pderive_init) (EVP_PKEY_CTX *ctx), int (**pderive) (EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)); void EVP_PKEY_meth_get_ctrl(EVP_PKEY_METHOD *pmeth, int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1, void *p2), int (**pctrl_str) (EVP_PKEY_CTX *ctx, const char *type, const char *value)); void EVP_add_alg_module(void); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_EVP_strings(void); /* Error codes for the EVP functions. */ /* Function codes. */ # define EVP_F_AESNI_INIT_KEY 165 # define EVP_F_AESNI_XTS_CIPHER 176 # define EVP_F_AES_INIT_KEY 133 # define EVP_F_AES_T4_INIT_KEY 178 # define EVP_F_AES_XTS 172 # define EVP_F_AES_XTS_CIPHER 175 # define EVP_F_ALG_MODULE_INIT 177 # define EVP_F_CAMELLIA_INIT_KEY 159 # define EVP_F_CMAC_INIT 173 # define EVP_F_CMLL_T4_INIT_KEY 179 # define EVP_F_D2I_PKEY 100 # define EVP_F_DO_SIGVER_INIT 161 # define EVP_F_DSAPKEY2PKCS8 134 # define EVP_F_DSA_PKEY2PKCS8 135 # define EVP_F_ECDSA_PKEY2PKCS8 129 # define EVP_F_ECKEY_PKEY2PKCS8 132 # define EVP_F_EVP_CIPHERINIT_EX 123 # define EVP_F_EVP_CIPHER_CTX_COPY 163 # define EVP_F_EVP_CIPHER_CTX_CTRL 124 # define EVP_F_EVP_CIPHER_CTX_SET_KEY_LENGTH 122 # define EVP_F_EVP_DECRYPTFINAL_EX 101 # define EVP_F_EVP_DIGESTINIT_EX 128 # define EVP_F_EVP_ENCRYPTFINAL_EX 127 # define EVP_F_EVP_MD_CTX_COPY_EX 110 # define EVP_F_EVP_MD_SIZE 162 # define EVP_F_EVP_OPENINIT 102 # define EVP_F_EVP_PBE_ALG_ADD 115 # define EVP_F_EVP_PBE_ALG_ADD_TYPE 160 # define EVP_F_EVP_PBE_CIPHERINIT 116 # define EVP_F_EVP_PKCS82PKEY 111 # define EVP_F_EVP_PKCS82PKEY_BROKEN 136 # define EVP_F_EVP_PKEY2PKCS8_BROKEN 113 # define EVP_F_EVP_PKEY_COPY_PARAMETERS 103 # define EVP_F_EVP_PKEY_CTX_CTRL 137 # define EVP_F_EVP_PKEY_CTX_CTRL_STR 150 # define EVP_F_EVP_PKEY_CTX_DUP 156 # define EVP_F_EVP_PKEY_DECRYPT 104 # define EVP_F_EVP_PKEY_DECRYPT_INIT 138 # define EVP_F_EVP_PKEY_DECRYPT_OLD 151 # define EVP_F_EVP_PKEY_DERIVE 153 # define EVP_F_EVP_PKEY_DERIVE_INIT 154 # define EVP_F_EVP_PKEY_DERIVE_SET_PEER 155 # define EVP_F_EVP_PKEY_ENCRYPT 105 # define EVP_F_EVP_PKEY_ENCRYPT_INIT 139 # define EVP_F_EVP_PKEY_ENCRYPT_OLD 152 # define EVP_F_EVP_PKEY_GET1_DH 119 # define EVP_F_EVP_PKEY_GET1_DSA 120 # define EVP_F_EVP_PKEY_GET1_ECDSA 130 # define EVP_F_EVP_PKEY_GET1_EC_KEY 131 # define EVP_F_EVP_PKEY_GET1_RSA 121 # define EVP_F_EVP_PKEY_KEYGEN 146 # define EVP_F_EVP_PKEY_KEYGEN_INIT 147 # define EVP_F_EVP_PKEY_NEW 106 # define EVP_F_EVP_PKEY_PARAMGEN 148 # define EVP_F_EVP_PKEY_PARAMGEN_INIT 149 # define EVP_F_EVP_PKEY_SIGN 140 # define EVP_F_EVP_PKEY_SIGN_INIT 141 # define EVP_F_EVP_PKEY_VERIFY 142 # define EVP_F_EVP_PKEY_VERIFY_INIT 143 # define EVP_F_EVP_PKEY_VERIFY_RECOVER 144 # define EVP_F_EVP_PKEY_VERIFY_RECOVER_INIT 145 # define EVP_F_EVP_RIJNDAEL 126 # define EVP_F_EVP_SIGNFINAL 107 # define EVP_F_EVP_VERIFYFINAL 108 # define EVP_F_FIPS_CIPHERINIT 166 # define EVP_F_FIPS_CIPHER_CTX_COPY 170 # define EVP_F_FIPS_CIPHER_CTX_CTRL 167 # define EVP_F_FIPS_CIPHER_CTX_SET_KEY_LENGTH 171 # define EVP_F_FIPS_DIGESTINIT 168 # define EVP_F_FIPS_MD_CTX_COPY 169 # define EVP_F_HMAC_INIT_EX 174 # define EVP_F_INT_CTX_NEW 157 # define EVP_F_PKCS5_PBE_KEYIVGEN 117 # define EVP_F_PKCS5_V2_PBE_KEYIVGEN 118 # define EVP_F_PKCS5_V2_PBKDF2_KEYIVGEN 164 # define EVP_F_PKCS8_SET_BROKEN 112 # define EVP_F_PKEY_SET_TYPE 158 # define EVP_F_RC2_MAGIC_TO_METH 109 # define EVP_F_RC5_CTRL 125 /* Reason codes. */ # define EVP_R_AES_IV_SETUP_FAILED 162 # define EVP_R_AES_KEY_SETUP_FAILED 143 # define EVP_R_ASN1_LIB 140 # define EVP_R_BAD_BLOCK_LENGTH 136 # define EVP_R_BAD_DECRYPT 100 # define EVP_R_BAD_KEY_LENGTH 137 # define EVP_R_BN_DECODE_ERROR 112 # define EVP_R_BN_PUBKEY_ERROR 113 # define EVP_R_BUFFER_TOO_SMALL 155 # define EVP_R_CAMELLIA_KEY_SETUP_FAILED 157 # define EVP_R_CIPHER_PARAMETER_ERROR 122 # define EVP_R_COMMAND_NOT_SUPPORTED 147 # define EVP_R_CTRL_NOT_IMPLEMENTED 132 # define EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED 133 # define EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 138 # define EVP_R_DECODE_ERROR 114 # define EVP_R_DIFFERENT_KEY_TYPES 101 # define EVP_R_DIFFERENT_PARAMETERS 153 # define EVP_R_DISABLED_FOR_FIPS 163 # define EVP_R_ENCODE_ERROR 115 # define EVP_R_ERROR_LOADING_SECTION 165 # define EVP_R_ERROR_SETTING_FIPS_MODE 166 # define EVP_R_EVP_PBE_CIPHERINIT_ERROR 119 # define EVP_R_EXPECTING_AN_RSA_KEY 127 # define EVP_R_EXPECTING_A_DH_KEY 128 # define EVP_R_EXPECTING_A_DSA_KEY 129 # define EVP_R_EXPECTING_A_ECDSA_KEY 141 # define EVP_R_EXPECTING_A_EC_KEY 142 # define EVP_R_FIPS_MODE_NOT_SUPPORTED 167 # define EVP_R_INITIALIZATION_ERROR 134 # define EVP_R_INPUT_NOT_INITIALIZED 111 # define EVP_R_INVALID_DIGEST 152 # define EVP_R_INVALID_FIPS_MODE 168 # define EVP_R_INVALID_KEY 171 # define EVP_R_INVALID_KEY_LENGTH 130 # define EVP_R_INVALID_OPERATION 148 # define EVP_R_IV_TOO_LARGE 102 # define EVP_R_KEYGEN_FAILURE 120 # define EVP_R_MESSAGE_DIGEST_IS_NULL 159 # define EVP_R_METHOD_NOT_SUPPORTED 144 # define EVP_R_MISSING_PARAMETERS 103 # define EVP_R_NO_CIPHER_SET 131 # define EVP_R_NO_DEFAULT_DIGEST 158 # define EVP_R_NO_DIGEST_SET 139 # define EVP_R_NO_DSA_PARAMETERS 116 # define EVP_R_NO_KEY_SET 154 # define EVP_R_NO_OPERATION_SET 149 # define EVP_R_NO_SIGN_FUNCTION_CONFIGURED 104 # define EVP_R_NO_VERIFY_FUNCTION_CONFIGURED 105 # define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 150 # define EVP_R_OPERATON_NOT_INITIALIZED 151 # define EVP_R_PKCS8_UNKNOWN_BROKEN_TYPE 117 # define EVP_R_PRIVATE_KEY_DECODE_ERROR 145 # define EVP_R_PRIVATE_KEY_ENCODE_ERROR 146 # define EVP_R_PUBLIC_KEY_NOT_RSA 106 # define EVP_R_TOO_LARGE 164 # define EVP_R_UNKNOWN_CIPHER 160 # define EVP_R_UNKNOWN_DIGEST 161 # define EVP_R_UNKNOWN_OPTION 169 # define EVP_R_UNKNOWN_PBE_ALGORITHM 121 # define EVP_R_UNSUPORTED_NUMBER_OF_ROUNDS 135 # define EVP_R_UNSUPPORTED_ALGORITHM 156 # define EVP_R_UNSUPPORTED_CIPHER 107 # define EVP_R_UNSUPPORTED_KEYLENGTH 123 # define EVP_R_UNSUPPORTED_KEY_DERIVATION_FUNCTION 124 # define EVP_R_UNSUPPORTED_KEY_SIZE 108 # define EVP_R_UNSUPPORTED_PRF 125 # define EVP_R_UNSUPPORTED_PRIVATE_KEY_ALGORITHM 118 # define EVP_R_UNSUPPORTED_SALT_TYPE 126 # define EVP_R_WRAP_MODE_NOT_ALLOWED 170 # define EVP_R_WRONG_FINAL_BLOCK_LENGTH 109 # define EVP_R_WRONG_PUBLIC_KEY_TYPE 110 # ifdef __cplusplus } # endif #endif ================================================ FILE: third_party/include/openssl/hmac.h ================================================ /* crypto/hmac/hmac.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_HMAC_H # define HEADER_HMAC_H # include # ifdef OPENSSL_NO_HMAC # error HMAC is disabled. # endif # include # define HMAC_MAX_MD_CBLOCK 128/* largest known is SHA512 */ #ifdef __cplusplus extern "C" { #endif typedef struct hmac_ctx_st { const EVP_MD *md; EVP_MD_CTX md_ctx; EVP_MD_CTX i_ctx; EVP_MD_CTX o_ctx; unsigned int key_length; unsigned char key[HMAC_MAX_MD_CBLOCK]; } HMAC_CTX; # define HMAC_size(e) (EVP_MD_size((e)->md)) void HMAC_CTX_init(HMAC_CTX *ctx); void HMAC_CTX_cleanup(HMAC_CTX *ctx); /* deprecated */ # define HMAC_cleanup(ctx) HMAC_CTX_cleanup(ctx) /* deprecated */ int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md); int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl); int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len); int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len); unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, const unsigned char *d, size_t n, unsigned char *md, unsigned int *md_len); int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx); void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/idea.h ================================================ /* crypto/idea/idea.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_IDEA_H # define HEADER_IDEA_H # include /* IDEA_INT, OPENSSL_NO_IDEA */ # ifdef OPENSSL_NO_IDEA # error IDEA is disabled. # endif # define IDEA_ENCRYPT 1 # define IDEA_DECRYPT 0 # define IDEA_BLOCK 8 # define IDEA_KEY_LENGTH 16 #ifdef __cplusplus extern "C" { #endif typedef struct idea_key_st { IDEA_INT data[9][6]; } IDEA_KEY_SCHEDULE; const char *idea_options(void); void idea_ecb_encrypt(const unsigned char *in, unsigned char *out, IDEA_KEY_SCHEDULE *ks); # ifdef OPENSSL_FIPS void private_idea_set_encrypt_key(const unsigned char *key, IDEA_KEY_SCHEDULE *ks); # endif void idea_set_encrypt_key(const unsigned char *key, IDEA_KEY_SCHEDULE *ks); void idea_set_decrypt_key(IDEA_KEY_SCHEDULE *ek, IDEA_KEY_SCHEDULE *dk); void idea_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, int enc); void idea_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, int *num, int enc); void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, int *num); void idea_encrypt(unsigned long *in, IDEA_KEY_SCHEDULE *ks); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/krb5_asn.h ================================================ /* krb5_asn.h */ /* * Written by Vern Staats for the OpenSSL project, ** * using ocsp/{*.h,*asn*.c} as a starting point */ /* ==================================================================== * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_KRB5_ASN_H # define HEADER_KRB5_ASN_H /* * #include */ # include #ifdef __cplusplus extern "C" { #endif /* * ASN.1 from Kerberos RFC 1510 */ /*- EncryptedData ::= SEQUENCE { * etype[0] INTEGER, -- EncryptionType * kvno[1] INTEGER OPTIONAL, * cipher[2] OCTET STRING -- ciphertext * } */ typedef struct krb5_encdata_st { ASN1_INTEGER *etype; ASN1_INTEGER *kvno; ASN1_OCTET_STRING *cipher; } KRB5_ENCDATA; DECLARE_STACK_OF(KRB5_ENCDATA) /*- PrincipalName ::= SEQUENCE { * name-type[0] INTEGER, * name-string[1] SEQUENCE OF GeneralString * } */ typedef struct krb5_princname_st { ASN1_INTEGER *nametype; STACK_OF(ASN1_GENERALSTRING) *namestring; } KRB5_PRINCNAME; DECLARE_STACK_OF(KRB5_PRINCNAME) /*- Ticket ::= [APPLICATION 1] SEQUENCE { * tkt-vno[0] INTEGER, * realm[1] Realm, * sname[2] PrincipalName, * enc-part[3] EncryptedData * } */ typedef struct krb5_tktbody_st { ASN1_INTEGER *tktvno; ASN1_GENERALSTRING *realm; KRB5_PRINCNAME *sname; KRB5_ENCDATA *encdata; } KRB5_TKTBODY; typedef STACK_OF(KRB5_TKTBODY) KRB5_TICKET; DECLARE_STACK_OF(KRB5_TKTBODY) /*- AP-REQ ::= [APPLICATION 14] SEQUENCE { * pvno[0] INTEGER, * msg-type[1] INTEGER, * ap-options[2] APOptions, * ticket[3] Ticket, * authenticator[4] EncryptedData * } * * APOptions ::= BIT STRING { * reserved(0), use-session-key(1), mutual-required(2) } */ typedef struct krb5_ap_req_st { ASN1_INTEGER *pvno; ASN1_INTEGER *msgtype; ASN1_BIT_STRING *apoptions; KRB5_TICKET *ticket; KRB5_ENCDATA *authenticator; } KRB5_APREQBODY; typedef STACK_OF(KRB5_APREQBODY) KRB5_APREQ; DECLARE_STACK_OF(KRB5_APREQBODY) /* Authenticator Stuff */ /*- Checksum ::= SEQUENCE { * cksumtype[0] INTEGER, * checksum[1] OCTET STRING * } */ typedef struct krb5_checksum_st { ASN1_INTEGER *ctype; ASN1_OCTET_STRING *checksum; } KRB5_CHECKSUM; DECLARE_STACK_OF(KRB5_CHECKSUM) /*- EncryptionKey ::= SEQUENCE { * keytype[0] INTEGER, * keyvalue[1] OCTET STRING * } */ typedef struct krb5_encryptionkey_st { ASN1_INTEGER *ktype; ASN1_OCTET_STRING *keyvalue; } KRB5_ENCKEY; DECLARE_STACK_OF(KRB5_ENCKEY) /*- AuthorizationData ::= SEQUENCE OF SEQUENCE { * ad-type[0] INTEGER, * ad-data[1] OCTET STRING * } */ typedef struct krb5_authorization_st { ASN1_INTEGER *adtype; ASN1_OCTET_STRING *addata; } KRB5_AUTHDATA; DECLARE_STACK_OF(KRB5_AUTHDATA) /*- -- Unencrypted authenticator * Authenticator ::= [APPLICATION 2] SEQUENCE { * authenticator-vno[0] INTEGER, * crealm[1] Realm, * cname[2] PrincipalName, * cksum[3] Checksum OPTIONAL, * cusec[4] INTEGER, * ctime[5] KerberosTime, * subkey[6] EncryptionKey OPTIONAL, * seq-number[7] INTEGER OPTIONAL, * authorization-data[8] AuthorizationData OPTIONAL * } */ typedef struct krb5_authenticator_st { ASN1_INTEGER *avno; ASN1_GENERALSTRING *crealm; KRB5_PRINCNAME *cname; KRB5_CHECKSUM *cksum; ASN1_INTEGER *cusec; ASN1_GENERALIZEDTIME *ctime; KRB5_ENCKEY *subkey; ASN1_INTEGER *seqnum; KRB5_AUTHDATA *authorization; } KRB5_AUTHENTBODY; typedef STACK_OF(KRB5_AUTHENTBODY) KRB5_AUTHENT; DECLARE_STACK_OF(KRB5_AUTHENTBODY) /*- DECLARE_ASN1_FUNCTIONS(type) = DECLARE_ASN1_FUNCTIONS_name(type, type) = * type *name##_new(void); * void name##_free(type *a); * DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name) = * DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) = * type *d2i_##name(type **a, const unsigned char **in, long len); * int i2d_##name(type *a, unsigned char **out); * DECLARE_ASN1_ITEM(itname) = OPENSSL_EXTERN const ASN1_ITEM itname##_it */ DECLARE_ASN1_FUNCTIONS(KRB5_ENCDATA) DECLARE_ASN1_FUNCTIONS(KRB5_PRINCNAME) DECLARE_ASN1_FUNCTIONS(KRB5_TKTBODY) DECLARE_ASN1_FUNCTIONS(KRB5_APREQBODY) DECLARE_ASN1_FUNCTIONS(KRB5_TICKET) DECLARE_ASN1_FUNCTIONS(KRB5_APREQ) DECLARE_ASN1_FUNCTIONS(KRB5_CHECKSUM) DECLARE_ASN1_FUNCTIONS(KRB5_ENCKEY) DECLARE_ASN1_FUNCTIONS(KRB5_AUTHDATA) DECLARE_ASN1_FUNCTIONS(KRB5_AUTHENTBODY) DECLARE_ASN1_FUNCTIONS(KRB5_AUTHENT) /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/kssl.h ================================================ /* ssl/kssl.h */ /* * Written by Vern Staats for the OpenSSL project * 2000. project 2000. */ /* ==================================================================== * Copyright (c) 2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ** 19990701 VRS Started. */ #ifndef KSSL_H # define KSSL_H # include # ifndef OPENSSL_NO_KRB5 # include # include # include # ifdef OPENSSL_SYS_WIN32 /* * These can sometimes get redefined indirectly by krb5 header files after * they get undefed in ossl_typ.h */ # undef X509_NAME # undef X509_EXTENSIONS # undef OCSP_REQUEST # undef OCSP_RESPONSE # endif #ifdef __cplusplus extern "C" { #endif /* * Depending on which KRB5 implementation used, some types from * the other may be missing. Resolve that here and now */ # ifdef KRB5_HEIMDAL typedef unsigned char krb5_octet; # define FAR # else # ifndef FAR # define FAR # endif # endif /*- * Uncomment this to debug kssl problems or * to trace usage of the Kerberos session key * * #define KSSL_DEBUG */ # ifndef KRB5SVC # define KRB5SVC "host" # endif # ifndef KRB5KEYTAB # define KRB5KEYTAB "/etc/krb5.keytab" # endif # ifndef KRB5SENDAUTH # define KRB5SENDAUTH 1 # endif # ifndef KRB5CHECKAUTH # define KRB5CHECKAUTH 1 # endif # ifndef KSSL_CLOCKSKEW # define KSSL_CLOCKSKEW 300; # endif # define KSSL_ERR_MAX 255 typedef struct kssl_err_st { int reason; char text[KSSL_ERR_MAX + 1]; } KSSL_ERR; /*- Context for passing * (1) Kerberos session key to SSL, and * (2) Config data between application and SSL lib */ typedef struct kssl_ctx_st { /* used by: disposition: */ char *service_name; /* C,S default ok (kssl) */ char *service_host; /* C input, REQUIRED */ char *client_princ; /* S output from krb5 ticket */ char *keytab_file; /* S NULL (/etc/krb5.keytab) */ char *cred_cache; /* C NULL (default) */ krb5_enctype enctype; int length; krb5_octet FAR *key; } KSSL_CTX; # define KSSL_CLIENT 1 # define KSSL_SERVER 2 # define KSSL_SERVICE 3 # define KSSL_KEYTAB 4 # define KSSL_CTX_OK 0 # define KSSL_CTX_ERR 1 # define KSSL_NOMEM 2 /* Public (for use by applications that use OpenSSL with Kerberos 5 support */ krb5_error_code kssl_ctx_setstring(KSSL_CTX *kssl_ctx, int which, char *text); KSSL_CTX *kssl_ctx_new(void); KSSL_CTX *kssl_ctx_free(KSSL_CTX *kssl_ctx); void kssl_ctx_show(KSSL_CTX *kssl_ctx); krb5_error_code kssl_ctx_setprinc(KSSL_CTX *kssl_ctx, int which, krb5_data *realm, krb5_data *entity, int nentities); krb5_error_code kssl_cget_tkt(KSSL_CTX *kssl_ctx, krb5_data **enc_tktp, krb5_data *authenp, KSSL_ERR *kssl_err); krb5_error_code kssl_sget_tkt(KSSL_CTX *kssl_ctx, krb5_data *indata, krb5_ticket_times *ttimes, KSSL_ERR *kssl_err); krb5_error_code kssl_ctx_setkey(KSSL_CTX *kssl_ctx, krb5_keyblock *session); void kssl_err_set(KSSL_ERR *kssl_err, int reason, char *text); void kssl_krb5_free_data_contents(krb5_context context, krb5_data *data); krb5_error_code kssl_build_principal_2(krb5_context context, krb5_principal *princ, int rlen, const char *realm, int slen, const char *svc, int hlen, const char *host); krb5_error_code kssl_validate_times(krb5_timestamp atime, krb5_ticket_times *ttimes); krb5_error_code kssl_check_authent(KSSL_CTX *kssl_ctx, krb5_data *authentp, krb5_timestamp *atimep, KSSL_ERR *kssl_err); unsigned char *kssl_skip_confound(krb5_enctype enctype, unsigned char *authn); void SSL_set0_kssl_ctx(SSL *s, KSSL_CTX *kctx); KSSL_CTX *SSL_get0_kssl_ctx(SSL *s); char *kssl_ctx_get0_client_princ(KSSL_CTX *kctx); #ifdef __cplusplus } #endif # endif /* OPENSSL_NO_KRB5 */ #endif /* KSSL_H */ ================================================ FILE: third_party/include/openssl/lhash.h ================================================ /* crypto/lhash/lhash.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* * Header for dynamic hash table routines Author - Eric Young */ #ifndef HEADER_LHASH_H # define HEADER_LHASH_H # include # ifndef OPENSSL_NO_FP_API # include # endif # ifndef OPENSSL_NO_BIO # include # endif #ifdef __cplusplus extern "C" { #endif typedef struct lhash_node_st { void *data; struct lhash_node_st *next; # ifndef OPENSSL_NO_HASH_COMP unsigned long hash; # endif } LHASH_NODE; typedef int (*LHASH_COMP_FN_TYPE) (const void *, const void *); typedef unsigned long (*LHASH_HASH_FN_TYPE) (const void *); typedef void (*LHASH_DOALL_FN_TYPE) (void *); typedef void (*LHASH_DOALL_ARG_FN_TYPE) (void *, void *); /* * Macros for declaring and implementing type-safe wrappers for LHASH * callbacks. This way, callbacks can be provided to LHASH structures without * function pointer casting and the macro-defined callbacks provide * per-variable casting before deferring to the underlying type-specific * callbacks. NB: It is possible to place a "static" in front of both the * DECLARE and IMPLEMENT macros if the functions are strictly internal. */ /* First: "hash" functions */ # define DECLARE_LHASH_HASH_FN(name, o_type) \ unsigned long name##_LHASH_HASH(const void *); # define IMPLEMENT_LHASH_HASH_FN(name, o_type) \ unsigned long name##_LHASH_HASH(const void *arg) { \ const o_type *a = arg; \ return name##_hash(a); } # define LHASH_HASH_FN(name) name##_LHASH_HASH /* Second: "compare" functions */ # define DECLARE_LHASH_COMP_FN(name, o_type) \ int name##_LHASH_COMP(const void *, const void *); # define IMPLEMENT_LHASH_COMP_FN(name, o_type) \ int name##_LHASH_COMP(const void *arg1, const void *arg2) { \ const o_type *a = arg1; \ const o_type *b = arg2; \ return name##_cmp(a,b); } # define LHASH_COMP_FN(name) name##_LHASH_COMP /* Third: "doall" functions */ # define DECLARE_LHASH_DOALL_FN(name, o_type) \ void name##_LHASH_DOALL(void *); # define IMPLEMENT_LHASH_DOALL_FN(name, o_type) \ void name##_LHASH_DOALL(void *arg) { \ o_type *a = arg; \ name##_doall(a); } # define LHASH_DOALL_FN(name) name##_LHASH_DOALL /* Fourth: "doall_arg" functions */ # define DECLARE_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ void name##_LHASH_DOALL_ARG(void *, void *); # define IMPLEMENT_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ void name##_LHASH_DOALL_ARG(void *arg1, void *arg2) { \ o_type *a = arg1; \ a_type *b = arg2; \ name##_doall_arg(a, b); } # define LHASH_DOALL_ARG_FN(name) name##_LHASH_DOALL_ARG typedef struct lhash_st { LHASH_NODE **b; LHASH_COMP_FN_TYPE comp; LHASH_HASH_FN_TYPE hash; unsigned int num_nodes; unsigned int num_alloc_nodes; unsigned int p; unsigned int pmax; unsigned long up_load; /* load times 256 */ unsigned long down_load; /* load times 256 */ unsigned long num_items; unsigned long num_expands; unsigned long num_expand_reallocs; unsigned long num_contracts; unsigned long num_contract_reallocs; unsigned long num_hash_calls; unsigned long num_comp_calls; unsigned long num_insert; unsigned long num_replace; unsigned long num_delete; unsigned long num_no_delete; unsigned long num_retrieve; unsigned long num_retrieve_miss; unsigned long num_hash_comps; int error; } _LHASH; /* Do not use _LHASH directly, use LHASH_OF * and friends */ # define LH_LOAD_MULT 256 /* * Indicates a malloc() error in the last call, this is only bad in * lh_insert(). */ # define lh_error(lh) ((lh)->error) _LHASH *lh_new(LHASH_HASH_FN_TYPE h, LHASH_COMP_FN_TYPE c); void lh_free(_LHASH *lh); void *lh_insert(_LHASH *lh, void *data); void *lh_delete(_LHASH *lh, const void *data); void *lh_retrieve(_LHASH *lh, const void *data); void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func); void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg); unsigned long lh_strhash(const char *c); unsigned long lh_num_items(const _LHASH *lh); # ifndef OPENSSL_NO_FP_API void lh_stats(const _LHASH *lh, FILE *out); void lh_node_stats(const _LHASH *lh, FILE *out); void lh_node_usage_stats(const _LHASH *lh, FILE *out); # endif # ifndef OPENSSL_NO_BIO void lh_stats_bio(const _LHASH *lh, BIO *out); void lh_node_stats_bio(const _LHASH *lh, BIO *out); void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out); # endif /* Type checking... */ # define LHASH_OF(type) struct lhash_st_##type # define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; } # define CHECKED_LHASH_OF(type,lh) \ ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh)) /* Define wrapper functions. */ # define LHM_lh_new(type, name) \ ((LHASH_OF(type) *)lh_new(LHASH_HASH_FN(name), LHASH_COMP_FN(name))) # define LHM_lh_error(type, lh) \ lh_error(CHECKED_LHASH_OF(type,lh)) # define LHM_lh_insert(type, lh, inst) \ ((type *)lh_insert(CHECKED_LHASH_OF(type, lh), \ CHECKED_PTR_OF(type, inst))) # define LHM_lh_retrieve(type, lh, inst) \ ((type *)lh_retrieve(CHECKED_LHASH_OF(type, lh), \ CHECKED_PTR_OF(type, inst))) # define LHM_lh_delete(type, lh, inst) \ ((type *)lh_delete(CHECKED_LHASH_OF(type, lh), \ CHECKED_PTR_OF(type, inst))) # define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn) # define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ lh_doall_arg(CHECKED_LHASH_OF(type, lh), fn, CHECKED_PTR_OF(arg_type, arg)) # define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh)) # define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load) # define LHM_lh_node_stats_bio(type, lh, out) \ lh_node_stats_bio(CHECKED_LHASH_OF(type, lh), out) # define LHM_lh_node_usage_stats_bio(type, lh, out) \ lh_node_usage_stats_bio(CHECKED_LHASH_OF(type, lh), out) # define LHM_lh_stats_bio(type, lh, out) \ lh_stats_bio(CHECKED_LHASH_OF(type, lh), out) # define LHM_lh_free(type, lh) lh_free(CHECKED_LHASH_OF(type, lh)) DECLARE_LHASH_OF(OPENSSL_STRING); DECLARE_LHASH_OF(OPENSSL_CSTRING); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/md4.h ================================================ /* crypto/md4/md4.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_MD4_H # define HEADER_MD4_H # include # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_NO_MD4 # error MD4 is disabled. # endif /*- * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * ! MD4_LONG has to be at least 32 bits wide. If it's wider, then ! * ! MD4_LONG_LOG2 has to be defined along. ! * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ # if defined(__LP32__) # define MD4_LONG unsigned long # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) # define MD4_LONG unsigned long # define MD4_LONG_LOG2 3 /* * _CRAY note. I could declare short, but I have no idea what impact * does it have on performance on none-T3E machines. I could declare * int, but at least on C90 sizeof(int) can be chosen at compile time. * So I've chosen long... * */ # else # define MD4_LONG unsigned int # endif # define MD4_CBLOCK 64 # define MD4_LBLOCK (MD4_CBLOCK/4) # define MD4_DIGEST_LENGTH 16 typedef struct MD4state_st { MD4_LONG A, B, C, D; MD4_LONG Nl, Nh; MD4_LONG data[MD4_LBLOCK]; unsigned int num; } MD4_CTX; # ifdef OPENSSL_FIPS int private_MD4_Init(MD4_CTX *c); # endif int MD4_Init(MD4_CTX *c); int MD4_Update(MD4_CTX *c, const void *data, size_t len); int MD4_Final(unsigned char *md, MD4_CTX *c); unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md); void MD4_Transform(MD4_CTX *c, const unsigned char *b); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/md5.h ================================================ /* crypto/md5/md5.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_MD5_H # define HEADER_MD5_H # include # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_NO_MD5 # error MD5 is disabled. # endif /* * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * ! MD5_LONG has to be at least 32 bits wide. If it's wider, then ! * ! MD5_LONG_LOG2 has to be defined along. ! * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ # if defined(__LP32__) # define MD5_LONG unsigned long # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) # define MD5_LONG unsigned long # define MD5_LONG_LOG2 3 /* * _CRAY note. I could declare short, but I have no idea what impact * does it have on performance on none-T3E machines. I could declare * int, but at least on C90 sizeof(int) can be chosen at compile time. * So I've chosen long... * */ # else # define MD5_LONG unsigned int # endif # define MD5_CBLOCK 64 # define MD5_LBLOCK (MD5_CBLOCK/4) # define MD5_DIGEST_LENGTH 16 typedef struct MD5state_st { MD5_LONG A, B, C, D; MD5_LONG Nl, Nh; MD5_LONG data[MD5_LBLOCK]; unsigned int num; } MD5_CTX; # ifdef OPENSSL_FIPS int private_MD5_Init(MD5_CTX *c); # endif int MD5_Init(MD5_CTX *c); int MD5_Update(MD5_CTX *c, const void *data, size_t len); int MD5_Final(unsigned char *md, MD5_CTX *c); unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md); void MD5_Transform(MD5_CTX *c, const unsigned char *b); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/mdc2.h ================================================ /* crypto/mdc2/mdc2.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_MDC2_H # define HEADER_MDC2_H # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_NO_MDC2 # error MDC2 is disabled. # endif # define MDC2_BLOCK 8 # define MDC2_DIGEST_LENGTH 16 typedef struct mdc2_ctx_st { unsigned int num; unsigned char data[MDC2_BLOCK]; DES_cblock h, hh; int pad_type; /* either 1 or 2, default 1 */ } MDC2_CTX; # ifdef OPENSSL_FIPS int private_MDC2_Init(MDC2_CTX *c); # endif int MDC2_Init(MDC2_CTX *c); int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len); int MDC2_Final(unsigned char *md, MDC2_CTX *c); unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/modes.h ================================================ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * * Rights for redistribution and usage in source and binary * forms are granted according to the OpenSSL license. */ #include #ifdef __cplusplus extern "C" { #endif typedef void (*block128_f) (const unsigned char in[16], unsigned char out[16], const void *key); typedef void (*cbc128_f) (const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], int enc); typedef void (*ctr128_f) (const unsigned char *in, unsigned char *out, size_t blocks, const void *key, const unsigned char ivec[16]); typedef void (*ccm128_f) (const unsigned char *in, unsigned char *out, size_t blocks, const void *key, const unsigned char ivec[16], unsigned char cmac[16]); void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], unsigned char ecount_buf[16], unsigned int *num, block128_f block); void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], unsigned char ecount_buf[16], unsigned int *num, ctr128_f ctr); void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], int *num, block128_f block); void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block); void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out, size_t length, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block); void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out, size_t bits, const void *key, unsigned char ivec[16], int *num, int enc, block128_f block); size_t CRYPTO_cts128_encrypt_block(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); size_t CRYPTO_cts128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], cbc128_f cbc); size_t CRYPTO_cts128_decrypt_block(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); size_t CRYPTO_cts128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], cbc128_f cbc); size_t CRYPTO_nistcts128_encrypt_block(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); size_t CRYPTO_nistcts128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], cbc128_f cbc); size_t CRYPTO_nistcts128_decrypt_block(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block); size_t CRYPTO_nistcts128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], cbc128_f cbc); typedef struct gcm128_context GCM128_CONTEXT; GCM128_CONTEXT *CRYPTO_gcm128_new(void *key, block128_f block); void CRYPTO_gcm128_init(GCM128_CONTEXT *ctx, void *key, block128_f block); void CRYPTO_gcm128_setiv(GCM128_CONTEXT *ctx, const unsigned char *iv, size_t len); int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad, size_t len); int CRYPTO_gcm128_encrypt(GCM128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len); int CRYPTO_gcm128_decrypt(GCM128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len); int CRYPTO_gcm128_encrypt_ctr32(GCM128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len, ctr128_f stream); int CRYPTO_gcm128_decrypt_ctr32(GCM128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len, ctr128_f stream); int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx, const unsigned char *tag, size_t len); void CRYPTO_gcm128_tag(GCM128_CONTEXT *ctx, unsigned char *tag, size_t len); void CRYPTO_gcm128_release(GCM128_CONTEXT *ctx); typedef struct ccm128_context CCM128_CONTEXT; void CRYPTO_ccm128_init(CCM128_CONTEXT *ctx, unsigned int M, unsigned int L, void *key, block128_f block); int CRYPTO_ccm128_setiv(CCM128_CONTEXT *ctx, const unsigned char *nonce, size_t nlen, size_t mlen); void CRYPTO_ccm128_aad(CCM128_CONTEXT *ctx, const unsigned char *aad, size_t alen); int CRYPTO_ccm128_encrypt(CCM128_CONTEXT *ctx, const unsigned char *inp, unsigned char *out, size_t len); int CRYPTO_ccm128_decrypt(CCM128_CONTEXT *ctx, const unsigned char *inp, unsigned char *out, size_t len); int CRYPTO_ccm128_encrypt_ccm64(CCM128_CONTEXT *ctx, const unsigned char *inp, unsigned char *out, size_t len, ccm128_f stream); int CRYPTO_ccm128_decrypt_ccm64(CCM128_CONTEXT *ctx, const unsigned char *inp, unsigned char *out, size_t len, ccm128_f stream); size_t CRYPTO_ccm128_tag(CCM128_CONTEXT *ctx, unsigned char *tag, size_t len); typedef struct xts128_context XTS128_CONTEXT; int CRYPTO_xts128_encrypt(const XTS128_CONTEXT *ctx, const unsigned char iv[16], const unsigned char *inp, unsigned char *out, size_t len, int enc); size_t CRYPTO_128_wrap(void *key, const unsigned char *iv, unsigned char *out, const unsigned char *in, size_t inlen, block128_f block); size_t CRYPTO_128_unwrap(void *key, const unsigned char *iv, unsigned char *out, const unsigned char *in, size_t inlen, block128_f block); #ifdef __cplusplus } #endif ================================================ FILE: third_party/include/openssl/obj_mac.h ================================================ /* crypto/objects/obj_mac.h */ /* * THIS FILE IS GENERATED FROM objects.txt by objects.pl via the following * command: perl objects.pl objects.txt obj_mac.num obj_mac.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #define SN_undef "UNDEF" #define LN_undef "undefined" #define NID_undef 0 #define OBJ_undef 0L #define SN_itu_t "ITU-T" #define LN_itu_t "itu-t" #define NID_itu_t 645 #define OBJ_itu_t 0L #define NID_ccitt 404 #define OBJ_ccitt OBJ_itu_t #define SN_iso "ISO" #define LN_iso "iso" #define NID_iso 181 #define OBJ_iso 1L #define SN_joint_iso_itu_t "JOINT-ISO-ITU-T" #define LN_joint_iso_itu_t "joint-iso-itu-t" #define NID_joint_iso_itu_t 646 #define OBJ_joint_iso_itu_t 2L #define NID_joint_iso_ccitt 393 #define OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t #define SN_member_body "member-body" #define LN_member_body "ISO Member Body" #define NID_member_body 182 #define OBJ_member_body OBJ_iso,2L #define SN_identified_organization "identified-organization" #define NID_identified_organization 676 #define OBJ_identified_organization OBJ_iso,3L #define SN_hmac_md5 "HMAC-MD5" #define LN_hmac_md5 "hmac-md5" #define NID_hmac_md5 780 #define OBJ_hmac_md5 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,1L #define SN_hmac_sha1 "HMAC-SHA1" #define LN_hmac_sha1 "hmac-sha1" #define NID_hmac_sha1 781 #define OBJ_hmac_sha1 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,2L #define SN_certicom_arc "certicom-arc" #define NID_certicom_arc 677 #define OBJ_certicom_arc OBJ_identified_organization,132L #define SN_international_organizations "international-organizations" #define LN_international_organizations "International Organizations" #define NID_international_organizations 647 #define OBJ_international_organizations OBJ_joint_iso_itu_t,23L #define SN_wap "wap" #define NID_wap 678 #define OBJ_wap OBJ_international_organizations,43L #define SN_wap_wsg "wap-wsg" #define NID_wap_wsg 679 #define OBJ_wap_wsg OBJ_wap,1L #define SN_selected_attribute_types "selected-attribute-types" #define LN_selected_attribute_types "Selected Attribute Types" #define NID_selected_attribute_types 394 #define OBJ_selected_attribute_types OBJ_joint_iso_itu_t,5L,1L,5L #define SN_clearance "clearance" #define NID_clearance 395 #define OBJ_clearance OBJ_selected_attribute_types,55L #define SN_ISO_US "ISO-US" #define LN_ISO_US "ISO US Member Body" #define NID_ISO_US 183 #define OBJ_ISO_US OBJ_member_body,840L #define SN_X9_57 "X9-57" #define LN_X9_57 "X9.57" #define NID_X9_57 184 #define OBJ_X9_57 OBJ_ISO_US,10040L #define SN_X9cm "X9cm" #define LN_X9cm "X9.57 CM ?" #define NID_X9cm 185 #define OBJ_X9cm OBJ_X9_57,4L #define SN_dsa "DSA" #define LN_dsa "dsaEncryption" #define NID_dsa 116 #define OBJ_dsa OBJ_X9cm,1L #define SN_dsaWithSHA1 "DSA-SHA1" #define LN_dsaWithSHA1 "dsaWithSHA1" #define NID_dsaWithSHA1 113 #define OBJ_dsaWithSHA1 OBJ_X9cm,3L #define SN_ansi_X9_62 "ansi-X9-62" #define LN_ansi_X9_62 "ANSI X9.62" #define NID_ansi_X9_62 405 #define OBJ_ansi_X9_62 OBJ_ISO_US,10045L #define OBJ_X9_62_id_fieldType OBJ_ansi_X9_62,1L #define SN_X9_62_prime_field "prime-field" #define NID_X9_62_prime_field 406 #define OBJ_X9_62_prime_field OBJ_X9_62_id_fieldType,1L #define SN_X9_62_characteristic_two_field "characteristic-two-field" #define NID_X9_62_characteristic_two_field 407 #define OBJ_X9_62_characteristic_two_field OBJ_X9_62_id_fieldType,2L #define SN_X9_62_id_characteristic_two_basis "id-characteristic-two-basis" #define NID_X9_62_id_characteristic_two_basis 680 #define OBJ_X9_62_id_characteristic_two_basis OBJ_X9_62_characteristic_two_field,3L #define SN_X9_62_onBasis "onBasis" #define NID_X9_62_onBasis 681 #define OBJ_X9_62_onBasis OBJ_X9_62_id_characteristic_two_basis,1L #define SN_X9_62_tpBasis "tpBasis" #define NID_X9_62_tpBasis 682 #define OBJ_X9_62_tpBasis OBJ_X9_62_id_characteristic_two_basis,2L #define SN_X9_62_ppBasis "ppBasis" #define NID_X9_62_ppBasis 683 #define OBJ_X9_62_ppBasis OBJ_X9_62_id_characteristic_two_basis,3L #define OBJ_X9_62_id_publicKeyType OBJ_ansi_X9_62,2L #define SN_X9_62_id_ecPublicKey "id-ecPublicKey" #define NID_X9_62_id_ecPublicKey 408 #define OBJ_X9_62_id_ecPublicKey OBJ_X9_62_id_publicKeyType,1L #define OBJ_X9_62_ellipticCurve OBJ_ansi_X9_62,3L #define OBJ_X9_62_c_TwoCurve OBJ_X9_62_ellipticCurve,0L #define SN_X9_62_c2pnb163v1 "c2pnb163v1" #define NID_X9_62_c2pnb163v1 684 #define OBJ_X9_62_c2pnb163v1 OBJ_X9_62_c_TwoCurve,1L #define SN_X9_62_c2pnb163v2 "c2pnb163v2" #define NID_X9_62_c2pnb163v2 685 #define OBJ_X9_62_c2pnb163v2 OBJ_X9_62_c_TwoCurve,2L #define SN_X9_62_c2pnb163v3 "c2pnb163v3" #define NID_X9_62_c2pnb163v3 686 #define OBJ_X9_62_c2pnb163v3 OBJ_X9_62_c_TwoCurve,3L #define SN_X9_62_c2pnb176v1 "c2pnb176v1" #define NID_X9_62_c2pnb176v1 687 #define OBJ_X9_62_c2pnb176v1 OBJ_X9_62_c_TwoCurve,4L #define SN_X9_62_c2tnb191v1 "c2tnb191v1" #define NID_X9_62_c2tnb191v1 688 #define OBJ_X9_62_c2tnb191v1 OBJ_X9_62_c_TwoCurve,5L #define SN_X9_62_c2tnb191v2 "c2tnb191v2" #define NID_X9_62_c2tnb191v2 689 #define OBJ_X9_62_c2tnb191v2 OBJ_X9_62_c_TwoCurve,6L #define SN_X9_62_c2tnb191v3 "c2tnb191v3" #define NID_X9_62_c2tnb191v3 690 #define OBJ_X9_62_c2tnb191v3 OBJ_X9_62_c_TwoCurve,7L #define SN_X9_62_c2onb191v4 "c2onb191v4" #define NID_X9_62_c2onb191v4 691 #define OBJ_X9_62_c2onb191v4 OBJ_X9_62_c_TwoCurve,8L #define SN_X9_62_c2onb191v5 "c2onb191v5" #define NID_X9_62_c2onb191v5 692 #define OBJ_X9_62_c2onb191v5 OBJ_X9_62_c_TwoCurve,9L #define SN_X9_62_c2pnb208w1 "c2pnb208w1" #define NID_X9_62_c2pnb208w1 693 #define OBJ_X9_62_c2pnb208w1 OBJ_X9_62_c_TwoCurve,10L #define SN_X9_62_c2tnb239v1 "c2tnb239v1" #define NID_X9_62_c2tnb239v1 694 #define OBJ_X9_62_c2tnb239v1 OBJ_X9_62_c_TwoCurve,11L #define SN_X9_62_c2tnb239v2 "c2tnb239v2" #define NID_X9_62_c2tnb239v2 695 #define OBJ_X9_62_c2tnb239v2 OBJ_X9_62_c_TwoCurve,12L #define SN_X9_62_c2tnb239v3 "c2tnb239v3" #define NID_X9_62_c2tnb239v3 696 #define OBJ_X9_62_c2tnb239v3 OBJ_X9_62_c_TwoCurve,13L #define SN_X9_62_c2onb239v4 "c2onb239v4" #define NID_X9_62_c2onb239v4 697 #define OBJ_X9_62_c2onb239v4 OBJ_X9_62_c_TwoCurve,14L #define SN_X9_62_c2onb239v5 "c2onb239v5" #define NID_X9_62_c2onb239v5 698 #define OBJ_X9_62_c2onb239v5 OBJ_X9_62_c_TwoCurve,15L #define SN_X9_62_c2pnb272w1 "c2pnb272w1" #define NID_X9_62_c2pnb272w1 699 #define OBJ_X9_62_c2pnb272w1 OBJ_X9_62_c_TwoCurve,16L #define SN_X9_62_c2pnb304w1 "c2pnb304w1" #define NID_X9_62_c2pnb304w1 700 #define OBJ_X9_62_c2pnb304w1 OBJ_X9_62_c_TwoCurve,17L #define SN_X9_62_c2tnb359v1 "c2tnb359v1" #define NID_X9_62_c2tnb359v1 701 #define OBJ_X9_62_c2tnb359v1 OBJ_X9_62_c_TwoCurve,18L #define SN_X9_62_c2pnb368w1 "c2pnb368w1" #define NID_X9_62_c2pnb368w1 702 #define OBJ_X9_62_c2pnb368w1 OBJ_X9_62_c_TwoCurve,19L #define SN_X9_62_c2tnb431r1 "c2tnb431r1" #define NID_X9_62_c2tnb431r1 703 #define OBJ_X9_62_c2tnb431r1 OBJ_X9_62_c_TwoCurve,20L #define OBJ_X9_62_primeCurve OBJ_X9_62_ellipticCurve,1L #define SN_X9_62_prime192v1 "prime192v1" #define NID_X9_62_prime192v1 409 #define OBJ_X9_62_prime192v1 OBJ_X9_62_primeCurve,1L #define SN_X9_62_prime192v2 "prime192v2" #define NID_X9_62_prime192v2 410 #define OBJ_X9_62_prime192v2 OBJ_X9_62_primeCurve,2L #define SN_X9_62_prime192v3 "prime192v3" #define NID_X9_62_prime192v3 411 #define OBJ_X9_62_prime192v3 OBJ_X9_62_primeCurve,3L #define SN_X9_62_prime239v1 "prime239v1" #define NID_X9_62_prime239v1 412 #define OBJ_X9_62_prime239v1 OBJ_X9_62_primeCurve,4L #define SN_X9_62_prime239v2 "prime239v2" #define NID_X9_62_prime239v2 413 #define OBJ_X9_62_prime239v2 OBJ_X9_62_primeCurve,5L #define SN_X9_62_prime239v3 "prime239v3" #define NID_X9_62_prime239v3 414 #define OBJ_X9_62_prime239v3 OBJ_X9_62_primeCurve,6L #define SN_X9_62_prime256v1 "prime256v1" #define NID_X9_62_prime256v1 415 #define OBJ_X9_62_prime256v1 OBJ_X9_62_primeCurve,7L #define OBJ_X9_62_id_ecSigType OBJ_ansi_X9_62,4L #define SN_ecdsa_with_SHA1 "ecdsa-with-SHA1" #define NID_ecdsa_with_SHA1 416 #define OBJ_ecdsa_with_SHA1 OBJ_X9_62_id_ecSigType,1L #define SN_ecdsa_with_Recommended "ecdsa-with-Recommended" #define NID_ecdsa_with_Recommended 791 #define OBJ_ecdsa_with_Recommended OBJ_X9_62_id_ecSigType,2L #define SN_ecdsa_with_Specified "ecdsa-with-Specified" #define NID_ecdsa_with_Specified 792 #define OBJ_ecdsa_with_Specified OBJ_X9_62_id_ecSigType,3L #define SN_ecdsa_with_SHA224 "ecdsa-with-SHA224" #define NID_ecdsa_with_SHA224 793 #define OBJ_ecdsa_with_SHA224 OBJ_ecdsa_with_Specified,1L #define SN_ecdsa_with_SHA256 "ecdsa-with-SHA256" #define NID_ecdsa_with_SHA256 794 #define OBJ_ecdsa_with_SHA256 OBJ_ecdsa_with_Specified,2L #define SN_ecdsa_with_SHA384 "ecdsa-with-SHA384" #define NID_ecdsa_with_SHA384 795 #define OBJ_ecdsa_with_SHA384 OBJ_ecdsa_with_Specified,3L #define SN_ecdsa_with_SHA512 "ecdsa-with-SHA512" #define NID_ecdsa_with_SHA512 796 #define OBJ_ecdsa_with_SHA512 OBJ_ecdsa_with_Specified,4L #define OBJ_secg_ellipticCurve OBJ_certicom_arc,0L #define SN_secp112r1 "secp112r1" #define NID_secp112r1 704 #define OBJ_secp112r1 OBJ_secg_ellipticCurve,6L #define SN_secp112r2 "secp112r2" #define NID_secp112r2 705 #define OBJ_secp112r2 OBJ_secg_ellipticCurve,7L #define SN_secp128r1 "secp128r1" #define NID_secp128r1 706 #define OBJ_secp128r1 OBJ_secg_ellipticCurve,28L #define SN_secp128r2 "secp128r2" #define NID_secp128r2 707 #define OBJ_secp128r2 OBJ_secg_ellipticCurve,29L #define SN_secp160k1 "secp160k1" #define NID_secp160k1 708 #define OBJ_secp160k1 OBJ_secg_ellipticCurve,9L #define SN_secp160r1 "secp160r1" #define NID_secp160r1 709 #define OBJ_secp160r1 OBJ_secg_ellipticCurve,8L #define SN_secp160r2 "secp160r2" #define NID_secp160r2 710 #define OBJ_secp160r2 OBJ_secg_ellipticCurve,30L #define SN_secp192k1 "secp192k1" #define NID_secp192k1 711 #define OBJ_secp192k1 OBJ_secg_ellipticCurve,31L #define SN_secp224k1 "secp224k1" #define NID_secp224k1 712 #define OBJ_secp224k1 OBJ_secg_ellipticCurve,32L #define SN_secp224r1 "secp224r1" #define NID_secp224r1 713 #define OBJ_secp224r1 OBJ_secg_ellipticCurve,33L #define SN_secp256k1 "secp256k1" #define NID_secp256k1 714 #define OBJ_secp256k1 OBJ_secg_ellipticCurve,10L #define SN_secp384r1 "secp384r1" #define NID_secp384r1 715 #define OBJ_secp384r1 OBJ_secg_ellipticCurve,34L #define SN_secp521r1 "secp521r1" #define NID_secp521r1 716 #define OBJ_secp521r1 OBJ_secg_ellipticCurve,35L #define SN_sect113r1 "sect113r1" #define NID_sect113r1 717 #define OBJ_sect113r1 OBJ_secg_ellipticCurve,4L #define SN_sect113r2 "sect113r2" #define NID_sect113r2 718 #define OBJ_sect113r2 OBJ_secg_ellipticCurve,5L #define SN_sect131r1 "sect131r1" #define NID_sect131r1 719 #define OBJ_sect131r1 OBJ_secg_ellipticCurve,22L #define SN_sect131r2 "sect131r2" #define NID_sect131r2 720 #define OBJ_sect131r2 OBJ_secg_ellipticCurve,23L #define SN_sect163k1 "sect163k1" #define NID_sect163k1 721 #define OBJ_sect163k1 OBJ_secg_ellipticCurve,1L #define SN_sect163r1 "sect163r1" #define NID_sect163r1 722 #define OBJ_sect163r1 OBJ_secg_ellipticCurve,2L #define SN_sect163r2 "sect163r2" #define NID_sect163r2 723 #define OBJ_sect163r2 OBJ_secg_ellipticCurve,15L #define SN_sect193r1 "sect193r1" #define NID_sect193r1 724 #define OBJ_sect193r1 OBJ_secg_ellipticCurve,24L #define SN_sect193r2 "sect193r2" #define NID_sect193r2 725 #define OBJ_sect193r2 OBJ_secg_ellipticCurve,25L #define SN_sect233k1 "sect233k1" #define NID_sect233k1 726 #define OBJ_sect233k1 OBJ_secg_ellipticCurve,26L #define SN_sect233r1 "sect233r1" #define NID_sect233r1 727 #define OBJ_sect233r1 OBJ_secg_ellipticCurve,27L #define SN_sect239k1 "sect239k1" #define NID_sect239k1 728 #define OBJ_sect239k1 OBJ_secg_ellipticCurve,3L #define SN_sect283k1 "sect283k1" #define NID_sect283k1 729 #define OBJ_sect283k1 OBJ_secg_ellipticCurve,16L #define SN_sect283r1 "sect283r1" #define NID_sect283r1 730 #define OBJ_sect283r1 OBJ_secg_ellipticCurve,17L #define SN_sect409k1 "sect409k1" #define NID_sect409k1 731 #define OBJ_sect409k1 OBJ_secg_ellipticCurve,36L #define SN_sect409r1 "sect409r1" #define NID_sect409r1 732 #define OBJ_sect409r1 OBJ_secg_ellipticCurve,37L #define SN_sect571k1 "sect571k1" #define NID_sect571k1 733 #define OBJ_sect571k1 OBJ_secg_ellipticCurve,38L #define SN_sect571r1 "sect571r1" #define NID_sect571r1 734 #define OBJ_sect571r1 OBJ_secg_ellipticCurve,39L #define OBJ_wap_wsg_idm_ecid OBJ_wap_wsg,4L #define SN_wap_wsg_idm_ecid_wtls1 "wap-wsg-idm-ecid-wtls1" #define NID_wap_wsg_idm_ecid_wtls1 735 #define OBJ_wap_wsg_idm_ecid_wtls1 OBJ_wap_wsg_idm_ecid,1L #define SN_wap_wsg_idm_ecid_wtls3 "wap-wsg-idm-ecid-wtls3" #define NID_wap_wsg_idm_ecid_wtls3 736 #define OBJ_wap_wsg_idm_ecid_wtls3 OBJ_wap_wsg_idm_ecid,3L #define SN_wap_wsg_idm_ecid_wtls4 "wap-wsg-idm-ecid-wtls4" #define NID_wap_wsg_idm_ecid_wtls4 737 #define OBJ_wap_wsg_idm_ecid_wtls4 OBJ_wap_wsg_idm_ecid,4L #define SN_wap_wsg_idm_ecid_wtls5 "wap-wsg-idm-ecid-wtls5" #define NID_wap_wsg_idm_ecid_wtls5 738 #define OBJ_wap_wsg_idm_ecid_wtls5 OBJ_wap_wsg_idm_ecid,5L #define SN_wap_wsg_idm_ecid_wtls6 "wap-wsg-idm-ecid-wtls6" #define NID_wap_wsg_idm_ecid_wtls6 739 #define OBJ_wap_wsg_idm_ecid_wtls6 OBJ_wap_wsg_idm_ecid,6L #define SN_wap_wsg_idm_ecid_wtls7 "wap-wsg-idm-ecid-wtls7" #define NID_wap_wsg_idm_ecid_wtls7 740 #define OBJ_wap_wsg_idm_ecid_wtls7 OBJ_wap_wsg_idm_ecid,7L #define SN_wap_wsg_idm_ecid_wtls8 "wap-wsg-idm-ecid-wtls8" #define NID_wap_wsg_idm_ecid_wtls8 741 #define OBJ_wap_wsg_idm_ecid_wtls8 OBJ_wap_wsg_idm_ecid,8L #define SN_wap_wsg_idm_ecid_wtls9 "wap-wsg-idm-ecid-wtls9" #define NID_wap_wsg_idm_ecid_wtls9 742 #define OBJ_wap_wsg_idm_ecid_wtls9 OBJ_wap_wsg_idm_ecid,9L #define SN_wap_wsg_idm_ecid_wtls10 "wap-wsg-idm-ecid-wtls10" #define NID_wap_wsg_idm_ecid_wtls10 743 #define OBJ_wap_wsg_idm_ecid_wtls10 OBJ_wap_wsg_idm_ecid,10L #define SN_wap_wsg_idm_ecid_wtls11 "wap-wsg-idm-ecid-wtls11" #define NID_wap_wsg_idm_ecid_wtls11 744 #define OBJ_wap_wsg_idm_ecid_wtls11 OBJ_wap_wsg_idm_ecid,11L #define SN_wap_wsg_idm_ecid_wtls12 "wap-wsg-idm-ecid-wtls12" #define NID_wap_wsg_idm_ecid_wtls12 745 #define OBJ_wap_wsg_idm_ecid_wtls12 OBJ_wap_wsg_idm_ecid,12L #define SN_cast5_cbc "CAST5-CBC" #define LN_cast5_cbc "cast5-cbc" #define NID_cast5_cbc 108 #define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L #define SN_cast5_ecb "CAST5-ECB" #define LN_cast5_ecb "cast5-ecb" #define NID_cast5_ecb 109 #define SN_cast5_cfb64 "CAST5-CFB" #define LN_cast5_cfb64 "cast5-cfb" #define NID_cast5_cfb64 110 #define SN_cast5_ofb64 "CAST5-OFB" #define LN_cast5_ofb64 "cast5-ofb" #define NID_cast5_ofb64 111 #define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC" #define NID_pbeWithMD5AndCast5_CBC 112 #define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L #define SN_id_PasswordBasedMAC "id-PasswordBasedMAC" #define LN_id_PasswordBasedMAC "password based MAC" #define NID_id_PasswordBasedMAC 782 #define OBJ_id_PasswordBasedMAC OBJ_ISO_US,113533L,7L,66L,13L #define SN_id_DHBasedMac "id-DHBasedMac" #define LN_id_DHBasedMac "Diffie-Hellman based MAC" #define NID_id_DHBasedMac 783 #define OBJ_id_DHBasedMac OBJ_ISO_US,113533L,7L,66L,30L #define SN_rsadsi "rsadsi" #define LN_rsadsi "RSA Data Security, Inc." #define NID_rsadsi 1 #define OBJ_rsadsi OBJ_ISO_US,113549L #define SN_pkcs "pkcs" #define LN_pkcs "RSA Data Security, Inc. PKCS" #define NID_pkcs 2 #define OBJ_pkcs OBJ_rsadsi,1L #define SN_pkcs1 "pkcs1" #define NID_pkcs1 186 #define OBJ_pkcs1 OBJ_pkcs,1L #define LN_rsaEncryption "rsaEncryption" #define NID_rsaEncryption 6 #define OBJ_rsaEncryption OBJ_pkcs1,1L #define SN_md2WithRSAEncryption "RSA-MD2" #define LN_md2WithRSAEncryption "md2WithRSAEncryption" #define NID_md2WithRSAEncryption 7 #define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L #define SN_md4WithRSAEncryption "RSA-MD4" #define LN_md4WithRSAEncryption "md4WithRSAEncryption" #define NID_md4WithRSAEncryption 396 #define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L #define SN_md5WithRSAEncryption "RSA-MD5" #define LN_md5WithRSAEncryption "md5WithRSAEncryption" #define NID_md5WithRSAEncryption 8 #define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L #define SN_sha1WithRSAEncryption "RSA-SHA1" #define LN_sha1WithRSAEncryption "sha1WithRSAEncryption" #define NID_sha1WithRSAEncryption 65 #define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L #define SN_rsaesOaep "RSAES-OAEP" #define LN_rsaesOaep "rsaesOaep" #define NID_rsaesOaep 919 #define OBJ_rsaesOaep OBJ_pkcs1,7L #define SN_mgf1 "MGF1" #define LN_mgf1 "mgf1" #define NID_mgf1 911 #define OBJ_mgf1 OBJ_pkcs1,8L #define SN_pSpecified "PSPECIFIED" #define LN_pSpecified "pSpecified" #define NID_pSpecified 935 #define OBJ_pSpecified OBJ_pkcs1,9L #define SN_rsassaPss "RSASSA-PSS" #define LN_rsassaPss "rsassaPss" #define NID_rsassaPss 912 #define OBJ_rsassaPss OBJ_pkcs1,10L #define SN_sha256WithRSAEncryption "RSA-SHA256" #define LN_sha256WithRSAEncryption "sha256WithRSAEncryption" #define NID_sha256WithRSAEncryption 668 #define OBJ_sha256WithRSAEncryption OBJ_pkcs1,11L #define SN_sha384WithRSAEncryption "RSA-SHA384" #define LN_sha384WithRSAEncryption "sha384WithRSAEncryption" #define NID_sha384WithRSAEncryption 669 #define OBJ_sha384WithRSAEncryption OBJ_pkcs1,12L #define SN_sha512WithRSAEncryption "RSA-SHA512" #define LN_sha512WithRSAEncryption "sha512WithRSAEncryption" #define NID_sha512WithRSAEncryption 670 #define OBJ_sha512WithRSAEncryption OBJ_pkcs1,13L #define SN_sha224WithRSAEncryption "RSA-SHA224" #define LN_sha224WithRSAEncryption "sha224WithRSAEncryption" #define NID_sha224WithRSAEncryption 671 #define OBJ_sha224WithRSAEncryption OBJ_pkcs1,14L #define SN_pkcs3 "pkcs3" #define NID_pkcs3 27 #define OBJ_pkcs3 OBJ_pkcs,3L #define LN_dhKeyAgreement "dhKeyAgreement" #define NID_dhKeyAgreement 28 #define OBJ_dhKeyAgreement OBJ_pkcs3,1L #define SN_pkcs5 "pkcs5" #define NID_pkcs5 187 #define OBJ_pkcs5 OBJ_pkcs,5L #define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES" #define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC" #define NID_pbeWithMD2AndDES_CBC 9 #define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L #define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES" #define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC" #define NID_pbeWithMD5AndDES_CBC 10 #define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L #define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64" #define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC" #define NID_pbeWithMD2AndRC2_CBC 168 #define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L #define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64" #define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC" #define NID_pbeWithMD5AndRC2_CBC 169 #define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L #define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES" #define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC" #define NID_pbeWithSHA1AndDES_CBC 170 #define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L #define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64" #define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC" #define NID_pbeWithSHA1AndRC2_CBC 68 #define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L #define LN_id_pbkdf2 "PBKDF2" #define NID_id_pbkdf2 69 #define OBJ_id_pbkdf2 OBJ_pkcs5,12L #define LN_pbes2 "PBES2" #define NID_pbes2 161 #define OBJ_pbes2 OBJ_pkcs5,13L #define LN_pbmac1 "PBMAC1" #define NID_pbmac1 162 #define OBJ_pbmac1 OBJ_pkcs5,14L #define SN_pkcs7 "pkcs7" #define NID_pkcs7 20 #define OBJ_pkcs7 OBJ_pkcs,7L #define LN_pkcs7_data "pkcs7-data" #define NID_pkcs7_data 21 #define OBJ_pkcs7_data OBJ_pkcs7,1L #define LN_pkcs7_signed "pkcs7-signedData" #define NID_pkcs7_signed 22 #define OBJ_pkcs7_signed OBJ_pkcs7,2L #define LN_pkcs7_enveloped "pkcs7-envelopedData" #define NID_pkcs7_enveloped 23 #define OBJ_pkcs7_enveloped OBJ_pkcs7,3L #define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData" #define NID_pkcs7_signedAndEnveloped 24 #define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L #define LN_pkcs7_digest "pkcs7-digestData" #define NID_pkcs7_digest 25 #define OBJ_pkcs7_digest OBJ_pkcs7,5L #define LN_pkcs7_encrypted "pkcs7-encryptedData" #define NID_pkcs7_encrypted 26 #define OBJ_pkcs7_encrypted OBJ_pkcs7,6L #define SN_pkcs9 "pkcs9" #define NID_pkcs9 47 #define OBJ_pkcs9 OBJ_pkcs,9L #define LN_pkcs9_emailAddress "emailAddress" #define NID_pkcs9_emailAddress 48 #define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L #define LN_pkcs9_unstructuredName "unstructuredName" #define NID_pkcs9_unstructuredName 49 #define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L #define LN_pkcs9_contentType "contentType" #define NID_pkcs9_contentType 50 #define OBJ_pkcs9_contentType OBJ_pkcs9,3L #define LN_pkcs9_messageDigest "messageDigest" #define NID_pkcs9_messageDigest 51 #define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L #define LN_pkcs9_signingTime "signingTime" #define NID_pkcs9_signingTime 52 #define OBJ_pkcs9_signingTime OBJ_pkcs9,5L #define LN_pkcs9_countersignature "countersignature" #define NID_pkcs9_countersignature 53 #define OBJ_pkcs9_countersignature OBJ_pkcs9,6L #define LN_pkcs9_challengePassword "challengePassword" #define NID_pkcs9_challengePassword 54 #define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L #define LN_pkcs9_unstructuredAddress "unstructuredAddress" #define NID_pkcs9_unstructuredAddress 55 #define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L #define LN_pkcs9_extCertAttributes "extendedCertificateAttributes" #define NID_pkcs9_extCertAttributes 56 #define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L #define SN_ext_req "extReq" #define LN_ext_req "Extension Request" #define NID_ext_req 172 #define OBJ_ext_req OBJ_pkcs9,14L #define SN_SMIMECapabilities "SMIME-CAPS" #define LN_SMIMECapabilities "S/MIME Capabilities" #define NID_SMIMECapabilities 167 #define OBJ_SMIMECapabilities OBJ_pkcs9,15L #define SN_SMIME "SMIME" #define LN_SMIME "S/MIME" #define NID_SMIME 188 #define OBJ_SMIME OBJ_pkcs9,16L #define SN_id_smime_mod "id-smime-mod" #define NID_id_smime_mod 189 #define OBJ_id_smime_mod OBJ_SMIME,0L #define SN_id_smime_ct "id-smime-ct" #define NID_id_smime_ct 190 #define OBJ_id_smime_ct OBJ_SMIME,1L #define SN_id_smime_aa "id-smime-aa" #define NID_id_smime_aa 191 #define OBJ_id_smime_aa OBJ_SMIME,2L #define SN_id_smime_alg "id-smime-alg" #define NID_id_smime_alg 192 #define OBJ_id_smime_alg OBJ_SMIME,3L #define SN_id_smime_cd "id-smime-cd" #define NID_id_smime_cd 193 #define OBJ_id_smime_cd OBJ_SMIME,4L #define SN_id_smime_spq "id-smime-spq" #define NID_id_smime_spq 194 #define OBJ_id_smime_spq OBJ_SMIME,5L #define SN_id_smime_cti "id-smime-cti" #define NID_id_smime_cti 195 #define OBJ_id_smime_cti OBJ_SMIME,6L #define SN_id_smime_mod_cms "id-smime-mod-cms" #define NID_id_smime_mod_cms 196 #define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L #define SN_id_smime_mod_ess "id-smime-mod-ess" #define NID_id_smime_mod_ess 197 #define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L #define SN_id_smime_mod_oid "id-smime-mod-oid" #define NID_id_smime_mod_oid 198 #define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L #define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3" #define NID_id_smime_mod_msg_v3 199 #define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L #define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88" #define NID_id_smime_mod_ets_eSignature_88 200 #define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L #define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97" #define NID_id_smime_mod_ets_eSignature_97 201 #define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L #define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88" #define NID_id_smime_mod_ets_eSigPolicy_88 202 #define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L #define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97" #define NID_id_smime_mod_ets_eSigPolicy_97 203 #define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L #define SN_id_smime_ct_receipt "id-smime-ct-receipt" #define NID_id_smime_ct_receipt 204 #define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L #define SN_id_smime_ct_authData "id-smime-ct-authData" #define NID_id_smime_ct_authData 205 #define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L #define SN_id_smime_ct_publishCert "id-smime-ct-publishCert" #define NID_id_smime_ct_publishCert 206 #define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L #define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo" #define NID_id_smime_ct_TSTInfo 207 #define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L #define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo" #define NID_id_smime_ct_TDTInfo 208 #define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L #define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo" #define NID_id_smime_ct_contentInfo 209 #define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L #define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData" #define NID_id_smime_ct_DVCSRequestData 210 #define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L #define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData" #define NID_id_smime_ct_DVCSResponseData 211 #define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L #define SN_id_smime_ct_compressedData "id-smime-ct-compressedData" #define NID_id_smime_ct_compressedData 786 #define OBJ_id_smime_ct_compressedData OBJ_id_smime_ct,9L #define SN_id_ct_asciiTextWithCRLF "id-ct-asciiTextWithCRLF" #define NID_id_ct_asciiTextWithCRLF 787 #define OBJ_id_ct_asciiTextWithCRLF OBJ_id_smime_ct,27L #define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest" #define NID_id_smime_aa_receiptRequest 212 #define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L #define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel" #define NID_id_smime_aa_securityLabel 213 #define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L #define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory" #define NID_id_smime_aa_mlExpandHistory 214 #define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L #define SN_id_smime_aa_contentHint "id-smime-aa-contentHint" #define NID_id_smime_aa_contentHint 215 #define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L #define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest" #define NID_id_smime_aa_msgSigDigest 216 #define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L #define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType" #define NID_id_smime_aa_encapContentType 217 #define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L #define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier" #define NID_id_smime_aa_contentIdentifier 218 #define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L #define SN_id_smime_aa_macValue "id-smime-aa-macValue" #define NID_id_smime_aa_macValue 219 #define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L #define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels" #define NID_id_smime_aa_equivalentLabels 220 #define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L #define SN_id_smime_aa_contentReference "id-smime-aa-contentReference" #define NID_id_smime_aa_contentReference 221 #define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L #define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref" #define NID_id_smime_aa_encrypKeyPref 222 #define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L #define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate" #define NID_id_smime_aa_signingCertificate 223 #define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L #define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts" #define NID_id_smime_aa_smimeEncryptCerts 224 #define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L #define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken" #define NID_id_smime_aa_timeStampToken 225 #define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L #define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId" #define NID_id_smime_aa_ets_sigPolicyId 226 #define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L #define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType" #define NID_id_smime_aa_ets_commitmentType 227 #define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L #define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation" #define NID_id_smime_aa_ets_signerLocation 228 #define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L #define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr" #define NID_id_smime_aa_ets_signerAttr 229 #define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L #define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert" #define NID_id_smime_aa_ets_otherSigCert 230 #define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L #define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp" #define NID_id_smime_aa_ets_contentTimestamp 231 #define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L #define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs" #define NID_id_smime_aa_ets_CertificateRefs 232 #define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L #define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs" #define NID_id_smime_aa_ets_RevocationRefs 233 #define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L #define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues" #define NID_id_smime_aa_ets_certValues 234 #define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L #define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues" #define NID_id_smime_aa_ets_revocationValues 235 #define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L #define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp" #define NID_id_smime_aa_ets_escTimeStamp 236 #define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L #define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp" #define NID_id_smime_aa_ets_certCRLTimestamp 237 #define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L #define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp" #define NID_id_smime_aa_ets_archiveTimeStamp 238 #define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L #define SN_id_smime_aa_signatureType "id-smime-aa-signatureType" #define NID_id_smime_aa_signatureType 239 #define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L #define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc" #define NID_id_smime_aa_dvcs_dvc 240 #define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L #define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES" #define NID_id_smime_alg_ESDHwith3DES 241 #define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L #define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2" #define NID_id_smime_alg_ESDHwithRC2 242 #define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L #define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap" #define NID_id_smime_alg_3DESwrap 243 #define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L #define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap" #define NID_id_smime_alg_RC2wrap 244 #define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L #define SN_id_smime_alg_ESDH "id-smime-alg-ESDH" #define NID_id_smime_alg_ESDH 245 #define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L #define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap" #define NID_id_smime_alg_CMS3DESwrap 246 #define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L #define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap" #define NID_id_smime_alg_CMSRC2wrap 247 #define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L #define SN_id_alg_PWRI_KEK "id-alg-PWRI-KEK" #define NID_id_alg_PWRI_KEK 893 #define OBJ_id_alg_PWRI_KEK OBJ_id_smime_alg,9L #define SN_id_smime_cd_ldap "id-smime-cd-ldap" #define NID_id_smime_cd_ldap 248 #define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L #define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri" #define NID_id_smime_spq_ets_sqt_uri 249 #define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L #define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice" #define NID_id_smime_spq_ets_sqt_unotice 250 #define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L #define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin" #define NID_id_smime_cti_ets_proofOfOrigin 251 #define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L #define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt" #define NID_id_smime_cti_ets_proofOfReceipt 252 #define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L #define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery" #define NID_id_smime_cti_ets_proofOfDelivery 253 #define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L #define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender" #define NID_id_smime_cti_ets_proofOfSender 254 #define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L #define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval" #define NID_id_smime_cti_ets_proofOfApproval 255 #define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L #define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation" #define NID_id_smime_cti_ets_proofOfCreation 256 #define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L #define LN_friendlyName "friendlyName" #define NID_friendlyName 156 #define OBJ_friendlyName OBJ_pkcs9,20L #define LN_localKeyID "localKeyID" #define NID_localKeyID 157 #define OBJ_localKeyID OBJ_pkcs9,21L #define SN_ms_csp_name "CSPName" #define LN_ms_csp_name "Microsoft CSP Name" #define NID_ms_csp_name 417 #define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L #define SN_LocalKeySet "LocalKeySet" #define LN_LocalKeySet "Microsoft Local Key set" #define NID_LocalKeySet 856 #define OBJ_LocalKeySet 1L,3L,6L,1L,4L,1L,311L,17L,2L #define OBJ_certTypes OBJ_pkcs9,22L #define LN_x509Certificate "x509Certificate" #define NID_x509Certificate 158 #define OBJ_x509Certificate OBJ_certTypes,1L #define LN_sdsiCertificate "sdsiCertificate" #define NID_sdsiCertificate 159 #define OBJ_sdsiCertificate OBJ_certTypes,2L #define OBJ_crlTypes OBJ_pkcs9,23L #define LN_x509Crl "x509Crl" #define NID_x509Crl 160 #define OBJ_x509Crl OBJ_crlTypes,1L #define OBJ_pkcs12 OBJ_pkcs,12L #define OBJ_pkcs12_pbeids OBJ_pkcs12,1L #define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128" #define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4" #define NID_pbe_WithSHA1And128BitRC4 144 #define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L #define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40" #define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4" #define NID_pbe_WithSHA1And40BitRC4 145 #define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L #define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES" #define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC" #define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146 #define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L #define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES" #define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC" #define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147 #define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L #define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128" #define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC" #define NID_pbe_WithSHA1And128BitRC2_CBC 148 #define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L #define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40" #define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC" #define NID_pbe_WithSHA1And40BitRC2_CBC 149 #define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L #define OBJ_pkcs12_Version1 OBJ_pkcs12,10L #define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L #define LN_keyBag "keyBag" #define NID_keyBag 150 #define OBJ_keyBag OBJ_pkcs12_BagIds,1L #define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag" #define NID_pkcs8ShroudedKeyBag 151 #define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L #define LN_certBag "certBag" #define NID_certBag 152 #define OBJ_certBag OBJ_pkcs12_BagIds,3L #define LN_crlBag "crlBag" #define NID_crlBag 153 #define OBJ_crlBag OBJ_pkcs12_BagIds,4L #define LN_secretBag "secretBag" #define NID_secretBag 154 #define OBJ_secretBag OBJ_pkcs12_BagIds,5L #define LN_safeContentsBag "safeContentsBag" #define NID_safeContentsBag 155 #define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L #define SN_md2 "MD2" #define LN_md2 "md2" #define NID_md2 3 #define OBJ_md2 OBJ_rsadsi,2L,2L #define SN_md4 "MD4" #define LN_md4 "md4" #define NID_md4 257 #define OBJ_md4 OBJ_rsadsi,2L,4L #define SN_md5 "MD5" #define LN_md5 "md5" #define NID_md5 4 #define OBJ_md5 OBJ_rsadsi,2L,5L #define SN_md5_sha1 "MD5-SHA1" #define LN_md5_sha1 "md5-sha1" #define NID_md5_sha1 114 #define LN_hmacWithMD5 "hmacWithMD5" #define NID_hmacWithMD5 797 #define OBJ_hmacWithMD5 OBJ_rsadsi,2L,6L #define LN_hmacWithSHA1 "hmacWithSHA1" #define NID_hmacWithSHA1 163 #define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L #define LN_hmacWithSHA224 "hmacWithSHA224" #define NID_hmacWithSHA224 798 #define OBJ_hmacWithSHA224 OBJ_rsadsi,2L,8L #define LN_hmacWithSHA256 "hmacWithSHA256" #define NID_hmacWithSHA256 799 #define OBJ_hmacWithSHA256 OBJ_rsadsi,2L,9L #define LN_hmacWithSHA384 "hmacWithSHA384" #define NID_hmacWithSHA384 800 #define OBJ_hmacWithSHA384 OBJ_rsadsi,2L,10L #define LN_hmacWithSHA512 "hmacWithSHA512" #define NID_hmacWithSHA512 801 #define OBJ_hmacWithSHA512 OBJ_rsadsi,2L,11L #define SN_rc2_cbc "RC2-CBC" #define LN_rc2_cbc "rc2-cbc" #define NID_rc2_cbc 37 #define OBJ_rc2_cbc OBJ_rsadsi,3L,2L #define SN_rc2_ecb "RC2-ECB" #define LN_rc2_ecb "rc2-ecb" #define NID_rc2_ecb 38 #define SN_rc2_cfb64 "RC2-CFB" #define LN_rc2_cfb64 "rc2-cfb" #define NID_rc2_cfb64 39 #define SN_rc2_ofb64 "RC2-OFB" #define LN_rc2_ofb64 "rc2-ofb" #define NID_rc2_ofb64 40 #define SN_rc2_40_cbc "RC2-40-CBC" #define LN_rc2_40_cbc "rc2-40-cbc" #define NID_rc2_40_cbc 98 #define SN_rc2_64_cbc "RC2-64-CBC" #define LN_rc2_64_cbc "rc2-64-cbc" #define NID_rc2_64_cbc 166 #define SN_rc4 "RC4" #define LN_rc4 "rc4" #define NID_rc4 5 #define OBJ_rc4 OBJ_rsadsi,3L,4L #define SN_rc4_40 "RC4-40" #define LN_rc4_40 "rc4-40" #define NID_rc4_40 97 #define SN_des_ede3_cbc "DES-EDE3-CBC" #define LN_des_ede3_cbc "des-ede3-cbc" #define NID_des_ede3_cbc 44 #define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L #define SN_rc5_cbc "RC5-CBC" #define LN_rc5_cbc "rc5-cbc" #define NID_rc5_cbc 120 #define OBJ_rc5_cbc OBJ_rsadsi,3L,8L #define SN_rc5_ecb "RC5-ECB" #define LN_rc5_ecb "rc5-ecb" #define NID_rc5_ecb 121 #define SN_rc5_cfb64 "RC5-CFB" #define LN_rc5_cfb64 "rc5-cfb" #define NID_rc5_cfb64 122 #define SN_rc5_ofb64 "RC5-OFB" #define LN_rc5_ofb64 "rc5-ofb" #define NID_rc5_ofb64 123 #define SN_ms_ext_req "msExtReq" #define LN_ms_ext_req "Microsoft Extension Request" #define NID_ms_ext_req 171 #define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L #define SN_ms_code_ind "msCodeInd" #define LN_ms_code_ind "Microsoft Individual Code Signing" #define NID_ms_code_ind 134 #define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L #define SN_ms_code_com "msCodeCom" #define LN_ms_code_com "Microsoft Commercial Code Signing" #define NID_ms_code_com 135 #define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L #define SN_ms_ctl_sign "msCTLSign" #define LN_ms_ctl_sign "Microsoft Trust List Signing" #define NID_ms_ctl_sign 136 #define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L #define SN_ms_sgc "msSGC" #define LN_ms_sgc "Microsoft Server Gated Crypto" #define NID_ms_sgc 137 #define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L #define SN_ms_efs "msEFS" #define LN_ms_efs "Microsoft Encrypted File System" #define NID_ms_efs 138 #define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L #define SN_ms_smartcard_login "msSmartcardLogin" #define LN_ms_smartcard_login "Microsoft Smartcardlogin" #define NID_ms_smartcard_login 648 #define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L #define SN_ms_upn "msUPN" #define LN_ms_upn "Microsoft Universal Principal Name" #define NID_ms_upn 649 #define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L #define SN_idea_cbc "IDEA-CBC" #define LN_idea_cbc "idea-cbc" #define NID_idea_cbc 34 #define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L #define SN_idea_ecb "IDEA-ECB" #define LN_idea_ecb "idea-ecb" #define NID_idea_ecb 36 #define SN_idea_cfb64 "IDEA-CFB" #define LN_idea_cfb64 "idea-cfb" #define NID_idea_cfb64 35 #define SN_idea_ofb64 "IDEA-OFB" #define LN_idea_ofb64 "idea-ofb" #define NID_idea_ofb64 46 #define SN_bf_cbc "BF-CBC" #define LN_bf_cbc "bf-cbc" #define NID_bf_cbc 91 #define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L #define SN_bf_ecb "BF-ECB" #define LN_bf_ecb "bf-ecb" #define NID_bf_ecb 92 #define SN_bf_cfb64 "BF-CFB" #define LN_bf_cfb64 "bf-cfb" #define NID_bf_cfb64 93 #define SN_bf_ofb64 "BF-OFB" #define LN_bf_ofb64 "bf-ofb" #define NID_bf_ofb64 94 #define SN_id_pkix "PKIX" #define NID_id_pkix 127 #define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L #define SN_id_pkix_mod "id-pkix-mod" #define NID_id_pkix_mod 258 #define OBJ_id_pkix_mod OBJ_id_pkix,0L #define SN_id_pe "id-pe" #define NID_id_pe 175 #define OBJ_id_pe OBJ_id_pkix,1L #define SN_id_qt "id-qt" #define NID_id_qt 259 #define OBJ_id_qt OBJ_id_pkix,2L #define SN_id_kp "id-kp" #define NID_id_kp 128 #define OBJ_id_kp OBJ_id_pkix,3L #define SN_id_it "id-it" #define NID_id_it 260 #define OBJ_id_it OBJ_id_pkix,4L #define SN_id_pkip "id-pkip" #define NID_id_pkip 261 #define OBJ_id_pkip OBJ_id_pkix,5L #define SN_id_alg "id-alg" #define NID_id_alg 262 #define OBJ_id_alg OBJ_id_pkix,6L #define SN_id_cmc "id-cmc" #define NID_id_cmc 263 #define OBJ_id_cmc OBJ_id_pkix,7L #define SN_id_on "id-on" #define NID_id_on 264 #define OBJ_id_on OBJ_id_pkix,8L #define SN_id_pda "id-pda" #define NID_id_pda 265 #define OBJ_id_pda OBJ_id_pkix,9L #define SN_id_aca "id-aca" #define NID_id_aca 266 #define OBJ_id_aca OBJ_id_pkix,10L #define SN_id_qcs "id-qcs" #define NID_id_qcs 267 #define OBJ_id_qcs OBJ_id_pkix,11L #define SN_id_cct "id-cct" #define NID_id_cct 268 #define OBJ_id_cct OBJ_id_pkix,12L #define SN_id_ppl "id-ppl" #define NID_id_ppl 662 #define OBJ_id_ppl OBJ_id_pkix,21L #define SN_id_ad "id-ad" #define NID_id_ad 176 #define OBJ_id_ad OBJ_id_pkix,48L #define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88" #define NID_id_pkix1_explicit_88 269 #define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L #define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88" #define NID_id_pkix1_implicit_88 270 #define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L #define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93" #define NID_id_pkix1_explicit_93 271 #define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L #define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93" #define NID_id_pkix1_implicit_93 272 #define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L #define SN_id_mod_crmf "id-mod-crmf" #define NID_id_mod_crmf 273 #define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L #define SN_id_mod_cmc "id-mod-cmc" #define NID_id_mod_cmc 274 #define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L #define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88" #define NID_id_mod_kea_profile_88 275 #define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L #define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93" #define NID_id_mod_kea_profile_93 276 #define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L #define SN_id_mod_cmp "id-mod-cmp" #define NID_id_mod_cmp 277 #define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L #define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88" #define NID_id_mod_qualified_cert_88 278 #define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L #define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93" #define NID_id_mod_qualified_cert_93 279 #define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L #define SN_id_mod_attribute_cert "id-mod-attribute-cert" #define NID_id_mod_attribute_cert 280 #define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L #define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol" #define NID_id_mod_timestamp_protocol 281 #define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L #define SN_id_mod_ocsp "id-mod-ocsp" #define NID_id_mod_ocsp 282 #define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L #define SN_id_mod_dvcs "id-mod-dvcs" #define NID_id_mod_dvcs 283 #define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L #define SN_id_mod_cmp2000 "id-mod-cmp2000" #define NID_id_mod_cmp2000 284 #define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L #define SN_info_access "authorityInfoAccess" #define LN_info_access "Authority Information Access" #define NID_info_access 177 #define OBJ_info_access OBJ_id_pe,1L #define SN_biometricInfo "biometricInfo" #define LN_biometricInfo "Biometric Info" #define NID_biometricInfo 285 #define OBJ_biometricInfo OBJ_id_pe,2L #define SN_qcStatements "qcStatements" #define NID_qcStatements 286 #define OBJ_qcStatements OBJ_id_pe,3L #define SN_ac_auditEntity "ac-auditEntity" #define NID_ac_auditEntity 287 #define OBJ_ac_auditEntity OBJ_id_pe,4L #define SN_ac_targeting "ac-targeting" #define NID_ac_targeting 288 #define OBJ_ac_targeting OBJ_id_pe,5L #define SN_aaControls "aaControls" #define NID_aaControls 289 #define OBJ_aaControls OBJ_id_pe,6L #define SN_sbgp_ipAddrBlock "sbgp-ipAddrBlock" #define NID_sbgp_ipAddrBlock 290 #define OBJ_sbgp_ipAddrBlock OBJ_id_pe,7L #define SN_sbgp_autonomousSysNum "sbgp-autonomousSysNum" #define NID_sbgp_autonomousSysNum 291 #define OBJ_sbgp_autonomousSysNum OBJ_id_pe,8L #define SN_sbgp_routerIdentifier "sbgp-routerIdentifier" #define NID_sbgp_routerIdentifier 292 #define OBJ_sbgp_routerIdentifier OBJ_id_pe,9L #define SN_ac_proxying "ac-proxying" #define NID_ac_proxying 397 #define OBJ_ac_proxying OBJ_id_pe,10L #define SN_sinfo_access "subjectInfoAccess" #define LN_sinfo_access "Subject Information Access" #define NID_sinfo_access 398 #define OBJ_sinfo_access OBJ_id_pe,11L #define SN_proxyCertInfo "proxyCertInfo" #define LN_proxyCertInfo "Proxy Certificate Information" #define NID_proxyCertInfo 663 #define OBJ_proxyCertInfo OBJ_id_pe,14L #define SN_id_qt_cps "id-qt-cps" #define LN_id_qt_cps "Policy Qualifier CPS" #define NID_id_qt_cps 164 #define OBJ_id_qt_cps OBJ_id_qt,1L #define SN_id_qt_unotice "id-qt-unotice" #define LN_id_qt_unotice "Policy Qualifier User Notice" #define NID_id_qt_unotice 165 #define OBJ_id_qt_unotice OBJ_id_qt,2L #define SN_textNotice "textNotice" #define NID_textNotice 293 #define OBJ_textNotice OBJ_id_qt,3L #define SN_server_auth "serverAuth" #define LN_server_auth "TLS Web Server Authentication" #define NID_server_auth 129 #define OBJ_server_auth OBJ_id_kp,1L #define SN_client_auth "clientAuth" #define LN_client_auth "TLS Web Client Authentication" #define NID_client_auth 130 #define OBJ_client_auth OBJ_id_kp,2L #define SN_code_sign "codeSigning" #define LN_code_sign "Code Signing" #define NID_code_sign 131 #define OBJ_code_sign OBJ_id_kp,3L #define SN_email_protect "emailProtection" #define LN_email_protect "E-mail Protection" #define NID_email_protect 132 #define OBJ_email_protect OBJ_id_kp,4L #define SN_ipsecEndSystem "ipsecEndSystem" #define LN_ipsecEndSystem "IPSec End System" #define NID_ipsecEndSystem 294 #define OBJ_ipsecEndSystem OBJ_id_kp,5L #define SN_ipsecTunnel "ipsecTunnel" #define LN_ipsecTunnel "IPSec Tunnel" #define NID_ipsecTunnel 295 #define OBJ_ipsecTunnel OBJ_id_kp,6L #define SN_ipsecUser "ipsecUser" #define LN_ipsecUser "IPSec User" #define NID_ipsecUser 296 #define OBJ_ipsecUser OBJ_id_kp,7L #define SN_time_stamp "timeStamping" #define LN_time_stamp "Time Stamping" #define NID_time_stamp 133 #define OBJ_time_stamp OBJ_id_kp,8L #define SN_OCSP_sign "OCSPSigning" #define LN_OCSP_sign "OCSP Signing" #define NID_OCSP_sign 180 #define OBJ_OCSP_sign OBJ_id_kp,9L #define SN_dvcs "DVCS" #define LN_dvcs "dvcs" #define NID_dvcs 297 #define OBJ_dvcs OBJ_id_kp,10L #define SN_id_it_caProtEncCert "id-it-caProtEncCert" #define NID_id_it_caProtEncCert 298 #define OBJ_id_it_caProtEncCert OBJ_id_it,1L #define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes" #define NID_id_it_signKeyPairTypes 299 #define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L #define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes" #define NID_id_it_encKeyPairTypes 300 #define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L #define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg" #define NID_id_it_preferredSymmAlg 301 #define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L #define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo" #define NID_id_it_caKeyUpdateInfo 302 #define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L #define SN_id_it_currentCRL "id-it-currentCRL" #define NID_id_it_currentCRL 303 #define OBJ_id_it_currentCRL OBJ_id_it,6L #define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs" #define NID_id_it_unsupportedOIDs 304 #define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L #define SN_id_it_subscriptionRequest "id-it-subscriptionRequest" #define NID_id_it_subscriptionRequest 305 #define OBJ_id_it_subscriptionRequest OBJ_id_it,8L #define SN_id_it_subscriptionResponse "id-it-subscriptionResponse" #define NID_id_it_subscriptionResponse 306 #define OBJ_id_it_subscriptionResponse OBJ_id_it,9L #define SN_id_it_keyPairParamReq "id-it-keyPairParamReq" #define NID_id_it_keyPairParamReq 307 #define OBJ_id_it_keyPairParamReq OBJ_id_it,10L #define SN_id_it_keyPairParamRep "id-it-keyPairParamRep" #define NID_id_it_keyPairParamRep 308 #define OBJ_id_it_keyPairParamRep OBJ_id_it,11L #define SN_id_it_revPassphrase "id-it-revPassphrase" #define NID_id_it_revPassphrase 309 #define OBJ_id_it_revPassphrase OBJ_id_it,12L #define SN_id_it_implicitConfirm "id-it-implicitConfirm" #define NID_id_it_implicitConfirm 310 #define OBJ_id_it_implicitConfirm OBJ_id_it,13L #define SN_id_it_confirmWaitTime "id-it-confirmWaitTime" #define NID_id_it_confirmWaitTime 311 #define OBJ_id_it_confirmWaitTime OBJ_id_it,14L #define SN_id_it_origPKIMessage "id-it-origPKIMessage" #define NID_id_it_origPKIMessage 312 #define OBJ_id_it_origPKIMessage OBJ_id_it,15L #define SN_id_it_suppLangTags "id-it-suppLangTags" #define NID_id_it_suppLangTags 784 #define OBJ_id_it_suppLangTags OBJ_id_it,16L #define SN_id_regCtrl "id-regCtrl" #define NID_id_regCtrl 313 #define OBJ_id_regCtrl OBJ_id_pkip,1L #define SN_id_regInfo "id-regInfo" #define NID_id_regInfo 314 #define OBJ_id_regInfo OBJ_id_pkip,2L #define SN_id_regCtrl_regToken "id-regCtrl-regToken" #define NID_id_regCtrl_regToken 315 #define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L #define SN_id_regCtrl_authenticator "id-regCtrl-authenticator" #define NID_id_regCtrl_authenticator 316 #define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L #define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo" #define NID_id_regCtrl_pkiPublicationInfo 317 #define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L #define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions" #define NID_id_regCtrl_pkiArchiveOptions 318 #define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L #define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID" #define NID_id_regCtrl_oldCertID 319 #define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L #define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey" #define NID_id_regCtrl_protocolEncrKey 320 #define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L #define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs" #define NID_id_regInfo_utf8Pairs 321 #define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L #define SN_id_regInfo_certReq "id-regInfo-certReq" #define NID_id_regInfo_certReq 322 #define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L #define SN_id_alg_des40 "id-alg-des40" #define NID_id_alg_des40 323 #define OBJ_id_alg_des40 OBJ_id_alg,1L #define SN_id_alg_noSignature "id-alg-noSignature" #define NID_id_alg_noSignature 324 #define OBJ_id_alg_noSignature OBJ_id_alg,2L #define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1" #define NID_id_alg_dh_sig_hmac_sha1 325 #define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L #define SN_id_alg_dh_pop "id-alg-dh-pop" #define NID_id_alg_dh_pop 326 #define OBJ_id_alg_dh_pop OBJ_id_alg,4L #define SN_id_cmc_statusInfo "id-cmc-statusInfo" #define NID_id_cmc_statusInfo 327 #define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L #define SN_id_cmc_identification "id-cmc-identification" #define NID_id_cmc_identification 328 #define OBJ_id_cmc_identification OBJ_id_cmc,2L #define SN_id_cmc_identityProof "id-cmc-identityProof" #define NID_id_cmc_identityProof 329 #define OBJ_id_cmc_identityProof OBJ_id_cmc,3L #define SN_id_cmc_dataReturn "id-cmc-dataReturn" #define NID_id_cmc_dataReturn 330 #define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L #define SN_id_cmc_transactionId "id-cmc-transactionId" #define NID_id_cmc_transactionId 331 #define OBJ_id_cmc_transactionId OBJ_id_cmc,5L #define SN_id_cmc_senderNonce "id-cmc-senderNonce" #define NID_id_cmc_senderNonce 332 #define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L #define SN_id_cmc_recipientNonce "id-cmc-recipientNonce" #define NID_id_cmc_recipientNonce 333 #define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L #define SN_id_cmc_addExtensions "id-cmc-addExtensions" #define NID_id_cmc_addExtensions 334 #define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L #define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP" #define NID_id_cmc_encryptedPOP 335 #define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L #define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP" #define NID_id_cmc_decryptedPOP 336 #define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L #define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness" #define NID_id_cmc_lraPOPWitness 337 #define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L #define SN_id_cmc_getCert "id-cmc-getCert" #define NID_id_cmc_getCert 338 #define OBJ_id_cmc_getCert OBJ_id_cmc,15L #define SN_id_cmc_getCRL "id-cmc-getCRL" #define NID_id_cmc_getCRL 339 #define OBJ_id_cmc_getCRL OBJ_id_cmc,16L #define SN_id_cmc_revokeRequest "id-cmc-revokeRequest" #define NID_id_cmc_revokeRequest 340 #define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L #define SN_id_cmc_regInfo "id-cmc-regInfo" #define NID_id_cmc_regInfo 341 #define OBJ_id_cmc_regInfo OBJ_id_cmc,18L #define SN_id_cmc_responseInfo "id-cmc-responseInfo" #define NID_id_cmc_responseInfo 342 #define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L #define SN_id_cmc_queryPending "id-cmc-queryPending" #define NID_id_cmc_queryPending 343 #define OBJ_id_cmc_queryPending OBJ_id_cmc,21L #define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom" #define NID_id_cmc_popLinkRandom 344 #define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L #define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness" #define NID_id_cmc_popLinkWitness 345 #define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L #define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance" #define NID_id_cmc_confirmCertAcceptance 346 #define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L #define SN_id_on_personalData "id-on-personalData" #define NID_id_on_personalData 347 #define OBJ_id_on_personalData OBJ_id_on,1L #define SN_id_on_permanentIdentifier "id-on-permanentIdentifier" #define LN_id_on_permanentIdentifier "Permanent Identifier" #define NID_id_on_permanentIdentifier 858 #define OBJ_id_on_permanentIdentifier OBJ_id_on,3L #define SN_id_pda_dateOfBirth "id-pda-dateOfBirth" #define NID_id_pda_dateOfBirth 348 #define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L #define SN_id_pda_placeOfBirth "id-pda-placeOfBirth" #define NID_id_pda_placeOfBirth 349 #define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L #define SN_id_pda_gender "id-pda-gender" #define NID_id_pda_gender 351 #define OBJ_id_pda_gender OBJ_id_pda,3L #define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship" #define NID_id_pda_countryOfCitizenship 352 #define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L #define SN_id_pda_countryOfResidence "id-pda-countryOfResidence" #define NID_id_pda_countryOfResidence 353 #define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L #define SN_id_aca_authenticationInfo "id-aca-authenticationInfo" #define NID_id_aca_authenticationInfo 354 #define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L #define SN_id_aca_accessIdentity "id-aca-accessIdentity" #define NID_id_aca_accessIdentity 355 #define OBJ_id_aca_accessIdentity OBJ_id_aca,2L #define SN_id_aca_chargingIdentity "id-aca-chargingIdentity" #define NID_id_aca_chargingIdentity 356 #define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L #define SN_id_aca_group "id-aca-group" #define NID_id_aca_group 357 #define OBJ_id_aca_group OBJ_id_aca,4L #define SN_id_aca_role "id-aca-role" #define NID_id_aca_role 358 #define OBJ_id_aca_role OBJ_id_aca,5L #define SN_id_aca_encAttrs "id-aca-encAttrs" #define NID_id_aca_encAttrs 399 #define OBJ_id_aca_encAttrs OBJ_id_aca,6L #define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1" #define NID_id_qcs_pkixQCSyntax_v1 359 #define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L #define SN_id_cct_crs "id-cct-crs" #define NID_id_cct_crs 360 #define OBJ_id_cct_crs OBJ_id_cct,1L #define SN_id_cct_PKIData "id-cct-PKIData" #define NID_id_cct_PKIData 361 #define OBJ_id_cct_PKIData OBJ_id_cct,2L #define SN_id_cct_PKIResponse "id-cct-PKIResponse" #define NID_id_cct_PKIResponse 362 #define OBJ_id_cct_PKIResponse OBJ_id_cct,3L #define SN_id_ppl_anyLanguage "id-ppl-anyLanguage" #define LN_id_ppl_anyLanguage "Any language" #define NID_id_ppl_anyLanguage 664 #define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L #define SN_id_ppl_inheritAll "id-ppl-inheritAll" #define LN_id_ppl_inheritAll "Inherit all" #define NID_id_ppl_inheritAll 665 #define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L #define SN_Independent "id-ppl-independent" #define LN_Independent "Independent" #define NID_Independent 667 #define OBJ_Independent OBJ_id_ppl,2L #define SN_ad_OCSP "OCSP" #define LN_ad_OCSP "OCSP" #define NID_ad_OCSP 178 #define OBJ_ad_OCSP OBJ_id_ad,1L #define SN_ad_ca_issuers "caIssuers" #define LN_ad_ca_issuers "CA Issuers" #define NID_ad_ca_issuers 179 #define OBJ_ad_ca_issuers OBJ_id_ad,2L #define SN_ad_timeStamping "ad_timestamping" #define LN_ad_timeStamping "AD Time Stamping" #define NID_ad_timeStamping 363 #define OBJ_ad_timeStamping OBJ_id_ad,3L #define SN_ad_dvcs "AD_DVCS" #define LN_ad_dvcs "ad dvcs" #define NID_ad_dvcs 364 #define OBJ_ad_dvcs OBJ_id_ad,4L #define SN_caRepository "caRepository" #define LN_caRepository "CA Repository" #define NID_caRepository 785 #define OBJ_caRepository OBJ_id_ad,5L #define OBJ_id_pkix_OCSP OBJ_ad_OCSP #define SN_id_pkix_OCSP_basic "basicOCSPResponse" #define LN_id_pkix_OCSP_basic "Basic OCSP Response" #define NID_id_pkix_OCSP_basic 365 #define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L #define SN_id_pkix_OCSP_Nonce "Nonce" #define LN_id_pkix_OCSP_Nonce "OCSP Nonce" #define NID_id_pkix_OCSP_Nonce 366 #define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L #define SN_id_pkix_OCSP_CrlID "CrlID" #define LN_id_pkix_OCSP_CrlID "OCSP CRL ID" #define NID_id_pkix_OCSP_CrlID 367 #define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L #define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses" #define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses" #define NID_id_pkix_OCSP_acceptableResponses 368 #define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L #define SN_id_pkix_OCSP_noCheck "noCheck" #define LN_id_pkix_OCSP_noCheck "OCSP No Check" #define NID_id_pkix_OCSP_noCheck 369 #define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L #define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff" #define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff" #define NID_id_pkix_OCSP_archiveCutoff 370 #define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L #define SN_id_pkix_OCSP_serviceLocator "serviceLocator" #define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator" #define NID_id_pkix_OCSP_serviceLocator 371 #define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L #define SN_id_pkix_OCSP_extendedStatus "extendedStatus" #define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status" #define NID_id_pkix_OCSP_extendedStatus 372 #define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L #define SN_id_pkix_OCSP_valid "valid" #define NID_id_pkix_OCSP_valid 373 #define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L #define SN_id_pkix_OCSP_path "path" #define NID_id_pkix_OCSP_path 374 #define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L #define SN_id_pkix_OCSP_trustRoot "trustRoot" #define LN_id_pkix_OCSP_trustRoot "Trust Root" #define NID_id_pkix_OCSP_trustRoot 375 #define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L #define SN_algorithm "algorithm" #define LN_algorithm "algorithm" #define NID_algorithm 376 #define OBJ_algorithm 1L,3L,14L,3L,2L #define SN_md5WithRSA "RSA-NP-MD5" #define LN_md5WithRSA "md5WithRSA" #define NID_md5WithRSA 104 #define OBJ_md5WithRSA OBJ_algorithm,3L #define SN_des_ecb "DES-ECB" #define LN_des_ecb "des-ecb" #define NID_des_ecb 29 #define OBJ_des_ecb OBJ_algorithm,6L #define SN_des_cbc "DES-CBC" #define LN_des_cbc "des-cbc" #define NID_des_cbc 31 #define OBJ_des_cbc OBJ_algorithm,7L #define SN_des_ofb64 "DES-OFB" #define LN_des_ofb64 "des-ofb" #define NID_des_ofb64 45 #define OBJ_des_ofb64 OBJ_algorithm,8L #define SN_des_cfb64 "DES-CFB" #define LN_des_cfb64 "des-cfb" #define NID_des_cfb64 30 #define OBJ_des_cfb64 OBJ_algorithm,9L #define SN_rsaSignature "rsaSignature" #define NID_rsaSignature 377 #define OBJ_rsaSignature OBJ_algorithm,11L #define SN_dsa_2 "DSA-old" #define LN_dsa_2 "dsaEncryption-old" #define NID_dsa_2 67 #define OBJ_dsa_2 OBJ_algorithm,12L #define SN_dsaWithSHA "DSA-SHA" #define LN_dsaWithSHA "dsaWithSHA" #define NID_dsaWithSHA 66 #define OBJ_dsaWithSHA OBJ_algorithm,13L #define SN_shaWithRSAEncryption "RSA-SHA" #define LN_shaWithRSAEncryption "shaWithRSAEncryption" #define NID_shaWithRSAEncryption 42 #define OBJ_shaWithRSAEncryption OBJ_algorithm,15L #define SN_des_ede_ecb "DES-EDE" #define LN_des_ede_ecb "des-ede" #define NID_des_ede_ecb 32 #define OBJ_des_ede_ecb OBJ_algorithm,17L #define SN_des_ede3_ecb "DES-EDE3" #define LN_des_ede3_ecb "des-ede3" #define NID_des_ede3_ecb 33 #define SN_des_ede_cbc "DES-EDE-CBC" #define LN_des_ede_cbc "des-ede-cbc" #define NID_des_ede_cbc 43 #define SN_des_ede_cfb64 "DES-EDE-CFB" #define LN_des_ede_cfb64 "des-ede-cfb" #define NID_des_ede_cfb64 60 #define SN_des_ede3_cfb64 "DES-EDE3-CFB" #define LN_des_ede3_cfb64 "des-ede3-cfb" #define NID_des_ede3_cfb64 61 #define SN_des_ede_ofb64 "DES-EDE-OFB" #define LN_des_ede_ofb64 "des-ede-ofb" #define NID_des_ede_ofb64 62 #define SN_des_ede3_ofb64 "DES-EDE3-OFB" #define LN_des_ede3_ofb64 "des-ede3-ofb" #define NID_des_ede3_ofb64 63 #define SN_desx_cbc "DESX-CBC" #define LN_desx_cbc "desx-cbc" #define NID_desx_cbc 80 #define SN_sha "SHA" #define LN_sha "sha" #define NID_sha 41 #define OBJ_sha OBJ_algorithm,18L #define SN_sha1 "SHA1" #define LN_sha1 "sha1" #define NID_sha1 64 #define OBJ_sha1 OBJ_algorithm,26L #define SN_dsaWithSHA1_2 "DSA-SHA1-old" #define LN_dsaWithSHA1_2 "dsaWithSHA1-old" #define NID_dsaWithSHA1_2 70 #define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L #define SN_sha1WithRSA "RSA-SHA1-2" #define LN_sha1WithRSA "sha1WithRSA" #define NID_sha1WithRSA 115 #define OBJ_sha1WithRSA OBJ_algorithm,29L #define SN_ripemd160 "RIPEMD160" #define LN_ripemd160 "ripemd160" #define NID_ripemd160 117 #define OBJ_ripemd160 1L,3L,36L,3L,2L,1L #define SN_ripemd160WithRSA "RSA-RIPEMD160" #define LN_ripemd160WithRSA "ripemd160WithRSA" #define NID_ripemd160WithRSA 119 #define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L #define SN_sxnet "SXNetID" #define LN_sxnet "Strong Extranet ID" #define NID_sxnet 143 #define OBJ_sxnet 1L,3L,101L,1L,4L,1L #define SN_X500 "X500" #define LN_X500 "directory services (X.500)" #define NID_X500 11 #define OBJ_X500 2L,5L #define SN_X509 "X509" #define NID_X509 12 #define OBJ_X509 OBJ_X500,4L #define SN_commonName "CN" #define LN_commonName "commonName" #define NID_commonName 13 #define OBJ_commonName OBJ_X509,3L #define SN_surname "SN" #define LN_surname "surname" #define NID_surname 100 #define OBJ_surname OBJ_X509,4L #define LN_serialNumber "serialNumber" #define NID_serialNumber 105 #define OBJ_serialNumber OBJ_X509,5L #define SN_countryName "C" #define LN_countryName "countryName" #define NID_countryName 14 #define OBJ_countryName OBJ_X509,6L #define SN_localityName "L" #define LN_localityName "localityName" #define NID_localityName 15 #define OBJ_localityName OBJ_X509,7L #define SN_stateOrProvinceName "ST" #define LN_stateOrProvinceName "stateOrProvinceName" #define NID_stateOrProvinceName 16 #define OBJ_stateOrProvinceName OBJ_X509,8L #define SN_streetAddress "street" #define LN_streetAddress "streetAddress" #define NID_streetAddress 660 #define OBJ_streetAddress OBJ_X509,9L #define SN_organizationName "O" #define LN_organizationName "organizationName" #define NID_organizationName 17 #define OBJ_organizationName OBJ_X509,10L #define SN_organizationalUnitName "OU" #define LN_organizationalUnitName "organizationalUnitName" #define NID_organizationalUnitName 18 #define OBJ_organizationalUnitName OBJ_X509,11L #define SN_title "title" #define LN_title "title" #define NID_title 106 #define OBJ_title OBJ_X509,12L #define LN_description "description" #define NID_description 107 #define OBJ_description OBJ_X509,13L #define LN_searchGuide "searchGuide" #define NID_searchGuide 859 #define OBJ_searchGuide OBJ_X509,14L #define LN_businessCategory "businessCategory" #define NID_businessCategory 860 #define OBJ_businessCategory OBJ_X509,15L #define LN_postalAddress "postalAddress" #define NID_postalAddress 861 #define OBJ_postalAddress OBJ_X509,16L #define LN_postalCode "postalCode" #define NID_postalCode 661 #define OBJ_postalCode OBJ_X509,17L #define LN_postOfficeBox "postOfficeBox" #define NID_postOfficeBox 862 #define OBJ_postOfficeBox OBJ_X509,18L #define LN_physicalDeliveryOfficeName "physicalDeliveryOfficeName" #define NID_physicalDeliveryOfficeName 863 #define OBJ_physicalDeliveryOfficeName OBJ_X509,19L #define LN_telephoneNumber "telephoneNumber" #define NID_telephoneNumber 864 #define OBJ_telephoneNumber OBJ_X509,20L #define LN_telexNumber "telexNumber" #define NID_telexNumber 865 #define OBJ_telexNumber OBJ_X509,21L #define LN_teletexTerminalIdentifier "teletexTerminalIdentifier" #define NID_teletexTerminalIdentifier 866 #define OBJ_teletexTerminalIdentifier OBJ_X509,22L #define LN_facsimileTelephoneNumber "facsimileTelephoneNumber" #define NID_facsimileTelephoneNumber 867 #define OBJ_facsimileTelephoneNumber OBJ_X509,23L #define LN_x121Address "x121Address" #define NID_x121Address 868 #define OBJ_x121Address OBJ_X509,24L #define LN_internationaliSDNNumber "internationaliSDNNumber" #define NID_internationaliSDNNumber 869 #define OBJ_internationaliSDNNumber OBJ_X509,25L #define LN_registeredAddress "registeredAddress" #define NID_registeredAddress 870 #define OBJ_registeredAddress OBJ_X509,26L #define LN_destinationIndicator "destinationIndicator" #define NID_destinationIndicator 871 #define OBJ_destinationIndicator OBJ_X509,27L #define LN_preferredDeliveryMethod "preferredDeliveryMethod" #define NID_preferredDeliveryMethod 872 #define OBJ_preferredDeliveryMethod OBJ_X509,28L #define LN_presentationAddress "presentationAddress" #define NID_presentationAddress 873 #define OBJ_presentationAddress OBJ_X509,29L #define LN_supportedApplicationContext "supportedApplicationContext" #define NID_supportedApplicationContext 874 #define OBJ_supportedApplicationContext OBJ_X509,30L #define SN_member "member" #define NID_member 875 #define OBJ_member OBJ_X509,31L #define SN_owner "owner" #define NID_owner 876 #define OBJ_owner OBJ_X509,32L #define LN_roleOccupant "roleOccupant" #define NID_roleOccupant 877 #define OBJ_roleOccupant OBJ_X509,33L #define SN_seeAlso "seeAlso" #define NID_seeAlso 878 #define OBJ_seeAlso OBJ_X509,34L #define LN_userPassword "userPassword" #define NID_userPassword 879 #define OBJ_userPassword OBJ_X509,35L #define LN_userCertificate "userCertificate" #define NID_userCertificate 880 #define OBJ_userCertificate OBJ_X509,36L #define LN_cACertificate "cACertificate" #define NID_cACertificate 881 #define OBJ_cACertificate OBJ_X509,37L #define LN_authorityRevocationList "authorityRevocationList" #define NID_authorityRevocationList 882 #define OBJ_authorityRevocationList OBJ_X509,38L #define LN_certificateRevocationList "certificateRevocationList" #define NID_certificateRevocationList 883 #define OBJ_certificateRevocationList OBJ_X509,39L #define LN_crossCertificatePair "crossCertificatePair" #define NID_crossCertificatePair 884 #define OBJ_crossCertificatePair OBJ_X509,40L #define SN_name "name" #define LN_name "name" #define NID_name 173 #define OBJ_name OBJ_X509,41L #define SN_givenName "GN" #define LN_givenName "givenName" #define NID_givenName 99 #define OBJ_givenName OBJ_X509,42L #define SN_initials "initials" #define LN_initials "initials" #define NID_initials 101 #define OBJ_initials OBJ_X509,43L #define LN_generationQualifier "generationQualifier" #define NID_generationQualifier 509 #define OBJ_generationQualifier OBJ_X509,44L #define LN_x500UniqueIdentifier "x500UniqueIdentifier" #define NID_x500UniqueIdentifier 503 #define OBJ_x500UniqueIdentifier OBJ_X509,45L #define SN_dnQualifier "dnQualifier" #define LN_dnQualifier "dnQualifier" #define NID_dnQualifier 174 #define OBJ_dnQualifier OBJ_X509,46L #define LN_enhancedSearchGuide "enhancedSearchGuide" #define NID_enhancedSearchGuide 885 #define OBJ_enhancedSearchGuide OBJ_X509,47L #define LN_protocolInformation "protocolInformation" #define NID_protocolInformation 886 #define OBJ_protocolInformation OBJ_X509,48L #define LN_distinguishedName "distinguishedName" #define NID_distinguishedName 887 #define OBJ_distinguishedName OBJ_X509,49L #define LN_uniqueMember "uniqueMember" #define NID_uniqueMember 888 #define OBJ_uniqueMember OBJ_X509,50L #define LN_houseIdentifier "houseIdentifier" #define NID_houseIdentifier 889 #define OBJ_houseIdentifier OBJ_X509,51L #define LN_supportedAlgorithms "supportedAlgorithms" #define NID_supportedAlgorithms 890 #define OBJ_supportedAlgorithms OBJ_X509,52L #define LN_deltaRevocationList "deltaRevocationList" #define NID_deltaRevocationList 891 #define OBJ_deltaRevocationList OBJ_X509,53L #define SN_dmdName "dmdName" #define NID_dmdName 892 #define OBJ_dmdName OBJ_X509,54L #define LN_pseudonym "pseudonym" #define NID_pseudonym 510 #define OBJ_pseudonym OBJ_X509,65L #define SN_role "role" #define LN_role "role" #define NID_role 400 #define OBJ_role OBJ_X509,72L #define SN_X500algorithms "X500algorithms" #define LN_X500algorithms "directory services - algorithms" #define NID_X500algorithms 378 #define OBJ_X500algorithms OBJ_X500,8L #define SN_rsa "RSA" #define LN_rsa "rsa" #define NID_rsa 19 #define OBJ_rsa OBJ_X500algorithms,1L,1L #define SN_mdc2WithRSA "RSA-MDC2" #define LN_mdc2WithRSA "mdc2WithRSA" #define NID_mdc2WithRSA 96 #define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L #define SN_mdc2 "MDC2" #define LN_mdc2 "mdc2" #define NID_mdc2 95 #define OBJ_mdc2 OBJ_X500algorithms,3L,101L #define SN_id_ce "id-ce" #define NID_id_ce 81 #define OBJ_id_ce OBJ_X500,29L #define SN_subject_directory_attributes "subjectDirectoryAttributes" #define LN_subject_directory_attributes "X509v3 Subject Directory Attributes" #define NID_subject_directory_attributes 769 #define OBJ_subject_directory_attributes OBJ_id_ce,9L #define SN_subject_key_identifier "subjectKeyIdentifier" #define LN_subject_key_identifier "X509v3 Subject Key Identifier" #define NID_subject_key_identifier 82 #define OBJ_subject_key_identifier OBJ_id_ce,14L #define SN_key_usage "keyUsage" #define LN_key_usage "X509v3 Key Usage" #define NID_key_usage 83 #define OBJ_key_usage OBJ_id_ce,15L #define SN_private_key_usage_period "privateKeyUsagePeriod" #define LN_private_key_usage_period "X509v3 Private Key Usage Period" #define NID_private_key_usage_period 84 #define OBJ_private_key_usage_period OBJ_id_ce,16L #define SN_subject_alt_name "subjectAltName" #define LN_subject_alt_name "X509v3 Subject Alternative Name" #define NID_subject_alt_name 85 #define OBJ_subject_alt_name OBJ_id_ce,17L #define SN_issuer_alt_name "issuerAltName" #define LN_issuer_alt_name "X509v3 Issuer Alternative Name" #define NID_issuer_alt_name 86 #define OBJ_issuer_alt_name OBJ_id_ce,18L #define SN_basic_constraints "basicConstraints" #define LN_basic_constraints "X509v3 Basic Constraints" #define NID_basic_constraints 87 #define OBJ_basic_constraints OBJ_id_ce,19L #define SN_crl_number "crlNumber" #define LN_crl_number "X509v3 CRL Number" #define NID_crl_number 88 #define OBJ_crl_number OBJ_id_ce,20L #define SN_crl_reason "CRLReason" #define LN_crl_reason "X509v3 CRL Reason Code" #define NID_crl_reason 141 #define OBJ_crl_reason OBJ_id_ce,21L #define SN_invalidity_date "invalidityDate" #define LN_invalidity_date "Invalidity Date" #define NID_invalidity_date 142 #define OBJ_invalidity_date OBJ_id_ce,24L #define SN_delta_crl "deltaCRL" #define LN_delta_crl "X509v3 Delta CRL Indicator" #define NID_delta_crl 140 #define OBJ_delta_crl OBJ_id_ce,27L #define SN_issuing_distribution_point "issuingDistributionPoint" #define LN_issuing_distribution_point "X509v3 Issuing Distrubution Point" #define NID_issuing_distribution_point 770 #define OBJ_issuing_distribution_point OBJ_id_ce,28L #define SN_certificate_issuer "certificateIssuer" #define LN_certificate_issuer "X509v3 Certificate Issuer" #define NID_certificate_issuer 771 #define OBJ_certificate_issuer OBJ_id_ce,29L #define SN_name_constraints "nameConstraints" #define LN_name_constraints "X509v3 Name Constraints" #define NID_name_constraints 666 #define OBJ_name_constraints OBJ_id_ce,30L #define SN_crl_distribution_points "crlDistributionPoints" #define LN_crl_distribution_points "X509v3 CRL Distribution Points" #define NID_crl_distribution_points 103 #define OBJ_crl_distribution_points OBJ_id_ce,31L #define SN_certificate_policies "certificatePolicies" #define LN_certificate_policies "X509v3 Certificate Policies" #define NID_certificate_policies 89 #define OBJ_certificate_policies OBJ_id_ce,32L #define SN_any_policy "anyPolicy" #define LN_any_policy "X509v3 Any Policy" #define NID_any_policy 746 #define OBJ_any_policy OBJ_certificate_policies,0L #define SN_policy_mappings "policyMappings" #define LN_policy_mappings "X509v3 Policy Mappings" #define NID_policy_mappings 747 #define OBJ_policy_mappings OBJ_id_ce,33L #define SN_authority_key_identifier "authorityKeyIdentifier" #define LN_authority_key_identifier "X509v3 Authority Key Identifier" #define NID_authority_key_identifier 90 #define OBJ_authority_key_identifier OBJ_id_ce,35L #define SN_policy_constraints "policyConstraints" #define LN_policy_constraints "X509v3 Policy Constraints" #define NID_policy_constraints 401 #define OBJ_policy_constraints OBJ_id_ce,36L #define SN_ext_key_usage "extendedKeyUsage" #define LN_ext_key_usage "X509v3 Extended Key Usage" #define NID_ext_key_usage 126 #define OBJ_ext_key_usage OBJ_id_ce,37L #define SN_freshest_crl "freshestCRL" #define LN_freshest_crl "X509v3 Freshest CRL" #define NID_freshest_crl 857 #define OBJ_freshest_crl OBJ_id_ce,46L #define SN_inhibit_any_policy "inhibitAnyPolicy" #define LN_inhibit_any_policy "X509v3 Inhibit Any Policy" #define NID_inhibit_any_policy 748 #define OBJ_inhibit_any_policy OBJ_id_ce,54L #define SN_target_information "targetInformation" #define LN_target_information "X509v3 AC Targeting" #define NID_target_information 402 #define OBJ_target_information OBJ_id_ce,55L #define SN_no_rev_avail "noRevAvail" #define LN_no_rev_avail "X509v3 No Revocation Available" #define NID_no_rev_avail 403 #define OBJ_no_rev_avail OBJ_id_ce,56L #define SN_anyExtendedKeyUsage "anyExtendedKeyUsage" #define LN_anyExtendedKeyUsage "Any Extended Key Usage" #define NID_anyExtendedKeyUsage 910 #define OBJ_anyExtendedKeyUsage OBJ_ext_key_usage,0L #define SN_netscape "Netscape" #define LN_netscape "Netscape Communications Corp." #define NID_netscape 57 #define OBJ_netscape 2L,16L,840L,1L,113730L #define SN_netscape_cert_extension "nsCertExt" #define LN_netscape_cert_extension "Netscape Certificate Extension" #define NID_netscape_cert_extension 58 #define OBJ_netscape_cert_extension OBJ_netscape,1L #define SN_netscape_data_type "nsDataType" #define LN_netscape_data_type "Netscape Data Type" #define NID_netscape_data_type 59 #define OBJ_netscape_data_type OBJ_netscape,2L #define SN_netscape_cert_type "nsCertType" #define LN_netscape_cert_type "Netscape Cert Type" #define NID_netscape_cert_type 71 #define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L #define SN_netscape_base_url "nsBaseUrl" #define LN_netscape_base_url "Netscape Base Url" #define NID_netscape_base_url 72 #define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L #define SN_netscape_revocation_url "nsRevocationUrl" #define LN_netscape_revocation_url "Netscape Revocation Url" #define NID_netscape_revocation_url 73 #define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L #define SN_netscape_ca_revocation_url "nsCaRevocationUrl" #define LN_netscape_ca_revocation_url "Netscape CA Revocation Url" #define NID_netscape_ca_revocation_url 74 #define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L #define SN_netscape_renewal_url "nsRenewalUrl" #define LN_netscape_renewal_url "Netscape Renewal Url" #define NID_netscape_renewal_url 75 #define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L #define SN_netscape_ca_policy_url "nsCaPolicyUrl" #define LN_netscape_ca_policy_url "Netscape CA Policy Url" #define NID_netscape_ca_policy_url 76 #define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L #define SN_netscape_ssl_server_name "nsSslServerName" #define LN_netscape_ssl_server_name "Netscape SSL Server Name" #define NID_netscape_ssl_server_name 77 #define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L #define SN_netscape_comment "nsComment" #define LN_netscape_comment "Netscape Comment" #define NID_netscape_comment 78 #define OBJ_netscape_comment OBJ_netscape_cert_extension,13L #define SN_netscape_cert_sequence "nsCertSequence" #define LN_netscape_cert_sequence "Netscape Certificate Sequence" #define NID_netscape_cert_sequence 79 #define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L #define SN_ns_sgc "nsSGC" #define LN_ns_sgc "Netscape Server Gated Crypto" #define NID_ns_sgc 139 #define OBJ_ns_sgc OBJ_netscape,4L,1L #define SN_org "ORG" #define LN_org "org" #define NID_org 379 #define OBJ_org OBJ_iso,3L #define SN_dod "DOD" #define LN_dod "dod" #define NID_dod 380 #define OBJ_dod OBJ_org,6L #define SN_iana "IANA" #define LN_iana "iana" #define NID_iana 381 #define OBJ_iana OBJ_dod,1L #define OBJ_internet OBJ_iana #define SN_Directory "directory" #define LN_Directory "Directory" #define NID_Directory 382 #define OBJ_Directory OBJ_internet,1L #define SN_Management "mgmt" #define LN_Management "Management" #define NID_Management 383 #define OBJ_Management OBJ_internet,2L #define SN_Experimental "experimental" #define LN_Experimental "Experimental" #define NID_Experimental 384 #define OBJ_Experimental OBJ_internet,3L #define SN_Private "private" #define LN_Private "Private" #define NID_Private 385 #define OBJ_Private OBJ_internet,4L #define SN_Security "security" #define LN_Security "Security" #define NID_Security 386 #define OBJ_Security OBJ_internet,5L #define SN_SNMPv2 "snmpv2" #define LN_SNMPv2 "SNMPv2" #define NID_SNMPv2 387 #define OBJ_SNMPv2 OBJ_internet,6L #define LN_Mail "Mail" #define NID_Mail 388 #define OBJ_Mail OBJ_internet,7L #define SN_Enterprises "enterprises" #define LN_Enterprises "Enterprises" #define NID_Enterprises 389 #define OBJ_Enterprises OBJ_Private,1L #define SN_dcObject "dcobject" #define LN_dcObject "dcObject" #define NID_dcObject 390 #define OBJ_dcObject OBJ_Enterprises,1466L,344L #define SN_mime_mhs "mime-mhs" #define LN_mime_mhs "MIME MHS" #define NID_mime_mhs 504 #define OBJ_mime_mhs OBJ_Mail,1L #define SN_mime_mhs_headings "mime-mhs-headings" #define LN_mime_mhs_headings "mime-mhs-headings" #define NID_mime_mhs_headings 505 #define OBJ_mime_mhs_headings OBJ_mime_mhs,1L #define SN_mime_mhs_bodies "mime-mhs-bodies" #define LN_mime_mhs_bodies "mime-mhs-bodies" #define NID_mime_mhs_bodies 506 #define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L #define SN_id_hex_partial_message "id-hex-partial-message" #define LN_id_hex_partial_message "id-hex-partial-message" #define NID_id_hex_partial_message 507 #define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L #define SN_id_hex_multipart_message "id-hex-multipart-message" #define LN_id_hex_multipart_message "id-hex-multipart-message" #define NID_id_hex_multipart_message 508 #define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L #define SN_rle_compression "RLE" #define LN_rle_compression "run length compression" #define NID_rle_compression 124 #define OBJ_rle_compression 1L,1L,1L,1L,666L,1L #define SN_zlib_compression "ZLIB" #define LN_zlib_compression "zlib compression" #define NID_zlib_compression 125 #define OBJ_zlib_compression OBJ_id_smime_alg,8L #define OBJ_csor 2L,16L,840L,1L,101L,3L #define OBJ_nistAlgorithms OBJ_csor,4L #define OBJ_aes OBJ_nistAlgorithms,1L #define SN_aes_128_ecb "AES-128-ECB" #define LN_aes_128_ecb "aes-128-ecb" #define NID_aes_128_ecb 418 #define OBJ_aes_128_ecb OBJ_aes,1L #define SN_aes_128_cbc "AES-128-CBC" #define LN_aes_128_cbc "aes-128-cbc" #define NID_aes_128_cbc 419 #define OBJ_aes_128_cbc OBJ_aes,2L #define SN_aes_128_ofb128 "AES-128-OFB" #define LN_aes_128_ofb128 "aes-128-ofb" #define NID_aes_128_ofb128 420 #define OBJ_aes_128_ofb128 OBJ_aes,3L #define SN_aes_128_cfb128 "AES-128-CFB" #define LN_aes_128_cfb128 "aes-128-cfb" #define NID_aes_128_cfb128 421 #define OBJ_aes_128_cfb128 OBJ_aes,4L #define SN_id_aes128_wrap "id-aes128-wrap" #define NID_id_aes128_wrap 788 #define OBJ_id_aes128_wrap OBJ_aes,5L #define SN_aes_128_gcm "id-aes128-GCM" #define LN_aes_128_gcm "aes-128-gcm" #define NID_aes_128_gcm 895 #define OBJ_aes_128_gcm OBJ_aes,6L #define SN_aes_128_ccm "id-aes128-CCM" #define LN_aes_128_ccm "aes-128-ccm" #define NID_aes_128_ccm 896 #define OBJ_aes_128_ccm OBJ_aes,7L #define SN_id_aes128_wrap_pad "id-aes128-wrap-pad" #define NID_id_aes128_wrap_pad 897 #define OBJ_id_aes128_wrap_pad OBJ_aes,8L #define SN_aes_192_ecb "AES-192-ECB" #define LN_aes_192_ecb "aes-192-ecb" #define NID_aes_192_ecb 422 #define OBJ_aes_192_ecb OBJ_aes,21L #define SN_aes_192_cbc "AES-192-CBC" #define LN_aes_192_cbc "aes-192-cbc" #define NID_aes_192_cbc 423 #define OBJ_aes_192_cbc OBJ_aes,22L #define SN_aes_192_ofb128 "AES-192-OFB" #define LN_aes_192_ofb128 "aes-192-ofb" #define NID_aes_192_ofb128 424 #define OBJ_aes_192_ofb128 OBJ_aes,23L #define SN_aes_192_cfb128 "AES-192-CFB" #define LN_aes_192_cfb128 "aes-192-cfb" #define NID_aes_192_cfb128 425 #define OBJ_aes_192_cfb128 OBJ_aes,24L #define SN_id_aes192_wrap "id-aes192-wrap" #define NID_id_aes192_wrap 789 #define OBJ_id_aes192_wrap OBJ_aes,25L #define SN_aes_192_gcm "id-aes192-GCM" #define LN_aes_192_gcm "aes-192-gcm" #define NID_aes_192_gcm 898 #define OBJ_aes_192_gcm OBJ_aes,26L #define SN_aes_192_ccm "id-aes192-CCM" #define LN_aes_192_ccm "aes-192-ccm" #define NID_aes_192_ccm 899 #define OBJ_aes_192_ccm OBJ_aes,27L #define SN_id_aes192_wrap_pad "id-aes192-wrap-pad" #define NID_id_aes192_wrap_pad 900 #define OBJ_id_aes192_wrap_pad OBJ_aes,28L #define SN_aes_256_ecb "AES-256-ECB" #define LN_aes_256_ecb "aes-256-ecb" #define NID_aes_256_ecb 426 #define OBJ_aes_256_ecb OBJ_aes,41L #define SN_aes_256_cbc "AES-256-CBC" #define LN_aes_256_cbc "aes-256-cbc" #define NID_aes_256_cbc 427 #define OBJ_aes_256_cbc OBJ_aes,42L #define SN_aes_256_ofb128 "AES-256-OFB" #define LN_aes_256_ofb128 "aes-256-ofb" #define NID_aes_256_ofb128 428 #define OBJ_aes_256_ofb128 OBJ_aes,43L #define SN_aes_256_cfb128 "AES-256-CFB" #define LN_aes_256_cfb128 "aes-256-cfb" #define NID_aes_256_cfb128 429 #define OBJ_aes_256_cfb128 OBJ_aes,44L #define SN_id_aes256_wrap "id-aes256-wrap" #define NID_id_aes256_wrap 790 #define OBJ_id_aes256_wrap OBJ_aes,45L #define SN_aes_256_gcm "id-aes256-GCM" #define LN_aes_256_gcm "aes-256-gcm" #define NID_aes_256_gcm 901 #define OBJ_aes_256_gcm OBJ_aes,46L #define SN_aes_256_ccm "id-aes256-CCM" #define LN_aes_256_ccm "aes-256-ccm" #define NID_aes_256_ccm 902 #define OBJ_aes_256_ccm OBJ_aes,47L #define SN_id_aes256_wrap_pad "id-aes256-wrap-pad" #define NID_id_aes256_wrap_pad 903 #define OBJ_id_aes256_wrap_pad OBJ_aes,48L #define SN_aes_128_cfb1 "AES-128-CFB1" #define LN_aes_128_cfb1 "aes-128-cfb1" #define NID_aes_128_cfb1 650 #define SN_aes_192_cfb1 "AES-192-CFB1" #define LN_aes_192_cfb1 "aes-192-cfb1" #define NID_aes_192_cfb1 651 #define SN_aes_256_cfb1 "AES-256-CFB1" #define LN_aes_256_cfb1 "aes-256-cfb1" #define NID_aes_256_cfb1 652 #define SN_aes_128_cfb8 "AES-128-CFB8" #define LN_aes_128_cfb8 "aes-128-cfb8" #define NID_aes_128_cfb8 653 #define SN_aes_192_cfb8 "AES-192-CFB8" #define LN_aes_192_cfb8 "aes-192-cfb8" #define NID_aes_192_cfb8 654 #define SN_aes_256_cfb8 "AES-256-CFB8" #define LN_aes_256_cfb8 "aes-256-cfb8" #define NID_aes_256_cfb8 655 #define SN_aes_128_ctr "AES-128-CTR" #define LN_aes_128_ctr "aes-128-ctr" #define NID_aes_128_ctr 904 #define SN_aes_192_ctr "AES-192-CTR" #define LN_aes_192_ctr "aes-192-ctr" #define NID_aes_192_ctr 905 #define SN_aes_256_ctr "AES-256-CTR" #define LN_aes_256_ctr "aes-256-ctr" #define NID_aes_256_ctr 906 #define SN_aes_128_xts "AES-128-XTS" #define LN_aes_128_xts "aes-128-xts" #define NID_aes_128_xts 913 #define SN_aes_256_xts "AES-256-XTS" #define LN_aes_256_xts "aes-256-xts" #define NID_aes_256_xts 914 #define SN_des_cfb1 "DES-CFB1" #define LN_des_cfb1 "des-cfb1" #define NID_des_cfb1 656 #define SN_des_cfb8 "DES-CFB8" #define LN_des_cfb8 "des-cfb8" #define NID_des_cfb8 657 #define SN_des_ede3_cfb1 "DES-EDE3-CFB1" #define LN_des_ede3_cfb1 "des-ede3-cfb1" #define NID_des_ede3_cfb1 658 #define SN_des_ede3_cfb8 "DES-EDE3-CFB8" #define LN_des_ede3_cfb8 "des-ede3-cfb8" #define NID_des_ede3_cfb8 659 #define OBJ_nist_hashalgs OBJ_nistAlgorithms,2L #define SN_sha256 "SHA256" #define LN_sha256 "sha256" #define NID_sha256 672 #define OBJ_sha256 OBJ_nist_hashalgs,1L #define SN_sha384 "SHA384" #define LN_sha384 "sha384" #define NID_sha384 673 #define OBJ_sha384 OBJ_nist_hashalgs,2L #define SN_sha512 "SHA512" #define LN_sha512 "sha512" #define NID_sha512 674 #define OBJ_sha512 OBJ_nist_hashalgs,3L #define SN_sha224 "SHA224" #define LN_sha224 "sha224" #define NID_sha224 675 #define OBJ_sha224 OBJ_nist_hashalgs,4L #define OBJ_dsa_with_sha2 OBJ_nistAlgorithms,3L #define SN_dsa_with_SHA224 "dsa_with_SHA224" #define NID_dsa_with_SHA224 802 #define OBJ_dsa_with_SHA224 OBJ_dsa_with_sha2,1L #define SN_dsa_with_SHA256 "dsa_with_SHA256" #define NID_dsa_with_SHA256 803 #define OBJ_dsa_with_SHA256 OBJ_dsa_with_sha2,2L #define SN_hold_instruction_code "holdInstructionCode" #define LN_hold_instruction_code "Hold Instruction Code" #define NID_hold_instruction_code 430 #define OBJ_hold_instruction_code OBJ_id_ce,23L #define OBJ_holdInstruction OBJ_X9_57,2L #define SN_hold_instruction_none "holdInstructionNone" #define LN_hold_instruction_none "Hold Instruction None" #define NID_hold_instruction_none 431 #define OBJ_hold_instruction_none OBJ_holdInstruction,1L #define SN_hold_instruction_call_issuer "holdInstructionCallIssuer" #define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer" #define NID_hold_instruction_call_issuer 432 #define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L #define SN_hold_instruction_reject "holdInstructionReject" #define LN_hold_instruction_reject "Hold Instruction Reject" #define NID_hold_instruction_reject 433 #define OBJ_hold_instruction_reject OBJ_holdInstruction,3L #define SN_data "data" #define NID_data 434 #define OBJ_data OBJ_itu_t,9L #define SN_pss "pss" #define NID_pss 435 #define OBJ_pss OBJ_data,2342L #define SN_ucl "ucl" #define NID_ucl 436 #define OBJ_ucl OBJ_pss,19200300L #define SN_pilot "pilot" #define NID_pilot 437 #define OBJ_pilot OBJ_ucl,100L #define LN_pilotAttributeType "pilotAttributeType" #define NID_pilotAttributeType 438 #define OBJ_pilotAttributeType OBJ_pilot,1L #define LN_pilotAttributeSyntax "pilotAttributeSyntax" #define NID_pilotAttributeSyntax 439 #define OBJ_pilotAttributeSyntax OBJ_pilot,3L #define LN_pilotObjectClass "pilotObjectClass" #define NID_pilotObjectClass 440 #define OBJ_pilotObjectClass OBJ_pilot,4L #define LN_pilotGroups "pilotGroups" #define NID_pilotGroups 441 #define OBJ_pilotGroups OBJ_pilot,10L #define LN_iA5StringSyntax "iA5StringSyntax" #define NID_iA5StringSyntax 442 #define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L #define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax" #define NID_caseIgnoreIA5StringSyntax 443 #define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L #define LN_pilotObject "pilotObject" #define NID_pilotObject 444 #define OBJ_pilotObject OBJ_pilotObjectClass,3L #define LN_pilotPerson "pilotPerson" #define NID_pilotPerson 445 #define OBJ_pilotPerson OBJ_pilotObjectClass,4L #define SN_account "account" #define NID_account 446 #define OBJ_account OBJ_pilotObjectClass,5L #define SN_document "document" #define NID_document 447 #define OBJ_document OBJ_pilotObjectClass,6L #define SN_room "room" #define NID_room 448 #define OBJ_room OBJ_pilotObjectClass,7L #define LN_documentSeries "documentSeries" #define NID_documentSeries 449 #define OBJ_documentSeries OBJ_pilotObjectClass,9L #define SN_Domain "domain" #define LN_Domain "Domain" #define NID_Domain 392 #define OBJ_Domain OBJ_pilotObjectClass,13L #define LN_rFC822localPart "rFC822localPart" #define NID_rFC822localPart 450 #define OBJ_rFC822localPart OBJ_pilotObjectClass,14L #define LN_dNSDomain "dNSDomain" #define NID_dNSDomain 451 #define OBJ_dNSDomain OBJ_pilotObjectClass,15L #define LN_domainRelatedObject "domainRelatedObject" #define NID_domainRelatedObject 452 #define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L #define LN_friendlyCountry "friendlyCountry" #define NID_friendlyCountry 453 #define OBJ_friendlyCountry OBJ_pilotObjectClass,18L #define LN_simpleSecurityObject "simpleSecurityObject" #define NID_simpleSecurityObject 454 #define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L #define LN_pilotOrganization "pilotOrganization" #define NID_pilotOrganization 455 #define OBJ_pilotOrganization OBJ_pilotObjectClass,20L #define LN_pilotDSA "pilotDSA" #define NID_pilotDSA 456 #define OBJ_pilotDSA OBJ_pilotObjectClass,21L #define LN_qualityLabelledData "qualityLabelledData" #define NID_qualityLabelledData 457 #define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L #define SN_userId "UID" #define LN_userId "userId" #define NID_userId 458 #define OBJ_userId OBJ_pilotAttributeType,1L #define LN_textEncodedORAddress "textEncodedORAddress" #define NID_textEncodedORAddress 459 #define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L #define SN_rfc822Mailbox "mail" #define LN_rfc822Mailbox "rfc822Mailbox" #define NID_rfc822Mailbox 460 #define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L #define SN_info "info" #define NID_info 461 #define OBJ_info OBJ_pilotAttributeType,4L #define LN_favouriteDrink "favouriteDrink" #define NID_favouriteDrink 462 #define OBJ_favouriteDrink OBJ_pilotAttributeType,5L #define LN_roomNumber "roomNumber" #define NID_roomNumber 463 #define OBJ_roomNumber OBJ_pilotAttributeType,6L #define SN_photo "photo" #define NID_photo 464 #define OBJ_photo OBJ_pilotAttributeType,7L #define LN_userClass "userClass" #define NID_userClass 465 #define OBJ_userClass OBJ_pilotAttributeType,8L #define SN_host "host" #define NID_host 466 #define OBJ_host OBJ_pilotAttributeType,9L #define SN_manager "manager" #define NID_manager 467 #define OBJ_manager OBJ_pilotAttributeType,10L #define LN_documentIdentifier "documentIdentifier" #define NID_documentIdentifier 468 #define OBJ_documentIdentifier OBJ_pilotAttributeType,11L #define LN_documentTitle "documentTitle" #define NID_documentTitle 469 #define OBJ_documentTitle OBJ_pilotAttributeType,12L #define LN_documentVersion "documentVersion" #define NID_documentVersion 470 #define OBJ_documentVersion OBJ_pilotAttributeType,13L #define LN_documentAuthor "documentAuthor" #define NID_documentAuthor 471 #define OBJ_documentAuthor OBJ_pilotAttributeType,14L #define LN_documentLocation "documentLocation" #define NID_documentLocation 472 #define OBJ_documentLocation OBJ_pilotAttributeType,15L #define LN_homeTelephoneNumber "homeTelephoneNumber" #define NID_homeTelephoneNumber 473 #define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L #define SN_secretary "secretary" #define NID_secretary 474 #define OBJ_secretary OBJ_pilotAttributeType,21L #define LN_otherMailbox "otherMailbox" #define NID_otherMailbox 475 #define OBJ_otherMailbox OBJ_pilotAttributeType,22L #define LN_lastModifiedTime "lastModifiedTime" #define NID_lastModifiedTime 476 #define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L #define LN_lastModifiedBy "lastModifiedBy" #define NID_lastModifiedBy 477 #define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L #define SN_domainComponent "DC" #define LN_domainComponent "domainComponent" #define NID_domainComponent 391 #define OBJ_domainComponent OBJ_pilotAttributeType,25L #define LN_aRecord "aRecord" #define NID_aRecord 478 #define OBJ_aRecord OBJ_pilotAttributeType,26L #define LN_pilotAttributeType27 "pilotAttributeType27" #define NID_pilotAttributeType27 479 #define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L #define LN_mXRecord "mXRecord" #define NID_mXRecord 480 #define OBJ_mXRecord OBJ_pilotAttributeType,28L #define LN_nSRecord "nSRecord" #define NID_nSRecord 481 #define OBJ_nSRecord OBJ_pilotAttributeType,29L #define LN_sOARecord "sOARecord" #define NID_sOARecord 482 #define OBJ_sOARecord OBJ_pilotAttributeType,30L #define LN_cNAMERecord "cNAMERecord" #define NID_cNAMERecord 483 #define OBJ_cNAMERecord OBJ_pilotAttributeType,31L #define LN_associatedDomain "associatedDomain" #define NID_associatedDomain 484 #define OBJ_associatedDomain OBJ_pilotAttributeType,37L #define LN_associatedName "associatedName" #define NID_associatedName 485 #define OBJ_associatedName OBJ_pilotAttributeType,38L #define LN_homePostalAddress "homePostalAddress" #define NID_homePostalAddress 486 #define OBJ_homePostalAddress OBJ_pilotAttributeType,39L #define LN_personalTitle "personalTitle" #define NID_personalTitle 487 #define OBJ_personalTitle OBJ_pilotAttributeType,40L #define LN_mobileTelephoneNumber "mobileTelephoneNumber" #define NID_mobileTelephoneNumber 488 #define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L #define LN_pagerTelephoneNumber "pagerTelephoneNumber" #define NID_pagerTelephoneNumber 489 #define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L #define LN_friendlyCountryName "friendlyCountryName" #define NID_friendlyCountryName 490 #define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L #define LN_organizationalStatus "organizationalStatus" #define NID_organizationalStatus 491 #define OBJ_organizationalStatus OBJ_pilotAttributeType,45L #define LN_janetMailbox "janetMailbox" #define NID_janetMailbox 492 #define OBJ_janetMailbox OBJ_pilotAttributeType,46L #define LN_mailPreferenceOption "mailPreferenceOption" #define NID_mailPreferenceOption 493 #define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L #define LN_buildingName "buildingName" #define NID_buildingName 494 #define OBJ_buildingName OBJ_pilotAttributeType,48L #define LN_dSAQuality "dSAQuality" #define NID_dSAQuality 495 #define OBJ_dSAQuality OBJ_pilotAttributeType,49L #define LN_singleLevelQuality "singleLevelQuality" #define NID_singleLevelQuality 496 #define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L #define LN_subtreeMinimumQuality "subtreeMinimumQuality" #define NID_subtreeMinimumQuality 497 #define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L #define LN_subtreeMaximumQuality "subtreeMaximumQuality" #define NID_subtreeMaximumQuality 498 #define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L #define LN_personalSignature "personalSignature" #define NID_personalSignature 499 #define OBJ_personalSignature OBJ_pilotAttributeType,53L #define LN_dITRedirect "dITRedirect" #define NID_dITRedirect 500 #define OBJ_dITRedirect OBJ_pilotAttributeType,54L #define SN_audio "audio" #define NID_audio 501 #define OBJ_audio OBJ_pilotAttributeType,55L #define LN_documentPublisher "documentPublisher" #define NID_documentPublisher 502 #define OBJ_documentPublisher OBJ_pilotAttributeType,56L #define SN_id_set "id-set" #define LN_id_set "Secure Electronic Transactions" #define NID_id_set 512 #define OBJ_id_set OBJ_international_organizations,42L #define SN_set_ctype "set-ctype" #define LN_set_ctype "content types" #define NID_set_ctype 513 #define OBJ_set_ctype OBJ_id_set,0L #define SN_set_msgExt "set-msgExt" #define LN_set_msgExt "message extensions" #define NID_set_msgExt 514 #define OBJ_set_msgExt OBJ_id_set,1L #define SN_set_attr "set-attr" #define NID_set_attr 515 #define OBJ_set_attr OBJ_id_set,3L #define SN_set_policy "set-policy" #define NID_set_policy 516 #define OBJ_set_policy OBJ_id_set,5L #define SN_set_certExt "set-certExt" #define LN_set_certExt "certificate extensions" #define NID_set_certExt 517 #define OBJ_set_certExt OBJ_id_set,7L #define SN_set_brand "set-brand" #define NID_set_brand 518 #define OBJ_set_brand OBJ_id_set,8L #define SN_setct_PANData "setct-PANData" #define NID_setct_PANData 519 #define OBJ_setct_PANData OBJ_set_ctype,0L #define SN_setct_PANToken "setct-PANToken" #define NID_setct_PANToken 520 #define OBJ_setct_PANToken OBJ_set_ctype,1L #define SN_setct_PANOnly "setct-PANOnly" #define NID_setct_PANOnly 521 #define OBJ_setct_PANOnly OBJ_set_ctype,2L #define SN_setct_OIData "setct-OIData" #define NID_setct_OIData 522 #define OBJ_setct_OIData OBJ_set_ctype,3L #define SN_setct_PI "setct-PI" #define NID_setct_PI 523 #define OBJ_setct_PI OBJ_set_ctype,4L #define SN_setct_PIData "setct-PIData" #define NID_setct_PIData 524 #define OBJ_setct_PIData OBJ_set_ctype,5L #define SN_setct_PIDataUnsigned "setct-PIDataUnsigned" #define NID_setct_PIDataUnsigned 525 #define OBJ_setct_PIDataUnsigned OBJ_set_ctype,6L #define SN_setct_HODInput "setct-HODInput" #define NID_setct_HODInput 526 #define OBJ_setct_HODInput OBJ_set_ctype,7L #define SN_setct_AuthResBaggage "setct-AuthResBaggage" #define NID_setct_AuthResBaggage 527 #define OBJ_setct_AuthResBaggage OBJ_set_ctype,8L #define SN_setct_AuthRevReqBaggage "setct-AuthRevReqBaggage" #define NID_setct_AuthRevReqBaggage 528 #define OBJ_setct_AuthRevReqBaggage OBJ_set_ctype,9L #define SN_setct_AuthRevResBaggage "setct-AuthRevResBaggage" #define NID_setct_AuthRevResBaggage 529 #define OBJ_setct_AuthRevResBaggage OBJ_set_ctype,10L #define SN_setct_CapTokenSeq "setct-CapTokenSeq" #define NID_setct_CapTokenSeq 530 #define OBJ_setct_CapTokenSeq OBJ_set_ctype,11L #define SN_setct_PInitResData "setct-PInitResData" #define NID_setct_PInitResData 531 #define OBJ_setct_PInitResData OBJ_set_ctype,12L #define SN_setct_PI_TBS "setct-PI-TBS" #define NID_setct_PI_TBS 532 #define OBJ_setct_PI_TBS OBJ_set_ctype,13L #define SN_setct_PResData "setct-PResData" #define NID_setct_PResData 533 #define OBJ_setct_PResData OBJ_set_ctype,14L #define SN_setct_AuthReqTBS "setct-AuthReqTBS" #define NID_setct_AuthReqTBS 534 #define OBJ_setct_AuthReqTBS OBJ_set_ctype,16L #define SN_setct_AuthResTBS "setct-AuthResTBS" #define NID_setct_AuthResTBS 535 #define OBJ_setct_AuthResTBS OBJ_set_ctype,17L #define SN_setct_AuthResTBSX "setct-AuthResTBSX" #define NID_setct_AuthResTBSX 536 #define OBJ_setct_AuthResTBSX OBJ_set_ctype,18L #define SN_setct_AuthTokenTBS "setct-AuthTokenTBS" #define NID_setct_AuthTokenTBS 537 #define OBJ_setct_AuthTokenTBS OBJ_set_ctype,19L #define SN_setct_CapTokenData "setct-CapTokenData" #define NID_setct_CapTokenData 538 #define OBJ_setct_CapTokenData OBJ_set_ctype,20L #define SN_setct_CapTokenTBS "setct-CapTokenTBS" #define NID_setct_CapTokenTBS 539 #define OBJ_setct_CapTokenTBS OBJ_set_ctype,21L #define SN_setct_AcqCardCodeMsg "setct-AcqCardCodeMsg" #define NID_setct_AcqCardCodeMsg 540 #define OBJ_setct_AcqCardCodeMsg OBJ_set_ctype,22L #define SN_setct_AuthRevReqTBS "setct-AuthRevReqTBS" #define NID_setct_AuthRevReqTBS 541 #define OBJ_setct_AuthRevReqTBS OBJ_set_ctype,23L #define SN_setct_AuthRevResData "setct-AuthRevResData" #define NID_setct_AuthRevResData 542 #define OBJ_setct_AuthRevResData OBJ_set_ctype,24L #define SN_setct_AuthRevResTBS "setct-AuthRevResTBS" #define NID_setct_AuthRevResTBS 543 #define OBJ_setct_AuthRevResTBS OBJ_set_ctype,25L #define SN_setct_CapReqTBS "setct-CapReqTBS" #define NID_setct_CapReqTBS 544 #define OBJ_setct_CapReqTBS OBJ_set_ctype,26L #define SN_setct_CapReqTBSX "setct-CapReqTBSX" #define NID_setct_CapReqTBSX 545 #define OBJ_setct_CapReqTBSX OBJ_set_ctype,27L #define SN_setct_CapResData "setct-CapResData" #define NID_setct_CapResData 546 #define OBJ_setct_CapResData OBJ_set_ctype,28L #define SN_setct_CapRevReqTBS "setct-CapRevReqTBS" #define NID_setct_CapRevReqTBS 547 #define OBJ_setct_CapRevReqTBS OBJ_set_ctype,29L #define SN_setct_CapRevReqTBSX "setct-CapRevReqTBSX" #define NID_setct_CapRevReqTBSX 548 #define OBJ_setct_CapRevReqTBSX OBJ_set_ctype,30L #define SN_setct_CapRevResData "setct-CapRevResData" #define NID_setct_CapRevResData 549 #define OBJ_setct_CapRevResData OBJ_set_ctype,31L #define SN_setct_CredReqTBS "setct-CredReqTBS" #define NID_setct_CredReqTBS 550 #define OBJ_setct_CredReqTBS OBJ_set_ctype,32L #define SN_setct_CredReqTBSX "setct-CredReqTBSX" #define NID_setct_CredReqTBSX 551 #define OBJ_setct_CredReqTBSX OBJ_set_ctype,33L #define SN_setct_CredResData "setct-CredResData" #define NID_setct_CredResData 552 #define OBJ_setct_CredResData OBJ_set_ctype,34L #define SN_setct_CredRevReqTBS "setct-CredRevReqTBS" #define NID_setct_CredRevReqTBS 553 #define OBJ_setct_CredRevReqTBS OBJ_set_ctype,35L #define SN_setct_CredRevReqTBSX "setct-CredRevReqTBSX" #define NID_setct_CredRevReqTBSX 554 #define OBJ_setct_CredRevReqTBSX OBJ_set_ctype,36L #define SN_setct_CredRevResData "setct-CredRevResData" #define NID_setct_CredRevResData 555 #define OBJ_setct_CredRevResData OBJ_set_ctype,37L #define SN_setct_PCertReqData "setct-PCertReqData" #define NID_setct_PCertReqData 556 #define OBJ_setct_PCertReqData OBJ_set_ctype,38L #define SN_setct_PCertResTBS "setct-PCertResTBS" #define NID_setct_PCertResTBS 557 #define OBJ_setct_PCertResTBS OBJ_set_ctype,39L #define SN_setct_BatchAdminReqData "setct-BatchAdminReqData" #define NID_setct_BatchAdminReqData 558 #define OBJ_setct_BatchAdminReqData OBJ_set_ctype,40L #define SN_setct_BatchAdminResData "setct-BatchAdminResData" #define NID_setct_BatchAdminResData 559 #define OBJ_setct_BatchAdminResData OBJ_set_ctype,41L #define SN_setct_CardCInitResTBS "setct-CardCInitResTBS" #define NID_setct_CardCInitResTBS 560 #define OBJ_setct_CardCInitResTBS OBJ_set_ctype,42L #define SN_setct_MeAqCInitResTBS "setct-MeAqCInitResTBS" #define NID_setct_MeAqCInitResTBS 561 #define OBJ_setct_MeAqCInitResTBS OBJ_set_ctype,43L #define SN_setct_RegFormResTBS "setct-RegFormResTBS" #define NID_setct_RegFormResTBS 562 #define OBJ_setct_RegFormResTBS OBJ_set_ctype,44L #define SN_setct_CertReqData "setct-CertReqData" #define NID_setct_CertReqData 563 #define OBJ_setct_CertReqData OBJ_set_ctype,45L #define SN_setct_CertReqTBS "setct-CertReqTBS" #define NID_setct_CertReqTBS 564 #define OBJ_setct_CertReqTBS OBJ_set_ctype,46L #define SN_setct_CertResData "setct-CertResData" #define NID_setct_CertResData 565 #define OBJ_setct_CertResData OBJ_set_ctype,47L #define SN_setct_CertInqReqTBS "setct-CertInqReqTBS" #define NID_setct_CertInqReqTBS 566 #define OBJ_setct_CertInqReqTBS OBJ_set_ctype,48L #define SN_setct_ErrorTBS "setct-ErrorTBS" #define NID_setct_ErrorTBS 567 #define OBJ_setct_ErrorTBS OBJ_set_ctype,49L #define SN_setct_PIDualSignedTBE "setct-PIDualSignedTBE" #define NID_setct_PIDualSignedTBE 568 #define OBJ_setct_PIDualSignedTBE OBJ_set_ctype,50L #define SN_setct_PIUnsignedTBE "setct-PIUnsignedTBE" #define NID_setct_PIUnsignedTBE 569 #define OBJ_setct_PIUnsignedTBE OBJ_set_ctype,51L #define SN_setct_AuthReqTBE "setct-AuthReqTBE" #define NID_setct_AuthReqTBE 570 #define OBJ_setct_AuthReqTBE OBJ_set_ctype,52L #define SN_setct_AuthResTBE "setct-AuthResTBE" #define NID_setct_AuthResTBE 571 #define OBJ_setct_AuthResTBE OBJ_set_ctype,53L #define SN_setct_AuthResTBEX "setct-AuthResTBEX" #define NID_setct_AuthResTBEX 572 #define OBJ_setct_AuthResTBEX OBJ_set_ctype,54L #define SN_setct_AuthTokenTBE "setct-AuthTokenTBE" #define NID_setct_AuthTokenTBE 573 #define OBJ_setct_AuthTokenTBE OBJ_set_ctype,55L #define SN_setct_CapTokenTBE "setct-CapTokenTBE" #define NID_setct_CapTokenTBE 574 #define OBJ_setct_CapTokenTBE OBJ_set_ctype,56L #define SN_setct_CapTokenTBEX "setct-CapTokenTBEX" #define NID_setct_CapTokenTBEX 575 #define OBJ_setct_CapTokenTBEX OBJ_set_ctype,57L #define SN_setct_AcqCardCodeMsgTBE "setct-AcqCardCodeMsgTBE" #define NID_setct_AcqCardCodeMsgTBE 576 #define OBJ_setct_AcqCardCodeMsgTBE OBJ_set_ctype,58L #define SN_setct_AuthRevReqTBE "setct-AuthRevReqTBE" #define NID_setct_AuthRevReqTBE 577 #define OBJ_setct_AuthRevReqTBE OBJ_set_ctype,59L #define SN_setct_AuthRevResTBE "setct-AuthRevResTBE" #define NID_setct_AuthRevResTBE 578 #define OBJ_setct_AuthRevResTBE OBJ_set_ctype,60L #define SN_setct_AuthRevResTBEB "setct-AuthRevResTBEB" #define NID_setct_AuthRevResTBEB 579 #define OBJ_setct_AuthRevResTBEB OBJ_set_ctype,61L #define SN_setct_CapReqTBE "setct-CapReqTBE" #define NID_setct_CapReqTBE 580 #define OBJ_setct_CapReqTBE OBJ_set_ctype,62L #define SN_setct_CapReqTBEX "setct-CapReqTBEX" #define NID_setct_CapReqTBEX 581 #define OBJ_setct_CapReqTBEX OBJ_set_ctype,63L #define SN_setct_CapResTBE "setct-CapResTBE" #define NID_setct_CapResTBE 582 #define OBJ_setct_CapResTBE OBJ_set_ctype,64L #define SN_setct_CapRevReqTBE "setct-CapRevReqTBE" #define NID_setct_CapRevReqTBE 583 #define OBJ_setct_CapRevReqTBE OBJ_set_ctype,65L #define SN_setct_CapRevReqTBEX "setct-CapRevReqTBEX" #define NID_setct_CapRevReqTBEX 584 #define OBJ_setct_CapRevReqTBEX OBJ_set_ctype,66L #define SN_setct_CapRevResTBE "setct-CapRevResTBE" #define NID_setct_CapRevResTBE 585 #define OBJ_setct_CapRevResTBE OBJ_set_ctype,67L #define SN_setct_CredReqTBE "setct-CredReqTBE" #define NID_setct_CredReqTBE 586 #define OBJ_setct_CredReqTBE OBJ_set_ctype,68L #define SN_setct_CredReqTBEX "setct-CredReqTBEX" #define NID_setct_CredReqTBEX 587 #define OBJ_setct_CredReqTBEX OBJ_set_ctype,69L #define SN_setct_CredResTBE "setct-CredResTBE" #define NID_setct_CredResTBE 588 #define OBJ_setct_CredResTBE OBJ_set_ctype,70L #define SN_setct_CredRevReqTBE "setct-CredRevReqTBE" #define NID_setct_CredRevReqTBE 589 #define OBJ_setct_CredRevReqTBE OBJ_set_ctype,71L #define SN_setct_CredRevReqTBEX "setct-CredRevReqTBEX" #define NID_setct_CredRevReqTBEX 590 #define OBJ_setct_CredRevReqTBEX OBJ_set_ctype,72L #define SN_setct_CredRevResTBE "setct-CredRevResTBE" #define NID_setct_CredRevResTBE 591 #define OBJ_setct_CredRevResTBE OBJ_set_ctype,73L #define SN_setct_BatchAdminReqTBE "setct-BatchAdminReqTBE" #define NID_setct_BatchAdminReqTBE 592 #define OBJ_setct_BatchAdminReqTBE OBJ_set_ctype,74L #define SN_setct_BatchAdminResTBE "setct-BatchAdminResTBE" #define NID_setct_BatchAdminResTBE 593 #define OBJ_setct_BatchAdminResTBE OBJ_set_ctype,75L #define SN_setct_RegFormReqTBE "setct-RegFormReqTBE" #define NID_setct_RegFormReqTBE 594 #define OBJ_setct_RegFormReqTBE OBJ_set_ctype,76L #define SN_setct_CertReqTBE "setct-CertReqTBE" #define NID_setct_CertReqTBE 595 #define OBJ_setct_CertReqTBE OBJ_set_ctype,77L #define SN_setct_CertReqTBEX "setct-CertReqTBEX" #define NID_setct_CertReqTBEX 596 #define OBJ_setct_CertReqTBEX OBJ_set_ctype,78L #define SN_setct_CertResTBE "setct-CertResTBE" #define NID_setct_CertResTBE 597 #define OBJ_setct_CertResTBE OBJ_set_ctype,79L #define SN_setct_CRLNotificationTBS "setct-CRLNotificationTBS" #define NID_setct_CRLNotificationTBS 598 #define OBJ_setct_CRLNotificationTBS OBJ_set_ctype,80L #define SN_setct_CRLNotificationResTBS "setct-CRLNotificationResTBS" #define NID_setct_CRLNotificationResTBS 599 #define OBJ_setct_CRLNotificationResTBS OBJ_set_ctype,81L #define SN_setct_BCIDistributionTBS "setct-BCIDistributionTBS" #define NID_setct_BCIDistributionTBS 600 #define OBJ_setct_BCIDistributionTBS OBJ_set_ctype,82L #define SN_setext_genCrypt "setext-genCrypt" #define LN_setext_genCrypt "generic cryptogram" #define NID_setext_genCrypt 601 #define OBJ_setext_genCrypt OBJ_set_msgExt,1L #define SN_setext_miAuth "setext-miAuth" #define LN_setext_miAuth "merchant initiated auth" #define NID_setext_miAuth 602 #define OBJ_setext_miAuth OBJ_set_msgExt,3L #define SN_setext_pinSecure "setext-pinSecure" #define NID_setext_pinSecure 603 #define OBJ_setext_pinSecure OBJ_set_msgExt,4L #define SN_setext_pinAny "setext-pinAny" #define NID_setext_pinAny 604 #define OBJ_setext_pinAny OBJ_set_msgExt,5L #define SN_setext_track2 "setext-track2" #define NID_setext_track2 605 #define OBJ_setext_track2 OBJ_set_msgExt,7L #define SN_setext_cv "setext-cv" #define LN_setext_cv "additional verification" #define NID_setext_cv 606 #define OBJ_setext_cv OBJ_set_msgExt,8L #define SN_set_policy_root "set-policy-root" #define NID_set_policy_root 607 #define OBJ_set_policy_root OBJ_set_policy,0L #define SN_setCext_hashedRoot "setCext-hashedRoot" #define NID_setCext_hashedRoot 608 #define OBJ_setCext_hashedRoot OBJ_set_certExt,0L #define SN_setCext_certType "setCext-certType" #define NID_setCext_certType 609 #define OBJ_setCext_certType OBJ_set_certExt,1L #define SN_setCext_merchData "setCext-merchData" #define NID_setCext_merchData 610 #define OBJ_setCext_merchData OBJ_set_certExt,2L #define SN_setCext_cCertRequired "setCext-cCertRequired" #define NID_setCext_cCertRequired 611 #define OBJ_setCext_cCertRequired OBJ_set_certExt,3L #define SN_setCext_tunneling "setCext-tunneling" #define NID_setCext_tunneling 612 #define OBJ_setCext_tunneling OBJ_set_certExt,4L #define SN_setCext_setExt "setCext-setExt" #define NID_setCext_setExt 613 #define OBJ_setCext_setExt OBJ_set_certExt,5L #define SN_setCext_setQualf "setCext-setQualf" #define NID_setCext_setQualf 614 #define OBJ_setCext_setQualf OBJ_set_certExt,6L #define SN_setCext_PGWYcapabilities "setCext-PGWYcapabilities" #define NID_setCext_PGWYcapabilities 615 #define OBJ_setCext_PGWYcapabilities OBJ_set_certExt,7L #define SN_setCext_TokenIdentifier "setCext-TokenIdentifier" #define NID_setCext_TokenIdentifier 616 #define OBJ_setCext_TokenIdentifier OBJ_set_certExt,8L #define SN_setCext_Track2Data "setCext-Track2Data" #define NID_setCext_Track2Data 617 #define OBJ_setCext_Track2Data OBJ_set_certExt,9L #define SN_setCext_TokenType "setCext-TokenType" #define NID_setCext_TokenType 618 #define OBJ_setCext_TokenType OBJ_set_certExt,10L #define SN_setCext_IssuerCapabilities "setCext-IssuerCapabilities" #define NID_setCext_IssuerCapabilities 619 #define OBJ_setCext_IssuerCapabilities OBJ_set_certExt,11L #define SN_setAttr_Cert "setAttr-Cert" #define NID_setAttr_Cert 620 #define OBJ_setAttr_Cert OBJ_set_attr,0L #define SN_setAttr_PGWYcap "setAttr-PGWYcap" #define LN_setAttr_PGWYcap "payment gateway capabilities" #define NID_setAttr_PGWYcap 621 #define OBJ_setAttr_PGWYcap OBJ_set_attr,1L #define SN_setAttr_TokenType "setAttr-TokenType" #define NID_setAttr_TokenType 622 #define OBJ_setAttr_TokenType OBJ_set_attr,2L #define SN_setAttr_IssCap "setAttr-IssCap" #define LN_setAttr_IssCap "issuer capabilities" #define NID_setAttr_IssCap 623 #define OBJ_setAttr_IssCap OBJ_set_attr,3L #define SN_set_rootKeyThumb "set-rootKeyThumb" #define NID_set_rootKeyThumb 624 #define OBJ_set_rootKeyThumb OBJ_setAttr_Cert,0L #define SN_set_addPolicy "set-addPolicy" #define NID_set_addPolicy 625 #define OBJ_set_addPolicy OBJ_setAttr_Cert,1L #define SN_setAttr_Token_EMV "setAttr-Token-EMV" #define NID_setAttr_Token_EMV 626 #define OBJ_setAttr_Token_EMV OBJ_setAttr_TokenType,1L #define SN_setAttr_Token_B0Prime "setAttr-Token-B0Prime" #define NID_setAttr_Token_B0Prime 627 #define OBJ_setAttr_Token_B0Prime OBJ_setAttr_TokenType,2L #define SN_setAttr_IssCap_CVM "setAttr-IssCap-CVM" #define NID_setAttr_IssCap_CVM 628 #define OBJ_setAttr_IssCap_CVM OBJ_setAttr_IssCap,3L #define SN_setAttr_IssCap_T2 "setAttr-IssCap-T2" #define NID_setAttr_IssCap_T2 629 #define OBJ_setAttr_IssCap_T2 OBJ_setAttr_IssCap,4L #define SN_setAttr_IssCap_Sig "setAttr-IssCap-Sig" #define NID_setAttr_IssCap_Sig 630 #define OBJ_setAttr_IssCap_Sig OBJ_setAttr_IssCap,5L #define SN_setAttr_GenCryptgrm "setAttr-GenCryptgrm" #define LN_setAttr_GenCryptgrm "generate cryptogram" #define NID_setAttr_GenCryptgrm 631 #define OBJ_setAttr_GenCryptgrm OBJ_setAttr_IssCap_CVM,1L #define SN_setAttr_T2Enc "setAttr-T2Enc" #define LN_setAttr_T2Enc "encrypted track 2" #define NID_setAttr_T2Enc 632 #define OBJ_setAttr_T2Enc OBJ_setAttr_IssCap_T2,1L #define SN_setAttr_T2cleartxt "setAttr-T2cleartxt" #define LN_setAttr_T2cleartxt "cleartext track 2" #define NID_setAttr_T2cleartxt 633 #define OBJ_setAttr_T2cleartxt OBJ_setAttr_IssCap_T2,2L #define SN_setAttr_TokICCsig "setAttr-TokICCsig" #define LN_setAttr_TokICCsig "ICC or token signature" #define NID_setAttr_TokICCsig 634 #define OBJ_setAttr_TokICCsig OBJ_setAttr_IssCap_Sig,1L #define SN_setAttr_SecDevSig "setAttr-SecDevSig" #define LN_setAttr_SecDevSig "secure device signature" #define NID_setAttr_SecDevSig 635 #define OBJ_setAttr_SecDevSig OBJ_setAttr_IssCap_Sig,2L #define SN_set_brand_IATA_ATA "set-brand-IATA-ATA" #define NID_set_brand_IATA_ATA 636 #define OBJ_set_brand_IATA_ATA OBJ_set_brand,1L #define SN_set_brand_Diners "set-brand-Diners" #define NID_set_brand_Diners 637 #define OBJ_set_brand_Diners OBJ_set_brand,30L #define SN_set_brand_AmericanExpress "set-brand-AmericanExpress" #define NID_set_brand_AmericanExpress 638 #define OBJ_set_brand_AmericanExpress OBJ_set_brand,34L #define SN_set_brand_JCB "set-brand-JCB" #define NID_set_brand_JCB 639 #define OBJ_set_brand_JCB OBJ_set_brand,35L #define SN_set_brand_Visa "set-brand-Visa" #define NID_set_brand_Visa 640 #define OBJ_set_brand_Visa OBJ_set_brand,4L #define SN_set_brand_MasterCard "set-brand-MasterCard" #define NID_set_brand_MasterCard 641 #define OBJ_set_brand_MasterCard OBJ_set_brand,5L #define SN_set_brand_Novus "set-brand-Novus" #define NID_set_brand_Novus 642 #define OBJ_set_brand_Novus OBJ_set_brand,6011L #define SN_des_cdmf "DES-CDMF" #define LN_des_cdmf "des-cdmf" #define NID_des_cdmf 643 #define OBJ_des_cdmf OBJ_rsadsi,3L,10L #define SN_rsaOAEPEncryptionSET "rsaOAEPEncryptionSET" #define NID_rsaOAEPEncryptionSET 644 #define OBJ_rsaOAEPEncryptionSET OBJ_rsadsi,1L,1L,6L #define SN_ipsec3 "Oakley-EC2N-3" #define LN_ipsec3 "ipsec3" #define NID_ipsec3 749 #define SN_ipsec4 "Oakley-EC2N-4" #define LN_ipsec4 "ipsec4" #define NID_ipsec4 750 #define SN_whirlpool "whirlpool" #define NID_whirlpool 804 #define OBJ_whirlpool OBJ_iso,0L,10118L,3L,0L,55L #define SN_cryptopro "cryptopro" #define NID_cryptopro 805 #define OBJ_cryptopro OBJ_member_body,643L,2L,2L #define SN_cryptocom "cryptocom" #define NID_cryptocom 806 #define OBJ_cryptocom OBJ_member_body,643L,2L,9L #define SN_id_GostR3411_94_with_GostR3410_2001 "id-GostR3411-94-with-GostR3410-2001" #define LN_id_GostR3411_94_with_GostR3410_2001 "GOST R 34.11-94 with GOST R 34.10-2001" #define NID_id_GostR3411_94_with_GostR3410_2001 807 #define OBJ_id_GostR3411_94_with_GostR3410_2001 OBJ_cryptopro,3L #define SN_id_GostR3411_94_with_GostR3410_94 "id-GostR3411-94-with-GostR3410-94" #define LN_id_GostR3411_94_with_GostR3410_94 "GOST R 34.11-94 with GOST R 34.10-94" #define NID_id_GostR3411_94_with_GostR3410_94 808 #define OBJ_id_GostR3411_94_with_GostR3410_94 OBJ_cryptopro,4L #define SN_id_GostR3411_94 "md_gost94" #define LN_id_GostR3411_94 "GOST R 34.11-94" #define NID_id_GostR3411_94 809 #define OBJ_id_GostR3411_94 OBJ_cryptopro,9L #define SN_id_HMACGostR3411_94 "id-HMACGostR3411-94" #define LN_id_HMACGostR3411_94 "HMAC GOST 34.11-94" #define NID_id_HMACGostR3411_94 810 #define OBJ_id_HMACGostR3411_94 OBJ_cryptopro,10L #define SN_id_GostR3410_2001 "gost2001" #define LN_id_GostR3410_2001 "GOST R 34.10-2001" #define NID_id_GostR3410_2001 811 #define OBJ_id_GostR3410_2001 OBJ_cryptopro,19L #define SN_id_GostR3410_94 "gost94" #define LN_id_GostR3410_94 "GOST R 34.10-94" #define NID_id_GostR3410_94 812 #define OBJ_id_GostR3410_94 OBJ_cryptopro,20L #define SN_id_Gost28147_89 "gost89" #define LN_id_Gost28147_89 "GOST 28147-89" #define NID_id_Gost28147_89 813 #define OBJ_id_Gost28147_89 OBJ_cryptopro,21L #define SN_gost89_cnt "gost89-cnt" #define NID_gost89_cnt 814 #define SN_id_Gost28147_89_MAC "gost-mac" #define LN_id_Gost28147_89_MAC "GOST 28147-89 MAC" #define NID_id_Gost28147_89_MAC 815 #define OBJ_id_Gost28147_89_MAC OBJ_cryptopro,22L #define SN_id_GostR3411_94_prf "prf-gostr3411-94" #define LN_id_GostR3411_94_prf "GOST R 34.11-94 PRF" #define NID_id_GostR3411_94_prf 816 #define OBJ_id_GostR3411_94_prf OBJ_cryptopro,23L #define SN_id_GostR3410_2001DH "id-GostR3410-2001DH" #define LN_id_GostR3410_2001DH "GOST R 34.10-2001 DH" #define NID_id_GostR3410_2001DH 817 #define OBJ_id_GostR3410_2001DH OBJ_cryptopro,98L #define SN_id_GostR3410_94DH "id-GostR3410-94DH" #define LN_id_GostR3410_94DH "GOST R 34.10-94 DH" #define NID_id_GostR3410_94DH 818 #define OBJ_id_GostR3410_94DH OBJ_cryptopro,99L #define SN_id_Gost28147_89_CryptoPro_KeyMeshing "id-Gost28147-89-CryptoPro-KeyMeshing" #define NID_id_Gost28147_89_CryptoPro_KeyMeshing 819 #define OBJ_id_Gost28147_89_CryptoPro_KeyMeshing OBJ_cryptopro,14L,1L #define SN_id_Gost28147_89_None_KeyMeshing "id-Gost28147-89-None-KeyMeshing" #define NID_id_Gost28147_89_None_KeyMeshing 820 #define OBJ_id_Gost28147_89_None_KeyMeshing OBJ_cryptopro,14L,0L #define SN_id_GostR3411_94_TestParamSet "id-GostR3411-94-TestParamSet" #define NID_id_GostR3411_94_TestParamSet 821 #define OBJ_id_GostR3411_94_TestParamSet OBJ_cryptopro,30L,0L #define SN_id_GostR3411_94_CryptoProParamSet "id-GostR3411-94-CryptoProParamSet" #define NID_id_GostR3411_94_CryptoProParamSet 822 #define OBJ_id_GostR3411_94_CryptoProParamSet OBJ_cryptopro,30L,1L #define SN_id_Gost28147_89_TestParamSet "id-Gost28147-89-TestParamSet" #define NID_id_Gost28147_89_TestParamSet 823 #define OBJ_id_Gost28147_89_TestParamSet OBJ_cryptopro,31L,0L #define SN_id_Gost28147_89_CryptoPro_A_ParamSet "id-Gost28147-89-CryptoPro-A-ParamSet" #define NID_id_Gost28147_89_CryptoPro_A_ParamSet 824 #define OBJ_id_Gost28147_89_CryptoPro_A_ParamSet OBJ_cryptopro,31L,1L #define SN_id_Gost28147_89_CryptoPro_B_ParamSet "id-Gost28147-89-CryptoPro-B-ParamSet" #define NID_id_Gost28147_89_CryptoPro_B_ParamSet 825 #define OBJ_id_Gost28147_89_CryptoPro_B_ParamSet OBJ_cryptopro,31L,2L #define SN_id_Gost28147_89_CryptoPro_C_ParamSet "id-Gost28147-89-CryptoPro-C-ParamSet" #define NID_id_Gost28147_89_CryptoPro_C_ParamSet 826 #define OBJ_id_Gost28147_89_CryptoPro_C_ParamSet OBJ_cryptopro,31L,3L #define SN_id_Gost28147_89_CryptoPro_D_ParamSet "id-Gost28147-89-CryptoPro-D-ParamSet" #define NID_id_Gost28147_89_CryptoPro_D_ParamSet 827 #define OBJ_id_Gost28147_89_CryptoPro_D_ParamSet OBJ_cryptopro,31L,4L #define SN_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet" #define NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 828 #define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet OBJ_cryptopro,31L,5L #define SN_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet" #define NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 829 #define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet OBJ_cryptopro,31L,6L #define SN_id_Gost28147_89_CryptoPro_RIC_1_ParamSet "id-Gost28147-89-CryptoPro-RIC-1-ParamSet" #define NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 830 #define OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet OBJ_cryptopro,31L,7L #define SN_id_GostR3410_94_TestParamSet "id-GostR3410-94-TestParamSet" #define NID_id_GostR3410_94_TestParamSet 831 #define OBJ_id_GostR3410_94_TestParamSet OBJ_cryptopro,32L,0L #define SN_id_GostR3410_94_CryptoPro_A_ParamSet "id-GostR3410-94-CryptoPro-A-ParamSet" #define NID_id_GostR3410_94_CryptoPro_A_ParamSet 832 #define OBJ_id_GostR3410_94_CryptoPro_A_ParamSet OBJ_cryptopro,32L,2L #define SN_id_GostR3410_94_CryptoPro_B_ParamSet "id-GostR3410-94-CryptoPro-B-ParamSet" #define NID_id_GostR3410_94_CryptoPro_B_ParamSet 833 #define OBJ_id_GostR3410_94_CryptoPro_B_ParamSet OBJ_cryptopro,32L,3L #define SN_id_GostR3410_94_CryptoPro_C_ParamSet "id-GostR3410-94-CryptoPro-C-ParamSet" #define NID_id_GostR3410_94_CryptoPro_C_ParamSet 834 #define OBJ_id_GostR3410_94_CryptoPro_C_ParamSet OBJ_cryptopro,32L,4L #define SN_id_GostR3410_94_CryptoPro_D_ParamSet "id-GostR3410-94-CryptoPro-D-ParamSet" #define NID_id_GostR3410_94_CryptoPro_D_ParamSet 835 #define OBJ_id_GostR3410_94_CryptoPro_D_ParamSet OBJ_cryptopro,32L,5L #define SN_id_GostR3410_94_CryptoPro_XchA_ParamSet "id-GostR3410-94-CryptoPro-XchA-ParamSet" #define NID_id_GostR3410_94_CryptoPro_XchA_ParamSet 836 #define OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet OBJ_cryptopro,33L,1L #define SN_id_GostR3410_94_CryptoPro_XchB_ParamSet "id-GostR3410-94-CryptoPro-XchB-ParamSet" #define NID_id_GostR3410_94_CryptoPro_XchB_ParamSet 837 #define OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet OBJ_cryptopro,33L,2L #define SN_id_GostR3410_94_CryptoPro_XchC_ParamSet "id-GostR3410-94-CryptoPro-XchC-ParamSet" #define NID_id_GostR3410_94_CryptoPro_XchC_ParamSet 838 #define OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet OBJ_cryptopro,33L,3L #define SN_id_GostR3410_2001_TestParamSet "id-GostR3410-2001-TestParamSet" #define NID_id_GostR3410_2001_TestParamSet 839 #define OBJ_id_GostR3410_2001_TestParamSet OBJ_cryptopro,35L,0L #define SN_id_GostR3410_2001_CryptoPro_A_ParamSet "id-GostR3410-2001-CryptoPro-A-ParamSet" #define NID_id_GostR3410_2001_CryptoPro_A_ParamSet 840 #define OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet OBJ_cryptopro,35L,1L #define SN_id_GostR3410_2001_CryptoPro_B_ParamSet "id-GostR3410-2001-CryptoPro-B-ParamSet" #define NID_id_GostR3410_2001_CryptoPro_B_ParamSet 841 #define OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet OBJ_cryptopro,35L,2L #define SN_id_GostR3410_2001_CryptoPro_C_ParamSet "id-GostR3410-2001-CryptoPro-C-ParamSet" #define NID_id_GostR3410_2001_CryptoPro_C_ParamSet 842 #define OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet OBJ_cryptopro,35L,3L #define SN_id_GostR3410_2001_CryptoPro_XchA_ParamSet "id-GostR3410-2001-CryptoPro-XchA-ParamSet" #define NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet 843 #define OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet OBJ_cryptopro,36L,0L #define SN_id_GostR3410_2001_CryptoPro_XchB_ParamSet "id-GostR3410-2001-CryptoPro-XchB-ParamSet" #define NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet 844 #define OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet OBJ_cryptopro,36L,1L #define SN_id_GostR3410_94_a "id-GostR3410-94-a" #define NID_id_GostR3410_94_a 845 #define OBJ_id_GostR3410_94_a OBJ_id_GostR3410_94,1L #define SN_id_GostR3410_94_aBis "id-GostR3410-94-aBis" #define NID_id_GostR3410_94_aBis 846 #define OBJ_id_GostR3410_94_aBis OBJ_id_GostR3410_94,2L #define SN_id_GostR3410_94_b "id-GostR3410-94-b" #define NID_id_GostR3410_94_b 847 #define OBJ_id_GostR3410_94_b OBJ_id_GostR3410_94,3L #define SN_id_GostR3410_94_bBis "id-GostR3410-94-bBis" #define NID_id_GostR3410_94_bBis 848 #define OBJ_id_GostR3410_94_bBis OBJ_id_GostR3410_94,4L #define SN_id_Gost28147_89_cc "id-Gost28147-89-cc" #define LN_id_Gost28147_89_cc "GOST 28147-89 Cryptocom ParamSet" #define NID_id_Gost28147_89_cc 849 #define OBJ_id_Gost28147_89_cc OBJ_cryptocom,1L,6L,1L #define SN_id_GostR3410_94_cc "gost94cc" #define LN_id_GostR3410_94_cc "GOST 34.10-94 Cryptocom" #define NID_id_GostR3410_94_cc 850 #define OBJ_id_GostR3410_94_cc OBJ_cryptocom,1L,5L,3L #define SN_id_GostR3410_2001_cc "gost2001cc" #define LN_id_GostR3410_2001_cc "GOST 34.10-2001 Cryptocom" #define NID_id_GostR3410_2001_cc 851 #define OBJ_id_GostR3410_2001_cc OBJ_cryptocom,1L,5L,4L #define SN_id_GostR3411_94_with_GostR3410_94_cc "id-GostR3411-94-with-GostR3410-94-cc" #define LN_id_GostR3411_94_with_GostR3410_94_cc "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom" #define NID_id_GostR3411_94_with_GostR3410_94_cc 852 #define OBJ_id_GostR3411_94_with_GostR3410_94_cc OBJ_cryptocom,1L,3L,3L #define SN_id_GostR3411_94_with_GostR3410_2001_cc "id-GostR3411-94-with-GostR3410-2001-cc" #define LN_id_GostR3411_94_with_GostR3410_2001_cc "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom" #define NID_id_GostR3411_94_with_GostR3410_2001_cc 853 #define OBJ_id_GostR3411_94_with_GostR3410_2001_cc OBJ_cryptocom,1L,3L,4L #define SN_id_GostR3410_2001_ParamSet_cc "id-GostR3410-2001-ParamSet-cc" #define LN_id_GostR3410_2001_ParamSet_cc "GOST R 3410-2001 Parameter Set Cryptocom" #define NID_id_GostR3410_2001_ParamSet_cc 854 #define OBJ_id_GostR3410_2001_ParamSet_cc OBJ_cryptocom,1L,8L,1L #define SN_camellia_128_cbc "CAMELLIA-128-CBC" #define LN_camellia_128_cbc "camellia-128-cbc" #define NID_camellia_128_cbc 751 #define OBJ_camellia_128_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,2L #define SN_camellia_192_cbc "CAMELLIA-192-CBC" #define LN_camellia_192_cbc "camellia-192-cbc" #define NID_camellia_192_cbc 752 #define OBJ_camellia_192_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,3L #define SN_camellia_256_cbc "CAMELLIA-256-CBC" #define LN_camellia_256_cbc "camellia-256-cbc" #define NID_camellia_256_cbc 753 #define OBJ_camellia_256_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,4L #define SN_id_camellia128_wrap "id-camellia128-wrap" #define NID_id_camellia128_wrap 907 #define OBJ_id_camellia128_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,2L #define SN_id_camellia192_wrap "id-camellia192-wrap" #define NID_id_camellia192_wrap 908 #define OBJ_id_camellia192_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,3L #define SN_id_camellia256_wrap "id-camellia256-wrap" #define NID_id_camellia256_wrap 909 #define OBJ_id_camellia256_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,4L #define OBJ_ntt_ds 0L,3L,4401L,5L #define OBJ_camellia OBJ_ntt_ds,3L,1L,9L #define SN_camellia_128_ecb "CAMELLIA-128-ECB" #define LN_camellia_128_ecb "camellia-128-ecb" #define NID_camellia_128_ecb 754 #define OBJ_camellia_128_ecb OBJ_camellia,1L #define SN_camellia_128_ofb128 "CAMELLIA-128-OFB" #define LN_camellia_128_ofb128 "camellia-128-ofb" #define NID_camellia_128_ofb128 766 #define OBJ_camellia_128_ofb128 OBJ_camellia,3L #define SN_camellia_128_cfb128 "CAMELLIA-128-CFB" #define LN_camellia_128_cfb128 "camellia-128-cfb" #define NID_camellia_128_cfb128 757 #define OBJ_camellia_128_cfb128 OBJ_camellia,4L #define SN_camellia_192_ecb "CAMELLIA-192-ECB" #define LN_camellia_192_ecb "camellia-192-ecb" #define NID_camellia_192_ecb 755 #define OBJ_camellia_192_ecb OBJ_camellia,21L #define SN_camellia_192_ofb128 "CAMELLIA-192-OFB" #define LN_camellia_192_ofb128 "camellia-192-ofb" #define NID_camellia_192_ofb128 767 #define OBJ_camellia_192_ofb128 OBJ_camellia,23L #define SN_camellia_192_cfb128 "CAMELLIA-192-CFB" #define LN_camellia_192_cfb128 "camellia-192-cfb" #define NID_camellia_192_cfb128 758 #define OBJ_camellia_192_cfb128 OBJ_camellia,24L #define SN_camellia_256_ecb "CAMELLIA-256-ECB" #define LN_camellia_256_ecb "camellia-256-ecb" #define NID_camellia_256_ecb 756 #define OBJ_camellia_256_ecb OBJ_camellia,41L #define SN_camellia_256_ofb128 "CAMELLIA-256-OFB" #define LN_camellia_256_ofb128 "camellia-256-ofb" #define NID_camellia_256_ofb128 768 #define OBJ_camellia_256_ofb128 OBJ_camellia,43L #define SN_camellia_256_cfb128 "CAMELLIA-256-CFB" #define LN_camellia_256_cfb128 "camellia-256-cfb" #define NID_camellia_256_cfb128 759 #define OBJ_camellia_256_cfb128 OBJ_camellia,44L #define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1" #define LN_camellia_128_cfb1 "camellia-128-cfb1" #define NID_camellia_128_cfb1 760 #define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1" #define LN_camellia_192_cfb1 "camellia-192-cfb1" #define NID_camellia_192_cfb1 761 #define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1" #define LN_camellia_256_cfb1 "camellia-256-cfb1" #define NID_camellia_256_cfb1 762 #define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8" #define LN_camellia_128_cfb8 "camellia-128-cfb8" #define NID_camellia_128_cfb8 763 #define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8" #define LN_camellia_192_cfb8 "camellia-192-cfb8" #define NID_camellia_192_cfb8 764 #define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8" #define LN_camellia_256_cfb8 "camellia-256-cfb8" #define NID_camellia_256_cfb8 765 #define SN_kisa "KISA" #define LN_kisa "kisa" #define NID_kisa 773 #define OBJ_kisa OBJ_member_body,410L,200004L #define SN_seed_ecb "SEED-ECB" #define LN_seed_ecb "seed-ecb" #define NID_seed_ecb 776 #define OBJ_seed_ecb OBJ_kisa,1L,3L #define SN_seed_cbc "SEED-CBC" #define LN_seed_cbc "seed-cbc" #define NID_seed_cbc 777 #define OBJ_seed_cbc OBJ_kisa,1L,4L #define SN_seed_cfb128 "SEED-CFB" #define LN_seed_cfb128 "seed-cfb" #define NID_seed_cfb128 779 #define OBJ_seed_cfb128 OBJ_kisa,1L,5L #define SN_seed_ofb128 "SEED-OFB" #define LN_seed_ofb128 "seed-ofb" #define NID_seed_ofb128 778 #define OBJ_seed_ofb128 OBJ_kisa,1L,6L #define SN_hmac "HMAC" #define LN_hmac "hmac" #define NID_hmac 855 #define SN_cmac "CMAC" #define LN_cmac "cmac" #define NID_cmac 894 #define SN_rc4_hmac_md5 "RC4-HMAC-MD5" #define LN_rc4_hmac_md5 "rc4-hmac-md5" #define NID_rc4_hmac_md5 915 #define SN_aes_128_cbc_hmac_sha1 "AES-128-CBC-HMAC-SHA1" #define LN_aes_128_cbc_hmac_sha1 "aes-128-cbc-hmac-sha1" #define NID_aes_128_cbc_hmac_sha1 916 #define SN_aes_192_cbc_hmac_sha1 "AES-192-CBC-HMAC-SHA1" #define LN_aes_192_cbc_hmac_sha1 "aes-192-cbc-hmac-sha1" #define NID_aes_192_cbc_hmac_sha1 917 #define SN_aes_256_cbc_hmac_sha1 "AES-256-CBC-HMAC-SHA1" #define LN_aes_256_cbc_hmac_sha1 "aes-256-cbc-hmac-sha1" #define NID_aes_256_cbc_hmac_sha1 918 #define SN_aes_128_cbc_hmac_sha256 "AES-128-CBC-HMAC-SHA256" #define LN_aes_128_cbc_hmac_sha256 "aes-128-cbc-hmac-sha256" #define NID_aes_128_cbc_hmac_sha256 948 #define SN_aes_192_cbc_hmac_sha256 "AES-192-CBC-HMAC-SHA256" #define LN_aes_192_cbc_hmac_sha256 "aes-192-cbc-hmac-sha256" #define NID_aes_192_cbc_hmac_sha256 949 #define SN_aes_256_cbc_hmac_sha256 "AES-256-CBC-HMAC-SHA256" #define LN_aes_256_cbc_hmac_sha256 "aes-256-cbc-hmac-sha256" #define NID_aes_256_cbc_hmac_sha256 950 #define SN_dhpublicnumber "dhpublicnumber" #define LN_dhpublicnumber "X9.42 DH" #define NID_dhpublicnumber 920 #define OBJ_dhpublicnumber OBJ_ISO_US,10046L,2L,1L #define SN_brainpoolP160r1 "brainpoolP160r1" #define NID_brainpoolP160r1 921 #define OBJ_brainpoolP160r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,1L #define SN_brainpoolP160t1 "brainpoolP160t1" #define NID_brainpoolP160t1 922 #define OBJ_brainpoolP160t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,2L #define SN_brainpoolP192r1 "brainpoolP192r1" #define NID_brainpoolP192r1 923 #define OBJ_brainpoolP192r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,3L #define SN_brainpoolP192t1 "brainpoolP192t1" #define NID_brainpoolP192t1 924 #define OBJ_brainpoolP192t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,4L #define SN_brainpoolP224r1 "brainpoolP224r1" #define NID_brainpoolP224r1 925 #define OBJ_brainpoolP224r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,5L #define SN_brainpoolP224t1 "brainpoolP224t1" #define NID_brainpoolP224t1 926 #define OBJ_brainpoolP224t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,6L #define SN_brainpoolP256r1 "brainpoolP256r1" #define NID_brainpoolP256r1 927 #define OBJ_brainpoolP256r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,7L #define SN_brainpoolP256t1 "brainpoolP256t1" #define NID_brainpoolP256t1 928 #define OBJ_brainpoolP256t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,8L #define SN_brainpoolP320r1 "brainpoolP320r1" #define NID_brainpoolP320r1 929 #define OBJ_brainpoolP320r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,9L #define SN_brainpoolP320t1 "brainpoolP320t1" #define NID_brainpoolP320t1 930 #define OBJ_brainpoolP320t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,10L #define SN_brainpoolP384r1 "brainpoolP384r1" #define NID_brainpoolP384r1 931 #define OBJ_brainpoolP384r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,11L #define SN_brainpoolP384t1 "brainpoolP384t1" #define NID_brainpoolP384t1 932 #define OBJ_brainpoolP384t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,12L #define SN_brainpoolP512r1 "brainpoolP512r1" #define NID_brainpoolP512r1 933 #define OBJ_brainpoolP512r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,13L #define SN_brainpoolP512t1 "brainpoolP512t1" #define NID_brainpoolP512t1 934 #define OBJ_brainpoolP512t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,14L #define OBJ_x9_63_scheme 1L,3L,133L,16L,840L,63L,0L #define OBJ_secg_scheme OBJ_certicom_arc,1L #define SN_dhSinglePass_stdDH_sha1kdf_scheme "dhSinglePass-stdDH-sha1kdf-scheme" #define NID_dhSinglePass_stdDH_sha1kdf_scheme 936 #define OBJ_dhSinglePass_stdDH_sha1kdf_scheme OBJ_x9_63_scheme,2L #define SN_dhSinglePass_stdDH_sha224kdf_scheme "dhSinglePass-stdDH-sha224kdf-scheme" #define NID_dhSinglePass_stdDH_sha224kdf_scheme 937 #define OBJ_dhSinglePass_stdDH_sha224kdf_scheme OBJ_secg_scheme,11L,0L #define SN_dhSinglePass_stdDH_sha256kdf_scheme "dhSinglePass-stdDH-sha256kdf-scheme" #define NID_dhSinglePass_stdDH_sha256kdf_scheme 938 #define OBJ_dhSinglePass_stdDH_sha256kdf_scheme OBJ_secg_scheme,11L,1L #define SN_dhSinglePass_stdDH_sha384kdf_scheme "dhSinglePass-stdDH-sha384kdf-scheme" #define NID_dhSinglePass_stdDH_sha384kdf_scheme 939 #define OBJ_dhSinglePass_stdDH_sha384kdf_scheme OBJ_secg_scheme,11L,2L #define SN_dhSinglePass_stdDH_sha512kdf_scheme "dhSinglePass-stdDH-sha512kdf-scheme" #define NID_dhSinglePass_stdDH_sha512kdf_scheme 940 #define OBJ_dhSinglePass_stdDH_sha512kdf_scheme OBJ_secg_scheme,11L,3L #define SN_dhSinglePass_cofactorDH_sha1kdf_scheme "dhSinglePass-cofactorDH-sha1kdf-scheme" #define NID_dhSinglePass_cofactorDH_sha1kdf_scheme 941 #define OBJ_dhSinglePass_cofactorDH_sha1kdf_scheme OBJ_x9_63_scheme,3L #define SN_dhSinglePass_cofactorDH_sha224kdf_scheme "dhSinglePass-cofactorDH-sha224kdf-scheme" #define NID_dhSinglePass_cofactorDH_sha224kdf_scheme 942 #define OBJ_dhSinglePass_cofactorDH_sha224kdf_scheme OBJ_secg_scheme,14L,0L #define SN_dhSinglePass_cofactorDH_sha256kdf_scheme "dhSinglePass-cofactorDH-sha256kdf-scheme" #define NID_dhSinglePass_cofactorDH_sha256kdf_scheme 943 #define OBJ_dhSinglePass_cofactorDH_sha256kdf_scheme OBJ_secg_scheme,14L,1L #define SN_dhSinglePass_cofactorDH_sha384kdf_scheme "dhSinglePass-cofactorDH-sha384kdf-scheme" #define NID_dhSinglePass_cofactorDH_sha384kdf_scheme 944 #define OBJ_dhSinglePass_cofactorDH_sha384kdf_scheme OBJ_secg_scheme,14L,2L #define SN_dhSinglePass_cofactorDH_sha512kdf_scheme "dhSinglePass-cofactorDH-sha512kdf-scheme" #define NID_dhSinglePass_cofactorDH_sha512kdf_scheme 945 #define OBJ_dhSinglePass_cofactorDH_sha512kdf_scheme OBJ_secg_scheme,14L,3L #define SN_dh_std_kdf "dh-std-kdf" #define NID_dh_std_kdf 946 #define SN_dh_cofactor_kdf "dh-cofactor-kdf" #define NID_dh_cofactor_kdf 947 #define SN_ct_precert_scts "ct_precert_scts" #define LN_ct_precert_scts "CT Precertificate SCTs" #define NID_ct_precert_scts 951 #define OBJ_ct_precert_scts 1L,3L,6L,1L,4L,1L,11129L,2L,4L,2L #define SN_ct_precert_poison "ct_precert_poison" #define LN_ct_precert_poison "CT Precertificate Poison" #define NID_ct_precert_poison 952 #define OBJ_ct_precert_poison 1L,3L,6L,1L,4L,1L,11129L,2L,4L,3L #define SN_ct_precert_signer "ct_precert_signer" #define LN_ct_precert_signer "CT Precertificate Signer" #define NID_ct_precert_signer 953 #define OBJ_ct_precert_signer 1L,3L,6L,1L,4L,1L,11129L,2L,4L,4L #define SN_ct_cert_scts "ct_cert_scts" #define LN_ct_cert_scts "CT Certificate SCTs" #define NID_ct_cert_scts 954 #define OBJ_ct_cert_scts 1L,3L,6L,1L,4L,1L,11129L,2L,4L,5L #define SN_jurisdictionLocalityName "jurisdictionL" #define LN_jurisdictionLocalityName "jurisdictionLocalityName" #define NID_jurisdictionLocalityName 955 #define OBJ_jurisdictionLocalityName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,1L #define SN_jurisdictionStateOrProvinceName "jurisdictionST" #define LN_jurisdictionStateOrProvinceName "jurisdictionStateOrProvinceName" #define NID_jurisdictionStateOrProvinceName 956 #define OBJ_jurisdictionStateOrProvinceName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,2L #define SN_jurisdictionCountryName "jurisdictionC" #define LN_jurisdictionCountryName "jurisdictionCountryName" #define NID_jurisdictionCountryName 957 #define OBJ_jurisdictionCountryName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,3L ================================================ FILE: third_party/include/openssl/objects.h ================================================ /* crypto/objects/objects.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_OBJECTS_H # define HEADER_OBJECTS_H # define USE_OBJ_MAC # ifdef USE_OBJ_MAC # include # else # define SN_undef "UNDEF" # define LN_undef "undefined" # define NID_undef 0 # define OBJ_undef 0L # define SN_Algorithm "Algorithm" # define LN_algorithm "algorithm" # define NID_algorithm 38 # define OBJ_algorithm 1L,3L,14L,3L,2L # define LN_rsadsi "rsadsi" # define NID_rsadsi 1 # define OBJ_rsadsi 1L,2L,840L,113549L # define LN_pkcs "pkcs" # define NID_pkcs 2 # define OBJ_pkcs OBJ_rsadsi,1L # define SN_md2 "MD2" # define LN_md2 "md2" # define NID_md2 3 # define OBJ_md2 OBJ_rsadsi,2L,2L # define SN_md5 "MD5" # define LN_md5 "md5" # define NID_md5 4 # define OBJ_md5 OBJ_rsadsi,2L,5L # define SN_rc4 "RC4" # define LN_rc4 "rc4" # define NID_rc4 5 # define OBJ_rc4 OBJ_rsadsi,3L,4L # define LN_rsaEncryption "rsaEncryption" # define NID_rsaEncryption 6 # define OBJ_rsaEncryption OBJ_pkcs,1L,1L # define SN_md2WithRSAEncryption "RSA-MD2" # define LN_md2WithRSAEncryption "md2WithRSAEncryption" # define NID_md2WithRSAEncryption 7 # define OBJ_md2WithRSAEncryption OBJ_pkcs,1L,2L # define SN_md5WithRSAEncryption "RSA-MD5" # define LN_md5WithRSAEncryption "md5WithRSAEncryption" # define NID_md5WithRSAEncryption 8 # define OBJ_md5WithRSAEncryption OBJ_pkcs,1L,4L # define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES" # define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC" # define NID_pbeWithMD2AndDES_CBC 9 # define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs,5L,1L # define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES" # define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC" # define NID_pbeWithMD5AndDES_CBC 10 # define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs,5L,3L # define LN_X500 "X500" # define NID_X500 11 # define OBJ_X500 2L,5L # define LN_X509 "X509" # define NID_X509 12 # define OBJ_X509 OBJ_X500,4L # define SN_commonName "CN" # define LN_commonName "commonName" # define NID_commonName 13 # define OBJ_commonName OBJ_X509,3L # define SN_countryName "C" # define LN_countryName "countryName" # define NID_countryName 14 # define OBJ_countryName OBJ_X509,6L # define SN_localityName "L" # define LN_localityName "localityName" # define NID_localityName 15 # define OBJ_localityName OBJ_X509,7L /* Postal Address? PA */ /* should be "ST" (rfc1327) but MS uses 'S' */ # define SN_stateOrProvinceName "ST" # define LN_stateOrProvinceName "stateOrProvinceName" # define NID_stateOrProvinceName 16 # define OBJ_stateOrProvinceName OBJ_X509,8L # define SN_organizationName "O" # define LN_organizationName "organizationName" # define NID_organizationName 17 # define OBJ_organizationName OBJ_X509,10L # define SN_organizationalUnitName "OU" # define LN_organizationalUnitName "organizationalUnitName" # define NID_organizationalUnitName 18 # define OBJ_organizationalUnitName OBJ_X509,11L # define SN_rsa "RSA" # define LN_rsa "rsa" # define NID_rsa 19 # define OBJ_rsa OBJ_X500,8L,1L,1L # define LN_pkcs7 "pkcs7" # define NID_pkcs7 20 # define OBJ_pkcs7 OBJ_pkcs,7L # define LN_pkcs7_data "pkcs7-data" # define NID_pkcs7_data 21 # define OBJ_pkcs7_data OBJ_pkcs7,1L # define LN_pkcs7_signed "pkcs7-signedData" # define NID_pkcs7_signed 22 # define OBJ_pkcs7_signed OBJ_pkcs7,2L # define LN_pkcs7_enveloped "pkcs7-envelopedData" # define NID_pkcs7_enveloped 23 # define OBJ_pkcs7_enveloped OBJ_pkcs7,3L # define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData" # define NID_pkcs7_signedAndEnveloped 24 # define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L # define LN_pkcs7_digest "pkcs7-digestData" # define NID_pkcs7_digest 25 # define OBJ_pkcs7_digest OBJ_pkcs7,5L # define LN_pkcs7_encrypted "pkcs7-encryptedData" # define NID_pkcs7_encrypted 26 # define OBJ_pkcs7_encrypted OBJ_pkcs7,6L # define LN_pkcs3 "pkcs3" # define NID_pkcs3 27 # define OBJ_pkcs3 OBJ_pkcs,3L # define LN_dhKeyAgreement "dhKeyAgreement" # define NID_dhKeyAgreement 28 # define OBJ_dhKeyAgreement OBJ_pkcs3,1L # define SN_des_ecb "DES-ECB" # define LN_des_ecb "des-ecb" # define NID_des_ecb 29 # define OBJ_des_ecb OBJ_algorithm,6L # define SN_des_cfb64 "DES-CFB" # define LN_des_cfb64 "des-cfb" # define NID_des_cfb64 30 /* IV + num */ # define OBJ_des_cfb64 OBJ_algorithm,9L # define SN_des_cbc "DES-CBC" # define LN_des_cbc "des-cbc" # define NID_des_cbc 31 /* IV */ # define OBJ_des_cbc OBJ_algorithm,7L # define SN_des_ede "DES-EDE" # define LN_des_ede "des-ede" # define NID_des_ede 32 /* ?? */ # define OBJ_des_ede OBJ_algorithm,17L # define SN_des_ede3 "DES-EDE3" # define LN_des_ede3 "des-ede3" # define NID_des_ede3 33 # define SN_idea_cbc "IDEA-CBC" # define LN_idea_cbc "idea-cbc" # define NID_idea_cbc 34 # define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L # define SN_idea_cfb64 "IDEA-CFB" # define LN_idea_cfb64 "idea-cfb" # define NID_idea_cfb64 35 # define SN_idea_ecb "IDEA-ECB" # define LN_idea_ecb "idea-ecb" # define NID_idea_ecb 36 # define SN_rc2_cbc "RC2-CBC" # define LN_rc2_cbc "rc2-cbc" # define NID_rc2_cbc 37 # define OBJ_rc2_cbc OBJ_rsadsi,3L,2L # define SN_rc2_ecb "RC2-ECB" # define LN_rc2_ecb "rc2-ecb" # define NID_rc2_ecb 38 # define SN_rc2_cfb64 "RC2-CFB" # define LN_rc2_cfb64 "rc2-cfb" # define NID_rc2_cfb64 39 # define SN_rc2_ofb64 "RC2-OFB" # define LN_rc2_ofb64 "rc2-ofb" # define NID_rc2_ofb64 40 # define SN_sha "SHA" # define LN_sha "sha" # define NID_sha 41 # define OBJ_sha OBJ_algorithm,18L # define SN_shaWithRSAEncryption "RSA-SHA" # define LN_shaWithRSAEncryption "shaWithRSAEncryption" # define NID_shaWithRSAEncryption 42 # define OBJ_shaWithRSAEncryption OBJ_algorithm,15L # define SN_des_ede_cbc "DES-EDE-CBC" # define LN_des_ede_cbc "des-ede-cbc" # define NID_des_ede_cbc 43 # define SN_des_ede3_cbc "DES-EDE3-CBC" # define LN_des_ede3_cbc "des-ede3-cbc" # define NID_des_ede3_cbc 44 # define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L # define SN_des_ofb64 "DES-OFB" # define LN_des_ofb64 "des-ofb" # define NID_des_ofb64 45 # define OBJ_des_ofb64 OBJ_algorithm,8L # define SN_idea_ofb64 "IDEA-OFB" # define LN_idea_ofb64 "idea-ofb" # define NID_idea_ofb64 46 # define LN_pkcs9 "pkcs9" # define NID_pkcs9 47 # define OBJ_pkcs9 OBJ_pkcs,9L # define SN_pkcs9_emailAddress "Email" # define LN_pkcs9_emailAddress "emailAddress" # define NID_pkcs9_emailAddress 48 # define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L # define LN_pkcs9_unstructuredName "unstructuredName" # define NID_pkcs9_unstructuredName 49 # define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L # define LN_pkcs9_contentType "contentType" # define NID_pkcs9_contentType 50 # define OBJ_pkcs9_contentType OBJ_pkcs9,3L # define LN_pkcs9_messageDigest "messageDigest" # define NID_pkcs9_messageDigest 51 # define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L # define LN_pkcs9_signingTime "signingTime" # define NID_pkcs9_signingTime 52 # define OBJ_pkcs9_signingTime OBJ_pkcs9,5L # define LN_pkcs9_countersignature "countersignature" # define NID_pkcs9_countersignature 53 # define OBJ_pkcs9_countersignature OBJ_pkcs9,6L # define LN_pkcs9_challengePassword "challengePassword" # define NID_pkcs9_challengePassword 54 # define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L # define LN_pkcs9_unstructuredAddress "unstructuredAddress" # define NID_pkcs9_unstructuredAddress 55 # define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L # define LN_pkcs9_extCertAttributes "extendedCertificateAttributes" # define NID_pkcs9_extCertAttributes 56 # define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L # define SN_netscape "Netscape" # define LN_netscape "Netscape Communications Corp." # define NID_netscape 57 # define OBJ_netscape 2L,16L,840L,1L,113730L # define SN_netscape_cert_extension "nsCertExt" # define LN_netscape_cert_extension "Netscape Certificate Extension" # define NID_netscape_cert_extension 58 # define OBJ_netscape_cert_extension OBJ_netscape,1L # define SN_netscape_data_type "nsDataType" # define LN_netscape_data_type "Netscape Data Type" # define NID_netscape_data_type 59 # define OBJ_netscape_data_type OBJ_netscape,2L # define SN_des_ede_cfb64 "DES-EDE-CFB" # define LN_des_ede_cfb64 "des-ede-cfb" # define NID_des_ede_cfb64 60 # define SN_des_ede3_cfb64 "DES-EDE3-CFB" # define LN_des_ede3_cfb64 "des-ede3-cfb" # define NID_des_ede3_cfb64 61 # define SN_des_ede_ofb64 "DES-EDE-OFB" # define LN_des_ede_ofb64 "des-ede-ofb" # define NID_des_ede_ofb64 62 # define SN_des_ede3_ofb64 "DES-EDE3-OFB" # define LN_des_ede3_ofb64 "des-ede3-ofb" # define NID_des_ede3_ofb64 63 /* I'm not sure about the object ID */ # define SN_sha1 "SHA1" # define LN_sha1 "sha1" # define NID_sha1 64 # define OBJ_sha1 OBJ_algorithm,26L /* 28 Jun 1996 - eay */ /* #define OBJ_sha1 1L,3L,14L,2L,26L,05L <- wrong */ # define SN_sha1WithRSAEncryption "RSA-SHA1" # define LN_sha1WithRSAEncryption "sha1WithRSAEncryption" # define NID_sha1WithRSAEncryption 65 # define OBJ_sha1WithRSAEncryption OBJ_pkcs,1L,5L # define SN_dsaWithSHA "DSA-SHA" # define LN_dsaWithSHA "dsaWithSHA" # define NID_dsaWithSHA 66 # define OBJ_dsaWithSHA OBJ_algorithm,13L # define SN_dsa_2 "DSA-old" # define LN_dsa_2 "dsaEncryption-old" # define NID_dsa_2 67 # define OBJ_dsa_2 OBJ_algorithm,12L /* proposed by microsoft to RSA */ # define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64" # define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC" # define NID_pbeWithSHA1AndRC2_CBC 68 # define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs,5L,11L /* * proposed by microsoft to RSA as pbeWithSHA1AndRC4: it is now defined * explicitly in PKCS#5 v2.0 as id-PBKDF2 which is something completely * different. */ # define LN_id_pbkdf2 "PBKDF2" # define NID_id_pbkdf2 69 # define OBJ_id_pbkdf2 OBJ_pkcs,5L,12L # define SN_dsaWithSHA1_2 "DSA-SHA1-old" # define LN_dsaWithSHA1_2 "dsaWithSHA1-old" # define NID_dsaWithSHA1_2 70 /* Got this one from 'sdn706r20.pdf' which is actually an NSA document :-) */ # define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L # define SN_netscape_cert_type "nsCertType" # define LN_netscape_cert_type "Netscape Cert Type" # define NID_netscape_cert_type 71 # define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L # define SN_netscape_base_url "nsBaseUrl" # define LN_netscape_base_url "Netscape Base Url" # define NID_netscape_base_url 72 # define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L # define SN_netscape_revocation_url "nsRevocationUrl" # define LN_netscape_revocation_url "Netscape Revocation Url" # define NID_netscape_revocation_url 73 # define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L # define SN_netscape_ca_revocation_url "nsCaRevocationUrl" # define LN_netscape_ca_revocation_url "Netscape CA Revocation Url" # define NID_netscape_ca_revocation_url 74 # define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L # define SN_netscape_renewal_url "nsRenewalUrl" # define LN_netscape_renewal_url "Netscape Renewal Url" # define NID_netscape_renewal_url 75 # define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L # define SN_netscape_ca_policy_url "nsCaPolicyUrl" # define LN_netscape_ca_policy_url "Netscape CA Policy Url" # define NID_netscape_ca_policy_url 76 # define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L # define SN_netscape_ssl_server_name "nsSslServerName" # define LN_netscape_ssl_server_name "Netscape SSL Server Name" # define NID_netscape_ssl_server_name 77 # define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L # define SN_netscape_comment "nsComment" # define LN_netscape_comment "Netscape Comment" # define NID_netscape_comment 78 # define OBJ_netscape_comment OBJ_netscape_cert_extension,13L # define SN_netscape_cert_sequence "nsCertSequence" # define LN_netscape_cert_sequence "Netscape Certificate Sequence" # define NID_netscape_cert_sequence 79 # define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L # define SN_desx_cbc "DESX-CBC" # define LN_desx_cbc "desx-cbc" # define NID_desx_cbc 80 # define SN_id_ce "id-ce" # define NID_id_ce 81 # define OBJ_id_ce 2L,5L,29L # define SN_subject_key_identifier "subjectKeyIdentifier" # define LN_subject_key_identifier "X509v3 Subject Key Identifier" # define NID_subject_key_identifier 82 # define OBJ_subject_key_identifier OBJ_id_ce,14L # define SN_key_usage "keyUsage" # define LN_key_usage "X509v3 Key Usage" # define NID_key_usage 83 # define OBJ_key_usage OBJ_id_ce,15L # define SN_private_key_usage_period "privateKeyUsagePeriod" # define LN_private_key_usage_period "X509v3 Private Key Usage Period" # define NID_private_key_usage_period 84 # define OBJ_private_key_usage_period OBJ_id_ce,16L # define SN_subject_alt_name "subjectAltName" # define LN_subject_alt_name "X509v3 Subject Alternative Name" # define NID_subject_alt_name 85 # define OBJ_subject_alt_name OBJ_id_ce,17L # define SN_issuer_alt_name "issuerAltName" # define LN_issuer_alt_name "X509v3 Issuer Alternative Name" # define NID_issuer_alt_name 86 # define OBJ_issuer_alt_name OBJ_id_ce,18L # define SN_basic_constraints "basicConstraints" # define LN_basic_constraints "X509v3 Basic Constraints" # define NID_basic_constraints 87 # define OBJ_basic_constraints OBJ_id_ce,19L # define SN_crl_number "crlNumber" # define LN_crl_number "X509v3 CRL Number" # define NID_crl_number 88 # define OBJ_crl_number OBJ_id_ce,20L # define SN_certificate_policies "certificatePolicies" # define LN_certificate_policies "X509v3 Certificate Policies" # define NID_certificate_policies 89 # define OBJ_certificate_policies OBJ_id_ce,32L # define SN_authority_key_identifier "authorityKeyIdentifier" # define LN_authority_key_identifier "X509v3 Authority Key Identifier" # define NID_authority_key_identifier 90 # define OBJ_authority_key_identifier OBJ_id_ce,35L # define SN_bf_cbc "BF-CBC" # define LN_bf_cbc "bf-cbc" # define NID_bf_cbc 91 # define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L # define SN_bf_ecb "BF-ECB" # define LN_bf_ecb "bf-ecb" # define NID_bf_ecb 92 # define SN_bf_cfb64 "BF-CFB" # define LN_bf_cfb64 "bf-cfb" # define NID_bf_cfb64 93 # define SN_bf_ofb64 "BF-OFB" # define LN_bf_ofb64 "bf-ofb" # define NID_bf_ofb64 94 # define SN_mdc2 "MDC2" # define LN_mdc2 "mdc2" # define NID_mdc2 95 # define OBJ_mdc2 2L,5L,8L,3L,101L /* An alternative? 1L,3L,14L,3L,2L,19L */ # define SN_mdc2WithRSA "RSA-MDC2" # define LN_mdc2WithRSA "mdc2withRSA" # define NID_mdc2WithRSA 96 # define OBJ_mdc2WithRSA 2L,5L,8L,3L,100L # define SN_rc4_40 "RC4-40" # define LN_rc4_40 "rc4-40" # define NID_rc4_40 97 # define SN_rc2_40_cbc "RC2-40-CBC" # define LN_rc2_40_cbc "rc2-40-cbc" # define NID_rc2_40_cbc 98 # define SN_givenName "G" # define LN_givenName "givenName" # define NID_givenName 99 # define OBJ_givenName OBJ_X509,42L # define SN_surname "S" # define LN_surname "surname" # define NID_surname 100 # define OBJ_surname OBJ_X509,4L # define SN_initials "I" # define LN_initials "initials" # define NID_initials 101 # define OBJ_initials OBJ_X509,43L # define SN_uniqueIdentifier "UID" # define LN_uniqueIdentifier "uniqueIdentifier" # define NID_uniqueIdentifier 102 # define OBJ_uniqueIdentifier OBJ_X509,45L # define SN_crl_distribution_points "crlDistributionPoints" # define LN_crl_distribution_points "X509v3 CRL Distribution Points" # define NID_crl_distribution_points 103 # define OBJ_crl_distribution_points OBJ_id_ce,31L # define SN_md5WithRSA "RSA-NP-MD5" # define LN_md5WithRSA "md5WithRSA" # define NID_md5WithRSA 104 # define OBJ_md5WithRSA OBJ_algorithm,3L # define SN_serialNumber "SN" # define LN_serialNumber "serialNumber" # define NID_serialNumber 105 # define OBJ_serialNumber OBJ_X509,5L # define SN_title "T" # define LN_title "title" # define NID_title 106 # define OBJ_title OBJ_X509,12L # define SN_description "D" # define LN_description "description" # define NID_description 107 # define OBJ_description OBJ_X509,13L /* CAST5 is CAST-128, I'm just sticking with the documentation */ # define SN_cast5_cbc "CAST5-CBC" # define LN_cast5_cbc "cast5-cbc" # define NID_cast5_cbc 108 # define OBJ_cast5_cbc 1L,2L,840L,113533L,7L,66L,10L # define SN_cast5_ecb "CAST5-ECB" # define LN_cast5_ecb "cast5-ecb" # define NID_cast5_ecb 109 # define SN_cast5_cfb64 "CAST5-CFB" # define LN_cast5_cfb64 "cast5-cfb" # define NID_cast5_cfb64 110 # define SN_cast5_ofb64 "CAST5-OFB" # define LN_cast5_ofb64 "cast5-ofb" # define NID_cast5_ofb64 111 # define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC" # define NID_pbeWithMD5AndCast5_CBC 112 # define OBJ_pbeWithMD5AndCast5_CBC 1L,2L,840L,113533L,7L,66L,12L /*- * This is one sun will soon be using :-( * id-dsa-with-sha1 ID ::= { * iso(1) member-body(2) us(840) x9-57 (10040) x9cm(4) 3 } */ # define SN_dsaWithSHA1 "DSA-SHA1" # define LN_dsaWithSHA1 "dsaWithSHA1" # define NID_dsaWithSHA1 113 # define OBJ_dsaWithSHA1 1L,2L,840L,10040L,4L,3L # define NID_md5_sha1 114 # define SN_md5_sha1 "MD5-SHA1" # define LN_md5_sha1 "md5-sha1" # define SN_sha1WithRSA "RSA-SHA1-2" # define LN_sha1WithRSA "sha1WithRSA" # define NID_sha1WithRSA 115 # define OBJ_sha1WithRSA OBJ_algorithm,29L # define SN_dsa "DSA" # define LN_dsa "dsaEncryption" # define NID_dsa 116 # define OBJ_dsa 1L,2L,840L,10040L,4L,1L # define SN_ripemd160 "RIPEMD160" # define LN_ripemd160 "ripemd160" # define NID_ripemd160 117 # define OBJ_ripemd160 1L,3L,36L,3L,2L,1L /* * The name should actually be rsaSignatureWithripemd160, but I'm going to * continue using the convention I'm using with the other ciphers */ # define SN_ripemd160WithRSA "RSA-RIPEMD160" # define LN_ripemd160WithRSA "ripemd160WithRSA" # define NID_ripemd160WithRSA 119 # define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L /*- * Taken from rfc2040 * RC5_CBC_Parameters ::= SEQUENCE { * version INTEGER (v1_0(16)), * rounds INTEGER (8..127), * blockSizeInBits INTEGER (64, 128), * iv OCTET STRING OPTIONAL * } */ # define SN_rc5_cbc "RC5-CBC" # define LN_rc5_cbc "rc5-cbc" # define NID_rc5_cbc 120 # define OBJ_rc5_cbc OBJ_rsadsi,3L,8L # define SN_rc5_ecb "RC5-ECB" # define LN_rc5_ecb "rc5-ecb" # define NID_rc5_ecb 121 # define SN_rc5_cfb64 "RC5-CFB" # define LN_rc5_cfb64 "rc5-cfb" # define NID_rc5_cfb64 122 # define SN_rc5_ofb64 "RC5-OFB" # define LN_rc5_ofb64 "rc5-ofb" # define NID_rc5_ofb64 123 # define SN_rle_compression "RLE" # define LN_rle_compression "run length compression" # define NID_rle_compression 124 # define OBJ_rle_compression 1L,1L,1L,1L,666L,1L # define SN_zlib_compression "ZLIB" # define LN_zlib_compression "zlib compression" # define NID_zlib_compression 125 # define OBJ_zlib_compression 1L,1L,1L,1L,666L,2L # define SN_ext_key_usage "extendedKeyUsage" # define LN_ext_key_usage "X509v3 Extended Key Usage" # define NID_ext_key_usage 126 # define OBJ_ext_key_usage OBJ_id_ce,37 # define SN_id_pkix "PKIX" # define NID_id_pkix 127 # define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L # define SN_id_kp "id-kp" # define NID_id_kp 128 # define OBJ_id_kp OBJ_id_pkix,3L /* PKIX extended key usage OIDs */ # define SN_server_auth "serverAuth" # define LN_server_auth "TLS Web Server Authentication" # define NID_server_auth 129 # define OBJ_server_auth OBJ_id_kp,1L # define SN_client_auth "clientAuth" # define LN_client_auth "TLS Web Client Authentication" # define NID_client_auth 130 # define OBJ_client_auth OBJ_id_kp,2L # define SN_code_sign "codeSigning" # define LN_code_sign "Code Signing" # define NID_code_sign 131 # define OBJ_code_sign OBJ_id_kp,3L # define SN_email_protect "emailProtection" # define LN_email_protect "E-mail Protection" # define NID_email_protect 132 # define OBJ_email_protect OBJ_id_kp,4L # define SN_time_stamp "timeStamping" # define LN_time_stamp "Time Stamping" # define NID_time_stamp 133 # define OBJ_time_stamp OBJ_id_kp,8L /* Additional extended key usage OIDs: Microsoft */ # define SN_ms_code_ind "msCodeInd" # define LN_ms_code_ind "Microsoft Individual Code Signing" # define NID_ms_code_ind 134 # define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L # define SN_ms_code_com "msCodeCom" # define LN_ms_code_com "Microsoft Commercial Code Signing" # define NID_ms_code_com 135 # define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L # define SN_ms_ctl_sign "msCTLSign" # define LN_ms_ctl_sign "Microsoft Trust List Signing" # define NID_ms_ctl_sign 136 # define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L # define SN_ms_sgc "msSGC" # define LN_ms_sgc "Microsoft Server Gated Crypto" # define NID_ms_sgc 137 # define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L # define SN_ms_efs "msEFS" # define LN_ms_efs "Microsoft Encrypted File System" # define NID_ms_efs 138 # define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L /* Additional usage: Netscape */ # define SN_ns_sgc "nsSGC" # define LN_ns_sgc "Netscape Server Gated Crypto" # define NID_ns_sgc 139 # define OBJ_ns_sgc OBJ_netscape,4L,1L # define SN_delta_crl "deltaCRL" # define LN_delta_crl "X509v3 Delta CRL Indicator" # define NID_delta_crl 140 # define OBJ_delta_crl OBJ_id_ce,27L # define SN_crl_reason "CRLReason" # define LN_crl_reason "CRL Reason Code" # define NID_crl_reason 141 # define OBJ_crl_reason OBJ_id_ce,21L # define SN_invalidity_date "invalidityDate" # define LN_invalidity_date "Invalidity Date" # define NID_invalidity_date 142 # define OBJ_invalidity_date OBJ_id_ce,24L # define SN_sxnet "SXNetID" # define LN_sxnet "Strong Extranet ID" # define NID_sxnet 143 # define OBJ_sxnet 1L,3L,101L,1L,4L,1L /* PKCS12 and related OBJECT IDENTIFIERS */ # define OBJ_pkcs12 OBJ_pkcs,12L # define OBJ_pkcs12_pbeids OBJ_pkcs12, 1 # define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128" # define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4" # define NID_pbe_WithSHA1And128BitRC4 144 # define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids, 1L # define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40" # define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4" # define NID_pbe_WithSHA1And40BitRC4 145 # define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids, 2L # define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES" # define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC" # define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146 # define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids, 3L # define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES" # define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC" # define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147 # define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids, 4L # define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128" # define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC" # define NID_pbe_WithSHA1And128BitRC2_CBC 148 # define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids, 5L # define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40" # define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC" # define NID_pbe_WithSHA1And40BitRC2_CBC 149 # define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids, 6L # define OBJ_pkcs12_Version1 OBJ_pkcs12, 10L # define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1, 1L # define LN_keyBag "keyBag" # define NID_keyBag 150 # define OBJ_keyBag OBJ_pkcs12_BagIds, 1L # define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag" # define NID_pkcs8ShroudedKeyBag 151 # define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds, 2L # define LN_certBag "certBag" # define NID_certBag 152 # define OBJ_certBag OBJ_pkcs12_BagIds, 3L # define LN_crlBag "crlBag" # define NID_crlBag 153 # define OBJ_crlBag OBJ_pkcs12_BagIds, 4L # define LN_secretBag "secretBag" # define NID_secretBag 154 # define OBJ_secretBag OBJ_pkcs12_BagIds, 5L # define LN_safeContentsBag "safeContentsBag" # define NID_safeContentsBag 155 # define OBJ_safeContentsBag OBJ_pkcs12_BagIds, 6L # define LN_friendlyName "friendlyName" # define NID_friendlyName 156 # define OBJ_friendlyName OBJ_pkcs9, 20L # define LN_localKeyID "localKeyID" # define NID_localKeyID 157 # define OBJ_localKeyID OBJ_pkcs9, 21L # define OBJ_certTypes OBJ_pkcs9, 22L # define LN_x509Certificate "x509Certificate" # define NID_x509Certificate 158 # define OBJ_x509Certificate OBJ_certTypes, 1L # define LN_sdsiCertificate "sdsiCertificate" # define NID_sdsiCertificate 159 # define OBJ_sdsiCertificate OBJ_certTypes, 2L # define OBJ_crlTypes OBJ_pkcs9, 23L # define LN_x509Crl "x509Crl" # define NID_x509Crl 160 # define OBJ_x509Crl OBJ_crlTypes, 1L /* PKCS#5 v2 OIDs */ # define LN_pbes2 "PBES2" # define NID_pbes2 161 # define OBJ_pbes2 OBJ_pkcs,5L,13L # define LN_pbmac1 "PBMAC1" # define NID_pbmac1 162 # define OBJ_pbmac1 OBJ_pkcs,5L,14L # define LN_hmacWithSHA1 "hmacWithSHA1" # define NID_hmacWithSHA1 163 # define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L /* Policy Qualifier Ids */ # define LN_id_qt_cps "Policy Qualifier CPS" # define SN_id_qt_cps "id-qt-cps" # define NID_id_qt_cps 164 # define OBJ_id_qt_cps OBJ_id_pkix,2L,1L # define LN_id_qt_unotice "Policy Qualifier User Notice" # define SN_id_qt_unotice "id-qt-unotice" # define NID_id_qt_unotice 165 # define OBJ_id_qt_unotice OBJ_id_pkix,2L,2L # define SN_rc2_64_cbc "RC2-64-CBC" # define LN_rc2_64_cbc "rc2-64-cbc" # define NID_rc2_64_cbc 166 # define SN_SMIMECapabilities "SMIME-CAPS" # define LN_SMIMECapabilities "S/MIME Capabilities" # define NID_SMIMECapabilities 167 # define OBJ_SMIMECapabilities OBJ_pkcs9,15L # define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64" # define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC" # define NID_pbeWithMD2AndRC2_CBC 168 # define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs,5L,4L # define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64" # define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC" # define NID_pbeWithMD5AndRC2_CBC 169 # define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs,5L,6L # define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES" # define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC" # define NID_pbeWithSHA1AndDES_CBC 170 # define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs,5L,10L /* Extension request OIDs */ # define LN_ms_ext_req "Microsoft Extension Request" # define SN_ms_ext_req "msExtReq" # define NID_ms_ext_req 171 # define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L # define LN_ext_req "Extension Request" # define SN_ext_req "extReq" # define NID_ext_req 172 # define OBJ_ext_req OBJ_pkcs9,14L # define SN_name "name" # define LN_name "name" # define NID_name 173 # define OBJ_name OBJ_X509,41L # define SN_dnQualifier "dnQualifier" # define LN_dnQualifier "dnQualifier" # define NID_dnQualifier 174 # define OBJ_dnQualifier OBJ_X509,46L # define SN_id_pe "id-pe" # define NID_id_pe 175 # define OBJ_id_pe OBJ_id_pkix,1L # define SN_id_ad "id-ad" # define NID_id_ad 176 # define OBJ_id_ad OBJ_id_pkix,48L # define SN_info_access "authorityInfoAccess" # define LN_info_access "Authority Information Access" # define NID_info_access 177 # define OBJ_info_access OBJ_id_pe,1L # define SN_ad_OCSP "OCSP" # define LN_ad_OCSP "OCSP" # define NID_ad_OCSP 178 # define OBJ_ad_OCSP OBJ_id_ad,1L # define SN_ad_ca_issuers "caIssuers" # define LN_ad_ca_issuers "CA Issuers" # define NID_ad_ca_issuers 179 # define OBJ_ad_ca_issuers OBJ_id_ad,2L # define SN_OCSP_sign "OCSPSigning" # define LN_OCSP_sign "OCSP Signing" # define NID_OCSP_sign 180 # define OBJ_OCSP_sign OBJ_id_kp,9L # endif /* USE_OBJ_MAC */ # include # include # define OBJ_NAME_TYPE_UNDEF 0x00 # define OBJ_NAME_TYPE_MD_METH 0x01 # define OBJ_NAME_TYPE_CIPHER_METH 0x02 # define OBJ_NAME_TYPE_PKEY_METH 0x03 # define OBJ_NAME_TYPE_COMP_METH 0x04 # define OBJ_NAME_TYPE_NUM 0x05 # define OBJ_NAME_ALIAS 0x8000 # define OBJ_BSEARCH_VALUE_ON_NOMATCH 0x01 # define OBJ_BSEARCH_FIRST_VALUE_ON_MATCH 0x02 #ifdef __cplusplus extern "C" { #endif typedef struct obj_name_st { int type; int alias; const char *name; const char *data; } OBJ_NAME; # define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c) int OBJ_NAME_init(void); int OBJ_NAME_new_index(unsigned long (*hash_func) (const char *), int (*cmp_func) (const char *, const char *), void (*free_func) (const char *, int, const char *)); const char *OBJ_NAME_get(const char *name, int type); int OBJ_NAME_add(const char *name, int type, const char *data); int OBJ_NAME_remove(const char *name, int type); void OBJ_NAME_cleanup(int type); /* -1 for everything */ void OBJ_NAME_do_all(int type, void (*fn) (const OBJ_NAME *, void *arg), void *arg); void OBJ_NAME_do_all_sorted(int type, void (*fn) (const OBJ_NAME *, void *arg), void *arg); ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *o); ASN1_OBJECT *OBJ_nid2obj(int n); const char *OBJ_nid2ln(int n); const char *OBJ_nid2sn(int n); int OBJ_obj2nid(const ASN1_OBJECT *o); ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name); int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name); int OBJ_txt2nid(const char *s); int OBJ_ln2nid(const char *s); int OBJ_sn2nid(const char *s); int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b); const void *OBJ_bsearch_(const void *key, const void *base, int num, int size, int (*cmp) (const void *, const void *)); const void *OBJ_bsearch_ex_(const void *key, const void *base, int num, int size, int (*cmp) (const void *, const void *), int flags); # define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ static int nm##_cmp_BSEARCH_CMP_FN(const void *, const void *); \ static int nm##_cmp(type1 const *, type2 const *); \ scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) # define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \ _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp) # define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) /*- * Unsolved problem: if a type is actually a pointer type, like * nid_triple is, then its impossible to get a const where you need * it. Consider: * * typedef int nid_triple[3]; * const void *a_; * const nid_triple const *a = a_; * * The assignement discards a const because what you really want is: * * const int const * const *a = a_; * * But if you do that, you lose the fact that a is an array of 3 ints, * which breaks comparison functions. * * Thus we end up having to cast, sadly, or unpack the * declarations. Or, as I finally did in this case, delcare nid_triple * to be a struct, which it should have been in the first place. * * Ben, August 2008. * * Also, strictly speaking not all types need be const, but handling * the non-constness means a lot of complication, and in practice * comparison routines do always not touch their arguments. */ # define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ { \ type1 const *a = a_; \ type2 const *b = b_; \ return nm##_cmp(a,b); \ } \ static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \ { \ return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \ nm##_cmp_BSEARCH_CMP_FN); \ } \ extern void dummy_prototype(void) # define IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ { \ type1 const *a = a_; \ type2 const *b = b_; \ return nm##_cmp(a,b); \ } \ type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \ { \ return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \ nm##_cmp_BSEARCH_CMP_FN); \ } \ extern void dummy_prototype(void) # define OBJ_bsearch(type1,key,type2,base,num,cmp) \ ((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \ num,sizeof(type2), \ ((void)CHECKED_PTR_OF(type1,cmp##_type_1), \ (void)CHECKED_PTR_OF(type2,cmp##_type_2), \ cmp##_BSEARCH_CMP_FN))) # define OBJ_bsearch_ex(type1,key,type2,base,num,cmp,flags) \ ((type2 *)OBJ_bsearch_ex_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \ num,sizeof(type2), \ ((void)CHECKED_PTR_OF(type1,cmp##_type_1), \ (void)type_2=CHECKED_PTR_OF(type2,cmp##_type_2), \ cmp##_BSEARCH_CMP_FN)),flags) int OBJ_new_nid(int num); int OBJ_add_object(const ASN1_OBJECT *obj); int OBJ_create(const char *oid, const char *sn, const char *ln); void OBJ_cleanup(void); int OBJ_create_objects(BIO *in); int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid); int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid); int OBJ_add_sigid(int signid, int dig_id, int pkey_id); void OBJ_sigid_free(void); extern int obj_cleanup_defer; void check_defer(int nid); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_OBJ_strings(void); /* Error codes for the OBJ functions. */ /* Function codes. */ # define OBJ_F_OBJ_ADD_OBJECT 105 # define OBJ_F_OBJ_CREATE 100 # define OBJ_F_OBJ_DUP 101 # define OBJ_F_OBJ_NAME_NEW_INDEX 106 # define OBJ_F_OBJ_NID2LN 102 # define OBJ_F_OBJ_NID2OBJ 103 # define OBJ_F_OBJ_NID2SN 104 /* Reason codes. */ # define OBJ_R_MALLOC_FAILURE 100 # define OBJ_R_UNKNOWN_NID 101 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ocsp.h ================================================ /* ocsp.h */ /* * Written by Tom Titchener for the OpenSSL * project. */ /* * History: This file was transfered to Richard Levitte from CertCo by Kathy * Weinhold in mid-spring 2000 to be included in OpenSSL or released as a * patch kit. */ /* ==================================================================== * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_OCSP_H # define HEADER_OCSP_H # include # include # include # include #ifdef __cplusplus extern "C" { #endif /* Various flags and values */ # define OCSP_DEFAULT_NONCE_LENGTH 16 # define OCSP_NOCERTS 0x1 # define OCSP_NOINTERN 0x2 # define OCSP_NOSIGS 0x4 # define OCSP_NOCHAIN 0x8 # define OCSP_NOVERIFY 0x10 # define OCSP_NOEXPLICIT 0x20 # define OCSP_NOCASIGN 0x40 # define OCSP_NODELEGATED 0x80 # define OCSP_NOCHECKS 0x100 # define OCSP_TRUSTOTHER 0x200 # define OCSP_RESPID_KEY 0x400 # define OCSP_NOTIME 0x800 /*- CertID ::= SEQUENCE { * hashAlgorithm AlgorithmIdentifier, * issuerNameHash OCTET STRING, -- Hash of Issuer's DN * issuerKeyHash OCTET STRING, -- Hash of Issuers public key (excluding the tag & length fields) * serialNumber CertificateSerialNumber } */ typedef struct ocsp_cert_id_st { X509_ALGOR *hashAlgorithm; ASN1_OCTET_STRING *issuerNameHash; ASN1_OCTET_STRING *issuerKeyHash; ASN1_INTEGER *serialNumber; } OCSP_CERTID; DECLARE_STACK_OF(OCSP_CERTID) /*- Request ::= SEQUENCE { * reqCert CertID, * singleRequestExtensions [0] EXPLICIT Extensions OPTIONAL } */ typedef struct ocsp_one_request_st { OCSP_CERTID *reqCert; STACK_OF(X509_EXTENSION) *singleRequestExtensions; } OCSP_ONEREQ; DECLARE_STACK_OF(OCSP_ONEREQ) DECLARE_ASN1_SET_OF(OCSP_ONEREQ) /*- TBSRequest ::= SEQUENCE { * version [0] EXPLICIT Version DEFAULT v1, * requestorName [1] EXPLICIT GeneralName OPTIONAL, * requestList SEQUENCE OF Request, * requestExtensions [2] EXPLICIT Extensions OPTIONAL } */ typedef struct ocsp_req_info_st { ASN1_INTEGER *version; GENERAL_NAME *requestorName; STACK_OF(OCSP_ONEREQ) *requestList; STACK_OF(X509_EXTENSION) *requestExtensions; } OCSP_REQINFO; /*- Signature ::= SEQUENCE { * signatureAlgorithm AlgorithmIdentifier, * signature BIT STRING, * certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL } */ typedef struct ocsp_signature_st { X509_ALGOR *signatureAlgorithm; ASN1_BIT_STRING *signature; STACK_OF(X509) *certs; } OCSP_SIGNATURE; /*- OCSPRequest ::= SEQUENCE { * tbsRequest TBSRequest, * optionalSignature [0] EXPLICIT Signature OPTIONAL } */ typedef struct ocsp_request_st { OCSP_REQINFO *tbsRequest; OCSP_SIGNATURE *optionalSignature; /* OPTIONAL */ } OCSP_REQUEST; /*- OCSPResponseStatus ::= ENUMERATED { * successful (0), --Response has valid confirmations * malformedRequest (1), --Illegal confirmation request * internalError (2), --Internal error in issuer * tryLater (3), --Try again later * --(4) is not used * sigRequired (5), --Must sign the request * unauthorized (6) --Request unauthorized * } */ # define OCSP_RESPONSE_STATUS_SUCCESSFUL 0 # define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST 1 # define OCSP_RESPONSE_STATUS_INTERNALERROR 2 # define OCSP_RESPONSE_STATUS_TRYLATER 3 # define OCSP_RESPONSE_STATUS_SIGREQUIRED 5 # define OCSP_RESPONSE_STATUS_UNAUTHORIZED 6 /*- ResponseBytes ::= SEQUENCE { * responseType OBJECT IDENTIFIER, * response OCTET STRING } */ typedef struct ocsp_resp_bytes_st { ASN1_OBJECT *responseType; ASN1_OCTET_STRING *response; } OCSP_RESPBYTES; /*- OCSPResponse ::= SEQUENCE { * responseStatus OCSPResponseStatus, * responseBytes [0] EXPLICIT ResponseBytes OPTIONAL } */ struct ocsp_response_st { ASN1_ENUMERATED *responseStatus; OCSP_RESPBYTES *responseBytes; }; /*- ResponderID ::= CHOICE { * byName [1] Name, * byKey [2] KeyHash } */ # define V_OCSP_RESPID_NAME 0 # define V_OCSP_RESPID_KEY 1 struct ocsp_responder_id_st { int type; union { X509_NAME *byName; ASN1_OCTET_STRING *byKey; } value; }; DECLARE_STACK_OF(OCSP_RESPID) DECLARE_ASN1_FUNCTIONS(OCSP_RESPID) /*- KeyHash ::= OCTET STRING --SHA-1 hash of responder's public key * --(excluding the tag and length fields) */ /*- RevokedInfo ::= SEQUENCE { * revocationTime GeneralizedTime, * revocationReason [0] EXPLICIT CRLReason OPTIONAL } */ typedef struct ocsp_revoked_info_st { ASN1_GENERALIZEDTIME *revocationTime; ASN1_ENUMERATED *revocationReason; } OCSP_REVOKEDINFO; /*- CertStatus ::= CHOICE { * good [0] IMPLICIT NULL, * revoked [1] IMPLICIT RevokedInfo, * unknown [2] IMPLICIT UnknownInfo } */ # define V_OCSP_CERTSTATUS_GOOD 0 # define V_OCSP_CERTSTATUS_REVOKED 1 # define V_OCSP_CERTSTATUS_UNKNOWN 2 typedef struct ocsp_cert_status_st { int type; union { ASN1_NULL *good; OCSP_REVOKEDINFO *revoked; ASN1_NULL *unknown; } value; } OCSP_CERTSTATUS; /*- SingleResponse ::= SEQUENCE { * certID CertID, * certStatus CertStatus, * thisUpdate GeneralizedTime, * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL, * singleExtensions [1] EXPLICIT Extensions OPTIONAL } */ typedef struct ocsp_single_response_st { OCSP_CERTID *certId; OCSP_CERTSTATUS *certStatus; ASN1_GENERALIZEDTIME *thisUpdate; ASN1_GENERALIZEDTIME *nextUpdate; STACK_OF(X509_EXTENSION) *singleExtensions; } OCSP_SINGLERESP; DECLARE_STACK_OF(OCSP_SINGLERESP) DECLARE_ASN1_SET_OF(OCSP_SINGLERESP) /*- ResponseData ::= SEQUENCE { * version [0] EXPLICIT Version DEFAULT v1, * responderID ResponderID, * producedAt GeneralizedTime, * responses SEQUENCE OF SingleResponse, * responseExtensions [1] EXPLICIT Extensions OPTIONAL } */ typedef struct ocsp_response_data_st { ASN1_INTEGER *version; OCSP_RESPID *responderId; ASN1_GENERALIZEDTIME *producedAt; STACK_OF(OCSP_SINGLERESP) *responses; STACK_OF(X509_EXTENSION) *responseExtensions; } OCSP_RESPDATA; /*- BasicOCSPResponse ::= SEQUENCE { * tbsResponseData ResponseData, * signatureAlgorithm AlgorithmIdentifier, * signature BIT STRING, * certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL } */ /* * Note 1: The value for "signature" is specified in the OCSP rfc2560 as * follows: "The value for the signature SHALL be computed on the hash of * the DER encoding ResponseData." This means that you must hash the * DER-encoded tbsResponseData, and then run it through a crypto-signing * function, which will (at least w/RSA) do a hash-'n'-private-encrypt * operation. This seems a bit odd, but that's the spec. Also note that * the data structures do not leave anywhere to independently specify the * algorithm used for the initial hash. So, we look at the * signature-specification algorithm, and try to do something intelligent. * -- Kathy Weinhold, CertCo */ /* * Note 2: It seems that the mentioned passage from RFC 2560 (section * 4.2.1) is open for interpretation. I've done tests against another * responder, and found that it doesn't do the double hashing that the RFC * seems to say one should. Therefore, all relevant functions take a flag * saying which variant should be used. -- Richard Levitte, OpenSSL team * and CeloCom */ typedef struct ocsp_basic_response_st { OCSP_RESPDATA *tbsResponseData; X509_ALGOR *signatureAlgorithm; ASN1_BIT_STRING *signature; STACK_OF(X509) *certs; } OCSP_BASICRESP; /*- * CRLReason ::= ENUMERATED { * unspecified (0), * keyCompromise (1), * cACompromise (2), * affiliationChanged (3), * superseded (4), * cessationOfOperation (5), * certificateHold (6), * removeFromCRL (8) } */ # define OCSP_REVOKED_STATUS_NOSTATUS -1 # define OCSP_REVOKED_STATUS_UNSPECIFIED 0 # define OCSP_REVOKED_STATUS_KEYCOMPROMISE 1 # define OCSP_REVOKED_STATUS_CACOMPROMISE 2 # define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED 3 # define OCSP_REVOKED_STATUS_SUPERSEDED 4 # define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION 5 # define OCSP_REVOKED_STATUS_CERTIFICATEHOLD 6 # define OCSP_REVOKED_STATUS_REMOVEFROMCRL 8 /*- * CrlID ::= SEQUENCE { * crlUrl [0] EXPLICIT IA5String OPTIONAL, * crlNum [1] EXPLICIT INTEGER OPTIONAL, * crlTime [2] EXPLICIT GeneralizedTime OPTIONAL } */ typedef struct ocsp_crl_id_st { ASN1_IA5STRING *crlUrl; ASN1_INTEGER *crlNum; ASN1_GENERALIZEDTIME *crlTime; } OCSP_CRLID; /*- * ServiceLocator ::= SEQUENCE { * issuer Name, * locator AuthorityInfoAccessSyntax OPTIONAL } */ typedef struct ocsp_service_locator_st { X509_NAME *issuer; STACK_OF(ACCESS_DESCRIPTION) *locator; } OCSP_SERVICELOC; # define PEM_STRING_OCSP_REQUEST "OCSP REQUEST" # define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE" # define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p) # define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p) # define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \ (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,bp,(char **)x,cb,NULL) # define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\ (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,bp,(char **)x,cb,NULL) # define PEM_write_bio_OCSP_REQUEST(bp,o) \ PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\ bp,(char *)o, NULL,NULL,0,NULL,NULL) # define PEM_write_bio_OCSP_RESPONSE(bp,o) \ PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\ bp,(char *)o, NULL,NULL,0,NULL,NULL) # define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o) # define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o) # define OCSP_REQUEST_sign(o,pkey,md) \ ASN1_item_sign(ASN1_ITEM_rptr(OCSP_REQINFO),\ o->optionalSignature->signatureAlgorithm,NULL,\ o->optionalSignature->signature,o->tbsRequest,pkey,md) # define OCSP_BASICRESP_sign(o,pkey,md,d) \ ASN1_item_sign(ASN1_ITEM_rptr(OCSP_RESPDATA),o->signatureAlgorithm,NULL,\ o->signature,o->tbsResponseData,pkey,md) # define OCSP_REQUEST_verify(a,r) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_REQINFO),\ a->optionalSignature->signatureAlgorithm,\ a->optionalSignature->signature,a->tbsRequest,r) # define OCSP_BASICRESP_verify(a,r,d) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_RESPDATA),\ a->signatureAlgorithm,a->signature,a->tbsResponseData,r) # define ASN1_BIT_STRING_digest(data,type,md,len) \ ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len) # define OCSP_CERTSTATUS_dup(cs)\ (OCSP_CERTSTATUS*)ASN1_dup((int(*)())i2d_OCSP_CERTSTATUS,\ (char *(*)())d2i_OCSP_CERTSTATUS,(char *)(cs)) OCSP_CERTID *OCSP_CERTID_dup(OCSP_CERTID *id); OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req); OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path, OCSP_REQUEST *req, int maxline); int OCSP_REQ_CTX_nbio(OCSP_REQ_CTX *rctx); int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OCSP_REQ_CTX *rctx); OCSP_REQ_CTX *OCSP_REQ_CTX_new(BIO *io, int maxline); void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx); void OCSP_set_max_response_length(OCSP_REQ_CTX *rctx, unsigned long len); int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const ASN1_ITEM *it, ASN1_VALUE *val); int OCSP_REQ_CTX_nbio_d2i(OCSP_REQ_CTX *rctx, ASN1_VALUE **pval, const ASN1_ITEM *it); BIO *OCSP_REQ_CTX_get0_mem_bio(OCSP_REQ_CTX *rctx); int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const ASN1_ITEM *it, ASN1_VALUE *val); int OCSP_REQ_CTX_http(OCSP_REQ_CTX *rctx, const char *op, const char *path); int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req); int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx, const char *name, const char *value); OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer); OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst, X509_NAME *issuerName, ASN1_BIT_STRING *issuerKey, ASN1_INTEGER *serialNumber); OCSP_ONEREQ *OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid); int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len); int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len); int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs); int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req); int OCSP_request_set1_name(OCSP_REQUEST *req, X509_NAME *nm); int OCSP_request_add1_cert(OCSP_REQUEST *req, X509 *cert); int OCSP_request_sign(OCSP_REQUEST *req, X509 *signer, EVP_PKEY *key, const EVP_MD *dgst, STACK_OF(X509) *certs, unsigned long flags); int OCSP_response_status(OCSP_RESPONSE *resp); OCSP_BASICRESP *OCSP_response_get1_basic(OCSP_RESPONSE *resp); int OCSP_resp_count(OCSP_BASICRESP *bs); OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx); int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last); int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason, ASN1_GENERALIZEDTIME **revtime, ASN1_GENERALIZEDTIME **thisupd, ASN1_GENERALIZEDTIME **nextupd); int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTID *id, int *status, int *reason, ASN1_GENERALIZEDTIME **revtime, ASN1_GENERALIZEDTIME **thisupd, ASN1_GENERALIZEDTIME **nextupd); int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd, ASN1_GENERALIZEDTIME *nextupd, long sec, long maxsec); int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, X509_STORE *store, unsigned long flags); int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath, int *pssl); int OCSP_id_issuer_cmp(OCSP_CERTID *a, OCSP_CERTID *b); int OCSP_id_cmp(OCSP_CERTID *a, OCSP_CERTID *b); int OCSP_request_onereq_count(OCSP_REQUEST *req); OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i); OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one); int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, ASN1_OCTET_STRING **pikeyHash, ASN1_INTEGER **pserial, OCSP_CERTID *cid); int OCSP_request_is_signed(OCSP_REQUEST *req); OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs); OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp, OCSP_CERTID *cid, int status, int reason, ASN1_TIME *revtime, ASN1_TIME *thisupd, ASN1_TIME *nextupd); int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert); int OCSP_basic_sign(OCSP_BASICRESP *brsp, X509 *signer, EVP_PKEY *key, const EVP_MD *dgst, STACK_OF(X509) *certs, unsigned long flags); X509_EXTENSION *OCSP_crlID_new(char *url, long *n, char *tim); X509_EXTENSION *OCSP_accept_responses_new(char **oids); X509_EXTENSION *OCSP_archive_cutoff_new(char *tim); X509_EXTENSION *OCSP_url_svcloc_new(X509_NAME *issuer, char **urls); int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x); int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos); int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos); int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos); X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc); X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc); void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx); int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, unsigned long flags); int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc); int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ *x); int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos); int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos); int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos); X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc); X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc); void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx); int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit, unsigned long flags); int OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc); int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP *x); int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos); int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos); int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos); X509_EXTENSION *OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc); X509_EXTENSION *OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc); void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx); int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, int crit, unsigned long flags); int OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc); int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP *x); int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos); int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, ASN1_OBJECT *obj, int lastpos); int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit, int lastpos); X509_EXTENSION *OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc); X509_EXTENSION *OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc); void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx); int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value, int crit, unsigned long flags); int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc); DECLARE_ASN1_FUNCTIONS(OCSP_SINGLERESP) DECLARE_ASN1_FUNCTIONS(OCSP_CERTSTATUS) DECLARE_ASN1_FUNCTIONS(OCSP_REVOKEDINFO) DECLARE_ASN1_FUNCTIONS(OCSP_BASICRESP) DECLARE_ASN1_FUNCTIONS(OCSP_RESPDATA) DECLARE_ASN1_FUNCTIONS(OCSP_RESPID) DECLARE_ASN1_FUNCTIONS(OCSP_RESPONSE) DECLARE_ASN1_FUNCTIONS(OCSP_RESPBYTES) DECLARE_ASN1_FUNCTIONS(OCSP_ONEREQ) DECLARE_ASN1_FUNCTIONS(OCSP_CERTID) DECLARE_ASN1_FUNCTIONS(OCSP_REQUEST) DECLARE_ASN1_FUNCTIONS(OCSP_SIGNATURE) DECLARE_ASN1_FUNCTIONS(OCSP_REQINFO) DECLARE_ASN1_FUNCTIONS(OCSP_CRLID) DECLARE_ASN1_FUNCTIONS(OCSP_SERVICELOC) const char *OCSP_response_status_str(long s); const char *OCSP_cert_status_str(long s); const char *OCSP_crl_reason_str(long s); int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags); int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags); int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs, X509_STORE *st, unsigned long flags); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_OCSP_strings(void); /* Error codes for the OCSP functions. */ /* Function codes. */ # define OCSP_F_ASN1_STRING_ENCODE 100 # define OCSP_F_D2I_OCSP_NONCE 102 # define OCSP_F_OCSP_BASIC_ADD1_STATUS 103 # define OCSP_F_OCSP_BASIC_SIGN 104 # define OCSP_F_OCSP_BASIC_VERIFY 105 # define OCSP_F_OCSP_CERT_ID_NEW 101 # define OCSP_F_OCSP_CHECK_DELEGATED 106 # define OCSP_F_OCSP_CHECK_IDS 107 # define OCSP_F_OCSP_CHECK_ISSUER 108 # define OCSP_F_OCSP_CHECK_VALIDITY 115 # define OCSP_F_OCSP_MATCH_ISSUERID 109 # define OCSP_F_OCSP_PARSE_URL 114 # define OCSP_F_OCSP_REQUEST_SIGN 110 # define OCSP_F_OCSP_REQUEST_VERIFY 116 # define OCSP_F_OCSP_RESPONSE_GET1_BASIC 111 # define OCSP_F_OCSP_SENDREQ_BIO 112 # define OCSP_F_OCSP_SENDREQ_NBIO 117 # define OCSP_F_PARSE_HTTP_LINE1 118 # define OCSP_F_REQUEST_VERIFY 113 /* Reason codes. */ # define OCSP_R_BAD_DATA 100 # define OCSP_R_CERTIFICATE_VERIFY_ERROR 101 # define OCSP_R_DIGEST_ERR 102 # define OCSP_R_ERROR_IN_NEXTUPDATE_FIELD 122 # define OCSP_R_ERROR_IN_THISUPDATE_FIELD 123 # define OCSP_R_ERROR_PARSING_URL 121 # define OCSP_R_MISSING_OCSPSIGNING_USAGE 103 # define OCSP_R_NEXTUPDATE_BEFORE_THISUPDATE 124 # define OCSP_R_NOT_BASIC_RESPONSE 104 # define OCSP_R_NO_CERTIFICATES_IN_CHAIN 105 # define OCSP_R_NO_CONTENT 106 # define OCSP_R_NO_PUBLIC_KEY 107 # define OCSP_R_NO_RESPONSE_DATA 108 # define OCSP_R_NO_REVOKED_TIME 109 # define OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 110 # define OCSP_R_REQUEST_NOT_SIGNED 128 # define OCSP_R_RESPONSE_CONTAINS_NO_REVOCATION_DATA 111 # define OCSP_R_ROOT_CA_NOT_TRUSTED 112 # define OCSP_R_SERVER_READ_ERROR 113 # define OCSP_R_SERVER_RESPONSE_ERROR 114 # define OCSP_R_SERVER_RESPONSE_PARSE_ERROR 115 # define OCSP_R_SERVER_WRITE_ERROR 116 # define OCSP_R_SIGNATURE_FAILURE 117 # define OCSP_R_SIGNER_CERTIFICATE_NOT_FOUND 118 # define OCSP_R_STATUS_EXPIRED 125 # define OCSP_R_STATUS_NOT_YET_VALID 126 # define OCSP_R_STATUS_TOO_OLD 127 # define OCSP_R_UNKNOWN_MESSAGE_DIGEST 119 # define OCSP_R_UNKNOWN_NID 120 # define OCSP_R_UNSUPPORTED_REQUESTORNAME_TYPE 129 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/opensslconf.h ================================================ /* opensslconf.h */ /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ #ifdef __cplusplus extern "C" { #endif /* OpenSSL was configured with the following options: */ #ifndef OPENSSL_SYSNAME_WIN32 # define OPENSSL_SYSNAME_WIN32 #endif #ifndef OPENSSL_DOING_MAKEDEPEND #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 # define OPENSSL_NO_EC_NISTP_64_GCC_128 #endif #ifndef OPENSSL_NO_GMP # define OPENSSL_NO_GMP #endif #ifndef OPENSSL_NO_JPAKE # define OPENSSL_NO_JPAKE #endif #ifndef OPENSSL_NO_KRB5 # define OPENSSL_NO_KRB5 #endif #ifndef OPENSSL_NO_LIBUNBOUND # define OPENSSL_NO_LIBUNBOUND #endif #ifndef OPENSSL_NO_MD2 # define OPENSSL_NO_MD2 #endif #ifndef OPENSSL_NO_RC5 # define OPENSSL_NO_RC5 #endif #ifndef OPENSSL_NO_RFC3779 # define OPENSSL_NO_RFC3779 #endif #ifndef OPENSSL_NO_SCTP # define OPENSSL_NO_SCTP #endif #ifndef OPENSSL_NO_SSL_TRACE # define OPENSSL_NO_SSL_TRACE #endif #ifndef OPENSSL_NO_SSL2 # define OPENSSL_NO_SSL2 #endif #ifndef OPENSSL_NO_STORE # define OPENSSL_NO_STORE #endif #ifndef OPENSSL_NO_UNIT_TEST # define OPENSSL_NO_UNIT_TEST #endif #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS # define OPENSSL_NO_WEAK_SSL_CIPHERS #endif #endif /* OPENSSL_DOING_MAKEDEPEND */ #ifndef OPENSSL_THREADS # define OPENSSL_THREADS #endif /* The OPENSSL_NO_* macros are also defined as NO_* if the application asks for it. This is a transient feature that is provided for those who haven't had the time to do the appropriate changes in their applications. */ #ifdef OPENSSL_ALGORITHM_DEFINES # if defined(OPENSSL_NO_EC_NISTP_64_GCC_128) && !defined(NO_EC_NISTP_64_GCC_128) # define NO_EC_NISTP_64_GCC_128 # endif # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) # define NO_GMP # endif # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) # define NO_JPAKE # endif # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) # define NO_KRB5 # endif # if defined(OPENSSL_NO_LIBUNBOUND) && !defined(NO_LIBUNBOUND) # define NO_LIBUNBOUND # endif # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) # define NO_MD2 # endif # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) # define NO_RC5 # endif # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) # define NO_RFC3779 # endif # if defined(OPENSSL_NO_SCTP) && !defined(NO_SCTP) # define NO_SCTP # endif # if defined(OPENSSL_NO_SSL_TRACE) && !defined(NO_SSL_TRACE) # define NO_SSL_TRACE # endif # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) # define NO_SSL2 # endif # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) # define NO_STORE # endif # if defined(OPENSSL_NO_UNIT_TEST) && !defined(NO_UNIT_TEST) # define NO_UNIT_TEST # endif # if defined(OPENSSL_NO_WEAK_SSL_CIPHERS) && !defined(NO_WEAK_SSL_CIPHERS) # define NO_WEAK_SSL_CIPHERS # endif #endif #define OPENSSL_CPUID_OBJ /* crypto/opensslconf.h.in */ /* Generate 80386 code? */ #undef I386_ONLY #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) #define ENGINESDIR "/usr/local/ssl/lib/engines" #define OPENSSLDIR "/usr/local/ssl" #endif #endif #undef OPENSSL_UNISTD #define OPENSSL_UNISTD #undef OPENSSL_EXPORT_VAR_AS_FUNCTION #define OPENSSL_EXPORT_VAR_AS_FUNCTION #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) #define IDEA_INT unsigned int #endif #if defined(HEADER_MD2_H) && !defined(MD2_INT) #define MD2_INT unsigned int #endif #if defined(HEADER_RC2_H) && !defined(RC2_INT) /* I need to put in a mod for the alpha - eay */ #define RC2_INT unsigned int #endif #if defined(HEADER_RC4_H) #if !defined(RC4_INT) /* using int types make the structure larger but make the code faster * on most boxes I have tested - up to %20 faster. */ /* * I don't know what does "most" mean, but declaring "int" is a must on: * - Intel P6 because partial register stalls are very expensive; * - elder Alpha because it lacks byte load/store instructions; */ #define RC4_INT unsigned int #endif #if !defined(RC4_CHUNK) /* * This enables code handling data aligned at natural CPU word * boundary. See crypto/rc4/rc4_enc.c for further details. */ #undef RC4_CHUNK #endif #endif #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a * %20 speed up (longs are 8 bytes, int's are 4). */ #ifndef DES_LONG #define DES_LONG unsigned long #endif #endif #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) #define CONFIG_HEADER_BN_H #define BN_LLONG /* Should we define BN_DIV2W here? */ /* Only one for the following should be defined */ #undef SIXTY_FOUR_BIT_LONG #undef SIXTY_FOUR_BIT #define THIRTY_TWO_BIT #endif #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) #define CONFIG_HEADER_RC4_LOCL_H /* if this is defined data[i] is used instead of *data, this is a %20 * speedup on x86 */ #define RC4_INDEX #endif #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) #define CONFIG_HEADER_BF_LOCL_H #undef BF_PTR #endif /* HEADER_BF_LOCL_H */ #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) #define CONFIG_HEADER_DES_LOCL_H #ifndef DES_DEFAULT_OPTIONS /* the following is tweaked from a config script, that is why it is a * protected undef/define */ #ifndef DES_PTR #undef DES_PTR #endif /* This helps C compiler generate the correct code for multiple functional * units. It reduces register dependancies at the expense of 2 more * registers */ #ifndef DES_RISC1 #undef DES_RISC1 #endif #ifndef DES_RISC2 #undef DES_RISC2 #endif #if defined(DES_RISC1) && defined(DES_RISC2) #error YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! #endif /* Unroll the inner loop, this sometimes helps, sometimes hinders. * Very mucy CPU dependant */ #ifndef DES_UNROLL #undef DES_UNROLL #endif /* These default values were supplied by * Peter Gutman * They are only used if nothing else has been defined */ #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) /* Special defines which change the way the code is built depending on the CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find even newer MIPS CPU's, but at the moment one size fits all for optimization options. Older Sparc's work better with only UNROLL, but there's no way to tell at compile time what it is you're running on */ #if defined( __sun ) || defined ( sun ) /* Newer Sparc's */ # define DES_PTR # define DES_RISC1 # define DES_UNROLL #elif defined( __ultrix ) /* Older MIPS */ # define DES_PTR # define DES_RISC2 # define DES_UNROLL #elif defined( __osf1__ ) /* Alpha */ # define DES_PTR # define DES_RISC2 #elif defined ( _AIX ) /* RS6000 */ /* Unknown */ #elif defined( __hpux ) /* HP-PA */ /* Unknown */ #elif defined( __aux ) /* 68K */ /* Unknown */ #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ # define DES_UNROLL #elif defined( __sgi ) /* Newer MIPS */ # define DES_PTR # define DES_RISC2 # define DES_UNROLL #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ # define DES_PTR # define DES_RISC1 # define DES_UNROLL #endif /* Systems-specific speed defines */ #endif #endif /* DES_DEFAULT_OPTIONS */ #endif /* HEADER_DES_LOCL_H */ #ifdef __cplusplus } #endif ================================================ FILE: third_party/include/openssl/opensslv.h ================================================ #ifndef HEADER_OPENSSLV_H # define HEADER_OPENSSLV_H #ifdef __cplusplus extern "C" { #endif /*- * Numeric release version identifier: * MNNFFPPS: major minor fix patch status * The status nibble has one of the values 0 for development, 1 to e for betas * 1 to 14, and f for release. The patch level is exactly that. * For example: * 0.9.3-dev 0x00903000 * 0.9.3-beta1 0x00903001 * 0.9.3-beta2-dev 0x00903002 * 0.9.3-beta2 0x00903002 (same as ...beta2-dev) * 0.9.3 0x0090300f * 0.9.3a 0x0090301f * 0.9.4 0x0090400f * 1.2.3z 0x102031af * * For continuity reasons (because 0.9.5 is already out, and is coded * 0x00905100), between 0.9.5 and 0.9.6 the coding of the patch level * part is slightly different, by setting the highest bit. This means * that 0.9.5a looks like this: 0x0090581f. At 0.9.6, we can start * with 0x0090600S... * * (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.) * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for * major minor fix final patch/beta) */ # define OPENSSL_VERSION_NUMBER 0x100020ffL # ifdef OPENSSL_FIPS # define OPENSSL_VERSION_TEXT "OpenSSL 1.0.2o-fips 27 Mar 2018" # else # define OPENSSL_VERSION_TEXT "OpenSSL 1.0.2o 27 Mar 2018" # endif # define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT /*- * The macros below are to be used for shared library (.so, .dll, ...) * versioning. That kind of versioning works a bit differently between * operating systems. The most usual scheme is to set a major and a minor * number, and have the runtime loader check that the major number is equal * to what it was at application link time, while the minor number has to * be greater or equal to what it was at application link time. With this * scheme, the version number is usually part of the file name, like this: * * libcrypto.so.0.9 * * Some unixen also make a softlink with the major verson number only: * * libcrypto.so.0 * * On Tru64 and IRIX 6.x it works a little bit differently. There, the * shared library version is stored in the file, and is actually a series * of versions, separated by colons. The rightmost version present in the * library when linking an application is stored in the application to be * matched at run time. When the application is run, a check is done to * see if the library version stored in the application matches any of the * versions in the version string of the library itself. * This version string can be constructed in any way, depending on what * kind of matching is desired. However, to implement the same scheme as * the one used in the other unixen, all compatible versions, from lowest * to highest, should be part of the string. Consecutive builds would * give the following versions strings: * * 3.0 * 3.0:3.1 * 3.0:3.1:3.2 * 4.0 * 4.0:4.1 * * Notice how version 4 is completely incompatible with version, and * therefore give the breach you can see. * * There may be other schemes as well that I haven't yet discovered. * * So, here's the way it works here: first of all, the library version * number doesn't need at all to match the overall OpenSSL version. * However, it's nice and more understandable if it actually does. * The current library version is stored in the macro SHLIB_VERSION_NUMBER, * which is just a piece of text in the format "M.m.e" (Major, minor, edit). * For the sake of Tru64, IRIX, and any other OS that behaves in similar ways, * we need to keep a history of version numbers, which is done in the * macro SHLIB_VERSION_HISTORY. The numbers are separated by colons and * should only keep the versions that are binary compatible with the current. */ # define SHLIB_VERSION_HISTORY "" # define SHLIB_VERSION_NUMBER "1.0.0" #ifdef __cplusplus } #endif #endif /* HEADER_OPENSSLV_H */ ================================================ FILE: third_party/include/openssl/ossl_typ.h ================================================ /* ==================================================================== * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_OPENSSL_TYPES_H # define HEADER_OPENSSL_TYPES_H #ifdef __cplusplus extern "C" { #endif # include # ifdef NO_ASN1_TYPEDEFS # define ASN1_INTEGER ASN1_STRING # define ASN1_ENUMERATED ASN1_STRING # define ASN1_BIT_STRING ASN1_STRING # define ASN1_OCTET_STRING ASN1_STRING # define ASN1_PRINTABLESTRING ASN1_STRING # define ASN1_T61STRING ASN1_STRING # define ASN1_IA5STRING ASN1_STRING # define ASN1_UTCTIME ASN1_STRING # define ASN1_GENERALIZEDTIME ASN1_STRING # define ASN1_TIME ASN1_STRING # define ASN1_GENERALSTRING ASN1_STRING # define ASN1_UNIVERSALSTRING ASN1_STRING # define ASN1_BMPSTRING ASN1_STRING # define ASN1_VISIBLESTRING ASN1_STRING # define ASN1_UTF8STRING ASN1_STRING # define ASN1_BOOLEAN int # define ASN1_NULL int # else typedef struct asn1_string_st ASN1_INTEGER; typedef struct asn1_string_st ASN1_ENUMERATED; typedef struct asn1_string_st ASN1_BIT_STRING; typedef struct asn1_string_st ASN1_OCTET_STRING; typedef struct asn1_string_st ASN1_PRINTABLESTRING; typedef struct asn1_string_st ASN1_T61STRING; typedef struct asn1_string_st ASN1_IA5STRING; typedef struct asn1_string_st ASN1_GENERALSTRING; typedef struct asn1_string_st ASN1_UNIVERSALSTRING; typedef struct asn1_string_st ASN1_BMPSTRING; typedef struct asn1_string_st ASN1_UTCTIME; typedef struct asn1_string_st ASN1_TIME; typedef struct asn1_string_st ASN1_GENERALIZEDTIME; typedef struct asn1_string_st ASN1_VISIBLESTRING; typedef struct asn1_string_st ASN1_UTF8STRING; typedef struct asn1_string_st ASN1_STRING; typedef int ASN1_BOOLEAN; typedef int ASN1_NULL; # endif typedef struct asn1_object_st ASN1_OBJECT; typedef struct ASN1_ITEM_st ASN1_ITEM; typedef struct asn1_pctx_st ASN1_PCTX; # ifdef OPENSSL_SYS_WIN32 # undef X509_NAME # undef X509_EXTENSIONS # undef X509_CERT_PAIR # undef PKCS7_ISSUER_AND_SERIAL # undef OCSP_REQUEST # undef OCSP_RESPONSE # endif # ifdef BIGNUM # undef BIGNUM # endif typedef struct bignum_st BIGNUM; typedef struct bignum_ctx BN_CTX; typedef struct bn_blinding_st BN_BLINDING; typedef struct bn_mont_ctx_st BN_MONT_CTX; typedef struct bn_recp_ctx_st BN_RECP_CTX; typedef struct bn_gencb_st BN_GENCB; typedef struct buf_mem_st BUF_MEM; typedef struct evp_cipher_st EVP_CIPHER; typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX; typedef struct env_md_st EVP_MD; typedef struct env_md_ctx_st EVP_MD_CTX; typedef struct evp_pkey_st EVP_PKEY; typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD; typedef struct evp_pkey_method_st EVP_PKEY_METHOD; typedef struct evp_pkey_ctx_st EVP_PKEY_CTX; typedef struct dh_st DH; typedef struct dh_method DH_METHOD; typedef struct dsa_st DSA; typedef struct dsa_method DSA_METHOD; typedef struct rsa_st RSA; typedef struct rsa_meth_st RSA_METHOD; typedef struct rand_meth_st RAND_METHOD; typedef struct ecdh_method ECDH_METHOD; typedef struct ecdsa_method ECDSA_METHOD; typedef struct x509_st X509; typedef struct X509_algor_st X509_ALGOR; typedef struct X509_crl_st X509_CRL; typedef struct x509_crl_method_st X509_CRL_METHOD; typedef struct x509_revoked_st X509_REVOKED; typedef struct X509_name_st X509_NAME; typedef struct X509_pubkey_st X509_PUBKEY; typedef struct x509_store_st X509_STORE; typedef struct x509_store_ctx_st X509_STORE_CTX; typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO; typedef struct v3_ext_ctx X509V3_CTX; typedef struct conf_st CONF; typedef struct store_st STORE; typedef struct store_method_st STORE_METHOD; typedef struct ui_st UI; typedef struct ui_method_st UI_METHOD; typedef struct st_ERR_FNS ERR_FNS; typedef struct engine_st ENGINE; typedef struct ssl_st SSL; typedef struct ssl_ctx_st SSL_CTX; typedef struct comp_method_st COMP_METHOD; typedef struct X509_POLICY_NODE_st X509_POLICY_NODE; typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL; typedef struct X509_POLICY_TREE_st X509_POLICY_TREE; typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE; typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID; typedef struct DIST_POINT_st DIST_POINT; typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT; typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ # define DECLARE_PKCS12_STACK_OF(type)/* Nothing */ # define IMPLEMENT_PKCS12_STACK_OF(type)/* Nothing */ typedef struct crypto_ex_data_st CRYPTO_EX_DATA; /* Callback types for crypto.h */ typedef int CRYPTO_EX_new (void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp); typedef void CRYPTO_EX_free (void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp); typedef int CRYPTO_EX_dup (CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, int idx, long argl, void *argp); typedef struct ocsp_req_ctx_st OCSP_REQ_CTX; typedef struct ocsp_response_st OCSP_RESPONSE; typedef struct ocsp_responder_id_st OCSP_RESPID; #ifdef __cplusplus } #endif #endif /* def HEADER_OPENSSL_TYPES_H */ ================================================ FILE: third_party/include/openssl/pem.h ================================================ /* crypto/pem/pem.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_PEM_H # define HEADER_PEM_H # include # ifndef OPENSSL_NO_BIO # include # endif # ifndef OPENSSL_NO_STACK # include # endif # include # include # include #ifdef __cplusplus extern "C" { #endif # define PEM_BUFSIZE 1024 # define PEM_OBJ_UNDEF 0 # define PEM_OBJ_X509 1 # define PEM_OBJ_X509_REQ 2 # define PEM_OBJ_CRL 3 # define PEM_OBJ_SSL_SESSION 4 # define PEM_OBJ_PRIV_KEY 10 # define PEM_OBJ_PRIV_RSA 11 # define PEM_OBJ_PRIV_DSA 12 # define PEM_OBJ_PRIV_DH 13 # define PEM_OBJ_PUB_RSA 14 # define PEM_OBJ_PUB_DSA 15 # define PEM_OBJ_PUB_DH 16 # define PEM_OBJ_DHPARAMS 17 # define PEM_OBJ_DSAPARAMS 18 # define PEM_OBJ_PRIV_RSA_PUBLIC 19 # define PEM_OBJ_PRIV_ECDSA 20 # define PEM_OBJ_PUB_ECDSA 21 # define PEM_OBJ_ECPARAMETERS 22 # define PEM_ERROR 30 # define PEM_DEK_DES_CBC 40 # define PEM_DEK_IDEA_CBC 45 # define PEM_DEK_DES_EDE 50 # define PEM_DEK_DES_ECB 60 # define PEM_DEK_RSA 70 # define PEM_DEK_RSA_MD2 80 # define PEM_DEK_RSA_MD5 90 # define PEM_MD_MD2 NID_md2 # define PEM_MD_MD5 NID_md5 # define PEM_MD_SHA NID_sha # define PEM_MD_MD2_RSA NID_md2WithRSAEncryption # define PEM_MD_MD5_RSA NID_md5WithRSAEncryption # define PEM_MD_SHA_RSA NID_sha1WithRSAEncryption # define PEM_STRING_X509_OLD "X509 CERTIFICATE" # define PEM_STRING_X509 "CERTIFICATE" # define PEM_STRING_X509_PAIR "CERTIFICATE PAIR" # define PEM_STRING_X509_TRUSTED "TRUSTED CERTIFICATE" # define PEM_STRING_X509_REQ_OLD "NEW CERTIFICATE REQUEST" # define PEM_STRING_X509_REQ "CERTIFICATE REQUEST" # define PEM_STRING_X509_CRL "X509 CRL" # define PEM_STRING_EVP_PKEY "ANY PRIVATE KEY" # define PEM_STRING_PUBLIC "PUBLIC KEY" # define PEM_STRING_RSA "RSA PRIVATE KEY" # define PEM_STRING_RSA_PUBLIC "RSA PUBLIC KEY" # define PEM_STRING_DSA "DSA PRIVATE KEY" # define PEM_STRING_DSA_PUBLIC "DSA PUBLIC KEY" # define PEM_STRING_PKCS7 "PKCS7" # define PEM_STRING_PKCS7_SIGNED "PKCS #7 SIGNED DATA" # define PEM_STRING_PKCS8 "ENCRYPTED PRIVATE KEY" # define PEM_STRING_PKCS8INF "PRIVATE KEY" # define PEM_STRING_DHPARAMS "DH PARAMETERS" # define PEM_STRING_DHXPARAMS "X9.42 DH PARAMETERS" # define PEM_STRING_SSL_SESSION "SSL SESSION PARAMETERS" # define PEM_STRING_DSAPARAMS "DSA PARAMETERS" # define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY" # define PEM_STRING_ECPARAMETERS "EC PARAMETERS" # define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY" # define PEM_STRING_PARAMETERS "PARAMETERS" # define PEM_STRING_CMS "CMS" /* * Note that this structure is initialised by PEM_SealInit and cleaned up * by PEM_SealFinal (at least for now) */ typedef struct PEM_Encode_Seal_st { EVP_ENCODE_CTX encode; EVP_MD_CTX md; EVP_CIPHER_CTX cipher; } PEM_ENCODE_SEAL_CTX; /* enc_type is one off */ # define PEM_TYPE_ENCRYPTED 10 # define PEM_TYPE_MIC_ONLY 20 # define PEM_TYPE_MIC_CLEAR 30 # define PEM_TYPE_CLEAR 40 typedef struct pem_recip_st { char *name; X509_NAME *dn; int cipher; int key_enc; /* char iv[8]; unused and wrong size */ } PEM_USER; typedef struct pem_ctx_st { int type; /* what type of object */ struct { int version; int mode; } proc_type; char *domain; struct { int cipher; /*- unused, and wrong size unsigned char iv[8]; */ } DEK_info; PEM_USER *originator; int num_recipient; PEM_USER **recipient; /*- XXX(ben): don#t think this is used! STACK *x509_chain; / * certificate chain */ EVP_MD *md; /* signature type */ int md_enc; /* is the md encrypted or not? */ int md_len; /* length of md_data */ char *md_data; /* message digest, could be pkey encrypted */ EVP_CIPHER *dec; /* date encryption cipher */ int key_len; /* key length */ unsigned char *key; /* key */ /*- unused, and wrong size unsigned char iv[8]; */ int data_enc; /* is the data encrypted */ int data_len; unsigned char *data; } PEM_CTX; /* * These macros make the PEM_read/PEM_write functions easier to maintain and * write. Now they are all implemented with either: IMPLEMENT_PEM_rw(...) or * IMPLEMENT_PEM_rw_cb(...) */ # ifdef OPENSSL_NO_FP_API # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ # else # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\ { \ return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \ } # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ int PEM_write_##name(FILE *fp, type *x) \ { \ return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \ } # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ int PEM_write_##name(FILE *fp, const type *x) \ { \ return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,(void *)x,NULL,NULL,0,NULL,NULL); \ } # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \ int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, \ void *u) \ { \ return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \ } # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \ int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, \ void *u) \ { \ return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \ } # endif # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\ { \ return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \ } # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ int PEM_write_bio_##name(BIO *bp, type *x) \ { \ return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \ } # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ int PEM_write_bio_##name(BIO *bp, const type *x) \ { \ return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \ } # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \ { \ return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \ } # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \ { \ return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u); \ } # define IMPLEMENT_PEM_write(name, type, str, asn1) \ IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ IMPLEMENT_PEM_write_fp(name, type, str, asn1) # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) # define IMPLEMENT_PEM_read(name, type, str, asn1) \ IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ IMPLEMENT_PEM_read_fp(name, type, str, asn1) # define IMPLEMENT_PEM_rw(name, type, str, asn1) \ IMPLEMENT_PEM_read(name, type, str, asn1) \ IMPLEMENT_PEM_write(name, type, str, asn1) # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ IMPLEMENT_PEM_read(name, type, str, asn1) \ IMPLEMENT_PEM_write_const(name, type, str, asn1) # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ IMPLEMENT_PEM_read(name, type, str, asn1) \ IMPLEMENT_PEM_write_cb(name, type, str, asn1) /* These are the same except they are for the declarations */ # if defined(OPENSSL_NO_FP_API) # define DECLARE_PEM_read_fp(name, type) /**/ # define DECLARE_PEM_write_fp(name, type) /**/ # define DECLARE_PEM_write_cb_fp(name, type) /**/ # else # define DECLARE_PEM_read_fp(name, type) \ type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u); # define DECLARE_PEM_write_fp(name, type) \ int PEM_write_##name(FILE *fp, type *x); # define DECLARE_PEM_write_fp_const(name, type) \ int PEM_write_##name(FILE *fp, const type *x); # define DECLARE_PEM_write_cb_fp(name, type) \ int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, void *u); # endif # ifndef OPENSSL_NO_BIO # define DECLARE_PEM_read_bio(name, type) \ type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u); # define DECLARE_PEM_write_bio(name, type) \ int PEM_write_bio_##name(BIO *bp, type *x); # define DECLARE_PEM_write_bio_const(name, type) \ int PEM_write_bio_##name(BIO *bp, const type *x); # define DECLARE_PEM_write_cb_bio(name, type) \ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ unsigned char *kstr, int klen, pem_password_cb *cb, void *u); # else # define DECLARE_PEM_read_bio(name, type) /**/ # define DECLARE_PEM_write_bio(name, type) /**/ # define DECLARE_PEM_write_bio_const(name, type) /**/ # define DECLARE_PEM_write_cb_bio(name, type) /**/ # endif # define DECLARE_PEM_write(name, type) \ DECLARE_PEM_write_bio(name, type) \ DECLARE_PEM_write_fp(name, type) # define DECLARE_PEM_write_const(name, type) \ DECLARE_PEM_write_bio_const(name, type) \ DECLARE_PEM_write_fp_const(name, type) # define DECLARE_PEM_write_cb(name, type) \ DECLARE_PEM_write_cb_bio(name, type) \ DECLARE_PEM_write_cb_fp(name, type) # define DECLARE_PEM_read(name, type) \ DECLARE_PEM_read_bio(name, type) \ DECLARE_PEM_read_fp(name, type) # define DECLARE_PEM_rw(name, type) \ DECLARE_PEM_read(name, type) \ DECLARE_PEM_write(name, type) # define DECLARE_PEM_rw_const(name, type) \ DECLARE_PEM_read(name, type) \ DECLARE_PEM_write_const(name, type) # define DECLARE_PEM_rw_cb(name, type) \ DECLARE_PEM_read(name, type) \ DECLARE_PEM_write_cb(name, type) # if 1 /* "userdata": new with OpenSSL 0.9.4 */ typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata); # else /* OpenSSL 0.9.3, 0.9.3a */ typedef int pem_password_cb (char *buf, int size, int rwflag); # endif int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher); int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *len, pem_password_cb *callback, void *u); # ifndef OPENSSL_NO_BIO int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data, long *len); int PEM_write_bio(BIO *bp, const char *name, const char *hdr, const unsigned char *data, long len); int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp, pem_password_cb *cb, void *u); void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x, pem_password_cb *cb, void *u); int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u); STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u); int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cd, void *u); # endif int PEM_read(FILE *fp, char **name, char **header, unsigned char **data, long *len); int PEM_write(FILE *fp, const char *name, const char *hdr, const unsigned char *data, long len); void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x, pem_password_cb *cb, void *u); int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, void *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *callback, void *u); STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u); int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type, EVP_MD *md_type, unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk, int npubk); void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, unsigned char *in, int inl); int PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig, int *sigl, unsigned char *out, int *outl, EVP_PKEY *priv); void PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type); void PEM_SignUpdate(EVP_MD_CTX *ctx, unsigned char *d, unsigned int cnt); int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, unsigned int *siglen, EVP_PKEY *pkey); int PEM_def_callback(char *buf, int num, int w, void *key); void PEM_proc_type(char *buf, int type); void PEM_dek_info(char *buf, const char *type, int len, char *str); # include DECLARE_PEM_rw(X509, X509) DECLARE_PEM_rw(X509_AUX, X509) DECLARE_PEM_rw(X509_CERT_PAIR, X509_CERT_PAIR) DECLARE_PEM_rw(X509_REQ, X509_REQ) DECLARE_PEM_write(X509_REQ_NEW, X509_REQ) DECLARE_PEM_rw(X509_CRL, X509_CRL) DECLARE_PEM_rw(PKCS7, PKCS7) DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE) DECLARE_PEM_rw(PKCS8, X509_SIG) DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO) # ifndef OPENSSL_NO_RSA DECLARE_PEM_rw_cb(RSAPrivateKey, RSA) DECLARE_PEM_rw_const(RSAPublicKey, RSA) DECLARE_PEM_rw(RSA_PUBKEY, RSA) # endif # ifndef OPENSSL_NO_DSA DECLARE_PEM_rw_cb(DSAPrivateKey, DSA) DECLARE_PEM_rw(DSA_PUBKEY, DSA) DECLARE_PEM_rw_const(DSAparams, DSA) # endif # ifndef OPENSSL_NO_EC DECLARE_PEM_rw_const(ECPKParameters, EC_GROUP) DECLARE_PEM_rw_cb(ECPrivateKey, EC_KEY) DECLARE_PEM_rw(EC_PUBKEY, EC_KEY) # endif # ifndef OPENSSL_NO_DH DECLARE_PEM_rw_const(DHparams, DH) DECLARE_PEM_write_const(DHxparams, DH) # endif DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY) DECLARE_PEM_rw(PUBKEY, EVP_PKEY) int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u); int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *, char *, int, pem_password_cb *, void *); int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, char *kstr, int klen, pem_password_cb *cb, void *u); int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u); EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u); int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, char *kstr, int klen, pem_password_cb *cb, void *u); int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u); int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, char *kstr, int klen, pem_password_cb *cb, void *u); EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u); int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, char *kstr, int klen, pem_password_cb *cd, void *u); EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x); int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x); EVP_PKEY *b2i_PrivateKey(const unsigned char **in, long length); EVP_PKEY *b2i_PublicKey(const unsigned char **in, long length); EVP_PKEY *b2i_PrivateKey_bio(BIO *in); EVP_PKEY *b2i_PublicKey_bio(BIO *in); int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk); int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk); # ifndef OPENSSL_NO_RC4 EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u); int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel, pem_password_cb *cb, void *u); # endif /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_PEM_strings(void); /* Error codes for the PEM functions. */ /* Function codes. */ # define PEM_F_B2I_DSS 127 # define PEM_F_B2I_PVK_BIO 128 # define PEM_F_B2I_RSA 129 # define PEM_F_CHECK_BITLEN_DSA 130 # define PEM_F_CHECK_BITLEN_RSA 131 # define PEM_F_D2I_PKCS8PRIVATEKEY_BIO 120 # define PEM_F_D2I_PKCS8PRIVATEKEY_FP 121 # define PEM_F_DO_B2I 132 # define PEM_F_DO_B2I_BIO 133 # define PEM_F_DO_BLOB_HEADER 134 # define PEM_F_DO_PK8PKEY 126 # define PEM_F_DO_PK8PKEY_FP 125 # define PEM_F_DO_PVK_BODY 135 # define PEM_F_DO_PVK_HEADER 136 # define PEM_F_I2B_PVK 137 # define PEM_F_I2B_PVK_BIO 138 # define PEM_F_LOAD_IV 101 # define PEM_F_PEM_ASN1_READ 102 # define PEM_F_PEM_ASN1_READ_BIO 103 # define PEM_F_PEM_ASN1_WRITE 104 # define PEM_F_PEM_ASN1_WRITE_BIO 105 # define PEM_F_PEM_DEF_CALLBACK 100 # define PEM_F_PEM_DO_HEADER 106 # define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY 118 # define PEM_F_PEM_GET_EVP_CIPHER_INFO 107 # define PEM_F_PEM_PK8PKEY 119 # define PEM_F_PEM_READ 108 # define PEM_F_PEM_READ_BIO 109 # define PEM_F_PEM_READ_BIO_DHPARAMS 141 # define PEM_F_PEM_READ_BIO_PARAMETERS 140 # define PEM_F_PEM_READ_BIO_PRIVATEKEY 123 # define PEM_F_PEM_READ_DHPARAMS 142 # define PEM_F_PEM_READ_PRIVATEKEY 124 # define PEM_F_PEM_SEALFINAL 110 # define PEM_F_PEM_SEALINIT 111 # define PEM_F_PEM_SIGNFINAL 112 # define PEM_F_PEM_WRITE 113 # define PEM_F_PEM_WRITE_BIO 114 # define PEM_F_PEM_WRITE_PRIVATEKEY 139 # define PEM_F_PEM_X509_INFO_READ 115 # define PEM_F_PEM_X509_INFO_READ_BIO 116 # define PEM_F_PEM_X509_INFO_WRITE_BIO 117 /* Reason codes. */ # define PEM_R_BAD_BASE64_DECODE 100 # define PEM_R_BAD_DECRYPT 101 # define PEM_R_BAD_END_LINE 102 # define PEM_R_BAD_IV_CHARS 103 # define PEM_R_BAD_MAGIC_NUMBER 116 # define PEM_R_BAD_PASSWORD_READ 104 # define PEM_R_BAD_VERSION_NUMBER 117 # define PEM_R_BIO_WRITE_FAILURE 118 # define PEM_R_CIPHER_IS_NULL 127 # define PEM_R_ERROR_CONVERTING_PRIVATE_KEY 115 # define PEM_R_EXPECTING_PRIVATE_KEY_BLOB 119 # define PEM_R_EXPECTING_PUBLIC_KEY_BLOB 120 # define PEM_R_HEADER_TOO_LONG 128 # define PEM_R_INCONSISTENT_HEADER 121 # define PEM_R_KEYBLOB_HEADER_PARSE_ERROR 122 # define PEM_R_KEYBLOB_TOO_SHORT 123 # define PEM_R_NOT_DEK_INFO 105 # define PEM_R_NOT_ENCRYPTED 106 # define PEM_R_NOT_PROC_TYPE 107 # define PEM_R_NO_START_LINE 108 # define PEM_R_PROBLEMS_GETTING_PASSWORD 109 # define PEM_R_PUBLIC_KEY_NO_RSA 110 # define PEM_R_PVK_DATA_TOO_SHORT 124 # define PEM_R_PVK_TOO_SHORT 125 # define PEM_R_READ_KEY 111 # define PEM_R_SHORT_HEADER 112 # define PEM_R_UNSUPPORTED_CIPHER 113 # define PEM_R_UNSUPPORTED_ENCRYPTION 114 # define PEM_R_UNSUPPORTED_KEY_COMPONENTS 126 # ifdef __cplusplus } # endif #endif ================================================ FILE: third_party/include/openssl/pem2.h ================================================ /* ==================================================================== * Copyright (c) 1999 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* * This header only exists to break a circular dependency between pem and err * Ben 30 Jan 1999. */ #ifdef __cplusplus extern "C" { #endif #ifndef HEADER_PEM_H void ERR_load_PEM_strings(void); #endif #ifdef __cplusplus } #endif ================================================ FILE: third_party/include/openssl/pkcs12.h ================================================ /* pkcs12.h */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project * 1999. */ /* ==================================================================== * Copyright (c) 1999 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_PKCS12_H # define HEADER_PKCS12_H # include # include #ifdef __cplusplus extern "C" { #endif # define PKCS12_KEY_ID 1 # define PKCS12_IV_ID 2 # define PKCS12_MAC_ID 3 /* Default iteration count */ # ifndef PKCS12_DEFAULT_ITER # define PKCS12_DEFAULT_ITER PKCS5_DEFAULT_ITER # endif # define PKCS12_MAC_KEY_LENGTH 20 # define PKCS12_SALT_LEN 8 /* Uncomment out next line for unicode password and names, otherwise ASCII */ /* * #define PBE_UNICODE */ # ifdef PBE_UNICODE # define PKCS12_key_gen PKCS12_key_gen_uni # define PKCS12_add_friendlyname PKCS12_add_friendlyname_uni # else # define PKCS12_key_gen PKCS12_key_gen_asc # define PKCS12_add_friendlyname PKCS12_add_friendlyname_asc # endif /* MS key usage constants */ # define KEY_EX 0x10 # define KEY_SIG 0x80 typedef struct { X509_SIG *dinfo; ASN1_OCTET_STRING *salt; ASN1_INTEGER *iter; /* defaults to 1 */ } PKCS12_MAC_DATA; typedef struct { ASN1_INTEGER *version; PKCS12_MAC_DATA *mac; PKCS7 *authsafes; } PKCS12; typedef struct { ASN1_OBJECT *type; union { struct pkcs12_bag_st *bag; /* secret, crl and certbag */ struct pkcs8_priv_key_info_st *keybag; /* keybag */ X509_SIG *shkeybag; /* shrouded key bag */ STACK_OF(PKCS12_SAFEBAG) *safes; ASN1_TYPE *other; } value; STACK_OF(X509_ATTRIBUTE) *attrib; } PKCS12_SAFEBAG; DECLARE_STACK_OF(PKCS12_SAFEBAG) DECLARE_ASN1_SET_OF(PKCS12_SAFEBAG) DECLARE_PKCS12_STACK_OF(PKCS12_SAFEBAG) typedef struct pkcs12_bag_st { ASN1_OBJECT *type; union { ASN1_OCTET_STRING *x509cert; ASN1_OCTET_STRING *x509crl; ASN1_OCTET_STRING *octet; ASN1_IA5STRING *sdsicert; ASN1_TYPE *other; /* Secret or other bag */ } value; } PKCS12_BAGS; # define PKCS12_ERROR 0 # define PKCS12_OK 1 /* Compatibility macros */ # define M_PKCS12_x5092certbag PKCS12_x5092certbag # define M_PKCS12_x509crl2certbag PKCS12_x509crl2certbag # define M_PKCS12_certbag2x509 PKCS12_certbag2x509 # define M_PKCS12_certbag2x509crl PKCS12_certbag2x509crl # define M_PKCS12_unpack_p7data PKCS12_unpack_p7data # define M_PKCS12_pack_authsafes PKCS12_pack_authsafes # define M_PKCS12_unpack_authsafes PKCS12_unpack_authsafes # define M_PKCS12_unpack_p7encdata PKCS12_unpack_p7encdata # define M_PKCS12_decrypt_skey PKCS12_decrypt_skey # define M_PKCS8_decrypt PKCS8_decrypt # define M_PKCS12_bag_type(bg) OBJ_obj2nid((bg)->type) # define M_PKCS12_cert_bag_type(bg) OBJ_obj2nid((bg)->value.bag->type) # define M_PKCS12_crl_bag_type M_PKCS12_cert_bag_type # define PKCS12_get_attr(bag, attr_nid) \ PKCS12_get_attr_gen(bag->attrib, attr_nid) # define PKCS8_get_attr(p8, attr_nid) \ PKCS12_get_attr_gen(p8->attributes, attr_nid) # define PKCS12_mac_present(p12) ((p12)->mac ? 1 : 0) PKCS12_SAFEBAG *PKCS12_x5092certbag(X509 *x509); PKCS12_SAFEBAG *PKCS12_x509crl2certbag(X509_CRL *crl); X509 *PKCS12_certbag2x509(PKCS12_SAFEBAG *bag); X509_CRL *PKCS12_certbag2x509crl(PKCS12_SAFEBAG *bag); PKCS12_SAFEBAG *PKCS12_item_pack_safebag(void *obj, const ASN1_ITEM *it, int nid1, int nid2); PKCS12_SAFEBAG *PKCS12_MAKE_KEYBAG(PKCS8_PRIV_KEY_INFO *p8); PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(X509_SIG *p8, const char *pass, int passlen); PKCS8_PRIV_KEY_INFO *PKCS12_decrypt_skey(PKCS12_SAFEBAG *bag, const char *pass, int passlen); X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher, const char *pass, int passlen, unsigned char *salt, int saltlen, int iter, PKCS8_PRIV_KEY_INFO *p8); PKCS12_SAFEBAG *PKCS12_MAKE_SHKEYBAG(int pbe_nid, const char *pass, int passlen, unsigned char *salt, int saltlen, int iter, PKCS8_PRIV_KEY_INFO *p8); PKCS7 *PKCS12_pack_p7data(STACK_OF(PKCS12_SAFEBAG) *sk); STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7); PKCS7 *PKCS12_pack_p7encdata(int pbe_nid, const char *pass, int passlen, unsigned char *salt, int saltlen, int iter, STACK_OF(PKCS12_SAFEBAG) *bags); STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7encdata(PKCS7 *p7, const char *pass, int passlen); int PKCS12_pack_authsafes(PKCS12 *p12, STACK_OF(PKCS7) *safes); STACK_OF(PKCS7) *PKCS12_unpack_authsafes(PKCS12 *p12); int PKCS12_add_localkeyid(PKCS12_SAFEBAG *bag, unsigned char *name, int namelen); int PKCS12_add_friendlyname_asc(PKCS12_SAFEBAG *bag, const char *name, int namelen); int PKCS12_add_CSPName_asc(PKCS12_SAFEBAG *bag, const char *name, int namelen); int PKCS12_add_friendlyname_uni(PKCS12_SAFEBAG *bag, const unsigned char *name, int namelen); int PKCS8_add_keyusage(PKCS8_PRIV_KEY_INFO *p8, int usage); ASN1_TYPE *PKCS12_get_attr_gen(STACK_OF(X509_ATTRIBUTE) *attrs, int attr_nid); char *PKCS12_get_friendlyname(PKCS12_SAFEBAG *bag); unsigned char *PKCS12_pbe_crypt(X509_ALGOR *algor, const char *pass, int passlen, unsigned char *in, int inlen, unsigned char **data, int *datalen, int en_de); void *PKCS12_item_decrypt_d2i(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, ASN1_OCTET_STRING *oct, int zbuf); ASN1_OCTET_STRING *PKCS12_item_i2d_encrypt(X509_ALGOR *algor, const ASN1_ITEM *it, const char *pass, int passlen, void *obj, int zbuf); PKCS12 *PKCS12_init(int mode); int PKCS12_key_gen_asc(const char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type); int PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt, int saltlen, int id, int iter, int n, unsigned char *out, const EVP_MD *md_type); int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md_type, int en_de); int PKCS12_gen_mac(PKCS12 *p12, const char *pass, int passlen, unsigned char *mac, unsigned int *maclen); int PKCS12_verify_mac(PKCS12 *p12, const char *pass, int passlen); int PKCS12_set_mac(PKCS12 *p12, const char *pass, int passlen, unsigned char *salt, int saltlen, int iter, const EVP_MD *md_type); int PKCS12_setup_mac(PKCS12 *p12, int iter, unsigned char *salt, int saltlen, const EVP_MD *md_type); unsigned char *OPENSSL_asc2uni(const char *asc, int asclen, unsigned char **uni, int *unilen); char *OPENSSL_uni2asc(unsigned char *uni, int unilen); DECLARE_ASN1_FUNCTIONS(PKCS12) DECLARE_ASN1_FUNCTIONS(PKCS12_MAC_DATA) DECLARE_ASN1_FUNCTIONS(PKCS12_SAFEBAG) DECLARE_ASN1_FUNCTIONS(PKCS12_BAGS) DECLARE_ASN1_ITEM(PKCS12_SAFEBAGS) DECLARE_ASN1_ITEM(PKCS12_AUTHSAFES) void PKCS12_PBE_add(void); int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca); PKCS12 *PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert, STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter, int keytype); PKCS12_SAFEBAG *PKCS12_add_cert(STACK_OF(PKCS12_SAFEBAG) **pbags, X509 *cert); PKCS12_SAFEBAG *PKCS12_add_key(STACK_OF(PKCS12_SAFEBAG) **pbags, EVP_PKEY *key, int key_usage, int iter, int key_nid, char *pass); int PKCS12_add_safe(STACK_OF(PKCS7) **psafes, STACK_OF(PKCS12_SAFEBAG) *bags, int safe_nid, int iter, char *pass); PKCS12 *PKCS12_add_safes(STACK_OF(PKCS7) *safes, int p7_nid); int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12); int i2d_PKCS12_fp(FILE *fp, PKCS12 *p12); PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12); PKCS12 *d2i_PKCS12_fp(FILE *fp, PKCS12 **p12); int PKCS12_newpass(PKCS12 *p12, const char *oldpass, const char *newpass); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_PKCS12_strings(void); /* Error codes for the PKCS12 functions. */ /* Function codes. */ # define PKCS12_F_PARSE_BAG 129 # define PKCS12_F_PARSE_BAGS 103 # define PKCS12_F_PKCS12_ADD_FRIENDLYNAME 100 # define PKCS12_F_PKCS12_ADD_FRIENDLYNAME_ASC 127 # define PKCS12_F_PKCS12_ADD_FRIENDLYNAME_UNI 102 # define PKCS12_F_PKCS12_ADD_LOCALKEYID 104 # define PKCS12_F_PKCS12_CREATE 105 # define PKCS12_F_PKCS12_GEN_MAC 107 # define PKCS12_F_PKCS12_INIT 109 # define PKCS12_F_PKCS12_ITEM_DECRYPT_D2I 106 # define PKCS12_F_PKCS12_ITEM_I2D_ENCRYPT 108 # define PKCS12_F_PKCS12_ITEM_PACK_SAFEBAG 117 # define PKCS12_F_PKCS12_KEY_GEN_ASC 110 # define PKCS12_F_PKCS12_KEY_GEN_UNI 111 # define PKCS12_F_PKCS12_MAKE_KEYBAG 112 # define PKCS12_F_PKCS12_MAKE_SHKEYBAG 113 # define PKCS12_F_PKCS12_NEWPASS 128 # define PKCS12_F_PKCS12_PACK_P7DATA 114 # define PKCS12_F_PKCS12_PACK_P7ENCDATA 115 # define PKCS12_F_PKCS12_PARSE 118 # define PKCS12_F_PKCS12_PBE_CRYPT 119 # define PKCS12_F_PKCS12_PBE_KEYIVGEN 120 # define PKCS12_F_PKCS12_SETUP_MAC 122 # define PKCS12_F_PKCS12_SET_MAC 123 # define PKCS12_F_PKCS12_UNPACK_AUTHSAFES 130 # define PKCS12_F_PKCS12_UNPACK_P7DATA 131 # define PKCS12_F_PKCS12_VERIFY_MAC 126 # define PKCS12_F_PKCS8_ADD_KEYUSAGE 124 # define PKCS12_F_PKCS8_ENCRYPT 125 /* Reason codes. */ # define PKCS12_R_CANT_PACK_STRUCTURE 100 # define PKCS12_R_CONTENT_TYPE_NOT_DATA 121 # define PKCS12_R_DECODE_ERROR 101 # define PKCS12_R_ENCODE_ERROR 102 # define PKCS12_R_ENCRYPT_ERROR 103 # define PKCS12_R_ERROR_SETTING_ENCRYPTED_DATA_TYPE 120 # define PKCS12_R_INVALID_NULL_ARGUMENT 104 # define PKCS12_R_INVALID_NULL_PKCS12_POINTER 105 # define PKCS12_R_IV_GEN_ERROR 106 # define PKCS12_R_KEY_GEN_ERROR 107 # define PKCS12_R_MAC_ABSENT 108 # define PKCS12_R_MAC_GENERATION_ERROR 109 # define PKCS12_R_MAC_SETUP_ERROR 110 # define PKCS12_R_MAC_STRING_SET_ERROR 111 # define PKCS12_R_MAC_VERIFY_ERROR 112 # define PKCS12_R_MAC_VERIFY_FAILURE 113 # define PKCS12_R_PARSE_ERROR 114 # define PKCS12_R_PKCS12_ALGOR_CIPHERINIT_ERROR 115 # define PKCS12_R_PKCS12_CIPHERFINAL_ERROR 116 # define PKCS12_R_PKCS12_PBE_CRYPT_ERROR 117 # define PKCS12_R_UNKNOWN_DIGEST_ALGORITHM 118 # define PKCS12_R_UNSUPPORTED_PKCS12_MODE 119 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/pkcs7.h ================================================ /* crypto/pkcs7/pkcs7.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_PKCS7_H # define HEADER_PKCS7_H # include # include # include # include # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_SYS_WIN32 /* Under Win32 thes are defined in wincrypt.h */ # undef PKCS7_ISSUER_AND_SERIAL # undef PKCS7_SIGNER_INFO # endif /*- Encryption_ID DES-CBC Digest_ID MD5 Digest_Encryption_ID rsaEncryption Key_Encryption_ID rsaEncryption */ typedef struct pkcs7_issuer_and_serial_st { X509_NAME *issuer; ASN1_INTEGER *serial; } PKCS7_ISSUER_AND_SERIAL; typedef struct pkcs7_signer_info_st { ASN1_INTEGER *version; /* version 1 */ PKCS7_ISSUER_AND_SERIAL *issuer_and_serial; X509_ALGOR *digest_alg; STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */ X509_ALGOR *digest_enc_alg; ASN1_OCTET_STRING *enc_digest; STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */ /* The private key to sign with */ EVP_PKEY *pkey; } PKCS7_SIGNER_INFO; DECLARE_STACK_OF(PKCS7_SIGNER_INFO) DECLARE_ASN1_SET_OF(PKCS7_SIGNER_INFO) typedef struct pkcs7_recip_info_st { ASN1_INTEGER *version; /* version 0 */ PKCS7_ISSUER_AND_SERIAL *issuer_and_serial; X509_ALGOR *key_enc_algor; ASN1_OCTET_STRING *enc_key; X509 *cert; /* get the pub-key from this */ } PKCS7_RECIP_INFO; DECLARE_STACK_OF(PKCS7_RECIP_INFO) DECLARE_ASN1_SET_OF(PKCS7_RECIP_INFO) typedef struct pkcs7_signed_st { ASN1_INTEGER *version; /* version 1 */ STACK_OF(X509_ALGOR) *md_algs; /* md used */ STACK_OF(X509) *cert; /* [ 0 ] */ STACK_OF(X509_CRL) *crl; /* [ 1 ] */ STACK_OF(PKCS7_SIGNER_INFO) *signer_info; struct pkcs7_st *contents; } PKCS7_SIGNED; /* * The above structure is very very similar to PKCS7_SIGN_ENVELOPE. How about * merging the two */ typedef struct pkcs7_enc_content_st { ASN1_OBJECT *content_type; X509_ALGOR *algorithm; ASN1_OCTET_STRING *enc_data; /* [ 0 ] */ const EVP_CIPHER *cipher; } PKCS7_ENC_CONTENT; typedef struct pkcs7_enveloped_st { ASN1_INTEGER *version; /* version 0 */ STACK_OF(PKCS7_RECIP_INFO) *recipientinfo; PKCS7_ENC_CONTENT *enc_data; } PKCS7_ENVELOPE; typedef struct pkcs7_signedandenveloped_st { ASN1_INTEGER *version; /* version 1 */ STACK_OF(X509_ALGOR) *md_algs; /* md used */ STACK_OF(X509) *cert; /* [ 0 ] */ STACK_OF(X509_CRL) *crl; /* [ 1 ] */ STACK_OF(PKCS7_SIGNER_INFO) *signer_info; PKCS7_ENC_CONTENT *enc_data; STACK_OF(PKCS7_RECIP_INFO) *recipientinfo; } PKCS7_SIGN_ENVELOPE; typedef struct pkcs7_digest_st { ASN1_INTEGER *version; /* version 0 */ X509_ALGOR *md; /* md used */ struct pkcs7_st *contents; ASN1_OCTET_STRING *digest; } PKCS7_DIGEST; typedef struct pkcs7_encrypted_st { ASN1_INTEGER *version; /* version 0 */ PKCS7_ENC_CONTENT *enc_data; } PKCS7_ENCRYPT; typedef struct pkcs7_st { /* * The following is non NULL if it contains ASN1 encoding of this * structure */ unsigned char *asn1; long length; # define PKCS7_S_HEADER 0 # define PKCS7_S_BODY 1 # define PKCS7_S_TAIL 2 int state; /* used during processing */ int detached; ASN1_OBJECT *type; /* content as defined by the type */ /* * all encryption/message digests are applied to the 'contents', leaving * out the 'type' field. */ union { char *ptr; /* NID_pkcs7_data */ ASN1_OCTET_STRING *data; /* NID_pkcs7_signed */ PKCS7_SIGNED *sign; /* NID_pkcs7_enveloped */ PKCS7_ENVELOPE *enveloped; /* NID_pkcs7_signedAndEnveloped */ PKCS7_SIGN_ENVELOPE *signed_and_enveloped; /* NID_pkcs7_digest */ PKCS7_DIGEST *digest; /* NID_pkcs7_encrypted */ PKCS7_ENCRYPT *encrypted; /* Anything else */ ASN1_TYPE *other; } d; } PKCS7; DECLARE_STACK_OF(PKCS7) DECLARE_ASN1_SET_OF(PKCS7) DECLARE_PKCS12_STACK_OF(PKCS7) # define PKCS7_OP_SET_DETACHED_SIGNATURE 1 # define PKCS7_OP_GET_DETACHED_SIGNATURE 2 # define PKCS7_get_signed_attributes(si) ((si)->auth_attr) # define PKCS7_get_attributes(si) ((si)->unauth_attr) # define PKCS7_type_is_signed(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_signed) # define PKCS7_type_is_encrypted(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_encrypted) # define PKCS7_type_is_enveloped(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_enveloped) # define PKCS7_type_is_signedAndEnveloped(a) \ (OBJ_obj2nid((a)->type) == NID_pkcs7_signedAndEnveloped) # define PKCS7_type_is_data(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_data) # define PKCS7_type_is_digest(a) (OBJ_obj2nid((a)->type) == NID_pkcs7_digest) # define PKCS7_set_detached(p,v) \ PKCS7_ctrl(p,PKCS7_OP_SET_DETACHED_SIGNATURE,v,NULL) # define PKCS7_get_detached(p) \ PKCS7_ctrl(p,PKCS7_OP_GET_DETACHED_SIGNATURE,0,NULL) # define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7)) /* S/MIME related flags */ # define PKCS7_TEXT 0x1 # define PKCS7_NOCERTS 0x2 # define PKCS7_NOSIGS 0x4 # define PKCS7_NOCHAIN 0x8 # define PKCS7_NOINTERN 0x10 # define PKCS7_NOVERIFY 0x20 # define PKCS7_DETACHED 0x40 # define PKCS7_BINARY 0x80 # define PKCS7_NOATTR 0x100 # define PKCS7_NOSMIMECAP 0x200 # define PKCS7_NOOLDMIMETYPE 0x400 # define PKCS7_CRLFEOL 0x800 # define PKCS7_STREAM 0x1000 # define PKCS7_NOCRL 0x2000 # define PKCS7_PARTIAL 0x4000 # define PKCS7_REUSE_DIGEST 0x8000 /* Flags: for compatibility with older code */ # define SMIME_TEXT PKCS7_TEXT # define SMIME_NOCERTS PKCS7_NOCERTS # define SMIME_NOSIGS PKCS7_NOSIGS # define SMIME_NOCHAIN PKCS7_NOCHAIN # define SMIME_NOINTERN PKCS7_NOINTERN # define SMIME_NOVERIFY PKCS7_NOVERIFY # define SMIME_DETACHED PKCS7_DETACHED # define SMIME_BINARY PKCS7_BINARY # define SMIME_NOATTR PKCS7_NOATTR DECLARE_ASN1_FUNCTIONS(PKCS7_ISSUER_AND_SERIAL) int PKCS7_ISSUER_AND_SERIAL_digest(PKCS7_ISSUER_AND_SERIAL *data, const EVP_MD *type, unsigned char *md, unsigned int *len); # ifndef OPENSSL_NO_FP_API PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7); int i2d_PKCS7_fp(FILE *fp, PKCS7 *p7); # endif PKCS7 *PKCS7_dup(PKCS7 *p7); PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 **p7); int i2d_PKCS7_bio(BIO *bp, PKCS7 *p7); int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); DECLARE_ASN1_FUNCTIONS(PKCS7_SIGNER_INFO) DECLARE_ASN1_FUNCTIONS(PKCS7_RECIP_INFO) DECLARE_ASN1_FUNCTIONS(PKCS7_SIGNED) DECLARE_ASN1_FUNCTIONS(PKCS7_ENC_CONTENT) DECLARE_ASN1_FUNCTIONS(PKCS7_ENVELOPE) DECLARE_ASN1_FUNCTIONS(PKCS7_SIGN_ENVELOPE) DECLARE_ASN1_FUNCTIONS(PKCS7_DIGEST) DECLARE_ASN1_FUNCTIONS(PKCS7_ENCRYPT) DECLARE_ASN1_FUNCTIONS(PKCS7) DECLARE_ASN1_ITEM(PKCS7_ATTR_SIGN) DECLARE_ASN1_ITEM(PKCS7_ATTR_VERIFY) DECLARE_ASN1_NDEF_FUNCTION(PKCS7) DECLARE_ASN1_PRINT_FUNCTION(PKCS7) long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg); int PKCS7_set_type(PKCS7 *p7, int type); int PKCS7_set0_type_other(PKCS7 *p7, int type, ASN1_TYPE *other); int PKCS7_set_content(PKCS7 *p7, PKCS7 *p7_data); int PKCS7_SIGNER_INFO_set(PKCS7_SIGNER_INFO *p7i, X509 *x509, EVP_PKEY *pkey, const EVP_MD *dgst); int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si); int PKCS7_add_signer(PKCS7 *p7, PKCS7_SIGNER_INFO *p7i); int PKCS7_add_certificate(PKCS7 *p7, X509 *x509); int PKCS7_add_crl(PKCS7 *p7, X509_CRL *x509); int PKCS7_content_new(PKCS7 *p7, int nid); int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si); int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si, X509 *x509); BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio); int PKCS7_dataFinal(PKCS7 *p7, BIO *bio); BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert); PKCS7_SIGNER_INFO *PKCS7_add_signature(PKCS7 *p7, X509 *x509, EVP_PKEY *pkey, const EVP_MD *dgst); X509 *PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si); int PKCS7_set_digest(PKCS7 *p7, const EVP_MD *md); STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); PKCS7_RECIP_INFO *PKCS7_add_recipient(PKCS7 *p7, X509 *x509); void PKCS7_SIGNER_INFO_get0_algs(PKCS7_SIGNER_INFO *si, EVP_PKEY **pk, X509_ALGOR **pdig, X509_ALGOR **psig); void PKCS7_RECIP_INFO_get0_alg(PKCS7_RECIP_INFO *ri, X509_ALGOR **penc); int PKCS7_add_recipient_info(PKCS7 *p7, PKCS7_RECIP_INFO *ri); int PKCS7_RECIP_INFO_set(PKCS7_RECIP_INFO *p7i, X509 *x509); int PKCS7_set_cipher(PKCS7 *p7, const EVP_CIPHER *cipher); int PKCS7_stream(unsigned char ***boundary, PKCS7 *p7); PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx); ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk); int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int type, void *data); int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype, void *value); ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid); ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid); int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si, STACK_OF(X509_ATTRIBUTE) *sk); int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si, STACK_OF(X509_ATTRIBUTE) *sk); PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags); PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert, EVP_PKEY *pkey, const EVP_MD *md, int flags); int PKCS7_final(PKCS7 *p7, BIO *data, int flags); int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags); STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags); PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags); int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags); int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si, STACK_OF(X509_ALGOR) *cap); STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si); int PKCS7_simple_smimecap(STACK_OF(X509_ALGOR) *sk, int nid, int arg); int PKCS7_add_attrib_content_type(PKCS7_SIGNER_INFO *si, ASN1_OBJECT *coid); int PKCS7_add0_attrib_signing_time(PKCS7_SIGNER_INFO *si, ASN1_TIME *t); int PKCS7_add1_attrib_digest(PKCS7_SIGNER_INFO *si, const unsigned char *md, int mdlen); int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags); PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont); BIO *BIO_new_PKCS7(BIO *out, PKCS7 *p7); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_PKCS7_strings(void); /* Error codes for the PKCS7 functions. */ /* Function codes. */ # define PKCS7_F_B64_READ_PKCS7 120 # define PKCS7_F_B64_WRITE_PKCS7 121 # define PKCS7_F_DO_PKCS7_SIGNED_ATTRIB 136 # define PKCS7_F_I2D_PKCS7_BIO_STREAM 140 # define PKCS7_F_PKCS7_ADD0_ATTRIB_SIGNING_TIME 135 # define PKCS7_F_PKCS7_ADD_ATTRIB_SMIMECAP 118 # define PKCS7_F_PKCS7_ADD_CERTIFICATE 100 # define PKCS7_F_PKCS7_ADD_CRL 101 # define PKCS7_F_PKCS7_ADD_RECIPIENT_INFO 102 # define PKCS7_F_PKCS7_ADD_SIGNATURE 131 # define PKCS7_F_PKCS7_ADD_SIGNER 103 # define PKCS7_F_PKCS7_BIO_ADD_DIGEST 125 # define PKCS7_F_PKCS7_COPY_EXISTING_DIGEST 138 # define PKCS7_F_PKCS7_CTRL 104 # define PKCS7_F_PKCS7_DATADECODE 112 # define PKCS7_F_PKCS7_DATAFINAL 128 # define PKCS7_F_PKCS7_DATAINIT 105 # define PKCS7_F_PKCS7_DATASIGN 106 # define PKCS7_F_PKCS7_DATAVERIFY 107 # define PKCS7_F_PKCS7_DECRYPT 114 # define PKCS7_F_PKCS7_DECRYPT_RINFO 133 # define PKCS7_F_PKCS7_ENCODE_RINFO 132 # define PKCS7_F_PKCS7_ENCRYPT 115 # define PKCS7_F_PKCS7_FINAL 134 # define PKCS7_F_PKCS7_FIND_DIGEST 127 # define PKCS7_F_PKCS7_GET0_SIGNERS 124 # define PKCS7_F_PKCS7_RECIP_INFO_SET 130 # define PKCS7_F_PKCS7_SET_CIPHER 108 # define PKCS7_F_PKCS7_SET_CONTENT 109 # define PKCS7_F_PKCS7_SET_DIGEST 126 # define PKCS7_F_PKCS7_SET_TYPE 110 # define PKCS7_F_PKCS7_SIGN 116 # define PKCS7_F_PKCS7_SIGNATUREVERIFY 113 # define PKCS7_F_PKCS7_SIGNER_INFO_SET 129 # define PKCS7_F_PKCS7_SIGNER_INFO_SIGN 139 # define PKCS7_F_PKCS7_SIGN_ADD_SIGNER 137 # define PKCS7_F_PKCS7_SIMPLE_SMIMECAP 119 # define PKCS7_F_PKCS7_VERIFY 117 # define PKCS7_F_SMIME_READ_PKCS7 122 # define PKCS7_F_SMIME_TEXT 123 /* Reason codes. */ # define PKCS7_R_CERTIFICATE_VERIFY_ERROR 117 # define PKCS7_R_CIPHER_HAS_NO_OBJECT_IDENTIFIER 144 # define PKCS7_R_CIPHER_NOT_INITIALIZED 116 # define PKCS7_R_CONTENT_AND_DATA_PRESENT 118 # define PKCS7_R_CTRL_ERROR 152 # define PKCS7_R_DECODE_ERROR 130 # define PKCS7_R_DECRYPTED_KEY_IS_WRONG_LENGTH 100 # define PKCS7_R_DECRYPT_ERROR 119 # define PKCS7_R_DIGEST_FAILURE 101 # define PKCS7_R_ENCRYPTION_CTRL_FAILURE 149 # define PKCS7_R_ENCRYPTION_NOT_SUPPORTED_FOR_THIS_KEY_TYPE 150 # define PKCS7_R_ERROR_ADDING_RECIPIENT 120 # define PKCS7_R_ERROR_SETTING_CIPHER 121 # define PKCS7_R_INVALID_MIME_TYPE 131 # define PKCS7_R_INVALID_NULL_POINTER 143 # define PKCS7_R_INVALID_SIGNED_DATA_TYPE 155 # define PKCS7_R_MIME_NO_CONTENT_TYPE 132 # define PKCS7_R_MIME_PARSE_ERROR 133 # define PKCS7_R_MIME_SIG_PARSE_ERROR 134 # define PKCS7_R_MISSING_CERIPEND_INFO 103 # define PKCS7_R_NO_CONTENT 122 # define PKCS7_R_NO_CONTENT_TYPE 135 # define PKCS7_R_NO_DEFAULT_DIGEST 151 # define PKCS7_R_NO_MATCHING_DIGEST_TYPE_FOUND 154 # define PKCS7_R_NO_MULTIPART_BODY_FAILURE 136 # define PKCS7_R_NO_MULTIPART_BOUNDARY 137 # define PKCS7_R_NO_RECIPIENT_MATCHES_CERTIFICATE 115 # define PKCS7_R_NO_RECIPIENT_MATCHES_KEY 146 # define PKCS7_R_NO_SIGNATURES_ON_DATA 123 # define PKCS7_R_NO_SIGNERS 142 # define PKCS7_R_NO_SIG_CONTENT_TYPE 138 # define PKCS7_R_OPERATION_NOT_SUPPORTED_ON_THIS_TYPE 104 # define PKCS7_R_PKCS7_ADD_SIGNATURE_ERROR 124 # define PKCS7_R_PKCS7_ADD_SIGNER_ERROR 153 # define PKCS7_R_PKCS7_DATAFINAL 126 # define PKCS7_R_PKCS7_DATAFINAL_ERROR 125 # define PKCS7_R_PKCS7_DATASIGN 145 # define PKCS7_R_PKCS7_PARSE_ERROR 139 # define PKCS7_R_PKCS7_SIG_PARSE_ERROR 140 # define PKCS7_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 127 # define PKCS7_R_SIGNATURE_FAILURE 105 # define PKCS7_R_SIGNER_CERTIFICATE_NOT_FOUND 128 # define PKCS7_R_SIGNING_CTRL_FAILURE 147 # define PKCS7_R_SIGNING_NOT_SUPPORTED_FOR_THIS_KEY_TYPE 148 # define PKCS7_R_SIG_INVALID_MIME_TYPE 141 # define PKCS7_R_SMIME_TEXT_ERROR 129 # define PKCS7_R_UNABLE_TO_FIND_CERTIFICATE 106 # define PKCS7_R_UNABLE_TO_FIND_MEM_BIO 107 # define PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST 108 # define PKCS7_R_UNKNOWN_DIGEST_TYPE 109 # define PKCS7_R_UNKNOWN_OPERATION 110 # define PKCS7_R_UNSUPPORTED_CIPHER_TYPE 111 # define PKCS7_R_UNSUPPORTED_CONTENT_TYPE 112 # define PKCS7_R_WRONG_CONTENT_TYPE 113 # define PKCS7_R_WRONG_PKCS7_TYPE 114 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/pqueue.h ================================================ /* crypto/pqueue/pqueue.h */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. */ /* ==================================================================== * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_PQUEUE_H # define HEADER_PQUEUE_H # include # include # include #ifdef __cplusplus extern "C" { #endif typedef struct _pqueue *pqueue; typedef struct _pitem { unsigned char priority[8]; /* 64-bit value in big-endian encoding */ void *data; struct _pitem *next; } pitem; typedef struct _pitem *piterator; pitem *pitem_new(unsigned char *prio64be, void *data); void pitem_free(pitem *item); pqueue pqueue_new(void); void pqueue_free(pqueue pq); pitem *pqueue_insert(pqueue pq, pitem *item); pitem *pqueue_peek(pqueue pq); pitem *pqueue_pop(pqueue pq); pitem *pqueue_find(pqueue pq, unsigned char *prio64be); pitem *pqueue_iterator(pqueue pq); pitem *pqueue_next(piterator *iter); void pqueue_print(pqueue pq); int pqueue_size(pqueue pq); #ifdef __cplusplus } #endif #endif /* ! HEADER_PQUEUE_H */ ================================================ FILE: third_party/include/openssl/rand.h ================================================ /* crypto/rand/rand.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_RAND_H # define HEADER_RAND_H # include # include # include # if defined(OPENSSL_SYS_WINDOWS) # include # endif #ifdef __cplusplus extern "C" { #endif # if defined(OPENSSL_FIPS) # define FIPS_RAND_SIZE_T size_t # endif /* Already defined in ossl_typ.h */ /* typedef struct rand_meth_st RAND_METHOD; */ struct rand_meth_st { void (*seed) (const void *buf, int num); int (*bytes) (unsigned char *buf, int num); void (*cleanup) (void); void (*add) (const void *buf, int num, double entropy); int (*pseudorand) (unsigned char *buf, int num); int (*status) (void); }; # ifdef BN_DEBUG extern int rand_predictable; # endif int RAND_set_rand_method(const RAND_METHOD *meth); const RAND_METHOD *RAND_get_rand_method(void); # ifndef OPENSSL_NO_ENGINE int RAND_set_rand_engine(ENGINE *engine); # endif RAND_METHOD *RAND_SSLeay(void); void RAND_cleanup(void); int RAND_bytes(unsigned char *buf, int num); int RAND_pseudo_bytes(unsigned char *buf, int num); void RAND_seed(const void *buf, int num); void RAND_add(const void *buf, int num, double entropy); int RAND_load_file(const char *file, long max_bytes); int RAND_write_file(const char *file); const char *RAND_file_name(char *file, size_t num); int RAND_status(void); int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes); int RAND_egd(const char *path); int RAND_egd_bytes(const char *path, int bytes); int RAND_poll(void); # if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) void RAND_screen(void); int RAND_event(UINT, WPARAM, LPARAM); # endif # ifdef OPENSSL_FIPS void RAND_set_fips_drbg_type(int type, int flags); int RAND_init_fips(void); # endif /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_RAND_strings(void); /* Error codes for the RAND functions. */ /* Function codes. */ # define RAND_F_RAND_GET_RAND_METHOD 101 # define RAND_F_RAND_INIT_FIPS 102 # define RAND_F_SSLEAY_RAND_BYTES 100 /* Reason codes. */ # define RAND_R_DUAL_EC_DRBG_DISABLED 104 # define RAND_R_ERROR_INITIALISING_DRBG 102 # define RAND_R_ERROR_INSTANTIATING_DRBG 103 # define RAND_R_NO_FIPS_RANDOM_METHOD_SET 101 # define RAND_R_PRNG_NOT_SEEDED 100 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/rc2.h ================================================ /* crypto/rc2/rc2.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_RC2_H # define HEADER_RC2_H # include /* OPENSSL_NO_RC2, RC2_INT */ # ifdef OPENSSL_NO_RC2 # error RC2 is disabled. # endif # define RC2_ENCRYPT 1 # define RC2_DECRYPT 0 # define RC2_BLOCK 8 # define RC2_KEY_LENGTH 16 #ifdef __cplusplus extern "C" { #endif typedef struct rc2_key_st { RC2_INT data[64]; } RC2_KEY; # ifdef OPENSSL_FIPS void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits); # endif void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits); void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *key, int enc); void RC2_encrypt(unsigned long *data, RC2_KEY *key); void RC2_decrypt(unsigned long *data, RC2_KEY *key); void RC2_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, RC2_KEY *ks, unsigned char *iv, int enc); void RC2_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length, RC2_KEY *schedule, unsigned char *ivec, int *num, int enc); void RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, RC2_KEY *schedule, unsigned char *ivec, int *num); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/rc4.h ================================================ /* crypto/rc4/rc4.h */ /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_RC4_H # define HEADER_RC4_H # include /* OPENSSL_NO_RC4, RC4_INT */ # ifdef OPENSSL_NO_RC4 # error RC4 is disabled. # endif # include #ifdef __cplusplus extern "C" { #endif typedef struct rc4_key_st { RC4_INT x, y; RC4_INT data[256]; } RC4_KEY; const char *RC4_options(void); void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, unsigned char *outdata); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ripemd.h ================================================ /* crypto/ripemd/ripemd.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_RIPEMD_H # define HEADER_RIPEMD_H # include # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_NO_RIPEMD # error RIPEMD is disabled. # endif # if defined(__LP32__) # define RIPEMD160_LONG unsigned long # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) # define RIPEMD160_LONG unsigned long # define RIPEMD160_LONG_LOG2 3 # else # define RIPEMD160_LONG unsigned int # endif # define RIPEMD160_CBLOCK 64 # define RIPEMD160_LBLOCK (RIPEMD160_CBLOCK/4) # define RIPEMD160_DIGEST_LENGTH 20 typedef struct RIPEMD160state_st { RIPEMD160_LONG A, B, C, D, E; RIPEMD160_LONG Nl, Nh; RIPEMD160_LONG data[RIPEMD160_LBLOCK]; unsigned int num; } RIPEMD160_CTX; # ifdef OPENSSL_FIPS int private_RIPEMD160_Init(RIPEMD160_CTX *c); # endif int RIPEMD160_Init(RIPEMD160_CTX *c); int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len); int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md); void RIPEMD160_Transform(RIPEMD160_CTX *c, const unsigned char *b); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/rsa.h ================================================ /* crypto/rsa/rsa.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_RSA_H # define HEADER_RSA_H # include # ifndef OPENSSL_NO_BIO # include # endif # include # include # ifndef OPENSSL_NO_DEPRECATED # include # endif # ifdef OPENSSL_NO_RSA # error RSA is disabled. # endif #ifdef __cplusplus extern "C" { #endif /* Declared already in ossl_typ.h */ /* typedef struct rsa_st RSA; */ /* typedef struct rsa_meth_st RSA_METHOD; */ struct rsa_meth_st { const char *name; int (*rsa_pub_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int (*rsa_pub_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int (*rsa_priv_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int (*rsa_priv_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); /* Can be null */ int (*rsa_mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx); /* Can be null */ int (*bn_mod_exp) (BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); /* called at new */ int (*init) (RSA *rsa); /* called at free */ int (*finish) (RSA *rsa); /* RSA_METHOD_FLAG_* things */ int flags; /* may be needed! */ char *app_data; /* * New sign and verify functions: some libraries don't allow arbitrary * data to be signed/verified: this allows them to be used. Note: for * this to work the RSA_public_decrypt() and RSA_private_encrypt() should * *NOT* be used RSA_sign(), RSA_verify() should be used instead. Note: * for backwards compatibility this functionality is only enabled if the * RSA_FLAG_SIGN_VER option is set in 'flags'. */ int (*rsa_sign) (int type, const unsigned char *m, unsigned int m_length, unsigned char *sigret, unsigned int *siglen, const RSA *rsa); int (*rsa_verify) (int dtype, const unsigned char *m, unsigned int m_length, const unsigned char *sigbuf, unsigned int siglen, const RSA *rsa); /* * If this callback is NULL, the builtin software RSA key-gen will be * used. This is for behavioural compatibility whilst the code gets * rewired, but one day it would be nice to assume there are no such * things as "builtin software" implementations. */ int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); }; struct rsa_st { /* * The first parameter is used to pickup errors where this is passed * instead of aEVP_PKEY, it is set to 0 */ int pad; long version; const RSA_METHOD *meth; /* functional reference if 'meth' is ENGINE-provided */ ENGINE *engine; BIGNUM *n; BIGNUM *e; BIGNUM *d; BIGNUM *p; BIGNUM *q; BIGNUM *dmp1; BIGNUM *dmq1; BIGNUM *iqmp; /* be careful using this if the RSA structure is shared */ CRYPTO_EX_DATA ex_data; int references; int flags; /* Used to cache montgomery values */ BN_MONT_CTX *_method_mod_n; BN_MONT_CTX *_method_mod_p; BN_MONT_CTX *_method_mod_q; /* * all BIGNUM values are actually in the following data, if it is not * NULL */ char *bignum_data; BN_BLINDING *blinding; BN_BLINDING *mt_blinding; }; # ifndef OPENSSL_RSA_MAX_MODULUS_BITS # define OPENSSL_RSA_MAX_MODULUS_BITS 16384 # endif # ifndef OPENSSL_RSA_SMALL_MODULUS_BITS # define OPENSSL_RSA_SMALL_MODULUS_BITS 3072 # endif # ifndef OPENSSL_RSA_MAX_PUBEXP_BITS /* exponent limit enforced for "large" modulus only */ # define OPENSSL_RSA_MAX_PUBEXP_BITS 64 # endif # define RSA_3 0x3L # define RSA_F4 0x10001L # define RSA_METHOD_FLAG_NO_CHECK 0x0001/* don't check pub/private * match */ # define RSA_FLAG_CACHE_PUBLIC 0x0002 # define RSA_FLAG_CACHE_PRIVATE 0x0004 # define RSA_FLAG_BLINDING 0x0008 # define RSA_FLAG_THREAD_SAFE 0x0010 /* * This flag means the private key operations will be handled by rsa_mod_exp * and that they do not depend on the private key components being present: * for example a key stored in external hardware. Without this flag * bn_mod_exp gets called when private key components are absent. */ # define RSA_FLAG_EXT_PKEY 0x0020 /* * This flag in the RSA_METHOD enables the new rsa_sign, rsa_verify * functions. */ # define RSA_FLAG_SIGN_VER 0x0040 /* * new with 0.9.6j and 0.9.7b; the built-in * RSA implementation now uses blinding by * default (ignoring RSA_FLAG_BLINDING), * but other engines might not need it */ # define RSA_FLAG_NO_BLINDING 0x0080 /* * new with 0.9.8f; the built-in RSA * implementation now uses constant time * operations by default in private key operations, * e.g., constant time modular exponentiation, * modular inverse without leaking branches, * division without leaking branches. This * flag disables these constant time * operations and results in faster RSA * private key operations. */ # define RSA_FLAG_NO_CONSTTIME 0x0100 # ifdef OPENSSL_USE_DEPRECATED /* deprecated name for the flag*/ /* * new with 0.9.7h; the built-in RSA * implementation now uses constant time * modular exponentiation for secret exponents * by default. This flag causes the * faster variable sliding window method to * be used for all exponents. */ # define RSA_FLAG_NO_EXP_CONSTTIME RSA_FLAG_NO_CONSTTIME # endif # define EVP_PKEY_CTX_set_rsa_padding(ctx, pad) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, EVP_PKEY_CTRL_RSA_PADDING, \ pad, NULL) # define EVP_PKEY_CTX_get_rsa_padding(ctx, ppad) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, \ EVP_PKEY_CTRL_GET_RSA_PADDING, 0, ppad) # define EVP_PKEY_CTX_set_rsa_pss_saltlen(ctx, len) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, \ (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \ EVP_PKEY_CTRL_RSA_PSS_SALTLEN, \ len, NULL) # define EVP_PKEY_CTX_get_rsa_pss_saltlen(ctx, plen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, \ (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \ EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN, \ 0, plen) # define EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, bits) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN, \ EVP_PKEY_CTRL_RSA_KEYGEN_BITS, bits, NULL) # define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN, \ EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp) # define EVP_PKEY_CTX_set_rsa_mgf1_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, \ EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_RSA_MGF1_MD, 0, (void *)md) # define EVP_PKEY_CTX_set_rsa_oaep_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_RSA_OAEP_MD, 0, (void *)md) # define EVP_PKEY_CTX_get_rsa_mgf1_md(ctx, pmd) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, \ EVP_PKEY_OP_TYPE_SIG | EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_GET_RSA_MGF1_MD, 0, (void *)pmd) # define EVP_PKEY_CTX_get_rsa_oaep_md(ctx, pmd) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_GET_RSA_OAEP_MD, 0, (void *)pmd) # define EVP_PKEY_CTX_set0_rsa_oaep_label(ctx, l, llen) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_RSA_OAEP_LABEL, llen, (void *)l) # define EVP_PKEY_CTX_get0_rsa_oaep_label(ctx, l) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_TYPE_CRYPT, \ EVP_PKEY_CTRL_GET_RSA_OAEP_LABEL, 0, (void *)l) # define EVP_PKEY_CTRL_RSA_PADDING (EVP_PKEY_ALG_CTRL + 1) # define EVP_PKEY_CTRL_RSA_PSS_SALTLEN (EVP_PKEY_ALG_CTRL + 2) # define EVP_PKEY_CTRL_RSA_KEYGEN_BITS (EVP_PKEY_ALG_CTRL + 3) # define EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP (EVP_PKEY_ALG_CTRL + 4) # define EVP_PKEY_CTRL_RSA_MGF1_MD (EVP_PKEY_ALG_CTRL + 5) # define EVP_PKEY_CTRL_GET_RSA_PADDING (EVP_PKEY_ALG_CTRL + 6) # define EVP_PKEY_CTRL_GET_RSA_PSS_SALTLEN (EVP_PKEY_ALG_CTRL + 7) # define EVP_PKEY_CTRL_GET_RSA_MGF1_MD (EVP_PKEY_ALG_CTRL + 8) # define EVP_PKEY_CTRL_RSA_OAEP_MD (EVP_PKEY_ALG_CTRL + 9) # define EVP_PKEY_CTRL_RSA_OAEP_LABEL (EVP_PKEY_ALG_CTRL + 10) # define EVP_PKEY_CTRL_GET_RSA_OAEP_MD (EVP_PKEY_ALG_CTRL + 11) # define EVP_PKEY_CTRL_GET_RSA_OAEP_LABEL (EVP_PKEY_ALG_CTRL + 12) # define RSA_PKCS1_PADDING 1 # define RSA_SSLV23_PADDING 2 # define RSA_NO_PADDING 3 # define RSA_PKCS1_OAEP_PADDING 4 # define RSA_X931_PADDING 5 /* EVP_PKEY_ only */ # define RSA_PKCS1_PSS_PADDING 6 # define RSA_PKCS1_PADDING_SIZE 11 # define RSA_set_app_data(s,arg) RSA_set_ex_data(s,0,arg) # define RSA_get_app_data(s) RSA_get_ex_data(s,0) RSA *RSA_new(void); RSA *RSA_new_method(ENGINE *engine); int RSA_size(const RSA *rsa); /* Deprecated version */ # ifndef OPENSSL_NO_DEPRECATED RSA *RSA_generate_key(int bits, unsigned long e, void (*callback) (int, int, void *), void *cb_arg); # endif /* !defined(OPENSSL_NO_DEPRECATED) */ /* New version */ int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); int RSA_check_key(const RSA *); /* next 4 return -1 on error */ int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); int RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding); void RSA_free(RSA *r); /* "up" the RSA object's reference count */ int RSA_up_ref(RSA *r); int RSA_flags(const RSA *r); void RSA_set_default_method(const RSA_METHOD *meth); const RSA_METHOD *RSA_get_default_method(void); const RSA_METHOD *RSA_get_method(const RSA *rsa); int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); /* This function needs the memory locking malloc callbacks to be installed */ int RSA_memory_lock(RSA *r); /* these are the actual SSLeay RSA functions */ const RSA_METHOD *RSA_PKCS1_SSLeay(void); const RSA_METHOD *RSA_null_method(void); DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPublicKey) DECLARE_ASN1_ENCODE_FUNCTIONS_const(RSA, RSAPrivateKey) typedef struct rsa_pss_params_st { X509_ALGOR *hashAlgorithm; X509_ALGOR *maskGenAlgorithm; ASN1_INTEGER *saltLength; ASN1_INTEGER *trailerField; } RSA_PSS_PARAMS; DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS) typedef struct rsa_oaep_params_st { X509_ALGOR *hashFunc; X509_ALGOR *maskGenFunc; X509_ALGOR *pSourceFunc; } RSA_OAEP_PARAMS; DECLARE_ASN1_FUNCTIONS(RSA_OAEP_PARAMS) # ifndef OPENSSL_NO_FP_API int RSA_print_fp(FILE *fp, const RSA *r, int offset); # endif # ifndef OPENSSL_NO_BIO int RSA_print(BIO *bp, const RSA *r, int offset); # endif # ifndef OPENSSL_NO_RC4 int i2d_RSA_NET(const RSA *a, unsigned char **pp, int (*cb) (char *buf, int len, const char *prompt, int verify), int sgckey); RSA *d2i_RSA_NET(RSA **a, const unsigned char **pp, long length, int (*cb) (char *buf, int len, const char *prompt, int verify), int sgckey); int i2d_Netscape_RSA(const RSA *a, unsigned char **pp, int (*cb) (char *buf, int len, const char *prompt, int verify)); RSA *d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb) (char *buf, int len, const char *prompt, int verify)); # endif /* * The following 2 functions sign and verify a X509_SIG ASN1 object inside * PKCS#1 padded RSA encryption */ int RSA_sign(int type, const unsigned char *m, unsigned int m_length, unsigned char *sigret, unsigned int *siglen, RSA *rsa); int RSA_verify(int type, const unsigned char *m, unsigned int m_length, const unsigned char *sigbuf, unsigned int siglen, RSA *rsa); /* * The following 2 function sign and verify a ASN1_OCTET_STRING object inside * PKCS#1 padded RSA encryption */ int RSA_sign_ASN1_OCTET_STRING(int type, const unsigned char *m, unsigned int m_length, unsigned char *sigret, unsigned int *siglen, RSA *rsa); int RSA_verify_ASN1_OCTET_STRING(int type, const unsigned char *m, unsigned int m_length, unsigned char *sigbuf, unsigned int siglen, RSA *rsa); int RSA_blinding_on(RSA *rsa, BN_CTX *ctx); void RSA_blinding_off(RSA *rsa); BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *ctx); int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *f, int fl); int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len); int RSA_padding_add_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *f, int fl); int RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len); int PKCS1_MGF1(unsigned char *mask, long len, const unsigned char *seed, long seedlen, const EVP_MD *dgst); int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, const unsigned char *f, int fl, const unsigned char *p, int pl); int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len, const unsigned char *p, int pl); int RSA_padding_add_PKCS1_OAEP_mgf1(unsigned char *to, int tlen, const unsigned char *from, int flen, const unsigned char *param, int plen, const EVP_MD *md, const EVP_MD *mgf1md); int RSA_padding_check_PKCS1_OAEP_mgf1(unsigned char *to, int tlen, const unsigned char *from, int flen, int num, const unsigned char *param, int plen, const EVP_MD *md, const EVP_MD *mgf1md); int RSA_padding_add_SSLv23(unsigned char *to, int tlen, const unsigned char *f, int fl); int RSA_padding_check_SSLv23(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len); int RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *f, int fl); int RSA_padding_check_none(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len); int RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *f, int fl); int RSA_padding_check_X931(unsigned char *to, int tlen, const unsigned char *f, int fl, int rsa_len); int RSA_X931_hash_id(int nid); int RSA_verify_PKCS1_PSS(RSA *rsa, const unsigned char *mHash, const EVP_MD *Hash, const unsigned char *EM, int sLen); int RSA_padding_add_PKCS1_PSS(RSA *rsa, unsigned char *EM, const unsigned char *mHash, const EVP_MD *Hash, int sLen); int RSA_verify_PKCS1_PSS_mgf1(RSA *rsa, const unsigned char *mHash, const EVP_MD *Hash, const EVP_MD *mgf1Hash, const unsigned char *EM, int sLen); int RSA_padding_add_PKCS1_PSS_mgf1(RSA *rsa, unsigned char *EM, const unsigned char *mHash, const EVP_MD *Hash, const EVP_MD *mgf1Hash, int sLen); int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int RSA_set_ex_data(RSA *r, int idx, void *arg); void *RSA_get_ex_data(const RSA *r, int idx); RSA *RSAPublicKey_dup(RSA *rsa); RSA *RSAPrivateKey_dup(RSA *rsa); /* * If this flag is set the RSA method is FIPS compliant and can be used in * FIPS mode. This is set in the validated module method. If an application * sets this flag in its own methods it is its responsibility to ensure the * result is compliant. */ # define RSA_FLAG_FIPS_METHOD 0x0400 /* * If this flag is set the operations normally disabled in FIPS mode are * permitted it is then the applications responsibility to ensure that the * usage is compliant. */ # define RSA_FLAG_NON_FIPS_ALLOW 0x0400 /* * Application has decided PRNG is good enough to generate a key: don't * check. */ # define RSA_FLAG_CHECKED 0x0800 /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_RSA_strings(void); /* Error codes for the RSA functions. */ /* Function codes. */ # define RSA_F_CHECK_PADDING_MD 140 # define RSA_F_DO_RSA_PRINT 146 # define RSA_F_INT_RSA_VERIFY 145 # define RSA_F_MEMORY_LOCK 100 # define RSA_F_OLD_RSA_PRIV_DECODE 147 # define RSA_F_PKEY_RSA_CTRL 143 # define RSA_F_PKEY_RSA_CTRL_STR 144 # define RSA_F_PKEY_RSA_SIGN 142 # define RSA_F_PKEY_RSA_VERIFY 154 # define RSA_F_PKEY_RSA_VERIFYRECOVER 141 # define RSA_F_RSA_ALGOR_TO_MD 157 # define RSA_F_RSA_BUILTIN_KEYGEN 129 # define RSA_F_RSA_CHECK_KEY 123 # define RSA_F_RSA_CMS_DECRYPT 158 # define RSA_F_RSA_EAY_PRIVATE_DECRYPT 101 # define RSA_F_RSA_EAY_PRIVATE_ENCRYPT 102 # define RSA_F_RSA_EAY_PUBLIC_DECRYPT 103 # define RSA_F_RSA_EAY_PUBLIC_ENCRYPT 104 # define RSA_F_RSA_GENERATE_KEY 105 # define RSA_F_RSA_GENERATE_KEY_EX 155 # define RSA_F_RSA_ITEM_VERIFY 156 # define RSA_F_RSA_MEMORY_LOCK 130 # define RSA_F_RSA_MGF1_TO_MD 159 # define RSA_F_RSA_NEW_METHOD 106 # define RSA_F_RSA_NULL 124 # define RSA_F_RSA_NULL_MOD_EXP 131 # define RSA_F_RSA_NULL_PRIVATE_DECRYPT 132 # define RSA_F_RSA_NULL_PRIVATE_ENCRYPT 133 # define RSA_F_RSA_NULL_PUBLIC_DECRYPT 134 # define RSA_F_RSA_NULL_PUBLIC_ENCRYPT 135 # define RSA_F_RSA_PADDING_ADD_NONE 107 # define RSA_F_RSA_PADDING_ADD_PKCS1_OAEP 121 # define RSA_F_RSA_PADDING_ADD_PKCS1_OAEP_MGF1 160 # define RSA_F_RSA_PADDING_ADD_PKCS1_PSS 125 # define RSA_F_RSA_PADDING_ADD_PKCS1_PSS_MGF1 148 # define RSA_F_RSA_PADDING_ADD_PKCS1_TYPE_1 108 # define RSA_F_RSA_PADDING_ADD_PKCS1_TYPE_2 109 # define RSA_F_RSA_PADDING_ADD_SSLV23 110 # define RSA_F_RSA_PADDING_ADD_X931 127 # define RSA_F_RSA_PADDING_CHECK_NONE 111 # define RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP 122 # define RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP_MGF1 161 # define RSA_F_RSA_PADDING_CHECK_PKCS1_TYPE_1 112 # define RSA_F_RSA_PADDING_CHECK_PKCS1_TYPE_2 113 # define RSA_F_RSA_PADDING_CHECK_SSLV23 114 # define RSA_F_RSA_PADDING_CHECK_X931 128 # define RSA_F_RSA_PRINT 115 # define RSA_F_RSA_PRINT_FP 116 # define RSA_F_RSA_PRIVATE_DECRYPT 150 # define RSA_F_RSA_PRIVATE_ENCRYPT 151 # define RSA_F_RSA_PRIV_DECODE 137 # define RSA_F_RSA_PRIV_ENCODE 138 # define RSA_F_RSA_PSS_TO_CTX 162 # define RSA_F_RSA_PUBLIC_DECRYPT 152 # define RSA_F_RSA_PUBLIC_ENCRYPT 153 # define RSA_F_RSA_PUB_DECODE 139 # define RSA_F_RSA_SETUP_BLINDING 136 # define RSA_F_RSA_SIGN 117 # define RSA_F_RSA_SIGN_ASN1_OCTET_STRING 118 # define RSA_F_RSA_VERIFY 119 # define RSA_F_RSA_VERIFY_ASN1_OCTET_STRING 120 # define RSA_F_RSA_VERIFY_PKCS1_PSS 126 # define RSA_F_RSA_VERIFY_PKCS1_PSS_MGF1 149 /* Reason codes. */ # define RSA_R_ALGORITHM_MISMATCH 100 # define RSA_R_BAD_E_VALUE 101 # define RSA_R_BAD_FIXED_HEADER_DECRYPT 102 # define RSA_R_BAD_PAD_BYTE_COUNT 103 # define RSA_R_BAD_SIGNATURE 104 # define RSA_R_BLOCK_TYPE_IS_NOT_01 106 # define RSA_R_BLOCK_TYPE_IS_NOT_02 107 # define RSA_R_DATA_GREATER_THAN_MOD_LEN 108 # define RSA_R_DATA_TOO_LARGE 109 # define RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 110 # define RSA_R_DATA_TOO_LARGE_FOR_MODULUS 132 # define RSA_R_DATA_TOO_SMALL 111 # define RSA_R_DATA_TOO_SMALL_FOR_KEY_SIZE 122 # define RSA_R_DIGEST_DOES_NOT_MATCH 166 # define RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY 112 # define RSA_R_DMP1_NOT_CONGRUENT_TO_D 124 # define RSA_R_DMQ1_NOT_CONGRUENT_TO_D 125 # define RSA_R_D_E_NOT_CONGRUENT_TO_1 123 # define RSA_R_FIRST_OCTET_INVALID 133 # define RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 144 # define RSA_R_INVALID_DIGEST 160 # define RSA_R_INVALID_DIGEST_LENGTH 143 # define RSA_R_INVALID_HEADER 137 # define RSA_R_INVALID_KEYBITS 145 # define RSA_R_INVALID_LABEL 161 # define RSA_R_INVALID_MESSAGE_LENGTH 131 # define RSA_R_INVALID_MGF1_MD 156 # define RSA_R_INVALID_OAEP_PARAMETERS 162 # define RSA_R_INVALID_PADDING 138 # define RSA_R_INVALID_PADDING_MODE 141 # define RSA_R_INVALID_PSS_PARAMETERS 149 # define RSA_R_INVALID_PSS_SALTLEN 146 # define RSA_R_INVALID_SALT_LENGTH 150 # define RSA_R_INVALID_TRAILER 139 # define RSA_R_INVALID_X931_DIGEST 142 # define RSA_R_IQMP_NOT_INVERSE_OF_Q 126 # define RSA_R_KEY_SIZE_TOO_SMALL 120 # define RSA_R_LAST_OCTET_INVALID 134 # define RSA_R_MODULUS_TOO_LARGE 105 # define RSA_R_NON_FIPS_RSA_METHOD 157 # define RSA_R_NO_PUBLIC_EXPONENT 140 # define RSA_R_NULL_BEFORE_BLOCK_MISSING 113 # define RSA_R_N_DOES_NOT_EQUAL_P_Q 127 # define RSA_R_OAEP_DECODING_ERROR 121 # define RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE 158 # define RSA_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 148 # define RSA_R_PADDING_CHECK_FAILED 114 # define RSA_R_PKCS_DECODING_ERROR 159 # define RSA_R_P_NOT_PRIME 128 # define RSA_R_Q_NOT_PRIME 129 # define RSA_R_RSA_OPERATIONS_NOT_SUPPORTED 130 # define RSA_R_SLEN_CHECK_FAILED 136 # define RSA_R_SLEN_RECOVERY_FAILED 135 # define RSA_R_SSLV3_ROLLBACK_ATTACK 115 # define RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 116 # define RSA_R_UNKNOWN_ALGORITHM_TYPE 117 # define RSA_R_UNKNOWN_DIGEST 163 # define RSA_R_UNKNOWN_MASK_DIGEST 151 # define RSA_R_UNKNOWN_PADDING_TYPE 118 # define RSA_R_UNKNOWN_PSS_DIGEST 152 # define RSA_R_UNSUPPORTED_ENCRYPTION_TYPE 164 # define RSA_R_UNSUPPORTED_LABEL_SOURCE 165 # define RSA_R_UNSUPPORTED_MASK_ALGORITHM 153 # define RSA_R_UNSUPPORTED_MASK_PARAMETER 154 # define RSA_R_UNSUPPORTED_SIGNATURE_TYPE 155 # define RSA_R_VALUE_MISSING 147 # define RSA_R_WRONG_SIGNATURE_LENGTH 119 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/safestack.h ================================================ /* ==================================================================== * Copyright (c) 1999 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_SAFESTACK_H # define HEADER_SAFESTACK_H # include #ifdef __cplusplus extern "C" { #endif # ifndef CHECKED_PTR_OF # define CHECKED_PTR_OF(type, p) \ ((void*) (1 ? p : (type*)0)) # endif /* * In C++ we get problems because an explicit cast is needed from (void *) we * use CHECKED_STACK_OF to ensure the correct type is passed in the macros * below. */ # define CHECKED_STACK_OF(type, p) \ ((_STACK*) (1 ? p : (STACK_OF(type)*)0)) # define CHECKED_SK_COPY_FUNC(type, p) \ ((void *(*)(void *)) ((1 ? p : (type *(*)(const type *))0))) # define CHECKED_SK_FREE_FUNC(type, p) \ ((void (*)(void *)) ((1 ? p : (void (*)(type *))0))) # define CHECKED_SK_CMP_FUNC(type, p) \ ((int (*)(const void *, const void *)) \ ((1 ? p : (int (*)(const type * const *, const type * const *))0))) # define STACK_OF(type) struct stack_st_##type # define PREDECLARE_STACK_OF(type) STACK_OF(type); # define DECLARE_STACK_OF(type) \ STACK_OF(type) \ { \ _STACK stack; \ }; # define DECLARE_SPECIAL_STACK_OF(type, type2) \ STACK_OF(type) \ { \ _STACK stack; \ }; /* nada (obsolete in new safestack approach)*/ # define IMPLEMENT_STACK_OF(type) /*- * Strings are special: normally an lhash entry will point to a single * (somewhat) mutable object. In the case of strings: * * a) Instead of a single char, there is an array of chars, NUL-terminated. * b) The string may have be immutable. * * So, they need their own declarations. Especially important for * type-checking tools, such as Deputy. * * In practice, however, it appears to be hard to have a const * string. For now, I'm settling for dealing with the fact it is a * string at all. */ typedef char *OPENSSL_STRING; typedef const char *OPENSSL_CSTRING; /* * Confusingly, LHASH_OF(STRING) deals with char ** throughout, but * STACK_OF(STRING) is really more like STACK_OF(char), only, as mentioned * above, instead of a single char each entry is a NUL-terminated array of * chars. So, we have to implement STRING specially for STACK_OF. This is * dealt with in the autogenerated macros below. */ DECLARE_SPECIAL_STACK_OF(OPENSSL_STRING, char) /* * Similarly, we sometimes use a block of characters, NOT nul-terminated. * These should also be distinguished from "normal" stacks. */ typedef void *OPENSSL_BLOCK; DECLARE_SPECIAL_STACK_OF(OPENSSL_BLOCK, void) /* * SKM_sk_... stack macros are internal to safestack.h: never use them * directly, use sk__... instead */ # define SKM_sk_new(type, cmp) \ ((STACK_OF(type) *)sk_new(CHECKED_SK_CMP_FUNC(type, cmp))) # define SKM_sk_new_null(type) \ ((STACK_OF(type) *)sk_new_null()) # define SKM_sk_free(type, st) \ sk_free(CHECKED_STACK_OF(type, st)) # define SKM_sk_num(type, st) \ sk_num(CHECKED_STACK_OF(type, st)) # define SKM_sk_value(type, st,i) \ ((type *)sk_value(CHECKED_STACK_OF(type, st), i)) # define SKM_sk_set(type, st,i,val) \ sk_set(CHECKED_STACK_OF(type, st), i, CHECKED_PTR_OF(type, val)) # define SKM_sk_zero(type, st) \ sk_zero(CHECKED_STACK_OF(type, st)) # define SKM_sk_push(type, st, val) \ sk_push(CHECKED_STACK_OF(type, st), CHECKED_PTR_OF(type, val)) # define SKM_sk_unshift(type, st, val) \ sk_unshift(CHECKED_STACK_OF(type, st), CHECKED_PTR_OF(type, val)) # define SKM_sk_find(type, st, val) \ sk_find(CHECKED_STACK_OF(type, st), CHECKED_PTR_OF(type, val)) # define SKM_sk_find_ex(type, st, val) \ sk_find_ex(CHECKED_STACK_OF(type, st), \ CHECKED_PTR_OF(type, val)) # define SKM_sk_delete(type, st, i) \ (type *)sk_delete(CHECKED_STACK_OF(type, st), i) # define SKM_sk_delete_ptr(type, st, ptr) \ (type *)sk_delete_ptr(CHECKED_STACK_OF(type, st), CHECKED_PTR_OF(type, ptr)) # define SKM_sk_insert(type, st,val, i) \ sk_insert(CHECKED_STACK_OF(type, st), CHECKED_PTR_OF(type, val), i) # define SKM_sk_set_cmp_func(type, st, cmp) \ ((int (*)(const type * const *,const type * const *)) \ sk_set_cmp_func(CHECKED_STACK_OF(type, st), CHECKED_SK_CMP_FUNC(type, cmp))) # define SKM_sk_dup(type, st) \ (STACK_OF(type) *)sk_dup(CHECKED_STACK_OF(type, st)) # define SKM_sk_pop_free(type, st, free_func) \ sk_pop_free(CHECKED_STACK_OF(type, st), CHECKED_SK_FREE_FUNC(type, free_func)) # define SKM_sk_deep_copy(type, st, copy_func, free_func) \ (STACK_OF(type) *)sk_deep_copy(CHECKED_STACK_OF(type, st), CHECKED_SK_COPY_FUNC(type, copy_func), CHECKED_SK_FREE_FUNC(type, free_func)) # define SKM_sk_shift(type, st) \ (type *)sk_shift(CHECKED_STACK_OF(type, st)) # define SKM_sk_pop(type, st) \ (type *)sk_pop(CHECKED_STACK_OF(type, st)) # define SKM_sk_sort(type, st) \ sk_sort(CHECKED_STACK_OF(type, st)) # define SKM_sk_is_sorted(type, st) \ sk_is_sorted(CHECKED_STACK_OF(type, st)) # define SKM_ASN1_SET_OF_d2i(type, st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ (STACK_OF(type) *)d2i_ASN1_SET( \ (STACK_OF(OPENSSL_BLOCK) **)CHECKED_PTR_OF(STACK_OF(type)*, st), \ pp, length, \ CHECKED_D2I_OF(type, d2i_func), \ CHECKED_SK_FREE_FUNC(type, free_func), \ ex_tag, ex_class) # define SKM_ASN1_SET_OF_i2d(type, st, pp, i2d_func, ex_tag, ex_class, is_set) \ i2d_ASN1_SET((STACK_OF(OPENSSL_BLOCK) *)CHECKED_STACK_OF(type, st), pp, \ CHECKED_I2D_OF(type, i2d_func), \ ex_tag, ex_class, is_set) # define SKM_ASN1_seq_pack(type, st, i2d_func, buf, len) \ ASN1_seq_pack(CHECKED_PTR_OF(STACK_OF(type), st), \ CHECKED_I2D_OF(type, i2d_func), buf, len) # define SKM_ASN1_seq_unpack(type, buf, len, d2i_func, free_func) \ (STACK_OF(type) *)ASN1_seq_unpack(buf, len, CHECKED_D2I_OF(type, d2i_func), CHECKED_SK_FREE_FUNC(type, free_func)) # define SKM_PKCS12_decrypt_d2i(type, algor, d2i_func, free_func, pass, passlen, oct, seq) \ (STACK_OF(type) *)PKCS12_decrypt_d2i(algor, \ CHECKED_D2I_OF(type, d2i_func), \ CHECKED_SK_FREE_FUNC(type, free_func), \ pass, passlen, oct, seq) /* * This block of defines is updated by util/mkstack.pl, please do not touch! */ # define sk_ACCESS_DESCRIPTION_new(cmp) SKM_sk_new(ACCESS_DESCRIPTION, (cmp)) # define sk_ACCESS_DESCRIPTION_new_null() SKM_sk_new_null(ACCESS_DESCRIPTION) # define sk_ACCESS_DESCRIPTION_free(st) SKM_sk_free(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_num(st) SKM_sk_num(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_value(st, i) SKM_sk_value(ACCESS_DESCRIPTION, (st), (i)) # define sk_ACCESS_DESCRIPTION_set(st, i, val) SKM_sk_set(ACCESS_DESCRIPTION, (st), (i), (val)) # define sk_ACCESS_DESCRIPTION_zero(st) SKM_sk_zero(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_push(st, val) SKM_sk_push(ACCESS_DESCRIPTION, (st), (val)) # define sk_ACCESS_DESCRIPTION_unshift(st, val) SKM_sk_unshift(ACCESS_DESCRIPTION, (st), (val)) # define sk_ACCESS_DESCRIPTION_find(st, val) SKM_sk_find(ACCESS_DESCRIPTION, (st), (val)) # define sk_ACCESS_DESCRIPTION_find_ex(st, val) SKM_sk_find_ex(ACCESS_DESCRIPTION, (st), (val)) # define sk_ACCESS_DESCRIPTION_delete(st, i) SKM_sk_delete(ACCESS_DESCRIPTION, (st), (i)) # define sk_ACCESS_DESCRIPTION_delete_ptr(st, ptr) SKM_sk_delete_ptr(ACCESS_DESCRIPTION, (st), (ptr)) # define sk_ACCESS_DESCRIPTION_insert(st, val, i) SKM_sk_insert(ACCESS_DESCRIPTION, (st), (val), (i)) # define sk_ACCESS_DESCRIPTION_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ACCESS_DESCRIPTION, (st), (cmp)) # define sk_ACCESS_DESCRIPTION_dup(st) SKM_sk_dup(ACCESS_DESCRIPTION, st) # define sk_ACCESS_DESCRIPTION_pop_free(st, free_func) SKM_sk_pop_free(ACCESS_DESCRIPTION, (st), (free_func)) # define sk_ACCESS_DESCRIPTION_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ACCESS_DESCRIPTION, (st), (copy_func), (free_func)) # define sk_ACCESS_DESCRIPTION_shift(st) SKM_sk_shift(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_pop(st) SKM_sk_pop(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_sort(st) SKM_sk_sort(ACCESS_DESCRIPTION, (st)) # define sk_ACCESS_DESCRIPTION_is_sorted(st) SKM_sk_is_sorted(ACCESS_DESCRIPTION, (st)) # define sk_ASIdOrRange_new(cmp) SKM_sk_new(ASIdOrRange, (cmp)) # define sk_ASIdOrRange_new_null() SKM_sk_new_null(ASIdOrRange) # define sk_ASIdOrRange_free(st) SKM_sk_free(ASIdOrRange, (st)) # define sk_ASIdOrRange_num(st) SKM_sk_num(ASIdOrRange, (st)) # define sk_ASIdOrRange_value(st, i) SKM_sk_value(ASIdOrRange, (st), (i)) # define sk_ASIdOrRange_set(st, i, val) SKM_sk_set(ASIdOrRange, (st), (i), (val)) # define sk_ASIdOrRange_zero(st) SKM_sk_zero(ASIdOrRange, (st)) # define sk_ASIdOrRange_push(st, val) SKM_sk_push(ASIdOrRange, (st), (val)) # define sk_ASIdOrRange_unshift(st, val) SKM_sk_unshift(ASIdOrRange, (st), (val)) # define sk_ASIdOrRange_find(st, val) SKM_sk_find(ASIdOrRange, (st), (val)) # define sk_ASIdOrRange_find_ex(st, val) SKM_sk_find_ex(ASIdOrRange, (st), (val)) # define sk_ASIdOrRange_delete(st, i) SKM_sk_delete(ASIdOrRange, (st), (i)) # define sk_ASIdOrRange_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASIdOrRange, (st), (ptr)) # define sk_ASIdOrRange_insert(st, val, i) SKM_sk_insert(ASIdOrRange, (st), (val), (i)) # define sk_ASIdOrRange_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASIdOrRange, (st), (cmp)) # define sk_ASIdOrRange_dup(st) SKM_sk_dup(ASIdOrRange, st) # define sk_ASIdOrRange_pop_free(st, free_func) SKM_sk_pop_free(ASIdOrRange, (st), (free_func)) # define sk_ASIdOrRange_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASIdOrRange, (st), (copy_func), (free_func)) # define sk_ASIdOrRange_shift(st) SKM_sk_shift(ASIdOrRange, (st)) # define sk_ASIdOrRange_pop(st) SKM_sk_pop(ASIdOrRange, (st)) # define sk_ASIdOrRange_sort(st) SKM_sk_sort(ASIdOrRange, (st)) # define sk_ASIdOrRange_is_sorted(st) SKM_sk_is_sorted(ASIdOrRange, (st)) # define sk_ASN1_GENERALSTRING_new(cmp) SKM_sk_new(ASN1_GENERALSTRING, (cmp)) # define sk_ASN1_GENERALSTRING_new_null() SKM_sk_new_null(ASN1_GENERALSTRING) # define sk_ASN1_GENERALSTRING_free(st) SKM_sk_free(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_num(st) SKM_sk_num(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_value(st, i) SKM_sk_value(ASN1_GENERALSTRING, (st), (i)) # define sk_ASN1_GENERALSTRING_set(st, i, val) SKM_sk_set(ASN1_GENERALSTRING, (st), (i), (val)) # define sk_ASN1_GENERALSTRING_zero(st) SKM_sk_zero(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_push(st, val) SKM_sk_push(ASN1_GENERALSTRING, (st), (val)) # define sk_ASN1_GENERALSTRING_unshift(st, val) SKM_sk_unshift(ASN1_GENERALSTRING, (st), (val)) # define sk_ASN1_GENERALSTRING_find(st, val) SKM_sk_find(ASN1_GENERALSTRING, (st), (val)) # define sk_ASN1_GENERALSTRING_find_ex(st, val) SKM_sk_find_ex(ASN1_GENERALSTRING, (st), (val)) # define sk_ASN1_GENERALSTRING_delete(st, i) SKM_sk_delete(ASN1_GENERALSTRING, (st), (i)) # define sk_ASN1_GENERALSTRING_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_GENERALSTRING, (st), (ptr)) # define sk_ASN1_GENERALSTRING_insert(st, val, i) SKM_sk_insert(ASN1_GENERALSTRING, (st), (val), (i)) # define sk_ASN1_GENERALSTRING_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_GENERALSTRING, (st), (cmp)) # define sk_ASN1_GENERALSTRING_dup(st) SKM_sk_dup(ASN1_GENERALSTRING, st) # define sk_ASN1_GENERALSTRING_pop_free(st, free_func) SKM_sk_pop_free(ASN1_GENERALSTRING, (st), (free_func)) # define sk_ASN1_GENERALSTRING_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_GENERALSTRING, (st), (copy_func), (free_func)) # define sk_ASN1_GENERALSTRING_shift(st) SKM_sk_shift(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_pop(st) SKM_sk_pop(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_sort(st) SKM_sk_sort(ASN1_GENERALSTRING, (st)) # define sk_ASN1_GENERALSTRING_is_sorted(st) SKM_sk_is_sorted(ASN1_GENERALSTRING, (st)) # define sk_ASN1_INTEGER_new(cmp) SKM_sk_new(ASN1_INTEGER, (cmp)) # define sk_ASN1_INTEGER_new_null() SKM_sk_new_null(ASN1_INTEGER) # define sk_ASN1_INTEGER_free(st) SKM_sk_free(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_num(st) SKM_sk_num(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_value(st, i) SKM_sk_value(ASN1_INTEGER, (st), (i)) # define sk_ASN1_INTEGER_set(st, i, val) SKM_sk_set(ASN1_INTEGER, (st), (i), (val)) # define sk_ASN1_INTEGER_zero(st) SKM_sk_zero(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_push(st, val) SKM_sk_push(ASN1_INTEGER, (st), (val)) # define sk_ASN1_INTEGER_unshift(st, val) SKM_sk_unshift(ASN1_INTEGER, (st), (val)) # define sk_ASN1_INTEGER_find(st, val) SKM_sk_find(ASN1_INTEGER, (st), (val)) # define sk_ASN1_INTEGER_find_ex(st, val) SKM_sk_find_ex(ASN1_INTEGER, (st), (val)) # define sk_ASN1_INTEGER_delete(st, i) SKM_sk_delete(ASN1_INTEGER, (st), (i)) # define sk_ASN1_INTEGER_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_INTEGER, (st), (ptr)) # define sk_ASN1_INTEGER_insert(st, val, i) SKM_sk_insert(ASN1_INTEGER, (st), (val), (i)) # define sk_ASN1_INTEGER_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_INTEGER, (st), (cmp)) # define sk_ASN1_INTEGER_dup(st) SKM_sk_dup(ASN1_INTEGER, st) # define sk_ASN1_INTEGER_pop_free(st, free_func) SKM_sk_pop_free(ASN1_INTEGER, (st), (free_func)) # define sk_ASN1_INTEGER_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_INTEGER, (st), (copy_func), (free_func)) # define sk_ASN1_INTEGER_shift(st) SKM_sk_shift(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_pop(st) SKM_sk_pop(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_sort(st) SKM_sk_sort(ASN1_INTEGER, (st)) # define sk_ASN1_INTEGER_is_sorted(st) SKM_sk_is_sorted(ASN1_INTEGER, (st)) # define sk_ASN1_OBJECT_new(cmp) SKM_sk_new(ASN1_OBJECT, (cmp)) # define sk_ASN1_OBJECT_new_null() SKM_sk_new_null(ASN1_OBJECT) # define sk_ASN1_OBJECT_free(st) SKM_sk_free(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_num(st) SKM_sk_num(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_value(st, i) SKM_sk_value(ASN1_OBJECT, (st), (i)) # define sk_ASN1_OBJECT_set(st, i, val) SKM_sk_set(ASN1_OBJECT, (st), (i), (val)) # define sk_ASN1_OBJECT_zero(st) SKM_sk_zero(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_push(st, val) SKM_sk_push(ASN1_OBJECT, (st), (val)) # define sk_ASN1_OBJECT_unshift(st, val) SKM_sk_unshift(ASN1_OBJECT, (st), (val)) # define sk_ASN1_OBJECT_find(st, val) SKM_sk_find(ASN1_OBJECT, (st), (val)) # define sk_ASN1_OBJECT_find_ex(st, val) SKM_sk_find_ex(ASN1_OBJECT, (st), (val)) # define sk_ASN1_OBJECT_delete(st, i) SKM_sk_delete(ASN1_OBJECT, (st), (i)) # define sk_ASN1_OBJECT_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_OBJECT, (st), (ptr)) # define sk_ASN1_OBJECT_insert(st, val, i) SKM_sk_insert(ASN1_OBJECT, (st), (val), (i)) # define sk_ASN1_OBJECT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_OBJECT, (st), (cmp)) # define sk_ASN1_OBJECT_dup(st) SKM_sk_dup(ASN1_OBJECT, st) # define sk_ASN1_OBJECT_pop_free(st, free_func) SKM_sk_pop_free(ASN1_OBJECT, (st), (free_func)) # define sk_ASN1_OBJECT_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_OBJECT, (st), (copy_func), (free_func)) # define sk_ASN1_OBJECT_shift(st) SKM_sk_shift(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_pop(st) SKM_sk_pop(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_sort(st) SKM_sk_sort(ASN1_OBJECT, (st)) # define sk_ASN1_OBJECT_is_sorted(st) SKM_sk_is_sorted(ASN1_OBJECT, (st)) # define sk_ASN1_STRING_TABLE_new(cmp) SKM_sk_new(ASN1_STRING_TABLE, (cmp)) # define sk_ASN1_STRING_TABLE_new_null() SKM_sk_new_null(ASN1_STRING_TABLE) # define sk_ASN1_STRING_TABLE_free(st) SKM_sk_free(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_num(st) SKM_sk_num(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_value(st, i) SKM_sk_value(ASN1_STRING_TABLE, (st), (i)) # define sk_ASN1_STRING_TABLE_set(st, i, val) SKM_sk_set(ASN1_STRING_TABLE, (st), (i), (val)) # define sk_ASN1_STRING_TABLE_zero(st) SKM_sk_zero(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_push(st, val) SKM_sk_push(ASN1_STRING_TABLE, (st), (val)) # define sk_ASN1_STRING_TABLE_unshift(st, val) SKM_sk_unshift(ASN1_STRING_TABLE, (st), (val)) # define sk_ASN1_STRING_TABLE_find(st, val) SKM_sk_find(ASN1_STRING_TABLE, (st), (val)) # define sk_ASN1_STRING_TABLE_find_ex(st, val) SKM_sk_find_ex(ASN1_STRING_TABLE, (st), (val)) # define sk_ASN1_STRING_TABLE_delete(st, i) SKM_sk_delete(ASN1_STRING_TABLE, (st), (i)) # define sk_ASN1_STRING_TABLE_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_STRING_TABLE, (st), (ptr)) # define sk_ASN1_STRING_TABLE_insert(st, val, i) SKM_sk_insert(ASN1_STRING_TABLE, (st), (val), (i)) # define sk_ASN1_STRING_TABLE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_STRING_TABLE, (st), (cmp)) # define sk_ASN1_STRING_TABLE_dup(st) SKM_sk_dup(ASN1_STRING_TABLE, st) # define sk_ASN1_STRING_TABLE_pop_free(st, free_func) SKM_sk_pop_free(ASN1_STRING_TABLE, (st), (free_func)) # define sk_ASN1_STRING_TABLE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_STRING_TABLE, (st), (copy_func), (free_func)) # define sk_ASN1_STRING_TABLE_shift(st) SKM_sk_shift(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_pop(st) SKM_sk_pop(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_sort(st) SKM_sk_sort(ASN1_STRING_TABLE, (st)) # define sk_ASN1_STRING_TABLE_is_sorted(st) SKM_sk_is_sorted(ASN1_STRING_TABLE, (st)) # define sk_ASN1_TYPE_new(cmp) SKM_sk_new(ASN1_TYPE, (cmp)) # define sk_ASN1_TYPE_new_null() SKM_sk_new_null(ASN1_TYPE) # define sk_ASN1_TYPE_free(st) SKM_sk_free(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_num(st) SKM_sk_num(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_value(st, i) SKM_sk_value(ASN1_TYPE, (st), (i)) # define sk_ASN1_TYPE_set(st, i, val) SKM_sk_set(ASN1_TYPE, (st), (i), (val)) # define sk_ASN1_TYPE_zero(st) SKM_sk_zero(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_push(st, val) SKM_sk_push(ASN1_TYPE, (st), (val)) # define sk_ASN1_TYPE_unshift(st, val) SKM_sk_unshift(ASN1_TYPE, (st), (val)) # define sk_ASN1_TYPE_find(st, val) SKM_sk_find(ASN1_TYPE, (st), (val)) # define sk_ASN1_TYPE_find_ex(st, val) SKM_sk_find_ex(ASN1_TYPE, (st), (val)) # define sk_ASN1_TYPE_delete(st, i) SKM_sk_delete(ASN1_TYPE, (st), (i)) # define sk_ASN1_TYPE_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_TYPE, (st), (ptr)) # define sk_ASN1_TYPE_insert(st, val, i) SKM_sk_insert(ASN1_TYPE, (st), (val), (i)) # define sk_ASN1_TYPE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_TYPE, (st), (cmp)) # define sk_ASN1_TYPE_dup(st) SKM_sk_dup(ASN1_TYPE, st) # define sk_ASN1_TYPE_pop_free(st, free_func) SKM_sk_pop_free(ASN1_TYPE, (st), (free_func)) # define sk_ASN1_TYPE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_TYPE, (st), (copy_func), (free_func)) # define sk_ASN1_TYPE_shift(st) SKM_sk_shift(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_pop(st) SKM_sk_pop(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_sort(st) SKM_sk_sort(ASN1_TYPE, (st)) # define sk_ASN1_TYPE_is_sorted(st) SKM_sk_is_sorted(ASN1_TYPE, (st)) # define sk_ASN1_UTF8STRING_new(cmp) SKM_sk_new(ASN1_UTF8STRING, (cmp)) # define sk_ASN1_UTF8STRING_new_null() SKM_sk_new_null(ASN1_UTF8STRING) # define sk_ASN1_UTF8STRING_free(st) SKM_sk_free(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_num(st) SKM_sk_num(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_value(st, i) SKM_sk_value(ASN1_UTF8STRING, (st), (i)) # define sk_ASN1_UTF8STRING_set(st, i, val) SKM_sk_set(ASN1_UTF8STRING, (st), (i), (val)) # define sk_ASN1_UTF8STRING_zero(st) SKM_sk_zero(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_push(st, val) SKM_sk_push(ASN1_UTF8STRING, (st), (val)) # define sk_ASN1_UTF8STRING_unshift(st, val) SKM_sk_unshift(ASN1_UTF8STRING, (st), (val)) # define sk_ASN1_UTF8STRING_find(st, val) SKM_sk_find(ASN1_UTF8STRING, (st), (val)) # define sk_ASN1_UTF8STRING_find_ex(st, val) SKM_sk_find_ex(ASN1_UTF8STRING, (st), (val)) # define sk_ASN1_UTF8STRING_delete(st, i) SKM_sk_delete(ASN1_UTF8STRING, (st), (i)) # define sk_ASN1_UTF8STRING_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_UTF8STRING, (st), (ptr)) # define sk_ASN1_UTF8STRING_insert(st, val, i) SKM_sk_insert(ASN1_UTF8STRING, (st), (val), (i)) # define sk_ASN1_UTF8STRING_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_UTF8STRING, (st), (cmp)) # define sk_ASN1_UTF8STRING_dup(st) SKM_sk_dup(ASN1_UTF8STRING, st) # define sk_ASN1_UTF8STRING_pop_free(st, free_func) SKM_sk_pop_free(ASN1_UTF8STRING, (st), (free_func)) # define sk_ASN1_UTF8STRING_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_UTF8STRING, (st), (copy_func), (free_func)) # define sk_ASN1_UTF8STRING_shift(st) SKM_sk_shift(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_pop(st) SKM_sk_pop(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_sort(st) SKM_sk_sort(ASN1_UTF8STRING, (st)) # define sk_ASN1_UTF8STRING_is_sorted(st) SKM_sk_is_sorted(ASN1_UTF8STRING, (st)) # define sk_ASN1_VALUE_new(cmp) SKM_sk_new(ASN1_VALUE, (cmp)) # define sk_ASN1_VALUE_new_null() SKM_sk_new_null(ASN1_VALUE) # define sk_ASN1_VALUE_free(st) SKM_sk_free(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_num(st) SKM_sk_num(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_value(st, i) SKM_sk_value(ASN1_VALUE, (st), (i)) # define sk_ASN1_VALUE_set(st, i, val) SKM_sk_set(ASN1_VALUE, (st), (i), (val)) # define sk_ASN1_VALUE_zero(st) SKM_sk_zero(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_push(st, val) SKM_sk_push(ASN1_VALUE, (st), (val)) # define sk_ASN1_VALUE_unshift(st, val) SKM_sk_unshift(ASN1_VALUE, (st), (val)) # define sk_ASN1_VALUE_find(st, val) SKM_sk_find(ASN1_VALUE, (st), (val)) # define sk_ASN1_VALUE_find_ex(st, val) SKM_sk_find_ex(ASN1_VALUE, (st), (val)) # define sk_ASN1_VALUE_delete(st, i) SKM_sk_delete(ASN1_VALUE, (st), (i)) # define sk_ASN1_VALUE_delete_ptr(st, ptr) SKM_sk_delete_ptr(ASN1_VALUE, (st), (ptr)) # define sk_ASN1_VALUE_insert(st, val, i) SKM_sk_insert(ASN1_VALUE, (st), (val), (i)) # define sk_ASN1_VALUE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ASN1_VALUE, (st), (cmp)) # define sk_ASN1_VALUE_dup(st) SKM_sk_dup(ASN1_VALUE, st) # define sk_ASN1_VALUE_pop_free(st, free_func) SKM_sk_pop_free(ASN1_VALUE, (st), (free_func)) # define sk_ASN1_VALUE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ASN1_VALUE, (st), (copy_func), (free_func)) # define sk_ASN1_VALUE_shift(st) SKM_sk_shift(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_pop(st) SKM_sk_pop(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_sort(st) SKM_sk_sort(ASN1_VALUE, (st)) # define sk_ASN1_VALUE_is_sorted(st) SKM_sk_is_sorted(ASN1_VALUE, (st)) # define sk_BIO_new(cmp) SKM_sk_new(BIO, (cmp)) # define sk_BIO_new_null() SKM_sk_new_null(BIO) # define sk_BIO_free(st) SKM_sk_free(BIO, (st)) # define sk_BIO_num(st) SKM_sk_num(BIO, (st)) # define sk_BIO_value(st, i) SKM_sk_value(BIO, (st), (i)) # define sk_BIO_set(st, i, val) SKM_sk_set(BIO, (st), (i), (val)) # define sk_BIO_zero(st) SKM_sk_zero(BIO, (st)) # define sk_BIO_push(st, val) SKM_sk_push(BIO, (st), (val)) # define sk_BIO_unshift(st, val) SKM_sk_unshift(BIO, (st), (val)) # define sk_BIO_find(st, val) SKM_sk_find(BIO, (st), (val)) # define sk_BIO_find_ex(st, val) SKM_sk_find_ex(BIO, (st), (val)) # define sk_BIO_delete(st, i) SKM_sk_delete(BIO, (st), (i)) # define sk_BIO_delete_ptr(st, ptr) SKM_sk_delete_ptr(BIO, (st), (ptr)) # define sk_BIO_insert(st, val, i) SKM_sk_insert(BIO, (st), (val), (i)) # define sk_BIO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(BIO, (st), (cmp)) # define sk_BIO_dup(st) SKM_sk_dup(BIO, st) # define sk_BIO_pop_free(st, free_func) SKM_sk_pop_free(BIO, (st), (free_func)) # define sk_BIO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(BIO, (st), (copy_func), (free_func)) # define sk_BIO_shift(st) SKM_sk_shift(BIO, (st)) # define sk_BIO_pop(st) SKM_sk_pop(BIO, (st)) # define sk_BIO_sort(st) SKM_sk_sort(BIO, (st)) # define sk_BIO_is_sorted(st) SKM_sk_is_sorted(BIO, (st)) # define sk_BY_DIR_ENTRY_new(cmp) SKM_sk_new(BY_DIR_ENTRY, (cmp)) # define sk_BY_DIR_ENTRY_new_null() SKM_sk_new_null(BY_DIR_ENTRY) # define sk_BY_DIR_ENTRY_free(st) SKM_sk_free(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_num(st) SKM_sk_num(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_value(st, i) SKM_sk_value(BY_DIR_ENTRY, (st), (i)) # define sk_BY_DIR_ENTRY_set(st, i, val) SKM_sk_set(BY_DIR_ENTRY, (st), (i), (val)) # define sk_BY_DIR_ENTRY_zero(st) SKM_sk_zero(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_push(st, val) SKM_sk_push(BY_DIR_ENTRY, (st), (val)) # define sk_BY_DIR_ENTRY_unshift(st, val) SKM_sk_unshift(BY_DIR_ENTRY, (st), (val)) # define sk_BY_DIR_ENTRY_find(st, val) SKM_sk_find(BY_DIR_ENTRY, (st), (val)) # define sk_BY_DIR_ENTRY_find_ex(st, val) SKM_sk_find_ex(BY_DIR_ENTRY, (st), (val)) # define sk_BY_DIR_ENTRY_delete(st, i) SKM_sk_delete(BY_DIR_ENTRY, (st), (i)) # define sk_BY_DIR_ENTRY_delete_ptr(st, ptr) SKM_sk_delete_ptr(BY_DIR_ENTRY, (st), (ptr)) # define sk_BY_DIR_ENTRY_insert(st, val, i) SKM_sk_insert(BY_DIR_ENTRY, (st), (val), (i)) # define sk_BY_DIR_ENTRY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(BY_DIR_ENTRY, (st), (cmp)) # define sk_BY_DIR_ENTRY_dup(st) SKM_sk_dup(BY_DIR_ENTRY, st) # define sk_BY_DIR_ENTRY_pop_free(st, free_func) SKM_sk_pop_free(BY_DIR_ENTRY, (st), (free_func)) # define sk_BY_DIR_ENTRY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(BY_DIR_ENTRY, (st), (copy_func), (free_func)) # define sk_BY_DIR_ENTRY_shift(st) SKM_sk_shift(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_pop(st) SKM_sk_pop(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_sort(st) SKM_sk_sort(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_ENTRY_is_sorted(st) SKM_sk_is_sorted(BY_DIR_ENTRY, (st)) # define sk_BY_DIR_HASH_new(cmp) SKM_sk_new(BY_DIR_HASH, (cmp)) # define sk_BY_DIR_HASH_new_null() SKM_sk_new_null(BY_DIR_HASH) # define sk_BY_DIR_HASH_free(st) SKM_sk_free(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_num(st) SKM_sk_num(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_value(st, i) SKM_sk_value(BY_DIR_HASH, (st), (i)) # define sk_BY_DIR_HASH_set(st, i, val) SKM_sk_set(BY_DIR_HASH, (st), (i), (val)) # define sk_BY_DIR_HASH_zero(st) SKM_sk_zero(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_push(st, val) SKM_sk_push(BY_DIR_HASH, (st), (val)) # define sk_BY_DIR_HASH_unshift(st, val) SKM_sk_unshift(BY_DIR_HASH, (st), (val)) # define sk_BY_DIR_HASH_find(st, val) SKM_sk_find(BY_DIR_HASH, (st), (val)) # define sk_BY_DIR_HASH_find_ex(st, val) SKM_sk_find_ex(BY_DIR_HASH, (st), (val)) # define sk_BY_DIR_HASH_delete(st, i) SKM_sk_delete(BY_DIR_HASH, (st), (i)) # define sk_BY_DIR_HASH_delete_ptr(st, ptr) SKM_sk_delete_ptr(BY_DIR_HASH, (st), (ptr)) # define sk_BY_DIR_HASH_insert(st, val, i) SKM_sk_insert(BY_DIR_HASH, (st), (val), (i)) # define sk_BY_DIR_HASH_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(BY_DIR_HASH, (st), (cmp)) # define sk_BY_DIR_HASH_dup(st) SKM_sk_dup(BY_DIR_HASH, st) # define sk_BY_DIR_HASH_pop_free(st, free_func) SKM_sk_pop_free(BY_DIR_HASH, (st), (free_func)) # define sk_BY_DIR_HASH_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(BY_DIR_HASH, (st), (copy_func), (free_func)) # define sk_BY_DIR_HASH_shift(st) SKM_sk_shift(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_pop(st) SKM_sk_pop(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_sort(st) SKM_sk_sort(BY_DIR_HASH, (st)) # define sk_BY_DIR_HASH_is_sorted(st) SKM_sk_is_sorted(BY_DIR_HASH, (st)) # define sk_CMS_CertificateChoices_new(cmp) SKM_sk_new(CMS_CertificateChoices, (cmp)) # define sk_CMS_CertificateChoices_new_null() SKM_sk_new_null(CMS_CertificateChoices) # define sk_CMS_CertificateChoices_free(st) SKM_sk_free(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_num(st) SKM_sk_num(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_value(st, i) SKM_sk_value(CMS_CertificateChoices, (st), (i)) # define sk_CMS_CertificateChoices_set(st, i, val) SKM_sk_set(CMS_CertificateChoices, (st), (i), (val)) # define sk_CMS_CertificateChoices_zero(st) SKM_sk_zero(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_push(st, val) SKM_sk_push(CMS_CertificateChoices, (st), (val)) # define sk_CMS_CertificateChoices_unshift(st, val) SKM_sk_unshift(CMS_CertificateChoices, (st), (val)) # define sk_CMS_CertificateChoices_find(st, val) SKM_sk_find(CMS_CertificateChoices, (st), (val)) # define sk_CMS_CertificateChoices_find_ex(st, val) SKM_sk_find_ex(CMS_CertificateChoices, (st), (val)) # define sk_CMS_CertificateChoices_delete(st, i) SKM_sk_delete(CMS_CertificateChoices, (st), (i)) # define sk_CMS_CertificateChoices_delete_ptr(st, ptr) SKM_sk_delete_ptr(CMS_CertificateChoices, (st), (ptr)) # define sk_CMS_CertificateChoices_insert(st, val, i) SKM_sk_insert(CMS_CertificateChoices, (st), (val), (i)) # define sk_CMS_CertificateChoices_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CMS_CertificateChoices, (st), (cmp)) # define sk_CMS_CertificateChoices_dup(st) SKM_sk_dup(CMS_CertificateChoices, st) # define sk_CMS_CertificateChoices_pop_free(st, free_func) SKM_sk_pop_free(CMS_CertificateChoices, (st), (free_func)) # define sk_CMS_CertificateChoices_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CMS_CertificateChoices, (st), (copy_func), (free_func)) # define sk_CMS_CertificateChoices_shift(st) SKM_sk_shift(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_pop(st) SKM_sk_pop(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_sort(st) SKM_sk_sort(CMS_CertificateChoices, (st)) # define sk_CMS_CertificateChoices_is_sorted(st) SKM_sk_is_sorted(CMS_CertificateChoices, (st)) # define sk_CMS_RecipientEncryptedKey_new(cmp) SKM_sk_new(CMS_RecipientEncryptedKey, (cmp)) # define sk_CMS_RecipientEncryptedKey_new_null() SKM_sk_new_null(CMS_RecipientEncryptedKey) # define sk_CMS_RecipientEncryptedKey_free(st) SKM_sk_free(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_num(st) SKM_sk_num(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_value(st, i) SKM_sk_value(CMS_RecipientEncryptedKey, (st), (i)) # define sk_CMS_RecipientEncryptedKey_set(st, i, val) SKM_sk_set(CMS_RecipientEncryptedKey, (st), (i), (val)) # define sk_CMS_RecipientEncryptedKey_zero(st) SKM_sk_zero(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_push(st, val) SKM_sk_push(CMS_RecipientEncryptedKey, (st), (val)) # define sk_CMS_RecipientEncryptedKey_unshift(st, val) SKM_sk_unshift(CMS_RecipientEncryptedKey, (st), (val)) # define sk_CMS_RecipientEncryptedKey_find(st, val) SKM_sk_find(CMS_RecipientEncryptedKey, (st), (val)) # define sk_CMS_RecipientEncryptedKey_find_ex(st, val) SKM_sk_find_ex(CMS_RecipientEncryptedKey, (st), (val)) # define sk_CMS_RecipientEncryptedKey_delete(st, i) SKM_sk_delete(CMS_RecipientEncryptedKey, (st), (i)) # define sk_CMS_RecipientEncryptedKey_delete_ptr(st, ptr) SKM_sk_delete_ptr(CMS_RecipientEncryptedKey, (st), (ptr)) # define sk_CMS_RecipientEncryptedKey_insert(st, val, i) SKM_sk_insert(CMS_RecipientEncryptedKey, (st), (val), (i)) # define sk_CMS_RecipientEncryptedKey_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CMS_RecipientEncryptedKey, (st), (cmp)) # define sk_CMS_RecipientEncryptedKey_dup(st) SKM_sk_dup(CMS_RecipientEncryptedKey, st) # define sk_CMS_RecipientEncryptedKey_pop_free(st, free_func) SKM_sk_pop_free(CMS_RecipientEncryptedKey, (st), (free_func)) # define sk_CMS_RecipientEncryptedKey_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CMS_RecipientEncryptedKey, (st), (copy_func), (free_func)) # define sk_CMS_RecipientEncryptedKey_shift(st) SKM_sk_shift(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_pop(st) SKM_sk_pop(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_sort(st) SKM_sk_sort(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientEncryptedKey_is_sorted(st) SKM_sk_is_sorted(CMS_RecipientEncryptedKey, (st)) # define sk_CMS_RecipientInfo_new(cmp) SKM_sk_new(CMS_RecipientInfo, (cmp)) # define sk_CMS_RecipientInfo_new_null() SKM_sk_new_null(CMS_RecipientInfo) # define sk_CMS_RecipientInfo_free(st) SKM_sk_free(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_num(st) SKM_sk_num(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_value(st, i) SKM_sk_value(CMS_RecipientInfo, (st), (i)) # define sk_CMS_RecipientInfo_set(st, i, val) SKM_sk_set(CMS_RecipientInfo, (st), (i), (val)) # define sk_CMS_RecipientInfo_zero(st) SKM_sk_zero(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_push(st, val) SKM_sk_push(CMS_RecipientInfo, (st), (val)) # define sk_CMS_RecipientInfo_unshift(st, val) SKM_sk_unshift(CMS_RecipientInfo, (st), (val)) # define sk_CMS_RecipientInfo_find(st, val) SKM_sk_find(CMS_RecipientInfo, (st), (val)) # define sk_CMS_RecipientInfo_find_ex(st, val) SKM_sk_find_ex(CMS_RecipientInfo, (st), (val)) # define sk_CMS_RecipientInfo_delete(st, i) SKM_sk_delete(CMS_RecipientInfo, (st), (i)) # define sk_CMS_RecipientInfo_delete_ptr(st, ptr) SKM_sk_delete_ptr(CMS_RecipientInfo, (st), (ptr)) # define sk_CMS_RecipientInfo_insert(st, val, i) SKM_sk_insert(CMS_RecipientInfo, (st), (val), (i)) # define sk_CMS_RecipientInfo_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CMS_RecipientInfo, (st), (cmp)) # define sk_CMS_RecipientInfo_dup(st) SKM_sk_dup(CMS_RecipientInfo, st) # define sk_CMS_RecipientInfo_pop_free(st, free_func) SKM_sk_pop_free(CMS_RecipientInfo, (st), (free_func)) # define sk_CMS_RecipientInfo_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CMS_RecipientInfo, (st), (copy_func), (free_func)) # define sk_CMS_RecipientInfo_shift(st) SKM_sk_shift(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_pop(st) SKM_sk_pop(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_sort(st) SKM_sk_sort(CMS_RecipientInfo, (st)) # define sk_CMS_RecipientInfo_is_sorted(st) SKM_sk_is_sorted(CMS_RecipientInfo, (st)) # define sk_CMS_RevocationInfoChoice_new(cmp) SKM_sk_new(CMS_RevocationInfoChoice, (cmp)) # define sk_CMS_RevocationInfoChoice_new_null() SKM_sk_new_null(CMS_RevocationInfoChoice) # define sk_CMS_RevocationInfoChoice_free(st) SKM_sk_free(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_num(st) SKM_sk_num(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_value(st, i) SKM_sk_value(CMS_RevocationInfoChoice, (st), (i)) # define sk_CMS_RevocationInfoChoice_set(st, i, val) SKM_sk_set(CMS_RevocationInfoChoice, (st), (i), (val)) # define sk_CMS_RevocationInfoChoice_zero(st) SKM_sk_zero(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_push(st, val) SKM_sk_push(CMS_RevocationInfoChoice, (st), (val)) # define sk_CMS_RevocationInfoChoice_unshift(st, val) SKM_sk_unshift(CMS_RevocationInfoChoice, (st), (val)) # define sk_CMS_RevocationInfoChoice_find(st, val) SKM_sk_find(CMS_RevocationInfoChoice, (st), (val)) # define sk_CMS_RevocationInfoChoice_find_ex(st, val) SKM_sk_find_ex(CMS_RevocationInfoChoice, (st), (val)) # define sk_CMS_RevocationInfoChoice_delete(st, i) SKM_sk_delete(CMS_RevocationInfoChoice, (st), (i)) # define sk_CMS_RevocationInfoChoice_delete_ptr(st, ptr) SKM_sk_delete_ptr(CMS_RevocationInfoChoice, (st), (ptr)) # define sk_CMS_RevocationInfoChoice_insert(st, val, i) SKM_sk_insert(CMS_RevocationInfoChoice, (st), (val), (i)) # define sk_CMS_RevocationInfoChoice_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CMS_RevocationInfoChoice, (st), (cmp)) # define sk_CMS_RevocationInfoChoice_dup(st) SKM_sk_dup(CMS_RevocationInfoChoice, st) # define sk_CMS_RevocationInfoChoice_pop_free(st, free_func) SKM_sk_pop_free(CMS_RevocationInfoChoice, (st), (free_func)) # define sk_CMS_RevocationInfoChoice_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CMS_RevocationInfoChoice, (st), (copy_func), (free_func)) # define sk_CMS_RevocationInfoChoice_shift(st) SKM_sk_shift(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_pop(st) SKM_sk_pop(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_sort(st) SKM_sk_sort(CMS_RevocationInfoChoice, (st)) # define sk_CMS_RevocationInfoChoice_is_sorted(st) SKM_sk_is_sorted(CMS_RevocationInfoChoice, (st)) # define sk_CMS_SignerInfo_new(cmp) SKM_sk_new(CMS_SignerInfo, (cmp)) # define sk_CMS_SignerInfo_new_null() SKM_sk_new_null(CMS_SignerInfo) # define sk_CMS_SignerInfo_free(st) SKM_sk_free(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_num(st) SKM_sk_num(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_value(st, i) SKM_sk_value(CMS_SignerInfo, (st), (i)) # define sk_CMS_SignerInfo_set(st, i, val) SKM_sk_set(CMS_SignerInfo, (st), (i), (val)) # define sk_CMS_SignerInfo_zero(st) SKM_sk_zero(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_push(st, val) SKM_sk_push(CMS_SignerInfo, (st), (val)) # define sk_CMS_SignerInfo_unshift(st, val) SKM_sk_unshift(CMS_SignerInfo, (st), (val)) # define sk_CMS_SignerInfo_find(st, val) SKM_sk_find(CMS_SignerInfo, (st), (val)) # define sk_CMS_SignerInfo_find_ex(st, val) SKM_sk_find_ex(CMS_SignerInfo, (st), (val)) # define sk_CMS_SignerInfo_delete(st, i) SKM_sk_delete(CMS_SignerInfo, (st), (i)) # define sk_CMS_SignerInfo_delete_ptr(st, ptr) SKM_sk_delete_ptr(CMS_SignerInfo, (st), (ptr)) # define sk_CMS_SignerInfo_insert(st, val, i) SKM_sk_insert(CMS_SignerInfo, (st), (val), (i)) # define sk_CMS_SignerInfo_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CMS_SignerInfo, (st), (cmp)) # define sk_CMS_SignerInfo_dup(st) SKM_sk_dup(CMS_SignerInfo, st) # define sk_CMS_SignerInfo_pop_free(st, free_func) SKM_sk_pop_free(CMS_SignerInfo, (st), (free_func)) # define sk_CMS_SignerInfo_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CMS_SignerInfo, (st), (copy_func), (free_func)) # define sk_CMS_SignerInfo_shift(st) SKM_sk_shift(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_pop(st) SKM_sk_pop(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_sort(st) SKM_sk_sort(CMS_SignerInfo, (st)) # define sk_CMS_SignerInfo_is_sorted(st) SKM_sk_is_sorted(CMS_SignerInfo, (st)) # define sk_CONF_IMODULE_new(cmp) SKM_sk_new(CONF_IMODULE, (cmp)) # define sk_CONF_IMODULE_new_null() SKM_sk_new_null(CONF_IMODULE) # define sk_CONF_IMODULE_free(st) SKM_sk_free(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_num(st) SKM_sk_num(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_value(st, i) SKM_sk_value(CONF_IMODULE, (st), (i)) # define sk_CONF_IMODULE_set(st, i, val) SKM_sk_set(CONF_IMODULE, (st), (i), (val)) # define sk_CONF_IMODULE_zero(st) SKM_sk_zero(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_push(st, val) SKM_sk_push(CONF_IMODULE, (st), (val)) # define sk_CONF_IMODULE_unshift(st, val) SKM_sk_unshift(CONF_IMODULE, (st), (val)) # define sk_CONF_IMODULE_find(st, val) SKM_sk_find(CONF_IMODULE, (st), (val)) # define sk_CONF_IMODULE_find_ex(st, val) SKM_sk_find_ex(CONF_IMODULE, (st), (val)) # define sk_CONF_IMODULE_delete(st, i) SKM_sk_delete(CONF_IMODULE, (st), (i)) # define sk_CONF_IMODULE_delete_ptr(st, ptr) SKM_sk_delete_ptr(CONF_IMODULE, (st), (ptr)) # define sk_CONF_IMODULE_insert(st, val, i) SKM_sk_insert(CONF_IMODULE, (st), (val), (i)) # define sk_CONF_IMODULE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CONF_IMODULE, (st), (cmp)) # define sk_CONF_IMODULE_dup(st) SKM_sk_dup(CONF_IMODULE, st) # define sk_CONF_IMODULE_pop_free(st, free_func) SKM_sk_pop_free(CONF_IMODULE, (st), (free_func)) # define sk_CONF_IMODULE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CONF_IMODULE, (st), (copy_func), (free_func)) # define sk_CONF_IMODULE_shift(st) SKM_sk_shift(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_pop(st) SKM_sk_pop(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_sort(st) SKM_sk_sort(CONF_IMODULE, (st)) # define sk_CONF_IMODULE_is_sorted(st) SKM_sk_is_sorted(CONF_IMODULE, (st)) # define sk_CONF_MODULE_new(cmp) SKM_sk_new(CONF_MODULE, (cmp)) # define sk_CONF_MODULE_new_null() SKM_sk_new_null(CONF_MODULE) # define sk_CONF_MODULE_free(st) SKM_sk_free(CONF_MODULE, (st)) # define sk_CONF_MODULE_num(st) SKM_sk_num(CONF_MODULE, (st)) # define sk_CONF_MODULE_value(st, i) SKM_sk_value(CONF_MODULE, (st), (i)) # define sk_CONF_MODULE_set(st, i, val) SKM_sk_set(CONF_MODULE, (st), (i), (val)) # define sk_CONF_MODULE_zero(st) SKM_sk_zero(CONF_MODULE, (st)) # define sk_CONF_MODULE_push(st, val) SKM_sk_push(CONF_MODULE, (st), (val)) # define sk_CONF_MODULE_unshift(st, val) SKM_sk_unshift(CONF_MODULE, (st), (val)) # define sk_CONF_MODULE_find(st, val) SKM_sk_find(CONF_MODULE, (st), (val)) # define sk_CONF_MODULE_find_ex(st, val) SKM_sk_find_ex(CONF_MODULE, (st), (val)) # define sk_CONF_MODULE_delete(st, i) SKM_sk_delete(CONF_MODULE, (st), (i)) # define sk_CONF_MODULE_delete_ptr(st, ptr) SKM_sk_delete_ptr(CONF_MODULE, (st), (ptr)) # define sk_CONF_MODULE_insert(st, val, i) SKM_sk_insert(CONF_MODULE, (st), (val), (i)) # define sk_CONF_MODULE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CONF_MODULE, (st), (cmp)) # define sk_CONF_MODULE_dup(st) SKM_sk_dup(CONF_MODULE, st) # define sk_CONF_MODULE_pop_free(st, free_func) SKM_sk_pop_free(CONF_MODULE, (st), (free_func)) # define sk_CONF_MODULE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CONF_MODULE, (st), (copy_func), (free_func)) # define sk_CONF_MODULE_shift(st) SKM_sk_shift(CONF_MODULE, (st)) # define sk_CONF_MODULE_pop(st) SKM_sk_pop(CONF_MODULE, (st)) # define sk_CONF_MODULE_sort(st) SKM_sk_sort(CONF_MODULE, (st)) # define sk_CONF_MODULE_is_sorted(st) SKM_sk_is_sorted(CONF_MODULE, (st)) # define sk_CONF_VALUE_new(cmp) SKM_sk_new(CONF_VALUE, (cmp)) # define sk_CONF_VALUE_new_null() SKM_sk_new_null(CONF_VALUE) # define sk_CONF_VALUE_free(st) SKM_sk_free(CONF_VALUE, (st)) # define sk_CONF_VALUE_num(st) SKM_sk_num(CONF_VALUE, (st)) # define sk_CONF_VALUE_value(st, i) SKM_sk_value(CONF_VALUE, (st), (i)) # define sk_CONF_VALUE_set(st, i, val) SKM_sk_set(CONF_VALUE, (st), (i), (val)) # define sk_CONF_VALUE_zero(st) SKM_sk_zero(CONF_VALUE, (st)) # define sk_CONF_VALUE_push(st, val) SKM_sk_push(CONF_VALUE, (st), (val)) # define sk_CONF_VALUE_unshift(st, val) SKM_sk_unshift(CONF_VALUE, (st), (val)) # define sk_CONF_VALUE_find(st, val) SKM_sk_find(CONF_VALUE, (st), (val)) # define sk_CONF_VALUE_find_ex(st, val) SKM_sk_find_ex(CONF_VALUE, (st), (val)) # define sk_CONF_VALUE_delete(st, i) SKM_sk_delete(CONF_VALUE, (st), (i)) # define sk_CONF_VALUE_delete_ptr(st, ptr) SKM_sk_delete_ptr(CONF_VALUE, (st), (ptr)) # define sk_CONF_VALUE_insert(st, val, i) SKM_sk_insert(CONF_VALUE, (st), (val), (i)) # define sk_CONF_VALUE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CONF_VALUE, (st), (cmp)) # define sk_CONF_VALUE_dup(st) SKM_sk_dup(CONF_VALUE, st) # define sk_CONF_VALUE_pop_free(st, free_func) SKM_sk_pop_free(CONF_VALUE, (st), (free_func)) # define sk_CONF_VALUE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CONF_VALUE, (st), (copy_func), (free_func)) # define sk_CONF_VALUE_shift(st) SKM_sk_shift(CONF_VALUE, (st)) # define sk_CONF_VALUE_pop(st) SKM_sk_pop(CONF_VALUE, (st)) # define sk_CONF_VALUE_sort(st) SKM_sk_sort(CONF_VALUE, (st)) # define sk_CONF_VALUE_is_sorted(st) SKM_sk_is_sorted(CONF_VALUE, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_new(cmp) SKM_sk_new(CRYPTO_EX_DATA_FUNCS, (cmp)) # define sk_CRYPTO_EX_DATA_FUNCS_new_null() SKM_sk_new_null(CRYPTO_EX_DATA_FUNCS) # define sk_CRYPTO_EX_DATA_FUNCS_free(st) SKM_sk_free(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_num(st) SKM_sk_num(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_value(st, i) SKM_sk_value(CRYPTO_EX_DATA_FUNCS, (st), (i)) # define sk_CRYPTO_EX_DATA_FUNCS_set(st, i, val) SKM_sk_set(CRYPTO_EX_DATA_FUNCS, (st), (i), (val)) # define sk_CRYPTO_EX_DATA_FUNCS_zero(st) SKM_sk_zero(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_push(st, val) SKM_sk_push(CRYPTO_EX_DATA_FUNCS, (st), (val)) # define sk_CRYPTO_EX_DATA_FUNCS_unshift(st, val) SKM_sk_unshift(CRYPTO_EX_DATA_FUNCS, (st), (val)) # define sk_CRYPTO_EX_DATA_FUNCS_find(st, val) SKM_sk_find(CRYPTO_EX_DATA_FUNCS, (st), (val)) # define sk_CRYPTO_EX_DATA_FUNCS_find_ex(st, val) SKM_sk_find_ex(CRYPTO_EX_DATA_FUNCS, (st), (val)) # define sk_CRYPTO_EX_DATA_FUNCS_delete(st, i) SKM_sk_delete(CRYPTO_EX_DATA_FUNCS, (st), (i)) # define sk_CRYPTO_EX_DATA_FUNCS_delete_ptr(st, ptr) SKM_sk_delete_ptr(CRYPTO_EX_DATA_FUNCS, (st), (ptr)) # define sk_CRYPTO_EX_DATA_FUNCS_insert(st, val, i) SKM_sk_insert(CRYPTO_EX_DATA_FUNCS, (st), (val), (i)) # define sk_CRYPTO_EX_DATA_FUNCS_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CRYPTO_EX_DATA_FUNCS, (st), (cmp)) # define sk_CRYPTO_EX_DATA_FUNCS_dup(st) SKM_sk_dup(CRYPTO_EX_DATA_FUNCS, st) # define sk_CRYPTO_EX_DATA_FUNCS_pop_free(st, free_func) SKM_sk_pop_free(CRYPTO_EX_DATA_FUNCS, (st), (free_func)) # define sk_CRYPTO_EX_DATA_FUNCS_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CRYPTO_EX_DATA_FUNCS, (st), (copy_func), (free_func)) # define sk_CRYPTO_EX_DATA_FUNCS_shift(st) SKM_sk_shift(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_pop(st) SKM_sk_pop(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_sort(st) SKM_sk_sort(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_EX_DATA_FUNCS_is_sorted(st) SKM_sk_is_sorted(CRYPTO_EX_DATA_FUNCS, (st)) # define sk_CRYPTO_dynlock_new(cmp) SKM_sk_new(CRYPTO_dynlock, (cmp)) # define sk_CRYPTO_dynlock_new_null() SKM_sk_new_null(CRYPTO_dynlock) # define sk_CRYPTO_dynlock_free(st) SKM_sk_free(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_num(st) SKM_sk_num(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_value(st, i) SKM_sk_value(CRYPTO_dynlock, (st), (i)) # define sk_CRYPTO_dynlock_set(st, i, val) SKM_sk_set(CRYPTO_dynlock, (st), (i), (val)) # define sk_CRYPTO_dynlock_zero(st) SKM_sk_zero(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_push(st, val) SKM_sk_push(CRYPTO_dynlock, (st), (val)) # define sk_CRYPTO_dynlock_unshift(st, val) SKM_sk_unshift(CRYPTO_dynlock, (st), (val)) # define sk_CRYPTO_dynlock_find(st, val) SKM_sk_find(CRYPTO_dynlock, (st), (val)) # define sk_CRYPTO_dynlock_find_ex(st, val) SKM_sk_find_ex(CRYPTO_dynlock, (st), (val)) # define sk_CRYPTO_dynlock_delete(st, i) SKM_sk_delete(CRYPTO_dynlock, (st), (i)) # define sk_CRYPTO_dynlock_delete_ptr(st, ptr) SKM_sk_delete_ptr(CRYPTO_dynlock, (st), (ptr)) # define sk_CRYPTO_dynlock_insert(st, val, i) SKM_sk_insert(CRYPTO_dynlock, (st), (val), (i)) # define sk_CRYPTO_dynlock_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(CRYPTO_dynlock, (st), (cmp)) # define sk_CRYPTO_dynlock_dup(st) SKM_sk_dup(CRYPTO_dynlock, st) # define sk_CRYPTO_dynlock_pop_free(st, free_func) SKM_sk_pop_free(CRYPTO_dynlock, (st), (free_func)) # define sk_CRYPTO_dynlock_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(CRYPTO_dynlock, (st), (copy_func), (free_func)) # define sk_CRYPTO_dynlock_shift(st) SKM_sk_shift(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_pop(st) SKM_sk_pop(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_sort(st) SKM_sk_sort(CRYPTO_dynlock, (st)) # define sk_CRYPTO_dynlock_is_sorted(st) SKM_sk_is_sorted(CRYPTO_dynlock, (st)) # define sk_DIST_POINT_new(cmp) SKM_sk_new(DIST_POINT, (cmp)) # define sk_DIST_POINT_new_null() SKM_sk_new_null(DIST_POINT) # define sk_DIST_POINT_free(st) SKM_sk_free(DIST_POINT, (st)) # define sk_DIST_POINT_num(st) SKM_sk_num(DIST_POINT, (st)) # define sk_DIST_POINT_value(st, i) SKM_sk_value(DIST_POINT, (st), (i)) # define sk_DIST_POINT_set(st, i, val) SKM_sk_set(DIST_POINT, (st), (i), (val)) # define sk_DIST_POINT_zero(st) SKM_sk_zero(DIST_POINT, (st)) # define sk_DIST_POINT_push(st, val) SKM_sk_push(DIST_POINT, (st), (val)) # define sk_DIST_POINT_unshift(st, val) SKM_sk_unshift(DIST_POINT, (st), (val)) # define sk_DIST_POINT_find(st, val) SKM_sk_find(DIST_POINT, (st), (val)) # define sk_DIST_POINT_find_ex(st, val) SKM_sk_find_ex(DIST_POINT, (st), (val)) # define sk_DIST_POINT_delete(st, i) SKM_sk_delete(DIST_POINT, (st), (i)) # define sk_DIST_POINT_delete_ptr(st, ptr) SKM_sk_delete_ptr(DIST_POINT, (st), (ptr)) # define sk_DIST_POINT_insert(st, val, i) SKM_sk_insert(DIST_POINT, (st), (val), (i)) # define sk_DIST_POINT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(DIST_POINT, (st), (cmp)) # define sk_DIST_POINT_dup(st) SKM_sk_dup(DIST_POINT, st) # define sk_DIST_POINT_pop_free(st, free_func) SKM_sk_pop_free(DIST_POINT, (st), (free_func)) # define sk_DIST_POINT_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(DIST_POINT, (st), (copy_func), (free_func)) # define sk_DIST_POINT_shift(st) SKM_sk_shift(DIST_POINT, (st)) # define sk_DIST_POINT_pop(st) SKM_sk_pop(DIST_POINT, (st)) # define sk_DIST_POINT_sort(st) SKM_sk_sort(DIST_POINT, (st)) # define sk_DIST_POINT_is_sorted(st) SKM_sk_is_sorted(DIST_POINT, (st)) # define sk_ENGINE_new(cmp) SKM_sk_new(ENGINE, (cmp)) # define sk_ENGINE_new_null() SKM_sk_new_null(ENGINE) # define sk_ENGINE_free(st) SKM_sk_free(ENGINE, (st)) # define sk_ENGINE_num(st) SKM_sk_num(ENGINE, (st)) # define sk_ENGINE_value(st, i) SKM_sk_value(ENGINE, (st), (i)) # define sk_ENGINE_set(st, i, val) SKM_sk_set(ENGINE, (st), (i), (val)) # define sk_ENGINE_zero(st) SKM_sk_zero(ENGINE, (st)) # define sk_ENGINE_push(st, val) SKM_sk_push(ENGINE, (st), (val)) # define sk_ENGINE_unshift(st, val) SKM_sk_unshift(ENGINE, (st), (val)) # define sk_ENGINE_find(st, val) SKM_sk_find(ENGINE, (st), (val)) # define sk_ENGINE_find_ex(st, val) SKM_sk_find_ex(ENGINE, (st), (val)) # define sk_ENGINE_delete(st, i) SKM_sk_delete(ENGINE, (st), (i)) # define sk_ENGINE_delete_ptr(st, ptr) SKM_sk_delete_ptr(ENGINE, (st), (ptr)) # define sk_ENGINE_insert(st, val, i) SKM_sk_insert(ENGINE, (st), (val), (i)) # define sk_ENGINE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ENGINE, (st), (cmp)) # define sk_ENGINE_dup(st) SKM_sk_dup(ENGINE, st) # define sk_ENGINE_pop_free(st, free_func) SKM_sk_pop_free(ENGINE, (st), (free_func)) # define sk_ENGINE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ENGINE, (st), (copy_func), (free_func)) # define sk_ENGINE_shift(st) SKM_sk_shift(ENGINE, (st)) # define sk_ENGINE_pop(st) SKM_sk_pop(ENGINE, (st)) # define sk_ENGINE_sort(st) SKM_sk_sort(ENGINE, (st)) # define sk_ENGINE_is_sorted(st) SKM_sk_is_sorted(ENGINE, (st)) # define sk_ENGINE_CLEANUP_ITEM_new(cmp) SKM_sk_new(ENGINE_CLEANUP_ITEM, (cmp)) # define sk_ENGINE_CLEANUP_ITEM_new_null() SKM_sk_new_null(ENGINE_CLEANUP_ITEM) # define sk_ENGINE_CLEANUP_ITEM_free(st) SKM_sk_free(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_num(st) SKM_sk_num(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_value(st, i) SKM_sk_value(ENGINE_CLEANUP_ITEM, (st), (i)) # define sk_ENGINE_CLEANUP_ITEM_set(st, i, val) SKM_sk_set(ENGINE_CLEANUP_ITEM, (st), (i), (val)) # define sk_ENGINE_CLEANUP_ITEM_zero(st) SKM_sk_zero(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_push(st, val) SKM_sk_push(ENGINE_CLEANUP_ITEM, (st), (val)) # define sk_ENGINE_CLEANUP_ITEM_unshift(st, val) SKM_sk_unshift(ENGINE_CLEANUP_ITEM, (st), (val)) # define sk_ENGINE_CLEANUP_ITEM_find(st, val) SKM_sk_find(ENGINE_CLEANUP_ITEM, (st), (val)) # define sk_ENGINE_CLEANUP_ITEM_find_ex(st, val) SKM_sk_find_ex(ENGINE_CLEANUP_ITEM, (st), (val)) # define sk_ENGINE_CLEANUP_ITEM_delete(st, i) SKM_sk_delete(ENGINE_CLEANUP_ITEM, (st), (i)) # define sk_ENGINE_CLEANUP_ITEM_delete_ptr(st, ptr) SKM_sk_delete_ptr(ENGINE_CLEANUP_ITEM, (st), (ptr)) # define sk_ENGINE_CLEANUP_ITEM_insert(st, val, i) SKM_sk_insert(ENGINE_CLEANUP_ITEM, (st), (val), (i)) # define sk_ENGINE_CLEANUP_ITEM_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ENGINE_CLEANUP_ITEM, (st), (cmp)) # define sk_ENGINE_CLEANUP_ITEM_dup(st) SKM_sk_dup(ENGINE_CLEANUP_ITEM, st) # define sk_ENGINE_CLEANUP_ITEM_pop_free(st, free_func) SKM_sk_pop_free(ENGINE_CLEANUP_ITEM, (st), (free_func)) # define sk_ENGINE_CLEANUP_ITEM_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ENGINE_CLEANUP_ITEM, (st), (copy_func), (free_func)) # define sk_ENGINE_CLEANUP_ITEM_shift(st) SKM_sk_shift(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_pop(st) SKM_sk_pop(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_sort(st) SKM_sk_sort(ENGINE_CLEANUP_ITEM, (st)) # define sk_ENGINE_CLEANUP_ITEM_is_sorted(st) SKM_sk_is_sorted(ENGINE_CLEANUP_ITEM, (st)) # define sk_ESS_CERT_ID_new(cmp) SKM_sk_new(ESS_CERT_ID, (cmp)) # define sk_ESS_CERT_ID_new_null() SKM_sk_new_null(ESS_CERT_ID) # define sk_ESS_CERT_ID_free(st) SKM_sk_free(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_num(st) SKM_sk_num(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_value(st, i) SKM_sk_value(ESS_CERT_ID, (st), (i)) # define sk_ESS_CERT_ID_set(st, i, val) SKM_sk_set(ESS_CERT_ID, (st), (i), (val)) # define sk_ESS_CERT_ID_zero(st) SKM_sk_zero(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_push(st, val) SKM_sk_push(ESS_CERT_ID, (st), (val)) # define sk_ESS_CERT_ID_unshift(st, val) SKM_sk_unshift(ESS_CERT_ID, (st), (val)) # define sk_ESS_CERT_ID_find(st, val) SKM_sk_find(ESS_CERT_ID, (st), (val)) # define sk_ESS_CERT_ID_find_ex(st, val) SKM_sk_find_ex(ESS_CERT_ID, (st), (val)) # define sk_ESS_CERT_ID_delete(st, i) SKM_sk_delete(ESS_CERT_ID, (st), (i)) # define sk_ESS_CERT_ID_delete_ptr(st, ptr) SKM_sk_delete_ptr(ESS_CERT_ID, (st), (ptr)) # define sk_ESS_CERT_ID_insert(st, val, i) SKM_sk_insert(ESS_CERT_ID, (st), (val), (i)) # define sk_ESS_CERT_ID_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(ESS_CERT_ID, (st), (cmp)) # define sk_ESS_CERT_ID_dup(st) SKM_sk_dup(ESS_CERT_ID, st) # define sk_ESS_CERT_ID_pop_free(st, free_func) SKM_sk_pop_free(ESS_CERT_ID, (st), (free_func)) # define sk_ESS_CERT_ID_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(ESS_CERT_ID, (st), (copy_func), (free_func)) # define sk_ESS_CERT_ID_shift(st) SKM_sk_shift(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_pop(st) SKM_sk_pop(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_sort(st) SKM_sk_sort(ESS_CERT_ID, (st)) # define sk_ESS_CERT_ID_is_sorted(st) SKM_sk_is_sorted(ESS_CERT_ID, (st)) # define sk_EVP_MD_new(cmp) SKM_sk_new(EVP_MD, (cmp)) # define sk_EVP_MD_new_null() SKM_sk_new_null(EVP_MD) # define sk_EVP_MD_free(st) SKM_sk_free(EVP_MD, (st)) # define sk_EVP_MD_num(st) SKM_sk_num(EVP_MD, (st)) # define sk_EVP_MD_value(st, i) SKM_sk_value(EVP_MD, (st), (i)) # define sk_EVP_MD_set(st, i, val) SKM_sk_set(EVP_MD, (st), (i), (val)) # define sk_EVP_MD_zero(st) SKM_sk_zero(EVP_MD, (st)) # define sk_EVP_MD_push(st, val) SKM_sk_push(EVP_MD, (st), (val)) # define sk_EVP_MD_unshift(st, val) SKM_sk_unshift(EVP_MD, (st), (val)) # define sk_EVP_MD_find(st, val) SKM_sk_find(EVP_MD, (st), (val)) # define sk_EVP_MD_find_ex(st, val) SKM_sk_find_ex(EVP_MD, (st), (val)) # define sk_EVP_MD_delete(st, i) SKM_sk_delete(EVP_MD, (st), (i)) # define sk_EVP_MD_delete_ptr(st, ptr) SKM_sk_delete_ptr(EVP_MD, (st), (ptr)) # define sk_EVP_MD_insert(st, val, i) SKM_sk_insert(EVP_MD, (st), (val), (i)) # define sk_EVP_MD_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(EVP_MD, (st), (cmp)) # define sk_EVP_MD_dup(st) SKM_sk_dup(EVP_MD, st) # define sk_EVP_MD_pop_free(st, free_func) SKM_sk_pop_free(EVP_MD, (st), (free_func)) # define sk_EVP_MD_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(EVP_MD, (st), (copy_func), (free_func)) # define sk_EVP_MD_shift(st) SKM_sk_shift(EVP_MD, (st)) # define sk_EVP_MD_pop(st) SKM_sk_pop(EVP_MD, (st)) # define sk_EVP_MD_sort(st) SKM_sk_sort(EVP_MD, (st)) # define sk_EVP_MD_is_sorted(st) SKM_sk_is_sorted(EVP_MD, (st)) # define sk_EVP_PBE_CTL_new(cmp) SKM_sk_new(EVP_PBE_CTL, (cmp)) # define sk_EVP_PBE_CTL_new_null() SKM_sk_new_null(EVP_PBE_CTL) # define sk_EVP_PBE_CTL_free(st) SKM_sk_free(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_num(st) SKM_sk_num(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_value(st, i) SKM_sk_value(EVP_PBE_CTL, (st), (i)) # define sk_EVP_PBE_CTL_set(st, i, val) SKM_sk_set(EVP_PBE_CTL, (st), (i), (val)) # define sk_EVP_PBE_CTL_zero(st) SKM_sk_zero(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_push(st, val) SKM_sk_push(EVP_PBE_CTL, (st), (val)) # define sk_EVP_PBE_CTL_unshift(st, val) SKM_sk_unshift(EVP_PBE_CTL, (st), (val)) # define sk_EVP_PBE_CTL_find(st, val) SKM_sk_find(EVP_PBE_CTL, (st), (val)) # define sk_EVP_PBE_CTL_find_ex(st, val) SKM_sk_find_ex(EVP_PBE_CTL, (st), (val)) # define sk_EVP_PBE_CTL_delete(st, i) SKM_sk_delete(EVP_PBE_CTL, (st), (i)) # define sk_EVP_PBE_CTL_delete_ptr(st, ptr) SKM_sk_delete_ptr(EVP_PBE_CTL, (st), (ptr)) # define sk_EVP_PBE_CTL_insert(st, val, i) SKM_sk_insert(EVP_PBE_CTL, (st), (val), (i)) # define sk_EVP_PBE_CTL_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(EVP_PBE_CTL, (st), (cmp)) # define sk_EVP_PBE_CTL_dup(st) SKM_sk_dup(EVP_PBE_CTL, st) # define sk_EVP_PBE_CTL_pop_free(st, free_func) SKM_sk_pop_free(EVP_PBE_CTL, (st), (free_func)) # define sk_EVP_PBE_CTL_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(EVP_PBE_CTL, (st), (copy_func), (free_func)) # define sk_EVP_PBE_CTL_shift(st) SKM_sk_shift(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_pop(st) SKM_sk_pop(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_sort(st) SKM_sk_sort(EVP_PBE_CTL, (st)) # define sk_EVP_PBE_CTL_is_sorted(st) SKM_sk_is_sorted(EVP_PBE_CTL, (st)) # define sk_EVP_PKEY_ASN1_METHOD_new(cmp) SKM_sk_new(EVP_PKEY_ASN1_METHOD, (cmp)) # define sk_EVP_PKEY_ASN1_METHOD_new_null() SKM_sk_new_null(EVP_PKEY_ASN1_METHOD) # define sk_EVP_PKEY_ASN1_METHOD_free(st) SKM_sk_free(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_num(st) SKM_sk_num(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_value(st, i) SKM_sk_value(EVP_PKEY_ASN1_METHOD, (st), (i)) # define sk_EVP_PKEY_ASN1_METHOD_set(st, i, val) SKM_sk_set(EVP_PKEY_ASN1_METHOD, (st), (i), (val)) # define sk_EVP_PKEY_ASN1_METHOD_zero(st) SKM_sk_zero(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_push(st, val) SKM_sk_push(EVP_PKEY_ASN1_METHOD, (st), (val)) # define sk_EVP_PKEY_ASN1_METHOD_unshift(st, val) SKM_sk_unshift(EVP_PKEY_ASN1_METHOD, (st), (val)) # define sk_EVP_PKEY_ASN1_METHOD_find(st, val) SKM_sk_find(EVP_PKEY_ASN1_METHOD, (st), (val)) # define sk_EVP_PKEY_ASN1_METHOD_find_ex(st, val) SKM_sk_find_ex(EVP_PKEY_ASN1_METHOD, (st), (val)) # define sk_EVP_PKEY_ASN1_METHOD_delete(st, i) SKM_sk_delete(EVP_PKEY_ASN1_METHOD, (st), (i)) # define sk_EVP_PKEY_ASN1_METHOD_delete_ptr(st, ptr) SKM_sk_delete_ptr(EVP_PKEY_ASN1_METHOD, (st), (ptr)) # define sk_EVP_PKEY_ASN1_METHOD_insert(st, val, i) SKM_sk_insert(EVP_PKEY_ASN1_METHOD, (st), (val), (i)) # define sk_EVP_PKEY_ASN1_METHOD_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(EVP_PKEY_ASN1_METHOD, (st), (cmp)) # define sk_EVP_PKEY_ASN1_METHOD_dup(st) SKM_sk_dup(EVP_PKEY_ASN1_METHOD, st) # define sk_EVP_PKEY_ASN1_METHOD_pop_free(st, free_func) SKM_sk_pop_free(EVP_PKEY_ASN1_METHOD, (st), (free_func)) # define sk_EVP_PKEY_ASN1_METHOD_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(EVP_PKEY_ASN1_METHOD, (st), (copy_func), (free_func)) # define sk_EVP_PKEY_ASN1_METHOD_shift(st) SKM_sk_shift(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_pop(st) SKM_sk_pop(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_sort(st) SKM_sk_sort(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_ASN1_METHOD_is_sorted(st) SKM_sk_is_sorted(EVP_PKEY_ASN1_METHOD, (st)) # define sk_EVP_PKEY_METHOD_new(cmp) SKM_sk_new(EVP_PKEY_METHOD, (cmp)) # define sk_EVP_PKEY_METHOD_new_null() SKM_sk_new_null(EVP_PKEY_METHOD) # define sk_EVP_PKEY_METHOD_free(st) SKM_sk_free(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_num(st) SKM_sk_num(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_value(st, i) SKM_sk_value(EVP_PKEY_METHOD, (st), (i)) # define sk_EVP_PKEY_METHOD_set(st, i, val) SKM_sk_set(EVP_PKEY_METHOD, (st), (i), (val)) # define sk_EVP_PKEY_METHOD_zero(st) SKM_sk_zero(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_push(st, val) SKM_sk_push(EVP_PKEY_METHOD, (st), (val)) # define sk_EVP_PKEY_METHOD_unshift(st, val) SKM_sk_unshift(EVP_PKEY_METHOD, (st), (val)) # define sk_EVP_PKEY_METHOD_find(st, val) SKM_sk_find(EVP_PKEY_METHOD, (st), (val)) # define sk_EVP_PKEY_METHOD_find_ex(st, val) SKM_sk_find_ex(EVP_PKEY_METHOD, (st), (val)) # define sk_EVP_PKEY_METHOD_delete(st, i) SKM_sk_delete(EVP_PKEY_METHOD, (st), (i)) # define sk_EVP_PKEY_METHOD_delete_ptr(st, ptr) SKM_sk_delete_ptr(EVP_PKEY_METHOD, (st), (ptr)) # define sk_EVP_PKEY_METHOD_insert(st, val, i) SKM_sk_insert(EVP_PKEY_METHOD, (st), (val), (i)) # define sk_EVP_PKEY_METHOD_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(EVP_PKEY_METHOD, (st), (cmp)) # define sk_EVP_PKEY_METHOD_dup(st) SKM_sk_dup(EVP_PKEY_METHOD, st) # define sk_EVP_PKEY_METHOD_pop_free(st, free_func) SKM_sk_pop_free(EVP_PKEY_METHOD, (st), (free_func)) # define sk_EVP_PKEY_METHOD_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(EVP_PKEY_METHOD, (st), (copy_func), (free_func)) # define sk_EVP_PKEY_METHOD_shift(st) SKM_sk_shift(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_pop(st) SKM_sk_pop(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_sort(st) SKM_sk_sort(EVP_PKEY_METHOD, (st)) # define sk_EVP_PKEY_METHOD_is_sorted(st) SKM_sk_is_sorted(EVP_PKEY_METHOD, (st)) # define sk_GENERAL_NAME_new(cmp) SKM_sk_new(GENERAL_NAME, (cmp)) # define sk_GENERAL_NAME_new_null() SKM_sk_new_null(GENERAL_NAME) # define sk_GENERAL_NAME_free(st) SKM_sk_free(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_num(st) SKM_sk_num(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_value(st, i) SKM_sk_value(GENERAL_NAME, (st), (i)) # define sk_GENERAL_NAME_set(st, i, val) SKM_sk_set(GENERAL_NAME, (st), (i), (val)) # define sk_GENERAL_NAME_zero(st) SKM_sk_zero(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_push(st, val) SKM_sk_push(GENERAL_NAME, (st), (val)) # define sk_GENERAL_NAME_unshift(st, val) SKM_sk_unshift(GENERAL_NAME, (st), (val)) # define sk_GENERAL_NAME_find(st, val) SKM_sk_find(GENERAL_NAME, (st), (val)) # define sk_GENERAL_NAME_find_ex(st, val) SKM_sk_find_ex(GENERAL_NAME, (st), (val)) # define sk_GENERAL_NAME_delete(st, i) SKM_sk_delete(GENERAL_NAME, (st), (i)) # define sk_GENERAL_NAME_delete_ptr(st, ptr) SKM_sk_delete_ptr(GENERAL_NAME, (st), (ptr)) # define sk_GENERAL_NAME_insert(st, val, i) SKM_sk_insert(GENERAL_NAME, (st), (val), (i)) # define sk_GENERAL_NAME_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(GENERAL_NAME, (st), (cmp)) # define sk_GENERAL_NAME_dup(st) SKM_sk_dup(GENERAL_NAME, st) # define sk_GENERAL_NAME_pop_free(st, free_func) SKM_sk_pop_free(GENERAL_NAME, (st), (free_func)) # define sk_GENERAL_NAME_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(GENERAL_NAME, (st), (copy_func), (free_func)) # define sk_GENERAL_NAME_shift(st) SKM_sk_shift(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_pop(st) SKM_sk_pop(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_sort(st) SKM_sk_sort(GENERAL_NAME, (st)) # define sk_GENERAL_NAME_is_sorted(st) SKM_sk_is_sorted(GENERAL_NAME, (st)) # define sk_GENERAL_NAMES_new(cmp) SKM_sk_new(GENERAL_NAMES, (cmp)) # define sk_GENERAL_NAMES_new_null() SKM_sk_new_null(GENERAL_NAMES) # define sk_GENERAL_NAMES_free(st) SKM_sk_free(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_num(st) SKM_sk_num(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_value(st, i) SKM_sk_value(GENERAL_NAMES, (st), (i)) # define sk_GENERAL_NAMES_set(st, i, val) SKM_sk_set(GENERAL_NAMES, (st), (i), (val)) # define sk_GENERAL_NAMES_zero(st) SKM_sk_zero(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_push(st, val) SKM_sk_push(GENERAL_NAMES, (st), (val)) # define sk_GENERAL_NAMES_unshift(st, val) SKM_sk_unshift(GENERAL_NAMES, (st), (val)) # define sk_GENERAL_NAMES_find(st, val) SKM_sk_find(GENERAL_NAMES, (st), (val)) # define sk_GENERAL_NAMES_find_ex(st, val) SKM_sk_find_ex(GENERAL_NAMES, (st), (val)) # define sk_GENERAL_NAMES_delete(st, i) SKM_sk_delete(GENERAL_NAMES, (st), (i)) # define sk_GENERAL_NAMES_delete_ptr(st, ptr) SKM_sk_delete_ptr(GENERAL_NAMES, (st), (ptr)) # define sk_GENERAL_NAMES_insert(st, val, i) SKM_sk_insert(GENERAL_NAMES, (st), (val), (i)) # define sk_GENERAL_NAMES_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(GENERAL_NAMES, (st), (cmp)) # define sk_GENERAL_NAMES_dup(st) SKM_sk_dup(GENERAL_NAMES, st) # define sk_GENERAL_NAMES_pop_free(st, free_func) SKM_sk_pop_free(GENERAL_NAMES, (st), (free_func)) # define sk_GENERAL_NAMES_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(GENERAL_NAMES, (st), (copy_func), (free_func)) # define sk_GENERAL_NAMES_shift(st) SKM_sk_shift(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_pop(st) SKM_sk_pop(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_sort(st) SKM_sk_sort(GENERAL_NAMES, (st)) # define sk_GENERAL_NAMES_is_sorted(st) SKM_sk_is_sorted(GENERAL_NAMES, (st)) # define sk_GENERAL_SUBTREE_new(cmp) SKM_sk_new(GENERAL_SUBTREE, (cmp)) # define sk_GENERAL_SUBTREE_new_null() SKM_sk_new_null(GENERAL_SUBTREE) # define sk_GENERAL_SUBTREE_free(st) SKM_sk_free(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_num(st) SKM_sk_num(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_value(st, i) SKM_sk_value(GENERAL_SUBTREE, (st), (i)) # define sk_GENERAL_SUBTREE_set(st, i, val) SKM_sk_set(GENERAL_SUBTREE, (st), (i), (val)) # define sk_GENERAL_SUBTREE_zero(st) SKM_sk_zero(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_push(st, val) SKM_sk_push(GENERAL_SUBTREE, (st), (val)) # define sk_GENERAL_SUBTREE_unshift(st, val) SKM_sk_unshift(GENERAL_SUBTREE, (st), (val)) # define sk_GENERAL_SUBTREE_find(st, val) SKM_sk_find(GENERAL_SUBTREE, (st), (val)) # define sk_GENERAL_SUBTREE_find_ex(st, val) SKM_sk_find_ex(GENERAL_SUBTREE, (st), (val)) # define sk_GENERAL_SUBTREE_delete(st, i) SKM_sk_delete(GENERAL_SUBTREE, (st), (i)) # define sk_GENERAL_SUBTREE_delete_ptr(st, ptr) SKM_sk_delete_ptr(GENERAL_SUBTREE, (st), (ptr)) # define sk_GENERAL_SUBTREE_insert(st, val, i) SKM_sk_insert(GENERAL_SUBTREE, (st), (val), (i)) # define sk_GENERAL_SUBTREE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(GENERAL_SUBTREE, (st), (cmp)) # define sk_GENERAL_SUBTREE_dup(st) SKM_sk_dup(GENERAL_SUBTREE, st) # define sk_GENERAL_SUBTREE_pop_free(st, free_func) SKM_sk_pop_free(GENERAL_SUBTREE, (st), (free_func)) # define sk_GENERAL_SUBTREE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(GENERAL_SUBTREE, (st), (copy_func), (free_func)) # define sk_GENERAL_SUBTREE_shift(st) SKM_sk_shift(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_pop(st) SKM_sk_pop(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_sort(st) SKM_sk_sort(GENERAL_SUBTREE, (st)) # define sk_GENERAL_SUBTREE_is_sorted(st) SKM_sk_is_sorted(GENERAL_SUBTREE, (st)) # define sk_IPAddressFamily_new(cmp) SKM_sk_new(IPAddressFamily, (cmp)) # define sk_IPAddressFamily_new_null() SKM_sk_new_null(IPAddressFamily) # define sk_IPAddressFamily_free(st) SKM_sk_free(IPAddressFamily, (st)) # define sk_IPAddressFamily_num(st) SKM_sk_num(IPAddressFamily, (st)) # define sk_IPAddressFamily_value(st, i) SKM_sk_value(IPAddressFamily, (st), (i)) # define sk_IPAddressFamily_set(st, i, val) SKM_sk_set(IPAddressFamily, (st), (i), (val)) # define sk_IPAddressFamily_zero(st) SKM_sk_zero(IPAddressFamily, (st)) # define sk_IPAddressFamily_push(st, val) SKM_sk_push(IPAddressFamily, (st), (val)) # define sk_IPAddressFamily_unshift(st, val) SKM_sk_unshift(IPAddressFamily, (st), (val)) # define sk_IPAddressFamily_find(st, val) SKM_sk_find(IPAddressFamily, (st), (val)) # define sk_IPAddressFamily_find_ex(st, val) SKM_sk_find_ex(IPAddressFamily, (st), (val)) # define sk_IPAddressFamily_delete(st, i) SKM_sk_delete(IPAddressFamily, (st), (i)) # define sk_IPAddressFamily_delete_ptr(st, ptr) SKM_sk_delete_ptr(IPAddressFamily, (st), (ptr)) # define sk_IPAddressFamily_insert(st, val, i) SKM_sk_insert(IPAddressFamily, (st), (val), (i)) # define sk_IPAddressFamily_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(IPAddressFamily, (st), (cmp)) # define sk_IPAddressFamily_dup(st) SKM_sk_dup(IPAddressFamily, st) # define sk_IPAddressFamily_pop_free(st, free_func) SKM_sk_pop_free(IPAddressFamily, (st), (free_func)) # define sk_IPAddressFamily_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(IPAddressFamily, (st), (copy_func), (free_func)) # define sk_IPAddressFamily_shift(st) SKM_sk_shift(IPAddressFamily, (st)) # define sk_IPAddressFamily_pop(st) SKM_sk_pop(IPAddressFamily, (st)) # define sk_IPAddressFamily_sort(st) SKM_sk_sort(IPAddressFamily, (st)) # define sk_IPAddressFamily_is_sorted(st) SKM_sk_is_sorted(IPAddressFamily, (st)) # define sk_IPAddressOrRange_new(cmp) SKM_sk_new(IPAddressOrRange, (cmp)) # define sk_IPAddressOrRange_new_null() SKM_sk_new_null(IPAddressOrRange) # define sk_IPAddressOrRange_free(st) SKM_sk_free(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_num(st) SKM_sk_num(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_value(st, i) SKM_sk_value(IPAddressOrRange, (st), (i)) # define sk_IPAddressOrRange_set(st, i, val) SKM_sk_set(IPAddressOrRange, (st), (i), (val)) # define sk_IPAddressOrRange_zero(st) SKM_sk_zero(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_push(st, val) SKM_sk_push(IPAddressOrRange, (st), (val)) # define sk_IPAddressOrRange_unshift(st, val) SKM_sk_unshift(IPAddressOrRange, (st), (val)) # define sk_IPAddressOrRange_find(st, val) SKM_sk_find(IPAddressOrRange, (st), (val)) # define sk_IPAddressOrRange_find_ex(st, val) SKM_sk_find_ex(IPAddressOrRange, (st), (val)) # define sk_IPAddressOrRange_delete(st, i) SKM_sk_delete(IPAddressOrRange, (st), (i)) # define sk_IPAddressOrRange_delete_ptr(st, ptr) SKM_sk_delete_ptr(IPAddressOrRange, (st), (ptr)) # define sk_IPAddressOrRange_insert(st, val, i) SKM_sk_insert(IPAddressOrRange, (st), (val), (i)) # define sk_IPAddressOrRange_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(IPAddressOrRange, (st), (cmp)) # define sk_IPAddressOrRange_dup(st) SKM_sk_dup(IPAddressOrRange, st) # define sk_IPAddressOrRange_pop_free(st, free_func) SKM_sk_pop_free(IPAddressOrRange, (st), (free_func)) # define sk_IPAddressOrRange_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(IPAddressOrRange, (st), (copy_func), (free_func)) # define sk_IPAddressOrRange_shift(st) SKM_sk_shift(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_pop(st) SKM_sk_pop(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_sort(st) SKM_sk_sort(IPAddressOrRange, (st)) # define sk_IPAddressOrRange_is_sorted(st) SKM_sk_is_sorted(IPAddressOrRange, (st)) # define sk_KRB5_APREQBODY_new(cmp) SKM_sk_new(KRB5_APREQBODY, (cmp)) # define sk_KRB5_APREQBODY_new_null() SKM_sk_new_null(KRB5_APREQBODY) # define sk_KRB5_APREQBODY_free(st) SKM_sk_free(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_num(st) SKM_sk_num(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_value(st, i) SKM_sk_value(KRB5_APREQBODY, (st), (i)) # define sk_KRB5_APREQBODY_set(st, i, val) SKM_sk_set(KRB5_APREQBODY, (st), (i), (val)) # define sk_KRB5_APREQBODY_zero(st) SKM_sk_zero(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_push(st, val) SKM_sk_push(KRB5_APREQBODY, (st), (val)) # define sk_KRB5_APREQBODY_unshift(st, val) SKM_sk_unshift(KRB5_APREQBODY, (st), (val)) # define sk_KRB5_APREQBODY_find(st, val) SKM_sk_find(KRB5_APREQBODY, (st), (val)) # define sk_KRB5_APREQBODY_find_ex(st, val) SKM_sk_find_ex(KRB5_APREQBODY, (st), (val)) # define sk_KRB5_APREQBODY_delete(st, i) SKM_sk_delete(KRB5_APREQBODY, (st), (i)) # define sk_KRB5_APREQBODY_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_APREQBODY, (st), (ptr)) # define sk_KRB5_APREQBODY_insert(st, val, i) SKM_sk_insert(KRB5_APREQBODY, (st), (val), (i)) # define sk_KRB5_APREQBODY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_APREQBODY, (st), (cmp)) # define sk_KRB5_APREQBODY_dup(st) SKM_sk_dup(KRB5_APREQBODY, st) # define sk_KRB5_APREQBODY_pop_free(st, free_func) SKM_sk_pop_free(KRB5_APREQBODY, (st), (free_func)) # define sk_KRB5_APREQBODY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_APREQBODY, (st), (copy_func), (free_func)) # define sk_KRB5_APREQBODY_shift(st) SKM_sk_shift(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_pop(st) SKM_sk_pop(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_sort(st) SKM_sk_sort(KRB5_APREQBODY, (st)) # define sk_KRB5_APREQBODY_is_sorted(st) SKM_sk_is_sorted(KRB5_APREQBODY, (st)) # define sk_KRB5_AUTHDATA_new(cmp) SKM_sk_new(KRB5_AUTHDATA, (cmp)) # define sk_KRB5_AUTHDATA_new_null() SKM_sk_new_null(KRB5_AUTHDATA) # define sk_KRB5_AUTHDATA_free(st) SKM_sk_free(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_num(st) SKM_sk_num(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_value(st, i) SKM_sk_value(KRB5_AUTHDATA, (st), (i)) # define sk_KRB5_AUTHDATA_set(st, i, val) SKM_sk_set(KRB5_AUTHDATA, (st), (i), (val)) # define sk_KRB5_AUTHDATA_zero(st) SKM_sk_zero(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_push(st, val) SKM_sk_push(KRB5_AUTHDATA, (st), (val)) # define sk_KRB5_AUTHDATA_unshift(st, val) SKM_sk_unshift(KRB5_AUTHDATA, (st), (val)) # define sk_KRB5_AUTHDATA_find(st, val) SKM_sk_find(KRB5_AUTHDATA, (st), (val)) # define sk_KRB5_AUTHDATA_find_ex(st, val) SKM_sk_find_ex(KRB5_AUTHDATA, (st), (val)) # define sk_KRB5_AUTHDATA_delete(st, i) SKM_sk_delete(KRB5_AUTHDATA, (st), (i)) # define sk_KRB5_AUTHDATA_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_AUTHDATA, (st), (ptr)) # define sk_KRB5_AUTHDATA_insert(st, val, i) SKM_sk_insert(KRB5_AUTHDATA, (st), (val), (i)) # define sk_KRB5_AUTHDATA_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_AUTHDATA, (st), (cmp)) # define sk_KRB5_AUTHDATA_dup(st) SKM_sk_dup(KRB5_AUTHDATA, st) # define sk_KRB5_AUTHDATA_pop_free(st, free_func) SKM_sk_pop_free(KRB5_AUTHDATA, (st), (free_func)) # define sk_KRB5_AUTHDATA_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_AUTHDATA, (st), (copy_func), (free_func)) # define sk_KRB5_AUTHDATA_shift(st) SKM_sk_shift(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_pop(st) SKM_sk_pop(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_sort(st) SKM_sk_sort(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHDATA_is_sorted(st) SKM_sk_is_sorted(KRB5_AUTHDATA, (st)) # define sk_KRB5_AUTHENTBODY_new(cmp) SKM_sk_new(KRB5_AUTHENTBODY, (cmp)) # define sk_KRB5_AUTHENTBODY_new_null() SKM_sk_new_null(KRB5_AUTHENTBODY) # define sk_KRB5_AUTHENTBODY_free(st) SKM_sk_free(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_num(st) SKM_sk_num(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_value(st, i) SKM_sk_value(KRB5_AUTHENTBODY, (st), (i)) # define sk_KRB5_AUTHENTBODY_set(st, i, val) SKM_sk_set(KRB5_AUTHENTBODY, (st), (i), (val)) # define sk_KRB5_AUTHENTBODY_zero(st) SKM_sk_zero(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_push(st, val) SKM_sk_push(KRB5_AUTHENTBODY, (st), (val)) # define sk_KRB5_AUTHENTBODY_unshift(st, val) SKM_sk_unshift(KRB5_AUTHENTBODY, (st), (val)) # define sk_KRB5_AUTHENTBODY_find(st, val) SKM_sk_find(KRB5_AUTHENTBODY, (st), (val)) # define sk_KRB5_AUTHENTBODY_find_ex(st, val) SKM_sk_find_ex(KRB5_AUTHENTBODY, (st), (val)) # define sk_KRB5_AUTHENTBODY_delete(st, i) SKM_sk_delete(KRB5_AUTHENTBODY, (st), (i)) # define sk_KRB5_AUTHENTBODY_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_AUTHENTBODY, (st), (ptr)) # define sk_KRB5_AUTHENTBODY_insert(st, val, i) SKM_sk_insert(KRB5_AUTHENTBODY, (st), (val), (i)) # define sk_KRB5_AUTHENTBODY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_AUTHENTBODY, (st), (cmp)) # define sk_KRB5_AUTHENTBODY_dup(st) SKM_sk_dup(KRB5_AUTHENTBODY, st) # define sk_KRB5_AUTHENTBODY_pop_free(st, free_func) SKM_sk_pop_free(KRB5_AUTHENTBODY, (st), (free_func)) # define sk_KRB5_AUTHENTBODY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_AUTHENTBODY, (st), (copy_func), (free_func)) # define sk_KRB5_AUTHENTBODY_shift(st) SKM_sk_shift(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_pop(st) SKM_sk_pop(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_sort(st) SKM_sk_sort(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_AUTHENTBODY_is_sorted(st) SKM_sk_is_sorted(KRB5_AUTHENTBODY, (st)) # define sk_KRB5_CHECKSUM_new(cmp) SKM_sk_new(KRB5_CHECKSUM, (cmp)) # define sk_KRB5_CHECKSUM_new_null() SKM_sk_new_null(KRB5_CHECKSUM) # define sk_KRB5_CHECKSUM_free(st) SKM_sk_free(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_num(st) SKM_sk_num(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_value(st, i) SKM_sk_value(KRB5_CHECKSUM, (st), (i)) # define sk_KRB5_CHECKSUM_set(st, i, val) SKM_sk_set(KRB5_CHECKSUM, (st), (i), (val)) # define sk_KRB5_CHECKSUM_zero(st) SKM_sk_zero(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_push(st, val) SKM_sk_push(KRB5_CHECKSUM, (st), (val)) # define sk_KRB5_CHECKSUM_unshift(st, val) SKM_sk_unshift(KRB5_CHECKSUM, (st), (val)) # define sk_KRB5_CHECKSUM_find(st, val) SKM_sk_find(KRB5_CHECKSUM, (st), (val)) # define sk_KRB5_CHECKSUM_find_ex(st, val) SKM_sk_find_ex(KRB5_CHECKSUM, (st), (val)) # define sk_KRB5_CHECKSUM_delete(st, i) SKM_sk_delete(KRB5_CHECKSUM, (st), (i)) # define sk_KRB5_CHECKSUM_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_CHECKSUM, (st), (ptr)) # define sk_KRB5_CHECKSUM_insert(st, val, i) SKM_sk_insert(KRB5_CHECKSUM, (st), (val), (i)) # define sk_KRB5_CHECKSUM_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_CHECKSUM, (st), (cmp)) # define sk_KRB5_CHECKSUM_dup(st) SKM_sk_dup(KRB5_CHECKSUM, st) # define sk_KRB5_CHECKSUM_pop_free(st, free_func) SKM_sk_pop_free(KRB5_CHECKSUM, (st), (free_func)) # define sk_KRB5_CHECKSUM_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_CHECKSUM, (st), (copy_func), (free_func)) # define sk_KRB5_CHECKSUM_shift(st) SKM_sk_shift(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_pop(st) SKM_sk_pop(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_sort(st) SKM_sk_sort(KRB5_CHECKSUM, (st)) # define sk_KRB5_CHECKSUM_is_sorted(st) SKM_sk_is_sorted(KRB5_CHECKSUM, (st)) # define sk_KRB5_ENCDATA_new(cmp) SKM_sk_new(KRB5_ENCDATA, (cmp)) # define sk_KRB5_ENCDATA_new_null() SKM_sk_new_null(KRB5_ENCDATA) # define sk_KRB5_ENCDATA_free(st) SKM_sk_free(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_num(st) SKM_sk_num(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_value(st, i) SKM_sk_value(KRB5_ENCDATA, (st), (i)) # define sk_KRB5_ENCDATA_set(st, i, val) SKM_sk_set(KRB5_ENCDATA, (st), (i), (val)) # define sk_KRB5_ENCDATA_zero(st) SKM_sk_zero(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_push(st, val) SKM_sk_push(KRB5_ENCDATA, (st), (val)) # define sk_KRB5_ENCDATA_unshift(st, val) SKM_sk_unshift(KRB5_ENCDATA, (st), (val)) # define sk_KRB5_ENCDATA_find(st, val) SKM_sk_find(KRB5_ENCDATA, (st), (val)) # define sk_KRB5_ENCDATA_find_ex(st, val) SKM_sk_find_ex(KRB5_ENCDATA, (st), (val)) # define sk_KRB5_ENCDATA_delete(st, i) SKM_sk_delete(KRB5_ENCDATA, (st), (i)) # define sk_KRB5_ENCDATA_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_ENCDATA, (st), (ptr)) # define sk_KRB5_ENCDATA_insert(st, val, i) SKM_sk_insert(KRB5_ENCDATA, (st), (val), (i)) # define sk_KRB5_ENCDATA_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_ENCDATA, (st), (cmp)) # define sk_KRB5_ENCDATA_dup(st) SKM_sk_dup(KRB5_ENCDATA, st) # define sk_KRB5_ENCDATA_pop_free(st, free_func) SKM_sk_pop_free(KRB5_ENCDATA, (st), (free_func)) # define sk_KRB5_ENCDATA_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_ENCDATA, (st), (copy_func), (free_func)) # define sk_KRB5_ENCDATA_shift(st) SKM_sk_shift(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_pop(st) SKM_sk_pop(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_sort(st) SKM_sk_sort(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCDATA_is_sorted(st) SKM_sk_is_sorted(KRB5_ENCDATA, (st)) # define sk_KRB5_ENCKEY_new(cmp) SKM_sk_new(KRB5_ENCKEY, (cmp)) # define sk_KRB5_ENCKEY_new_null() SKM_sk_new_null(KRB5_ENCKEY) # define sk_KRB5_ENCKEY_free(st) SKM_sk_free(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_num(st) SKM_sk_num(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_value(st, i) SKM_sk_value(KRB5_ENCKEY, (st), (i)) # define sk_KRB5_ENCKEY_set(st, i, val) SKM_sk_set(KRB5_ENCKEY, (st), (i), (val)) # define sk_KRB5_ENCKEY_zero(st) SKM_sk_zero(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_push(st, val) SKM_sk_push(KRB5_ENCKEY, (st), (val)) # define sk_KRB5_ENCKEY_unshift(st, val) SKM_sk_unshift(KRB5_ENCKEY, (st), (val)) # define sk_KRB5_ENCKEY_find(st, val) SKM_sk_find(KRB5_ENCKEY, (st), (val)) # define sk_KRB5_ENCKEY_find_ex(st, val) SKM_sk_find_ex(KRB5_ENCKEY, (st), (val)) # define sk_KRB5_ENCKEY_delete(st, i) SKM_sk_delete(KRB5_ENCKEY, (st), (i)) # define sk_KRB5_ENCKEY_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_ENCKEY, (st), (ptr)) # define sk_KRB5_ENCKEY_insert(st, val, i) SKM_sk_insert(KRB5_ENCKEY, (st), (val), (i)) # define sk_KRB5_ENCKEY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_ENCKEY, (st), (cmp)) # define sk_KRB5_ENCKEY_dup(st) SKM_sk_dup(KRB5_ENCKEY, st) # define sk_KRB5_ENCKEY_pop_free(st, free_func) SKM_sk_pop_free(KRB5_ENCKEY, (st), (free_func)) # define sk_KRB5_ENCKEY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_ENCKEY, (st), (copy_func), (free_func)) # define sk_KRB5_ENCKEY_shift(st) SKM_sk_shift(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_pop(st) SKM_sk_pop(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_sort(st) SKM_sk_sort(KRB5_ENCKEY, (st)) # define sk_KRB5_ENCKEY_is_sorted(st) SKM_sk_is_sorted(KRB5_ENCKEY, (st)) # define sk_KRB5_PRINCNAME_new(cmp) SKM_sk_new(KRB5_PRINCNAME, (cmp)) # define sk_KRB5_PRINCNAME_new_null() SKM_sk_new_null(KRB5_PRINCNAME) # define sk_KRB5_PRINCNAME_free(st) SKM_sk_free(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_num(st) SKM_sk_num(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_value(st, i) SKM_sk_value(KRB5_PRINCNAME, (st), (i)) # define sk_KRB5_PRINCNAME_set(st, i, val) SKM_sk_set(KRB5_PRINCNAME, (st), (i), (val)) # define sk_KRB5_PRINCNAME_zero(st) SKM_sk_zero(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_push(st, val) SKM_sk_push(KRB5_PRINCNAME, (st), (val)) # define sk_KRB5_PRINCNAME_unshift(st, val) SKM_sk_unshift(KRB5_PRINCNAME, (st), (val)) # define sk_KRB5_PRINCNAME_find(st, val) SKM_sk_find(KRB5_PRINCNAME, (st), (val)) # define sk_KRB5_PRINCNAME_find_ex(st, val) SKM_sk_find_ex(KRB5_PRINCNAME, (st), (val)) # define sk_KRB5_PRINCNAME_delete(st, i) SKM_sk_delete(KRB5_PRINCNAME, (st), (i)) # define sk_KRB5_PRINCNAME_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_PRINCNAME, (st), (ptr)) # define sk_KRB5_PRINCNAME_insert(st, val, i) SKM_sk_insert(KRB5_PRINCNAME, (st), (val), (i)) # define sk_KRB5_PRINCNAME_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_PRINCNAME, (st), (cmp)) # define sk_KRB5_PRINCNAME_dup(st) SKM_sk_dup(KRB5_PRINCNAME, st) # define sk_KRB5_PRINCNAME_pop_free(st, free_func) SKM_sk_pop_free(KRB5_PRINCNAME, (st), (free_func)) # define sk_KRB5_PRINCNAME_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_PRINCNAME, (st), (copy_func), (free_func)) # define sk_KRB5_PRINCNAME_shift(st) SKM_sk_shift(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_pop(st) SKM_sk_pop(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_sort(st) SKM_sk_sort(KRB5_PRINCNAME, (st)) # define sk_KRB5_PRINCNAME_is_sorted(st) SKM_sk_is_sorted(KRB5_PRINCNAME, (st)) # define sk_KRB5_TKTBODY_new(cmp) SKM_sk_new(KRB5_TKTBODY, (cmp)) # define sk_KRB5_TKTBODY_new_null() SKM_sk_new_null(KRB5_TKTBODY) # define sk_KRB5_TKTBODY_free(st) SKM_sk_free(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_num(st) SKM_sk_num(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_value(st, i) SKM_sk_value(KRB5_TKTBODY, (st), (i)) # define sk_KRB5_TKTBODY_set(st, i, val) SKM_sk_set(KRB5_TKTBODY, (st), (i), (val)) # define sk_KRB5_TKTBODY_zero(st) SKM_sk_zero(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_push(st, val) SKM_sk_push(KRB5_TKTBODY, (st), (val)) # define sk_KRB5_TKTBODY_unshift(st, val) SKM_sk_unshift(KRB5_TKTBODY, (st), (val)) # define sk_KRB5_TKTBODY_find(st, val) SKM_sk_find(KRB5_TKTBODY, (st), (val)) # define sk_KRB5_TKTBODY_find_ex(st, val) SKM_sk_find_ex(KRB5_TKTBODY, (st), (val)) # define sk_KRB5_TKTBODY_delete(st, i) SKM_sk_delete(KRB5_TKTBODY, (st), (i)) # define sk_KRB5_TKTBODY_delete_ptr(st, ptr) SKM_sk_delete_ptr(KRB5_TKTBODY, (st), (ptr)) # define sk_KRB5_TKTBODY_insert(st, val, i) SKM_sk_insert(KRB5_TKTBODY, (st), (val), (i)) # define sk_KRB5_TKTBODY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(KRB5_TKTBODY, (st), (cmp)) # define sk_KRB5_TKTBODY_dup(st) SKM_sk_dup(KRB5_TKTBODY, st) # define sk_KRB5_TKTBODY_pop_free(st, free_func) SKM_sk_pop_free(KRB5_TKTBODY, (st), (free_func)) # define sk_KRB5_TKTBODY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(KRB5_TKTBODY, (st), (copy_func), (free_func)) # define sk_KRB5_TKTBODY_shift(st) SKM_sk_shift(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_pop(st) SKM_sk_pop(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_sort(st) SKM_sk_sort(KRB5_TKTBODY, (st)) # define sk_KRB5_TKTBODY_is_sorted(st) SKM_sk_is_sorted(KRB5_TKTBODY, (st)) # define sk_MEM_OBJECT_DATA_new(cmp) SKM_sk_new(MEM_OBJECT_DATA, (cmp)) # define sk_MEM_OBJECT_DATA_new_null() SKM_sk_new_null(MEM_OBJECT_DATA) # define sk_MEM_OBJECT_DATA_free(st) SKM_sk_free(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_num(st) SKM_sk_num(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_value(st, i) SKM_sk_value(MEM_OBJECT_DATA, (st), (i)) # define sk_MEM_OBJECT_DATA_set(st, i, val) SKM_sk_set(MEM_OBJECT_DATA, (st), (i), (val)) # define sk_MEM_OBJECT_DATA_zero(st) SKM_sk_zero(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_push(st, val) SKM_sk_push(MEM_OBJECT_DATA, (st), (val)) # define sk_MEM_OBJECT_DATA_unshift(st, val) SKM_sk_unshift(MEM_OBJECT_DATA, (st), (val)) # define sk_MEM_OBJECT_DATA_find(st, val) SKM_sk_find(MEM_OBJECT_DATA, (st), (val)) # define sk_MEM_OBJECT_DATA_find_ex(st, val) SKM_sk_find_ex(MEM_OBJECT_DATA, (st), (val)) # define sk_MEM_OBJECT_DATA_delete(st, i) SKM_sk_delete(MEM_OBJECT_DATA, (st), (i)) # define sk_MEM_OBJECT_DATA_delete_ptr(st, ptr) SKM_sk_delete_ptr(MEM_OBJECT_DATA, (st), (ptr)) # define sk_MEM_OBJECT_DATA_insert(st, val, i) SKM_sk_insert(MEM_OBJECT_DATA, (st), (val), (i)) # define sk_MEM_OBJECT_DATA_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(MEM_OBJECT_DATA, (st), (cmp)) # define sk_MEM_OBJECT_DATA_dup(st) SKM_sk_dup(MEM_OBJECT_DATA, st) # define sk_MEM_OBJECT_DATA_pop_free(st, free_func) SKM_sk_pop_free(MEM_OBJECT_DATA, (st), (free_func)) # define sk_MEM_OBJECT_DATA_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(MEM_OBJECT_DATA, (st), (copy_func), (free_func)) # define sk_MEM_OBJECT_DATA_shift(st) SKM_sk_shift(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_pop(st) SKM_sk_pop(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_sort(st) SKM_sk_sort(MEM_OBJECT_DATA, (st)) # define sk_MEM_OBJECT_DATA_is_sorted(st) SKM_sk_is_sorted(MEM_OBJECT_DATA, (st)) # define sk_MIME_HEADER_new(cmp) SKM_sk_new(MIME_HEADER, (cmp)) # define sk_MIME_HEADER_new_null() SKM_sk_new_null(MIME_HEADER) # define sk_MIME_HEADER_free(st) SKM_sk_free(MIME_HEADER, (st)) # define sk_MIME_HEADER_num(st) SKM_sk_num(MIME_HEADER, (st)) # define sk_MIME_HEADER_value(st, i) SKM_sk_value(MIME_HEADER, (st), (i)) # define sk_MIME_HEADER_set(st, i, val) SKM_sk_set(MIME_HEADER, (st), (i), (val)) # define sk_MIME_HEADER_zero(st) SKM_sk_zero(MIME_HEADER, (st)) # define sk_MIME_HEADER_push(st, val) SKM_sk_push(MIME_HEADER, (st), (val)) # define sk_MIME_HEADER_unshift(st, val) SKM_sk_unshift(MIME_HEADER, (st), (val)) # define sk_MIME_HEADER_find(st, val) SKM_sk_find(MIME_HEADER, (st), (val)) # define sk_MIME_HEADER_find_ex(st, val) SKM_sk_find_ex(MIME_HEADER, (st), (val)) # define sk_MIME_HEADER_delete(st, i) SKM_sk_delete(MIME_HEADER, (st), (i)) # define sk_MIME_HEADER_delete_ptr(st, ptr) SKM_sk_delete_ptr(MIME_HEADER, (st), (ptr)) # define sk_MIME_HEADER_insert(st, val, i) SKM_sk_insert(MIME_HEADER, (st), (val), (i)) # define sk_MIME_HEADER_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(MIME_HEADER, (st), (cmp)) # define sk_MIME_HEADER_dup(st) SKM_sk_dup(MIME_HEADER, st) # define sk_MIME_HEADER_pop_free(st, free_func) SKM_sk_pop_free(MIME_HEADER, (st), (free_func)) # define sk_MIME_HEADER_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(MIME_HEADER, (st), (copy_func), (free_func)) # define sk_MIME_HEADER_shift(st) SKM_sk_shift(MIME_HEADER, (st)) # define sk_MIME_HEADER_pop(st) SKM_sk_pop(MIME_HEADER, (st)) # define sk_MIME_HEADER_sort(st) SKM_sk_sort(MIME_HEADER, (st)) # define sk_MIME_HEADER_is_sorted(st) SKM_sk_is_sorted(MIME_HEADER, (st)) # define sk_MIME_PARAM_new(cmp) SKM_sk_new(MIME_PARAM, (cmp)) # define sk_MIME_PARAM_new_null() SKM_sk_new_null(MIME_PARAM) # define sk_MIME_PARAM_free(st) SKM_sk_free(MIME_PARAM, (st)) # define sk_MIME_PARAM_num(st) SKM_sk_num(MIME_PARAM, (st)) # define sk_MIME_PARAM_value(st, i) SKM_sk_value(MIME_PARAM, (st), (i)) # define sk_MIME_PARAM_set(st, i, val) SKM_sk_set(MIME_PARAM, (st), (i), (val)) # define sk_MIME_PARAM_zero(st) SKM_sk_zero(MIME_PARAM, (st)) # define sk_MIME_PARAM_push(st, val) SKM_sk_push(MIME_PARAM, (st), (val)) # define sk_MIME_PARAM_unshift(st, val) SKM_sk_unshift(MIME_PARAM, (st), (val)) # define sk_MIME_PARAM_find(st, val) SKM_sk_find(MIME_PARAM, (st), (val)) # define sk_MIME_PARAM_find_ex(st, val) SKM_sk_find_ex(MIME_PARAM, (st), (val)) # define sk_MIME_PARAM_delete(st, i) SKM_sk_delete(MIME_PARAM, (st), (i)) # define sk_MIME_PARAM_delete_ptr(st, ptr) SKM_sk_delete_ptr(MIME_PARAM, (st), (ptr)) # define sk_MIME_PARAM_insert(st, val, i) SKM_sk_insert(MIME_PARAM, (st), (val), (i)) # define sk_MIME_PARAM_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(MIME_PARAM, (st), (cmp)) # define sk_MIME_PARAM_dup(st) SKM_sk_dup(MIME_PARAM, st) # define sk_MIME_PARAM_pop_free(st, free_func) SKM_sk_pop_free(MIME_PARAM, (st), (free_func)) # define sk_MIME_PARAM_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(MIME_PARAM, (st), (copy_func), (free_func)) # define sk_MIME_PARAM_shift(st) SKM_sk_shift(MIME_PARAM, (st)) # define sk_MIME_PARAM_pop(st) SKM_sk_pop(MIME_PARAM, (st)) # define sk_MIME_PARAM_sort(st) SKM_sk_sort(MIME_PARAM, (st)) # define sk_MIME_PARAM_is_sorted(st) SKM_sk_is_sorted(MIME_PARAM, (st)) # define sk_NAME_FUNCS_new(cmp) SKM_sk_new(NAME_FUNCS, (cmp)) # define sk_NAME_FUNCS_new_null() SKM_sk_new_null(NAME_FUNCS) # define sk_NAME_FUNCS_free(st) SKM_sk_free(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_num(st) SKM_sk_num(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_value(st, i) SKM_sk_value(NAME_FUNCS, (st), (i)) # define sk_NAME_FUNCS_set(st, i, val) SKM_sk_set(NAME_FUNCS, (st), (i), (val)) # define sk_NAME_FUNCS_zero(st) SKM_sk_zero(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_push(st, val) SKM_sk_push(NAME_FUNCS, (st), (val)) # define sk_NAME_FUNCS_unshift(st, val) SKM_sk_unshift(NAME_FUNCS, (st), (val)) # define sk_NAME_FUNCS_find(st, val) SKM_sk_find(NAME_FUNCS, (st), (val)) # define sk_NAME_FUNCS_find_ex(st, val) SKM_sk_find_ex(NAME_FUNCS, (st), (val)) # define sk_NAME_FUNCS_delete(st, i) SKM_sk_delete(NAME_FUNCS, (st), (i)) # define sk_NAME_FUNCS_delete_ptr(st, ptr) SKM_sk_delete_ptr(NAME_FUNCS, (st), (ptr)) # define sk_NAME_FUNCS_insert(st, val, i) SKM_sk_insert(NAME_FUNCS, (st), (val), (i)) # define sk_NAME_FUNCS_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(NAME_FUNCS, (st), (cmp)) # define sk_NAME_FUNCS_dup(st) SKM_sk_dup(NAME_FUNCS, st) # define sk_NAME_FUNCS_pop_free(st, free_func) SKM_sk_pop_free(NAME_FUNCS, (st), (free_func)) # define sk_NAME_FUNCS_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(NAME_FUNCS, (st), (copy_func), (free_func)) # define sk_NAME_FUNCS_shift(st) SKM_sk_shift(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_pop(st) SKM_sk_pop(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_sort(st) SKM_sk_sort(NAME_FUNCS, (st)) # define sk_NAME_FUNCS_is_sorted(st) SKM_sk_is_sorted(NAME_FUNCS, (st)) # define sk_OCSP_CERTID_new(cmp) SKM_sk_new(OCSP_CERTID, (cmp)) # define sk_OCSP_CERTID_new_null() SKM_sk_new_null(OCSP_CERTID) # define sk_OCSP_CERTID_free(st) SKM_sk_free(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_num(st) SKM_sk_num(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_value(st, i) SKM_sk_value(OCSP_CERTID, (st), (i)) # define sk_OCSP_CERTID_set(st, i, val) SKM_sk_set(OCSP_CERTID, (st), (i), (val)) # define sk_OCSP_CERTID_zero(st) SKM_sk_zero(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_push(st, val) SKM_sk_push(OCSP_CERTID, (st), (val)) # define sk_OCSP_CERTID_unshift(st, val) SKM_sk_unshift(OCSP_CERTID, (st), (val)) # define sk_OCSP_CERTID_find(st, val) SKM_sk_find(OCSP_CERTID, (st), (val)) # define sk_OCSP_CERTID_find_ex(st, val) SKM_sk_find_ex(OCSP_CERTID, (st), (val)) # define sk_OCSP_CERTID_delete(st, i) SKM_sk_delete(OCSP_CERTID, (st), (i)) # define sk_OCSP_CERTID_delete_ptr(st, ptr) SKM_sk_delete_ptr(OCSP_CERTID, (st), (ptr)) # define sk_OCSP_CERTID_insert(st, val, i) SKM_sk_insert(OCSP_CERTID, (st), (val), (i)) # define sk_OCSP_CERTID_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(OCSP_CERTID, (st), (cmp)) # define sk_OCSP_CERTID_dup(st) SKM_sk_dup(OCSP_CERTID, st) # define sk_OCSP_CERTID_pop_free(st, free_func) SKM_sk_pop_free(OCSP_CERTID, (st), (free_func)) # define sk_OCSP_CERTID_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(OCSP_CERTID, (st), (copy_func), (free_func)) # define sk_OCSP_CERTID_shift(st) SKM_sk_shift(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_pop(st) SKM_sk_pop(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_sort(st) SKM_sk_sort(OCSP_CERTID, (st)) # define sk_OCSP_CERTID_is_sorted(st) SKM_sk_is_sorted(OCSP_CERTID, (st)) # define sk_OCSP_ONEREQ_new(cmp) SKM_sk_new(OCSP_ONEREQ, (cmp)) # define sk_OCSP_ONEREQ_new_null() SKM_sk_new_null(OCSP_ONEREQ) # define sk_OCSP_ONEREQ_free(st) SKM_sk_free(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_num(st) SKM_sk_num(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_value(st, i) SKM_sk_value(OCSP_ONEREQ, (st), (i)) # define sk_OCSP_ONEREQ_set(st, i, val) SKM_sk_set(OCSP_ONEREQ, (st), (i), (val)) # define sk_OCSP_ONEREQ_zero(st) SKM_sk_zero(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_push(st, val) SKM_sk_push(OCSP_ONEREQ, (st), (val)) # define sk_OCSP_ONEREQ_unshift(st, val) SKM_sk_unshift(OCSP_ONEREQ, (st), (val)) # define sk_OCSP_ONEREQ_find(st, val) SKM_sk_find(OCSP_ONEREQ, (st), (val)) # define sk_OCSP_ONEREQ_find_ex(st, val) SKM_sk_find_ex(OCSP_ONEREQ, (st), (val)) # define sk_OCSP_ONEREQ_delete(st, i) SKM_sk_delete(OCSP_ONEREQ, (st), (i)) # define sk_OCSP_ONEREQ_delete_ptr(st, ptr) SKM_sk_delete_ptr(OCSP_ONEREQ, (st), (ptr)) # define sk_OCSP_ONEREQ_insert(st, val, i) SKM_sk_insert(OCSP_ONEREQ, (st), (val), (i)) # define sk_OCSP_ONEREQ_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(OCSP_ONEREQ, (st), (cmp)) # define sk_OCSP_ONEREQ_dup(st) SKM_sk_dup(OCSP_ONEREQ, st) # define sk_OCSP_ONEREQ_pop_free(st, free_func) SKM_sk_pop_free(OCSP_ONEREQ, (st), (free_func)) # define sk_OCSP_ONEREQ_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(OCSP_ONEREQ, (st), (copy_func), (free_func)) # define sk_OCSP_ONEREQ_shift(st) SKM_sk_shift(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_pop(st) SKM_sk_pop(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_sort(st) SKM_sk_sort(OCSP_ONEREQ, (st)) # define sk_OCSP_ONEREQ_is_sorted(st) SKM_sk_is_sorted(OCSP_ONEREQ, (st)) # define sk_OCSP_RESPID_new(cmp) SKM_sk_new(OCSP_RESPID, (cmp)) # define sk_OCSP_RESPID_new_null() SKM_sk_new_null(OCSP_RESPID) # define sk_OCSP_RESPID_free(st) SKM_sk_free(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_num(st) SKM_sk_num(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_value(st, i) SKM_sk_value(OCSP_RESPID, (st), (i)) # define sk_OCSP_RESPID_set(st, i, val) SKM_sk_set(OCSP_RESPID, (st), (i), (val)) # define sk_OCSP_RESPID_zero(st) SKM_sk_zero(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_push(st, val) SKM_sk_push(OCSP_RESPID, (st), (val)) # define sk_OCSP_RESPID_unshift(st, val) SKM_sk_unshift(OCSP_RESPID, (st), (val)) # define sk_OCSP_RESPID_find(st, val) SKM_sk_find(OCSP_RESPID, (st), (val)) # define sk_OCSP_RESPID_find_ex(st, val) SKM_sk_find_ex(OCSP_RESPID, (st), (val)) # define sk_OCSP_RESPID_delete(st, i) SKM_sk_delete(OCSP_RESPID, (st), (i)) # define sk_OCSP_RESPID_delete_ptr(st, ptr) SKM_sk_delete_ptr(OCSP_RESPID, (st), (ptr)) # define sk_OCSP_RESPID_insert(st, val, i) SKM_sk_insert(OCSP_RESPID, (st), (val), (i)) # define sk_OCSP_RESPID_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(OCSP_RESPID, (st), (cmp)) # define sk_OCSP_RESPID_dup(st) SKM_sk_dup(OCSP_RESPID, st) # define sk_OCSP_RESPID_pop_free(st, free_func) SKM_sk_pop_free(OCSP_RESPID, (st), (free_func)) # define sk_OCSP_RESPID_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(OCSP_RESPID, (st), (copy_func), (free_func)) # define sk_OCSP_RESPID_shift(st) SKM_sk_shift(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_pop(st) SKM_sk_pop(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_sort(st) SKM_sk_sort(OCSP_RESPID, (st)) # define sk_OCSP_RESPID_is_sorted(st) SKM_sk_is_sorted(OCSP_RESPID, (st)) # define sk_OCSP_SINGLERESP_new(cmp) SKM_sk_new(OCSP_SINGLERESP, (cmp)) # define sk_OCSP_SINGLERESP_new_null() SKM_sk_new_null(OCSP_SINGLERESP) # define sk_OCSP_SINGLERESP_free(st) SKM_sk_free(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_num(st) SKM_sk_num(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_value(st, i) SKM_sk_value(OCSP_SINGLERESP, (st), (i)) # define sk_OCSP_SINGLERESP_set(st, i, val) SKM_sk_set(OCSP_SINGLERESP, (st), (i), (val)) # define sk_OCSP_SINGLERESP_zero(st) SKM_sk_zero(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_push(st, val) SKM_sk_push(OCSP_SINGLERESP, (st), (val)) # define sk_OCSP_SINGLERESP_unshift(st, val) SKM_sk_unshift(OCSP_SINGLERESP, (st), (val)) # define sk_OCSP_SINGLERESP_find(st, val) SKM_sk_find(OCSP_SINGLERESP, (st), (val)) # define sk_OCSP_SINGLERESP_find_ex(st, val) SKM_sk_find_ex(OCSP_SINGLERESP, (st), (val)) # define sk_OCSP_SINGLERESP_delete(st, i) SKM_sk_delete(OCSP_SINGLERESP, (st), (i)) # define sk_OCSP_SINGLERESP_delete_ptr(st, ptr) SKM_sk_delete_ptr(OCSP_SINGLERESP, (st), (ptr)) # define sk_OCSP_SINGLERESP_insert(st, val, i) SKM_sk_insert(OCSP_SINGLERESP, (st), (val), (i)) # define sk_OCSP_SINGLERESP_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(OCSP_SINGLERESP, (st), (cmp)) # define sk_OCSP_SINGLERESP_dup(st) SKM_sk_dup(OCSP_SINGLERESP, st) # define sk_OCSP_SINGLERESP_pop_free(st, free_func) SKM_sk_pop_free(OCSP_SINGLERESP, (st), (free_func)) # define sk_OCSP_SINGLERESP_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(OCSP_SINGLERESP, (st), (copy_func), (free_func)) # define sk_OCSP_SINGLERESP_shift(st) SKM_sk_shift(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_pop(st) SKM_sk_pop(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_sort(st) SKM_sk_sort(OCSP_SINGLERESP, (st)) # define sk_OCSP_SINGLERESP_is_sorted(st) SKM_sk_is_sorted(OCSP_SINGLERESP, (st)) # define sk_PKCS12_SAFEBAG_new(cmp) SKM_sk_new(PKCS12_SAFEBAG, (cmp)) # define sk_PKCS12_SAFEBAG_new_null() SKM_sk_new_null(PKCS12_SAFEBAG) # define sk_PKCS12_SAFEBAG_free(st) SKM_sk_free(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_num(st) SKM_sk_num(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_value(st, i) SKM_sk_value(PKCS12_SAFEBAG, (st), (i)) # define sk_PKCS12_SAFEBAG_set(st, i, val) SKM_sk_set(PKCS12_SAFEBAG, (st), (i), (val)) # define sk_PKCS12_SAFEBAG_zero(st) SKM_sk_zero(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_push(st, val) SKM_sk_push(PKCS12_SAFEBAG, (st), (val)) # define sk_PKCS12_SAFEBAG_unshift(st, val) SKM_sk_unshift(PKCS12_SAFEBAG, (st), (val)) # define sk_PKCS12_SAFEBAG_find(st, val) SKM_sk_find(PKCS12_SAFEBAG, (st), (val)) # define sk_PKCS12_SAFEBAG_find_ex(st, val) SKM_sk_find_ex(PKCS12_SAFEBAG, (st), (val)) # define sk_PKCS12_SAFEBAG_delete(st, i) SKM_sk_delete(PKCS12_SAFEBAG, (st), (i)) # define sk_PKCS12_SAFEBAG_delete_ptr(st, ptr) SKM_sk_delete_ptr(PKCS12_SAFEBAG, (st), (ptr)) # define sk_PKCS12_SAFEBAG_insert(st, val, i) SKM_sk_insert(PKCS12_SAFEBAG, (st), (val), (i)) # define sk_PKCS12_SAFEBAG_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(PKCS12_SAFEBAG, (st), (cmp)) # define sk_PKCS12_SAFEBAG_dup(st) SKM_sk_dup(PKCS12_SAFEBAG, st) # define sk_PKCS12_SAFEBAG_pop_free(st, free_func) SKM_sk_pop_free(PKCS12_SAFEBAG, (st), (free_func)) # define sk_PKCS12_SAFEBAG_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(PKCS12_SAFEBAG, (st), (copy_func), (free_func)) # define sk_PKCS12_SAFEBAG_shift(st) SKM_sk_shift(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_pop(st) SKM_sk_pop(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_sort(st) SKM_sk_sort(PKCS12_SAFEBAG, (st)) # define sk_PKCS12_SAFEBAG_is_sorted(st) SKM_sk_is_sorted(PKCS12_SAFEBAG, (st)) # define sk_PKCS7_new(cmp) SKM_sk_new(PKCS7, (cmp)) # define sk_PKCS7_new_null() SKM_sk_new_null(PKCS7) # define sk_PKCS7_free(st) SKM_sk_free(PKCS7, (st)) # define sk_PKCS7_num(st) SKM_sk_num(PKCS7, (st)) # define sk_PKCS7_value(st, i) SKM_sk_value(PKCS7, (st), (i)) # define sk_PKCS7_set(st, i, val) SKM_sk_set(PKCS7, (st), (i), (val)) # define sk_PKCS7_zero(st) SKM_sk_zero(PKCS7, (st)) # define sk_PKCS7_push(st, val) SKM_sk_push(PKCS7, (st), (val)) # define sk_PKCS7_unshift(st, val) SKM_sk_unshift(PKCS7, (st), (val)) # define sk_PKCS7_find(st, val) SKM_sk_find(PKCS7, (st), (val)) # define sk_PKCS7_find_ex(st, val) SKM_sk_find_ex(PKCS7, (st), (val)) # define sk_PKCS7_delete(st, i) SKM_sk_delete(PKCS7, (st), (i)) # define sk_PKCS7_delete_ptr(st, ptr) SKM_sk_delete_ptr(PKCS7, (st), (ptr)) # define sk_PKCS7_insert(st, val, i) SKM_sk_insert(PKCS7, (st), (val), (i)) # define sk_PKCS7_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(PKCS7, (st), (cmp)) # define sk_PKCS7_dup(st) SKM_sk_dup(PKCS7, st) # define sk_PKCS7_pop_free(st, free_func) SKM_sk_pop_free(PKCS7, (st), (free_func)) # define sk_PKCS7_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(PKCS7, (st), (copy_func), (free_func)) # define sk_PKCS7_shift(st) SKM_sk_shift(PKCS7, (st)) # define sk_PKCS7_pop(st) SKM_sk_pop(PKCS7, (st)) # define sk_PKCS7_sort(st) SKM_sk_sort(PKCS7, (st)) # define sk_PKCS7_is_sorted(st) SKM_sk_is_sorted(PKCS7, (st)) # define sk_PKCS7_RECIP_INFO_new(cmp) SKM_sk_new(PKCS7_RECIP_INFO, (cmp)) # define sk_PKCS7_RECIP_INFO_new_null() SKM_sk_new_null(PKCS7_RECIP_INFO) # define sk_PKCS7_RECIP_INFO_free(st) SKM_sk_free(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_num(st) SKM_sk_num(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_value(st, i) SKM_sk_value(PKCS7_RECIP_INFO, (st), (i)) # define sk_PKCS7_RECIP_INFO_set(st, i, val) SKM_sk_set(PKCS7_RECIP_INFO, (st), (i), (val)) # define sk_PKCS7_RECIP_INFO_zero(st) SKM_sk_zero(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_push(st, val) SKM_sk_push(PKCS7_RECIP_INFO, (st), (val)) # define sk_PKCS7_RECIP_INFO_unshift(st, val) SKM_sk_unshift(PKCS7_RECIP_INFO, (st), (val)) # define sk_PKCS7_RECIP_INFO_find(st, val) SKM_sk_find(PKCS7_RECIP_INFO, (st), (val)) # define sk_PKCS7_RECIP_INFO_find_ex(st, val) SKM_sk_find_ex(PKCS7_RECIP_INFO, (st), (val)) # define sk_PKCS7_RECIP_INFO_delete(st, i) SKM_sk_delete(PKCS7_RECIP_INFO, (st), (i)) # define sk_PKCS7_RECIP_INFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(PKCS7_RECIP_INFO, (st), (ptr)) # define sk_PKCS7_RECIP_INFO_insert(st, val, i) SKM_sk_insert(PKCS7_RECIP_INFO, (st), (val), (i)) # define sk_PKCS7_RECIP_INFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(PKCS7_RECIP_INFO, (st), (cmp)) # define sk_PKCS7_RECIP_INFO_dup(st) SKM_sk_dup(PKCS7_RECIP_INFO, st) # define sk_PKCS7_RECIP_INFO_pop_free(st, free_func) SKM_sk_pop_free(PKCS7_RECIP_INFO, (st), (free_func)) # define sk_PKCS7_RECIP_INFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(PKCS7_RECIP_INFO, (st), (copy_func), (free_func)) # define sk_PKCS7_RECIP_INFO_shift(st) SKM_sk_shift(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_pop(st) SKM_sk_pop(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_sort(st) SKM_sk_sort(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_RECIP_INFO_is_sorted(st) SKM_sk_is_sorted(PKCS7_RECIP_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_new(cmp) SKM_sk_new(PKCS7_SIGNER_INFO, (cmp)) # define sk_PKCS7_SIGNER_INFO_new_null() SKM_sk_new_null(PKCS7_SIGNER_INFO) # define sk_PKCS7_SIGNER_INFO_free(st) SKM_sk_free(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_num(st) SKM_sk_num(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_value(st, i) SKM_sk_value(PKCS7_SIGNER_INFO, (st), (i)) # define sk_PKCS7_SIGNER_INFO_set(st, i, val) SKM_sk_set(PKCS7_SIGNER_INFO, (st), (i), (val)) # define sk_PKCS7_SIGNER_INFO_zero(st) SKM_sk_zero(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_push(st, val) SKM_sk_push(PKCS7_SIGNER_INFO, (st), (val)) # define sk_PKCS7_SIGNER_INFO_unshift(st, val) SKM_sk_unshift(PKCS7_SIGNER_INFO, (st), (val)) # define sk_PKCS7_SIGNER_INFO_find(st, val) SKM_sk_find(PKCS7_SIGNER_INFO, (st), (val)) # define sk_PKCS7_SIGNER_INFO_find_ex(st, val) SKM_sk_find_ex(PKCS7_SIGNER_INFO, (st), (val)) # define sk_PKCS7_SIGNER_INFO_delete(st, i) SKM_sk_delete(PKCS7_SIGNER_INFO, (st), (i)) # define sk_PKCS7_SIGNER_INFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(PKCS7_SIGNER_INFO, (st), (ptr)) # define sk_PKCS7_SIGNER_INFO_insert(st, val, i) SKM_sk_insert(PKCS7_SIGNER_INFO, (st), (val), (i)) # define sk_PKCS7_SIGNER_INFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(PKCS7_SIGNER_INFO, (st), (cmp)) # define sk_PKCS7_SIGNER_INFO_dup(st) SKM_sk_dup(PKCS7_SIGNER_INFO, st) # define sk_PKCS7_SIGNER_INFO_pop_free(st, free_func) SKM_sk_pop_free(PKCS7_SIGNER_INFO, (st), (free_func)) # define sk_PKCS7_SIGNER_INFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(PKCS7_SIGNER_INFO, (st), (copy_func), (free_func)) # define sk_PKCS7_SIGNER_INFO_shift(st) SKM_sk_shift(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_pop(st) SKM_sk_pop(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_sort(st) SKM_sk_sort(PKCS7_SIGNER_INFO, (st)) # define sk_PKCS7_SIGNER_INFO_is_sorted(st) SKM_sk_is_sorted(PKCS7_SIGNER_INFO, (st)) # define sk_POLICYINFO_new(cmp) SKM_sk_new(POLICYINFO, (cmp)) # define sk_POLICYINFO_new_null() SKM_sk_new_null(POLICYINFO) # define sk_POLICYINFO_free(st) SKM_sk_free(POLICYINFO, (st)) # define sk_POLICYINFO_num(st) SKM_sk_num(POLICYINFO, (st)) # define sk_POLICYINFO_value(st, i) SKM_sk_value(POLICYINFO, (st), (i)) # define sk_POLICYINFO_set(st, i, val) SKM_sk_set(POLICYINFO, (st), (i), (val)) # define sk_POLICYINFO_zero(st) SKM_sk_zero(POLICYINFO, (st)) # define sk_POLICYINFO_push(st, val) SKM_sk_push(POLICYINFO, (st), (val)) # define sk_POLICYINFO_unshift(st, val) SKM_sk_unshift(POLICYINFO, (st), (val)) # define sk_POLICYINFO_find(st, val) SKM_sk_find(POLICYINFO, (st), (val)) # define sk_POLICYINFO_find_ex(st, val) SKM_sk_find_ex(POLICYINFO, (st), (val)) # define sk_POLICYINFO_delete(st, i) SKM_sk_delete(POLICYINFO, (st), (i)) # define sk_POLICYINFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(POLICYINFO, (st), (ptr)) # define sk_POLICYINFO_insert(st, val, i) SKM_sk_insert(POLICYINFO, (st), (val), (i)) # define sk_POLICYINFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(POLICYINFO, (st), (cmp)) # define sk_POLICYINFO_dup(st) SKM_sk_dup(POLICYINFO, st) # define sk_POLICYINFO_pop_free(st, free_func) SKM_sk_pop_free(POLICYINFO, (st), (free_func)) # define sk_POLICYINFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(POLICYINFO, (st), (copy_func), (free_func)) # define sk_POLICYINFO_shift(st) SKM_sk_shift(POLICYINFO, (st)) # define sk_POLICYINFO_pop(st) SKM_sk_pop(POLICYINFO, (st)) # define sk_POLICYINFO_sort(st) SKM_sk_sort(POLICYINFO, (st)) # define sk_POLICYINFO_is_sorted(st) SKM_sk_is_sorted(POLICYINFO, (st)) # define sk_POLICYQUALINFO_new(cmp) SKM_sk_new(POLICYQUALINFO, (cmp)) # define sk_POLICYQUALINFO_new_null() SKM_sk_new_null(POLICYQUALINFO) # define sk_POLICYQUALINFO_free(st) SKM_sk_free(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_num(st) SKM_sk_num(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_value(st, i) SKM_sk_value(POLICYQUALINFO, (st), (i)) # define sk_POLICYQUALINFO_set(st, i, val) SKM_sk_set(POLICYQUALINFO, (st), (i), (val)) # define sk_POLICYQUALINFO_zero(st) SKM_sk_zero(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_push(st, val) SKM_sk_push(POLICYQUALINFO, (st), (val)) # define sk_POLICYQUALINFO_unshift(st, val) SKM_sk_unshift(POLICYQUALINFO, (st), (val)) # define sk_POLICYQUALINFO_find(st, val) SKM_sk_find(POLICYQUALINFO, (st), (val)) # define sk_POLICYQUALINFO_find_ex(st, val) SKM_sk_find_ex(POLICYQUALINFO, (st), (val)) # define sk_POLICYQUALINFO_delete(st, i) SKM_sk_delete(POLICYQUALINFO, (st), (i)) # define sk_POLICYQUALINFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(POLICYQUALINFO, (st), (ptr)) # define sk_POLICYQUALINFO_insert(st, val, i) SKM_sk_insert(POLICYQUALINFO, (st), (val), (i)) # define sk_POLICYQUALINFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(POLICYQUALINFO, (st), (cmp)) # define sk_POLICYQUALINFO_dup(st) SKM_sk_dup(POLICYQUALINFO, st) # define sk_POLICYQUALINFO_pop_free(st, free_func) SKM_sk_pop_free(POLICYQUALINFO, (st), (free_func)) # define sk_POLICYQUALINFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(POLICYQUALINFO, (st), (copy_func), (free_func)) # define sk_POLICYQUALINFO_shift(st) SKM_sk_shift(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_pop(st) SKM_sk_pop(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_sort(st) SKM_sk_sort(POLICYQUALINFO, (st)) # define sk_POLICYQUALINFO_is_sorted(st) SKM_sk_is_sorted(POLICYQUALINFO, (st)) # define sk_POLICY_MAPPING_new(cmp) SKM_sk_new(POLICY_MAPPING, (cmp)) # define sk_POLICY_MAPPING_new_null() SKM_sk_new_null(POLICY_MAPPING) # define sk_POLICY_MAPPING_free(st) SKM_sk_free(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_num(st) SKM_sk_num(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_value(st, i) SKM_sk_value(POLICY_MAPPING, (st), (i)) # define sk_POLICY_MAPPING_set(st, i, val) SKM_sk_set(POLICY_MAPPING, (st), (i), (val)) # define sk_POLICY_MAPPING_zero(st) SKM_sk_zero(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_push(st, val) SKM_sk_push(POLICY_MAPPING, (st), (val)) # define sk_POLICY_MAPPING_unshift(st, val) SKM_sk_unshift(POLICY_MAPPING, (st), (val)) # define sk_POLICY_MAPPING_find(st, val) SKM_sk_find(POLICY_MAPPING, (st), (val)) # define sk_POLICY_MAPPING_find_ex(st, val) SKM_sk_find_ex(POLICY_MAPPING, (st), (val)) # define sk_POLICY_MAPPING_delete(st, i) SKM_sk_delete(POLICY_MAPPING, (st), (i)) # define sk_POLICY_MAPPING_delete_ptr(st, ptr) SKM_sk_delete_ptr(POLICY_MAPPING, (st), (ptr)) # define sk_POLICY_MAPPING_insert(st, val, i) SKM_sk_insert(POLICY_MAPPING, (st), (val), (i)) # define sk_POLICY_MAPPING_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(POLICY_MAPPING, (st), (cmp)) # define sk_POLICY_MAPPING_dup(st) SKM_sk_dup(POLICY_MAPPING, st) # define sk_POLICY_MAPPING_pop_free(st, free_func) SKM_sk_pop_free(POLICY_MAPPING, (st), (free_func)) # define sk_POLICY_MAPPING_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(POLICY_MAPPING, (st), (copy_func), (free_func)) # define sk_POLICY_MAPPING_shift(st) SKM_sk_shift(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_pop(st) SKM_sk_pop(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_sort(st) SKM_sk_sort(POLICY_MAPPING, (st)) # define sk_POLICY_MAPPING_is_sorted(st) SKM_sk_is_sorted(POLICY_MAPPING, (st)) # define sk_SCT_new(cmp) SKM_sk_new(SCT, (cmp)) # define sk_SCT_new_null() SKM_sk_new_null(SCT) # define sk_SCT_free(st) SKM_sk_free(SCT, (st)) # define sk_SCT_num(st) SKM_sk_num(SCT, (st)) # define sk_SCT_value(st, i) SKM_sk_value(SCT, (st), (i)) # define sk_SCT_set(st, i, val) SKM_sk_set(SCT, (st), (i), (val)) # define sk_SCT_zero(st) SKM_sk_zero(SCT, (st)) # define sk_SCT_push(st, val) SKM_sk_push(SCT, (st), (val)) # define sk_SCT_unshift(st, val) SKM_sk_unshift(SCT, (st), (val)) # define sk_SCT_find(st, val) SKM_sk_find(SCT, (st), (val)) # define sk_SCT_find_ex(st, val) SKM_sk_find_ex(SCT, (st), (val)) # define sk_SCT_delete(st, i) SKM_sk_delete(SCT, (st), (i)) # define sk_SCT_delete_ptr(st, ptr) SKM_sk_delete_ptr(SCT, (st), (ptr)) # define sk_SCT_insert(st, val, i) SKM_sk_insert(SCT, (st), (val), (i)) # define sk_SCT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SCT, (st), (cmp)) # define sk_SCT_dup(st) SKM_sk_dup(SCT, st) # define sk_SCT_pop_free(st, free_func) SKM_sk_pop_free(SCT, (st), (free_func)) # define sk_SCT_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SCT, (st), (copy_func), (free_func)) # define sk_SCT_shift(st) SKM_sk_shift(SCT, (st)) # define sk_SCT_pop(st) SKM_sk_pop(SCT, (st)) # define sk_SCT_sort(st) SKM_sk_sort(SCT, (st)) # define sk_SCT_is_sorted(st) SKM_sk_is_sorted(SCT, (st)) # define sk_SRP_gN_new(cmp) SKM_sk_new(SRP_gN, (cmp)) # define sk_SRP_gN_new_null() SKM_sk_new_null(SRP_gN) # define sk_SRP_gN_free(st) SKM_sk_free(SRP_gN, (st)) # define sk_SRP_gN_num(st) SKM_sk_num(SRP_gN, (st)) # define sk_SRP_gN_value(st, i) SKM_sk_value(SRP_gN, (st), (i)) # define sk_SRP_gN_set(st, i, val) SKM_sk_set(SRP_gN, (st), (i), (val)) # define sk_SRP_gN_zero(st) SKM_sk_zero(SRP_gN, (st)) # define sk_SRP_gN_push(st, val) SKM_sk_push(SRP_gN, (st), (val)) # define sk_SRP_gN_unshift(st, val) SKM_sk_unshift(SRP_gN, (st), (val)) # define sk_SRP_gN_find(st, val) SKM_sk_find(SRP_gN, (st), (val)) # define sk_SRP_gN_find_ex(st, val) SKM_sk_find_ex(SRP_gN, (st), (val)) # define sk_SRP_gN_delete(st, i) SKM_sk_delete(SRP_gN, (st), (i)) # define sk_SRP_gN_delete_ptr(st, ptr) SKM_sk_delete_ptr(SRP_gN, (st), (ptr)) # define sk_SRP_gN_insert(st, val, i) SKM_sk_insert(SRP_gN, (st), (val), (i)) # define sk_SRP_gN_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SRP_gN, (st), (cmp)) # define sk_SRP_gN_dup(st) SKM_sk_dup(SRP_gN, st) # define sk_SRP_gN_pop_free(st, free_func) SKM_sk_pop_free(SRP_gN, (st), (free_func)) # define sk_SRP_gN_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SRP_gN, (st), (copy_func), (free_func)) # define sk_SRP_gN_shift(st) SKM_sk_shift(SRP_gN, (st)) # define sk_SRP_gN_pop(st) SKM_sk_pop(SRP_gN, (st)) # define sk_SRP_gN_sort(st) SKM_sk_sort(SRP_gN, (st)) # define sk_SRP_gN_is_sorted(st) SKM_sk_is_sorted(SRP_gN, (st)) # define sk_SRP_gN_cache_new(cmp) SKM_sk_new(SRP_gN_cache, (cmp)) # define sk_SRP_gN_cache_new_null() SKM_sk_new_null(SRP_gN_cache) # define sk_SRP_gN_cache_free(st) SKM_sk_free(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_num(st) SKM_sk_num(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_value(st, i) SKM_sk_value(SRP_gN_cache, (st), (i)) # define sk_SRP_gN_cache_set(st, i, val) SKM_sk_set(SRP_gN_cache, (st), (i), (val)) # define sk_SRP_gN_cache_zero(st) SKM_sk_zero(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_push(st, val) SKM_sk_push(SRP_gN_cache, (st), (val)) # define sk_SRP_gN_cache_unshift(st, val) SKM_sk_unshift(SRP_gN_cache, (st), (val)) # define sk_SRP_gN_cache_find(st, val) SKM_sk_find(SRP_gN_cache, (st), (val)) # define sk_SRP_gN_cache_find_ex(st, val) SKM_sk_find_ex(SRP_gN_cache, (st), (val)) # define sk_SRP_gN_cache_delete(st, i) SKM_sk_delete(SRP_gN_cache, (st), (i)) # define sk_SRP_gN_cache_delete_ptr(st, ptr) SKM_sk_delete_ptr(SRP_gN_cache, (st), (ptr)) # define sk_SRP_gN_cache_insert(st, val, i) SKM_sk_insert(SRP_gN_cache, (st), (val), (i)) # define sk_SRP_gN_cache_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SRP_gN_cache, (st), (cmp)) # define sk_SRP_gN_cache_dup(st) SKM_sk_dup(SRP_gN_cache, st) # define sk_SRP_gN_cache_pop_free(st, free_func) SKM_sk_pop_free(SRP_gN_cache, (st), (free_func)) # define sk_SRP_gN_cache_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SRP_gN_cache, (st), (copy_func), (free_func)) # define sk_SRP_gN_cache_shift(st) SKM_sk_shift(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_pop(st) SKM_sk_pop(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_sort(st) SKM_sk_sort(SRP_gN_cache, (st)) # define sk_SRP_gN_cache_is_sorted(st) SKM_sk_is_sorted(SRP_gN_cache, (st)) # define sk_SRP_user_pwd_new(cmp) SKM_sk_new(SRP_user_pwd, (cmp)) # define sk_SRP_user_pwd_new_null() SKM_sk_new_null(SRP_user_pwd) # define sk_SRP_user_pwd_free(st) SKM_sk_free(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_num(st) SKM_sk_num(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_value(st, i) SKM_sk_value(SRP_user_pwd, (st), (i)) # define sk_SRP_user_pwd_set(st, i, val) SKM_sk_set(SRP_user_pwd, (st), (i), (val)) # define sk_SRP_user_pwd_zero(st) SKM_sk_zero(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_push(st, val) SKM_sk_push(SRP_user_pwd, (st), (val)) # define sk_SRP_user_pwd_unshift(st, val) SKM_sk_unshift(SRP_user_pwd, (st), (val)) # define sk_SRP_user_pwd_find(st, val) SKM_sk_find(SRP_user_pwd, (st), (val)) # define sk_SRP_user_pwd_find_ex(st, val) SKM_sk_find_ex(SRP_user_pwd, (st), (val)) # define sk_SRP_user_pwd_delete(st, i) SKM_sk_delete(SRP_user_pwd, (st), (i)) # define sk_SRP_user_pwd_delete_ptr(st, ptr) SKM_sk_delete_ptr(SRP_user_pwd, (st), (ptr)) # define sk_SRP_user_pwd_insert(st, val, i) SKM_sk_insert(SRP_user_pwd, (st), (val), (i)) # define sk_SRP_user_pwd_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SRP_user_pwd, (st), (cmp)) # define sk_SRP_user_pwd_dup(st) SKM_sk_dup(SRP_user_pwd, st) # define sk_SRP_user_pwd_pop_free(st, free_func) SKM_sk_pop_free(SRP_user_pwd, (st), (free_func)) # define sk_SRP_user_pwd_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SRP_user_pwd, (st), (copy_func), (free_func)) # define sk_SRP_user_pwd_shift(st) SKM_sk_shift(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_pop(st) SKM_sk_pop(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_sort(st) SKM_sk_sort(SRP_user_pwd, (st)) # define sk_SRP_user_pwd_is_sorted(st) SKM_sk_is_sorted(SRP_user_pwd, (st)) # define sk_SRTP_PROTECTION_PROFILE_new(cmp) SKM_sk_new(SRTP_PROTECTION_PROFILE, (cmp)) # define sk_SRTP_PROTECTION_PROFILE_new_null() SKM_sk_new_null(SRTP_PROTECTION_PROFILE) # define sk_SRTP_PROTECTION_PROFILE_free(st) SKM_sk_free(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_num(st) SKM_sk_num(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_value(st, i) SKM_sk_value(SRTP_PROTECTION_PROFILE, (st), (i)) # define sk_SRTP_PROTECTION_PROFILE_set(st, i, val) SKM_sk_set(SRTP_PROTECTION_PROFILE, (st), (i), (val)) # define sk_SRTP_PROTECTION_PROFILE_zero(st) SKM_sk_zero(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_push(st, val) SKM_sk_push(SRTP_PROTECTION_PROFILE, (st), (val)) # define sk_SRTP_PROTECTION_PROFILE_unshift(st, val) SKM_sk_unshift(SRTP_PROTECTION_PROFILE, (st), (val)) # define sk_SRTP_PROTECTION_PROFILE_find(st, val) SKM_sk_find(SRTP_PROTECTION_PROFILE, (st), (val)) # define sk_SRTP_PROTECTION_PROFILE_find_ex(st, val) SKM_sk_find_ex(SRTP_PROTECTION_PROFILE, (st), (val)) # define sk_SRTP_PROTECTION_PROFILE_delete(st, i) SKM_sk_delete(SRTP_PROTECTION_PROFILE, (st), (i)) # define sk_SRTP_PROTECTION_PROFILE_delete_ptr(st, ptr) SKM_sk_delete_ptr(SRTP_PROTECTION_PROFILE, (st), (ptr)) # define sk_SRTP_PROTECTION_PROFILE_insert(st, val, i) SKM_sk_insert(SRTP_PROTECTION_PROFILE, (st), (val), (i)) # define sk_SRTP_PROTECTION_PROFILE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SRTP_PROTECTION_PROFILE, (st), (cmp)) # define sk_SRTP_PROTECTION_PROFILE_dup(st) SKM_sk_dup(SRTP_PROTECTION_PROFILE, st) # define sk_SRTP_PROTECTION_PROFILE_pop_free(st, free_func) SKM_sk_pop_free(SRTP_PROTECTION_PROFILE, (st), (free_func)) # define sk_SRTP_PROTECTION_PROFILE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SRTP_PROTECTION_PROFILE, (st), (copy_func), (free_func)) # define sk_SRTP_PROTECTION_PROFILE_shift(st) SKM_sk_shift(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_pop(st) SKM_sk_pop(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_sort(st) SKM_sk_sort(SRTP_PROTECTION_PROFILE, (st)) # define sk_SRTP_PROTECTION_PROFILE_is_sorted(st) SKM_sk_is_sorted(SRTP_PROTECTION_PROFILE, (st)) # define sk_SSL_CIPHER_new(cmp) SKM_sk_new(SSL_CIPHER, (cmp)) # define sk_SSL_CIPHER_new_null() SKM_sk_new_null(SSL_CIPHER) # define sk_SSL_CIPHER_free(st) SKM_sk_free(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i)) # define sk_SSL_CIPHER_set(st, i, val) SKM_sk_set(SSL_CIPHER, (st), (i), (val)) # define sk_SSL_CIPHER_zero(st) SKM_sk_zero(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_push(st, val) SKM_sk_push(SSL_CIPHER, (st), (val)) # define sk_SSL_CIPHER_unshift(st, val) SKM_sk_unshift(SSL_CIPHER, (st), (val)) # define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val)) # define sk_SSL_CIPHER_find_ex(st, val) SKM_sk_find_ex(SSL_CIPHER, (st), (val)) # define sk_SSL_CIPHER_delete(st, i) SKM_sk_delete(SSL_CIPHER, (st), (i)) # define sk_SSL_CIPHER_delete_ptr(st, ptr) SKM_sk_delete_ptr(SSL_CIPHER, (st), (ptr)) # define sk_SSL_CIPHER_insert(st, val, i) SKM_sk_insert(SSL_CIPHER, (st), (val), (i)) # define sk_SSL_CIPHER_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SSL_CIPHER, (st), (cmp)) # define sk_SSL_CIPHER_dup(st) SKM_sk_dup(SSL_CIPHER, st) # define sk_SSL_CIPHER_pop_free(st, free_func) SKM_sk_pop_free(SSL_CIPHER, (st), (free_func)) # define sk_SSL_CIPHER_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SSL_CIPHER, (st), (copy_func), (free_func)) # define sk_SSL_CIPHER_shift(st) SKM_sk_shift(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_pop(st) SKM_sk_pop(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_sort(st) SKM_sk_sort(SSL_CIPHER, (st)) # define sk_SSL_CIPHER_is_sorted(st) SKM_sk_is_sorted(SSL_CIPHER, (st)) # define sk_SSL_COMP_new(cmp) SKM_sk_new(SSL_COMP, (cmp)) # define sk_SSL_COMP_new_null() SKM_sk_new_null(SSL_COMP) # define sk_SSL_COMP_free(st) SKM_sk_free(SSL_COMP, (st)) # define sk_SSL_COMP_num(st) SKM_sk_num(SSL_COMP, (st)) # define sk_SSL_COMP_value(st, i) SKM_sk_value(SSL_COMP, (st), (i)) # define sk_SSL_COMP_set(st, i, val) SKM_sk_set(SSL_COMP, (st), (i), (val)) # define sk_SSL_COMP_zero(st) SKM_sk_zero(SSL_COMP, (st)) # define sk_SSL_COMP_push(st, val) SKM_sk_push(SSL_COMP, (st), (val)) # define sk_SSL_COMP_unshift(st, val) SKM_sk_unshift(SSL_COMP, (st), (val)) # define sk_SSL_COMP_find(st, val) SKM_sk_find(SSL_COMP, (st), (val)) # define sk_SSL_COMP_find_ex(st, val) SKM_sk_find_ex(SSL_COMP, (st), (val)) # define sk_SSL_COMP_delete(st, i) SKM_sk_delete(SSL_COMP, (st), (i)) # define sk_SSL_COMP_delete_ptr(st, ptr) SKM_sk_delete_ptr(SSL_COMP, (st), (ptr)) # define sk_SSL_COMP_insert(st, val, i) SKM_sk_insert(SSL_COMP, (st), (val), (i)) # define sk_SSL_COMP_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SSL_COMP, (st), (cmp)) # define sk_SSL_COMP_dup(st) SKM_sk_dup(SSL_COMP, st) # define sk_SSL_COMP_pop_free(st, free_func) SKM_sk_pop_free(SSL_COMP, (st), (free_func)) # define sk_SSL_COMP_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SSL_COMP, (st), (copy_func), (free_func)) # define sk_SSL_COMP_shift(st) SKM_sk_shift(SSL_COMP, (st)) # define sk_SSL_COMP_pop(st) SKM_sk_pop(SSL_COMP, (st)) # define sk_SSL_COMP_sort(st) SKM_sk_sort(SSL_COMP, (st)) # define sk_SSL_COMP_is_sorted(st) SKM_sk_is_sorted(SSL_COMP, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_new(cmp) SKM_sk_new(STACK_OF_X509_NAME_ENTRY, (cmp)) # define sk_STACK_OF_X509_NAME_ENTRY_new_null() SKM_sk_new_null(STACK_OF_X509_NAME_ENTRY) # define sk_STACK_OF_X509_NAME_ENTRY_free(st) SKM_sk_free(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_num(st) SKM_sk_num(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_value(st, i) SKM_sk_value(STACK_OF_X509_NAME_ENTRY, (st), (i)) # define sk_STACK_OF_X509_NAME_ENTRY_set(st, i, val) SKM_sk_set(STACK_OF_X509_NAME_ENTRY, (st), (i), (val)) # define sk_STACK_OF_X509_NAME_ENTRY_zero(st) SKM_sk_zero(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_push(st, val) SKM_sk_push(STACK_OF_X509_NAME_ENTRY, (st), (val)) # define sk_STACK_OF_X509_NAME_ENTRY_unshift(st, val) SKM_sk_unshift(STACK_OF_X509_NAME_ENTRY, (st), (val)) # define sk_STACK_OF_X509_NAME_ENTRY_find(st, val) SKM_sk_find(STACK_OF_X509_NAME_ENTRY, (st), (val)) # define sk_STACK_OF_X509_NAME_ENTRY_find_ex(st, val) SKM_sk_find_ex(STACK_OF_X509_NAME_ENTRY, (st), (val)) # define sk_STACK_OF_X509_NAME_ENTRY_delete(st, i) SKM_sk_delete(STACK_OF_X509_NAME_ENTRY, (st), (i)) # define sk_STACK_OF_X509_NAME_ENTRY_delete_ptr(st, ptr) SKM_sk_delete_ptr(STACK_OF_X509_NAME_ENTRY, (st), (ptr)) # define sk_STACK_OF_X509_NAME_ENTRY_insert(st, val, i) SKM_sk_insert(STACK_OF_X509_NAME_ENTRY, (st), (val), (i)) # define sk_STACK_OF_X509_NAME_ENTRY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(STACK_OF_X509_NAME_ENTRY, (st), (cmp)) # define sk_STACK_OF_X509_NAME_ENTRY_dup(st) SKM_sk_dup(STACK_OF_X509_NAME_ENTRY, st) # define sk_STACK_OF_X509_NAME_ENTRY_pop_free(st, free_func) SKM_sk_pop_free(STACK_OF_X509_NAME_ENTRY, (st), (free_func)) # define sk_STACK_OF_X509_NAME_ENTRY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(STACK_OF_X509_NAME_ENTRY, (st), (copy_func), (free_func)) # define sk_STACK_OF_X509_NAME_ENTRY_shift(st) SKM_sk_shift(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_pop(st) SKM_sk_pop(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_sort(st) SKM_sk_sort(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STACK_OF_X509_NAME_ENTRY_is_sorted(st) SKM_sk_is_sorted(STACK_OF_X509_NAME_ENTRY, (st)) # define sk_STORE_ATTR_INFO_new(cmp) SKM_sk_new(STORE_ATTR_INFO, (cmp)) # define sk_STORE_ATTR_INFO_new_null() SKM_sk_new_null(STORE_ATTR_INFO) # define sk_STORE_ATTR_INFO_free(st) SKM_sk_free(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_num(st) SKM_sk_num(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_value(st, i) SKM_sk_value(STORE_ATTR_INFO, (st), (i)) # define sk_STORE_ATTR_INFO_set(st, i, val) SKM_sk_set(STORE_ATTR_INFO, (st), (i), (val)) # define sk_STORE_ATTR_INFO_zero(st) SKM_sk_zero(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_push(st, val) SKM_sk_push(STORE_ATTR_INFO, (st), (val)) # define sk_STORE_ATTR_INFO_unshift(st, val) SKM_sk_unshift(STORE_ATTR_INFO, (st), (val)) # define sk_STORE_ATTR_INFO_find(st, val) SKM_sk_find(STORE_ATTR_INFO, (st), (val)) # define sk_STORE_ATTR_INFO_find_ex(st, val) SKM_sk_find_ex(STORE_ATTR_INFO, (st), (val)) # define sk_STORE_ATTR_INFO_delete(st, i) SKM_sk_delete(STORE_ATTR_INFO, (st), (i)) # define sk_STORE_ATTR_INFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(STORE_ATTR_INFO, (st), (ptr)) # define sk_STORE_ATTR_INFO_insert(st, val, i) SKM_sk_insert(STORE_ATTR_INFO, (st), (val), (i)) # define sk_STORE_ATTR_INFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(STORE_ATTR_INFO, (st), (cmp)) # define sk_STORE_ATTR_INFO_dup(st) SKM_sk_dup(STORE_ATTR_INFO, st) # define sk_STORE_ATTR_INFO_pop_free(st, free_func) SKM_sk_pop_free(STORE_ATTR_INFO, (st), (free_func)) # define sk_STORE_ATTR_INFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(STORE_ATTR_INFO, (st), (copy_func), (free_func)) # define sk_STORE_ATTR_INFO_shift(st) SKM_sk_shift(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_pop(st) SKM_sk_pop(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_sort(st) SKM_sk_sort(STORE_ATTR_INFO, (st)) # define sk_STORE_ATTR_INFO_is_sorted(st) SKM_sk_is_sorted(STORE_ATTR_INFO, (st)) # define sk_STORE_OBJECT_new(cmp) SKM_sk_new(STORE_OBJECT, (cmp)) # define sk_STORE_OBJECT_new_null() SKM_sk_new_null(STORE_OBJECT) # define sk_STORE_OBJECT_free(st) SKM_sk_free(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_num(st) SKM_sk_num(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_value(st, i) SKM_sk_value(STORE_OBJECT, (st), (i)) # define sk_STORE_OBJECT_set(st, i, val) SKM_sk_set(STORE_OBJECT, (st), (i), (val)) # define sk_STORE_OBJECT_zero(st) SKM_sk_zero(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_push(st, val) SKM_sk_push(STORE_OBJECT, (st), (val)) # define sk_STORE_OBJECT_unshift(st, val) SKM_sk_unshift(STORE_OBJECT, (st), (val)) # define sk_STORE_OBJECT_find(st, val) SKM_sk_find(STORE_OBJECT, (st), (val)) # define sk_STORE_OBJECT_find_ex(st, val) SKM_sk_find_ex(STORE_OBJECT, (st), (val)) # define sk_STORE_OBJECT_delete(st, i) SKM_sk_delete(STORE_OBJECT, (st), (i)) # define sk_STORE_OBJECT_delete_ptr(st, ptr) SKM_sk_delete_ptr(STORE_OBJECT, (st), (ptr)) # define sk_STORE_OBJECT_insert(st, val, i) SKM_sk_insert(STORE_OBJECT, (st), (val), (i)) # define sk_STORE_OBJECT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(STORE_OBJECT, (st), (cmp)) # define sk_STORE_OBJECT_dup(st) SKM_sk_dup(STORE_OBJECT, st) # define sk_STORE_OBJECT_pop_free(st, free_func) SKM_sk_pop_free(STORE_OBJECT, (st), (free_func)) # define sk_STORE_OBJECT_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(STORE_OBJECT, (st), (copy_func), (free_func)) # define sk_STORE_OBJECT_shift(st) SKM_sk_shift(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_pop(st) SKM_sk_pop(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_sort(st) SKM_sk_sort(STORE_OBJECT, (st)) # define sk_STORE_OBJECT_is_sorted(st) SKM_sk_is_sorted(STORE_OBJECT, (st)) # define sk_SXNETID_new(cmp) SKM_sk_new(SXNETID, (cmp)) # define sk_SXNETID_new_null() SKM_sk_new_null(SXNETID) # define sk_SXNETID_free(st) SKM_sk_free(SXNETID, (st)) # define sk_SXNETID_num(st) SKM_sk_num(SXNETID, (st)) # define sk_SXNETID_value(st, i) SKM_sk_value(SXNETID, (st), (i)) # define sk_SXNETID_set(st, i, val) SKM_sk_set(SXNETID, (st), (i), (val)) # define sk_SXNETID_zero(st) SKM_sk_zero(SXNETID, (st)) # define sk_SXNETID_push(st, val) SKM_sk_push(SXNETID, (st), (val)) # define sk_SXNETID_unshift(st, val) SKM_sk_unshift(SXNETID, (st), (val)) # define sk_SXNETID_find(st, val) SKM_sk_find(SXNETID, (st), (val)) # define sk_SXNETID_find_ex(st, val) SKM_sk_find_ex(SXNETID, (st), (val)) # define sk_SXNETID_delete(st, i) SKM_sk_delete(SXNETID, (st), (i)) # define sk_SXNETID_delete_ptr(st, ptr) SKM_sk_delete_ptr(SXNETID, (st), (ptr)) # define sk_SXNETID_insert(st, val, i) SKM_sk_insert(SXNETID, (st), (val), (i)) # define sk_SXNETID_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(SXNETID, (st), (cmp)) # define sk_SXNETID_dup(st) SKM_sk_dup(SXNETID, st) # define sk_SXNETID_pop_free(st, free_func) SKM_sk_pop_free(SXNETID, (st), (free_func)) # define sk_SXNETID_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(SXNETID, (st), (copy_func), (free_func)) # define sk_SXNETID_shift(st) SKM_sk_shift(SXNETID, (st)) # define sk_SXNETID_pop(st) SKM_sk_pop(SXNETID, (st)) # define sk_SXNETID_sort(st) SKM_sk_sort(SXNETID, (st)) # define sk_SXNETID_is_sorted(st) SKM_sk_is_sorted(SXNETID, (st)) # define sk_UI_STRING_new(cmp) SKM_sk_new(UI_STRING, (cmp)) # define sk_UI_STRING_new_null() SKM_sk_new_null(UI_STRING) # define sk_UI_STRING_free(st) SKM_sk_free(UI_STRING, (st)) # define sk_UI_STRING_num(st) SKM_sk_num(UI_STRING, (st)) # define sk_UI_STRING_value(st, i) SKM_sk_value(UI_STRING, (st), (i)) # define sk_UI_STRING_set(st, i, val) SKM_sk_set(UI_STRING, (st), (i), (val)) # define sk_UI_STRING_zero(st) SKM_sk_zero(UI_STRING, (st)) # define sk_UI_STRING_push(st, val) SKM_sk_push(UI_STRING, (st), (val)) # define sk_UI_STRING_unshift(st, val) SKM_sk_unshift(UI_STRING, (st), (val)) # define sk_UI_STRING_find(st, val) SKM_sk_find(UI_STRING, (st), (val)) # define sk_UI_STRING_find_ex(st, val) SKM_sk_find_ex(UI_STRING, (st), (val)) # define sk_UI_STRING_delete(st, i) SKM_sk_delete(UI_STRING, (st), (i)) # define sk_UI_STRING_delete_ptr(st, ptr) SKM_sk_delete_ptr(UI_STRING, (st), (ptr)) # define sk_UI_STRING_insert(st, val, i) SKM_sk_insert(UI_STRING, (st), (val), (i)) # define sk_UI_STRING_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(UI_STRING, (st), (cmp)) # define sk_UI_STRING_dup(st) SKM_sk_dup(UI_STRING, st) # define sk_UI_STRING_pop_free(st, free_func) SKM_sk_pop_free(UI_STRING, (st), (free_func)) # define sk_UI_STRING_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(UI_STRING, (st), (copy_func), (free_func)) # define sk_UI_STRING_shift(st) SKM_sk_shift(UI_STRING, (st)) # define sk_UI_STRING_pop(st) SKM_sk_pop(UI_STRING, (st)) # define sk_UI_STRING_sort(st) SKM_sk_sort(UI_STRING, (st)) # define sk_UI_STRING_is_sorted(st) SKM_sk_is_sorted(UI_STRING, (st)) # define sk_X509_new(cmp) SKM_sk_new(X509, (cmp)) # define sk_X509_new_null() SKM_sk_new_null(X509) # define sk_X509_free(st) SKM_sk_free(X509, (st)) # define sk_X509_num(st) SKM_sk_num(X509, (st)) # define sk_X509_value(st, i) SKM_sk_value(X509, (st), (i)) # define sk_X509_set(st, i, val) SKM_sk_set(X509, (st), (i), (val)) # define sk_X509_zero(st) SKM_sk_zero(X509, (st)) # define sk_X509_push(st, val) SKM_sk_push(X509, (st), (val)) # define sk_X509_unshift(st, val) SKM_sk_unshift(X509, (st), (val)) # define sk_X509_find(st, val) SKM_sk_find(X509, (st), (val)) # define sk_X509_find_ex(st, val) SKM_sk_find_ex(X509, (st), (val)) # define sk_X509_delete(st, i) SKM_sk_delete(X509, (st), (i)) # define sk_X509_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509, (st), (ptr)) # define sk_X509_insert(st, val, i) SKM_sk_insert(X509, (st), (val), (i)) # define sk_X509_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509, (st), (cmp)) # define sk_X509_dup(st) SKM_sk_dup(X509, st) # define sk_X509_pop_free(st, free_func) SKM_sk_pop_free(X509, (st), (free_func)) # define sk_X509_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509, (st), (copy_func), (free_func)) # define sk_X509_shift(st) SKM_sk_shift(X509, (st)) # define sk_X509_pop(st) SKM_sk_pop(X509, (st)) # define sk_X509_sort(st) SKM_sk_sort(X509, (st)) # define sk_X509_is_sorted(st) SKM_sk_is_sorted(X509, (st)) # define sk_X509V3_EXT_METHOD_new(cmp) SKM_sk_new(X509V3_EXT_METHOD, (cmp)) # define sk_X509V3_EXT_METHOD_new_null() SKM_sk_new_null(X509V3_EXT_METHOD) # define sk_X509V3_EXT_METHOD_free(st) SKM_sk_free(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_num(st) SKM_sk_num(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_value(st, i) SKM_sk_value(X509V3_EXT_METHOD, (st), (i)) # define sk_X509V3_EXT_METHOD_set(st, i, val) SKM_sk_set(X509V3_EXT_METHOD, (st), (i), (val)) # define sk_X509V3_EXT_METHOD_zero(st) SKM_sk_zero(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_push(st, val) SKM_sk_push(X509V3_EXT_METHOD, (st), (val)) # define sk_X509V3_EXT_METHOD_unshift(st, val) SKM_sk_unshift(X509V3_EXT_METHOD, (st), (val)) # define sk_X509V3_EXT_METHOD_find(st, val) SKM_sk_find(X509V3_EXT_METHOD, (st), (val)) # define sk_X509V3_EXT_METHOD_find_ex(st, val) SKM_sk_find_ex(X509V3_EXT_METHOD, (st), (val)) # define sk_X509V3_EXT_METHOD_delete(st, i) SKM_sk_delete(X509V3_EXT_METHOD, (st), (i)) # define sk_X509V3_EXT_METHOD_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509V3_EXT_METHOD, (st), (ptr)) # define sk_X509V3_EXT_METHOD_insert(st, val, i) SKM_sk_insert(X509V3_EXT_METHOD, (st), (val), (i)) # define sk_X509V3_EXT_METHOD_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509V3_EXT_METHOD, (st), (cmp)) # define sk_X509V3_EXT_METHOD_dup(st) SKM_sk_dup(X509V3_EXT_METHOD, st) # define sk_X509V3_EXT_METHOD_pop_free(st, free_func) SKM_sk_pop_free(X509V3_EXT_METHOD, (st), (free_func)) # define sk_X509V3_EXT_METHOD_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509V3_EXT_METHOD, (st), (copy_func), (free_func)) # define sk_X509V3_EXT_METHOD_shift(st) SKM_sk_shift(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_pop(st) SKM_sk_pop(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_sort(st) SKM_sk_sort(X509V3_EXT_METHOD, (st)) # define sk_X509V3_EXT_METHOD_is_sorted(st) SKM_sk_is_sorted(X509V3_EXT_METHOD, (st)) # define sk_X509_ALGOR_new(cmp) SKM_sk_new(X509_ALGOR, (cmp)) # define sk_X509_ALGOR_new_null() SKM_sk_new_null(X509_ALGOR) # define sk_X509_ALGOR_free(st) SKM_sk_free(X509_ALGOR, (st)) # define sk_X509_ALGOR_num(st) SKM_sk_num(X509_ALGOR, (st)) # define sk_X509_ALGOR_value(st, i) SKM_sk_value(X509_ALGOR, (st), (i)) # define sk_X509_ALGOR_set(st, i, val) SKM_sk_set(X509_ALGOR, (st), (i), (val)) # define sk_X509_ALGOR_zero(st) SKM_sk_zero(X509_ALGOR, (st)) # define sk_X509_ALGOR_push(st, val) SKM_sk_push(X509_ALGOR, (st), (val)) # define sk_X509_ALGOR_unshift(st, val) SKM_sk_unshift(X509_ALGOR, (st), (val)) # define sk_X509_ALGOR_find(st, val) SKM_sk_find(X509_ALGOR, (st), (val)) # define sk_X509_ALGOR_find_ex(st, val) SKM_sk_find_ex(X509_ALGOR, (st), (val)) # define sk_X509_ALGOR_delete(st, i) SKM_sk_delete(X509_ALGOR, (st), (i)) # define sk_X509_ALGOR_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_ALGOR, (st), (ptr)) # define sk_X509_ALGOR_insert(st, val, i) SKM_sk_insert(X509_ALGOR, (st), (val), (i)) # define sk_X509_ALGOR_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_ALGOR, (st), (cmp)) # define sk_X509_ALGOR_dup(st) SKM_sk_dup(X509_ALGOR, st) # define sk_X509_ALGOR_pop_free(st, free_func) SKM_sk_pop_free(X509_ALGOR, (st), (free_func)) # define sk_X509_ALGOR_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_ALGOR, (st), (copy_func), (free_func)) # define sk_X509_ALGOR_shift(st) SKM_sk_shift(X509_ALGOR, (st)) # define sk_X509_ALGOR_pop(st) SKM_sk_pop(X509_ALGOR, (st)) # define sk_X509_ALGOR_sort(st) SKM_sk_sort(X509_ALGOR, (st)) # define sk_X509_ALGOR_is_sorted(st) SKM_sk_is_sorted(X509_ALGOR, (st)) # define sk_X509_ATTRIBUTE_new(cmp) SKM_sk_new(X509_ATTRIBUTE, (cmp)) # define sk_X509_ATTRIBUTE_new_null() SKM_sk_new_null(X509_ATTRIBUTE) # define sk_X509_ATTRIBUTE_free(st) SKM_sk_free(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_num(st) SKM_sk_num(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_value(st, i) SKM_sk_value(X509_ATTRIBUTE, (st), (i)) # define sk_X509_ATTRIBUTE_set(st, i, val) SKM_sk_set(X509_ATTRIBUTE, (st), (i), (val)) # define sk_X509_ATTRIBUTE_zero(st) SKM_sk_zero(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_push(st, val) SKM_sk_push(X509_ATTRIBUTE, (st), (val)) # define sk_X509_ATTRIBUTE_unshift(st, val) SKM_sk_unshift(X509_ATTRIBUTE, (st), (val)) # define sk_X509_ATTRIBUTE_find(st, val) SKM_sk_find(X509_ATTRIBUTE, (st), (val)) # define sk_X509_ATTRIBUTE_find_ex(st, val) SKM_sk_find_ex(X509_ATTRIBUTE, (st), (val)) # define sk_X509_ATTRIBUTE_delete(st, i) SKM_sk_delete(X509_ATTRIBUTE, (st), (i)) # define sk_X509_ATTRIBUTE_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_ATTRIBUTE, (st), (ptr)) # define sk_X509_ATTRIBUTE_insert(st, val, i) SKM_sk_insert(X509_ATTRIBUTE, (st), (val), (i)) # define sk_X509_ATTRIBUTE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_ATTRIBUTE, (st), (cmp)) # define sk_X509_ATTRIBUTE_dup(st) SKM_sk_dup(X509_ATTRIBUTE, st) # define sk_X509_ATTRIBUTE_pop_free(st, free_func) SKM_sk_pop_free(X509_ATTRIBUTE, (st), (free_func)) # define sk_X509_ATTRIBUTE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_ATTRIBUTE, (st), (copy_func), (free_func)) # define sk_X509_ATTRIBUTE_shift(st) SKM_sk_shift(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_pop(st) SKM_sk_pop(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_sort(st) SKM_sk_sort(X509_ATTRIBUTE, (st)) # define sk_X509_ATTRIBUTE_is_sorted(st) SKM_sk_is_sorted(X509_ATTRIBUTE, (st)) # define sk_X509_CRL_new(cmp) SKM_sk_new(X509_CRL, (cmp)) # define sk_X509_CRL_new_null() SKM_sk_new_null(X509_CRL) # define sk_X509_CRL_free(st) SKM_sk_free(X509_CRL, (st)) # define sk_X509_CRL_num(st) SKM_sk_num(X509_CRL, (st)) # define sk_X509_CRL_value(st, i) SKM_sk_value(X509_CRL, (st), (i)) # define sk_X509_CRL_set(st, i, val) SKM_sk_set(X509_CRL, (st), (i), (val)) # define sk_X509_CRL_zero(st) SKM_sk_zero(X509_CRL, (st)) # define sk_X509_CRL_push(st, val) SKM_sk_push(X509_CRL, (st), (val)) # define sk_X509_CRL_unshift(st, val) SKM_sk_unshift(X509_CRL, (st), (val)) # define sk_X509_CRL_find(st, val) SKM_sk_find(X509_CRL, (st), (val)) # define sk_X509_CRL_find_ex(st, val) SKM_sk_find_ex(X509_CRL, (st), (val)) # define sk_X509_CRL_delete(st, i) SKM_sk_delete(X509_CRL, (st), (i)) # define sk_X509_CRL_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_CRL, (st), (ptr)) # define sk_X509_CRL_insert(st, val, i) SKM_sk_insert(X509_CRL, (st), (val), (i)) # define sk_X509_CRL_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_CRL, (st), (cmp)) # define sk_X509_CRL_dup(st) SKM_sk_dup(X509_CRL, st) # define sk_X509_CRL_pop_free(st, free_func) SKM_sk_pop_free(X509_CRL, (st), (free_func)) # define sk_X509_CRL_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_CRL, (st), (copy_func), (free_func)) # define sk_X509_CRL_shift(st) SKM_sk_shift(X509_CRL, (st)) # define sk_X509_CRL_pop(st) SKM_sk_pop(X509_CRL, (st)) # define sk_X509_CRL_sort(st) SKM_sk_sort(X509_CRL, (st)) # define sk_X509_CRL_is_sorted(st) SKM_sk_is_sorted(X509_CRL, (st)) # define sk_X509_EXTENSION_new(cmp) SKM_sk_new(X509_EXTENSION, (cmp)) # define sk_X509_EXTENSION_new_null() SKM_sk_new_null(X509_EXTENSION) # define sk_X509_EXTENSION_free(st) SKM_sk_free(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_num(st) SKM_sk_num(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_value(st, i) SKM_sk_value(X509_EXTENSION, (st), (i)) # define sk_X509_EXTENSION_set(st, i, val) SKM_sk_set(X509_EXTENSION, (st), (i), (val)) # define sk_X509_EXTENSION_zero(st) SKM_sk_zero(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_push(st, val) SKM_sk_push(X509_EXTENSION, (st), (val)) # define sk_X509_EXTENSION_unshift(st, val) SKM_sk_unshift(X509_EXTENSION, (st), (val)) # define sk_X509_EXTENSION_find(st, val) SKM_sk_find(X509_EXTENSION, (st), (val)) # define sk_X509_EXTENSION_find_ex(st, val) SKM_sk_find_ex(X509_EXTENSION, (st), (val)) # define sk_X509_EXTENSION_delete(st, i) SKM_sk_delete(X509_EXTENSION, (st), (i)) # define sk_X509_EXTENSION_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_EXTENSION, (st), (ptr)) # define sk_X509_EXTENSION_insert(st, val, i) SKM_sk_insert(X509_EXTENSION, (st), (val), (i)) # define sk_X509_EXTENSION_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_EXTENSION, (st), (cmp)) # define sk_X509_EXTENSION_dup(st) SKM_sk_dup(X509_EXTENSION, st) # define sk_X509_EXTENSION_pop_free(st, free_func) SKM_sk_pop_free(X509_EXTENSION, (st), (free_func)) # define sk_X509_EXTENSION_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_EXTENSION, (st), (copy_func), (free_func)) # define sk_X509_EXTENSION_shift(st) SKM_sk_shift(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_pop(st) SKM_sk_pop(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_sort(st) SKM_sk_sort(X509_EXTENSION, (st)) # define sk_X509_EXTENSION_is_sorted(st) SKM_sk_is_sorted(X509_EXTENSION, (st)) # define sk_X509_INFO_new(cmp) SKM_sk_new(X509_INFO, (cmp)) # define sk_X509_INFO_new_null() SKM_sk_new_null(X509_INFO) # define sk_X509_INFO_free(st) SKM_sk_free(X509_INFO, (st)) # define sk_X509_INFO_num(st) SKM_sk_num(X509_INFO, (st)) # define sk_X509_INFO_value(st, i) SKM_sk_value(X509_INFO, (st), (i)) # define sk_X509_INFO_set(st, i, val) SKM_sk_set(X509_INFO, (st), (i), (val)) # define sk_X509_INFO_zero(st) SKM_sk_zero(X509_INFO, (st)) # define sk_X509_INFO_push(st, val) SKM_sk_push(X509_INFO, (st), (val)) # define sk_X509_INFO_unshift(st, val) SKM_sk_unshift(X509_INFO, (st), (val)) # define sk_X509_INFO_find(st, val) SKM_sk_find(X509_INFO, (st), (val)) # define sk_X509_INFO_find_ex(st, val) SKM_sk_find_ex(X509_INFO, (st), (val)) # define sk_X509_INFO_delete(st, i) SKM_sk_delete(X509_INFO, (st), (i)) # define sk_X509_INFO_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_INFO, (st), (ptr)) # define sk_X509_INFO_insert(st, val, i) SKM_sk_insert(X509_INFO, (st), (val), (i)) # define sk_X509_INFO_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_INFO, (st), (cmp)) # define sk_X509_INFO_dup(st) SKM_sk_dup(X509_INFO, st) # define sk_X509_INFO_pop_free(st, free_func) SKM_sk_pop_free(X509_INFO, (st), (free_func)) # define sk_X509_INFO_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_INFO, (st), (copy_func), (free_func)) # define sk_X509_INFO_shift(st) SKM_sk_shift(X509_INFO, (st)) # define sk_X509_INFO_pop(st) SKM_sk_pop(X509_INFO, (st)) # define sk_X509_INFO_sort(st) SKM_sk_sort(X509_INFO, (st)) # define sk_X509_INFO_is_sorted(st) SKM_sk_is_sorted(X509_INFO, (st)) # define sk_X509_LOOKUP_new(cmp) SKM_sk_new(X509_LOOKUP, (cmp)) # define sk_X509_LOOKUP_new_null() SKM_sk_new_null(X509_LOOKUP) # define sk_X509_LOOKUP_free(st) SKM_sk_free(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_num(st) SKM_sk_num(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_value(st, i) SKM_sk_value(X509_LOOKUP, (st), (i)) # define sk_X509_LOOKUP_set(st, i, val) SKM_sk_set(X509_LOOKUP, (st), (i), (val)) # define sk_X509_LOOKUP_zero(st) SKM_sk_zero(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_push(st, val) SKM_sk_push(X509_LOOKUP, (st), (val)) # define sk_X509_LOOKUP_unshift(st, val) SKM_sk_unshift(X509_LOOKUP, (st), (val)) # define sk_X509_LOOKUP_find(st, val) SKM_sk_find(X509_LOOKUP, (st), (val)) # define sk_X509_LOOKUP_find_ex(st, val) SKM_sk_find_ex(X509_LOOKUP, (st), (val)) # define sk_X509_LOOKUP_delete(st, i) SKM_sk_delete(X509_LOOKUP, (st), (i)) # define sk_X509_LOOKUP_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_LOOKUP, (st), (ptr)) # define sk_X509_LOOKUP_insert(st, val, i) SKM_sk_insert(X509_LOOKUP, (st), (val), (i)) # define sk_X509_LOOKUP_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_LOOKUP, (st), (cmp)) # define sk_X509_LOOKUP_dup(st) SKM_sk_dup(X509_LOOKUP, st) # define sk_X509_LOOKUP_pop_free(st, free_func) SKM_sk_pop_free(X509_LOOKUP, (st), (free_func)) # define sk_X509_LOOKUP_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_LOOKUP, (st), (copy_func), (free_func)) # define sk_X509_LOOKUP_shift(st) SKM_sk_shift(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_pop(st) SKM_sk_pop(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_sort(st) SKM_sk_sort(X509_LOOKUP, (st)) # define sk_X509_LOOKUP_is_sorted(st) SKM_sk_is_sorted(X509_LOOKUP, (st)) # define sk_X509_NAME_new(cmp) SKM_sk_new(X509_NAME, (cmp)) # define sk_X509_NAME_new_null() SKM_sk_new_null(X509_NAME) # define sk_X509_NAME_free(st) SKM_sk_free(X509_NAME, (st)) # define sk_X509_NAME_num(st) SKM_sk_num(X509_NAME, (st)) # define sk_X509_NAME_value(st, i) SKM_sk_value(X509_NAME, (st), (i)) # define sk_X509_NAME_set(st, i, val) SKM_sk_set(X509_NAME, (st), (i), (val)) # define sk_X509_NAME_zero(st) SKM_sk_zero(X509_NAME, (st)) # define sk_X509_NAME_push(st, val) SKM_sk_push(X509_NAME, (st), (val)) # define sk_X509_NAME_unshift(st, val) SKM_sk_unshift(X509_NAME, (st), (val)) # define sk_X509_NAME_find(st, val) SKM_sk_find(X509_NAME, (st), (val)) # define sk_X509_NAME_find_ex(st, val) SKM_sk_find_ex(X509_NAME, (st), (val)) # define sk_X509_NAME_delete(st, i) SKM_sk_delete(X509_NAME, (st), (i)) # define sk_X509_NAME_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_NAME, (st), (ptr)) # define sk_X509_NAME_insert(st, val, i) SKM_sk_insert(X509_NAME, (st), (val), (i)) # define sk_X509_NAME_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_NAME, (st), (cmp)) # define sk_X509_NAME_dup(st) SKM_sk_dup(X509_NAME, st) # define sk_X509_NAME_pop_free(st, free_func) SKM_sk_pop_free(X509_NAME, (st), (free_func)) # define sk_X509_NAME_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_NAME, (st), (copy_func), (free_func)) # define sk_X509_NAME_shift(st) SKM_sk_shift(X509_NAME, (st)) # define sk_X509_NAME_pop(st) SKM_sk_pop(X509_NAME, (st)) # define sk_X509_NAME_sort(st) SKM_sk_sort(X509_NAME, (st)) # define sk_X509_NAME_is_sorted(st) SKM_sk_is_sorted(X509_NAME, (st)) # define sk_X509_NAME_ENTRY_new(cmp) SKM_sk_new(X509_NAME_ENTRY, (cmp)) # define sk_X509_NAME_ENTRY_new_null() SKM_sk_new_null(X509_NAME_ENTRY) # define sk_X509_NAME_ENTRY_free(st) SKM_sk_free(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_num(st) SKM_sk_num(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_value(st, i) SKM_sk_value(X509_NAME_ENTRY, (st), (i)) # define sk_X509_NAME_ENTRY_set(st, i, val) SKM_sk_set(X509_NAME_ENTRY, (st), (i), (val)) # define sk_X509_NAME_ENTRY_zero(st) SKM_sk_zero(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_push(st, val) SKM_sk_push(X509_NAME_ENTRY, (st), (val)) # define sk_X509_NAME_ENTRY_unshift(st, val) SKM_sk_unshift(X509_NAME_ENTRY, (st), (val)) # define sk_X509_NAME_ENTRY_find(st, val) SKM_sk_find(X509_NAME_ENTRY, (st), (val)) # define sk_X509_NAME_ENTRY_find_ex(st, val) SKM_sk_find_ex(X509_NAME_ENTRY, (st), (val)) # define sk_X509_NAME_ENTRY_delete(st, i) SKM_sk_delete(X509_NAME_ENTRY, (st), (i)) # define sk_X509_NAME_ENTRY_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_NAME_ENTRY, (st), (ptr)) # define sk_X509_NAME_ENTRY_insert(st, val, i) SKM_sk_insert(X509_NAME_ENTRY, (st), (val), (i)) # define sk_X509_NAME_ENTRY_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_NAME_ENTRY, (st), (cmp)) # define sk_X509_NAME_ENTRY_dup(st) SKM_sk_dup(X509_NAME_ENTRY, st) # define sk_X509_NAME_ENTRY_pop_free(st, free_func) SKM_sk_pop_free(X509_NAME_ENTRY, (st), (free_func)) # define sk_X509_NAME_ENTRY_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_NAME_ENTRY, (st), (copy_func), (free_func)) # define sk_X509_NAME_ENTRY_shift(st) SKM_sk_shift(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_pop(st) SKM_sk_pop(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_sort(st) SKM_sk_sort(X509_NAME_ENTRY, (st)) # define sk_X509_NAME_ENTRY_is_sorted(st) SKM_sk_is_sorted(X509_NAME_ENTRY, (st)) # define sk_X509_OBJECT_new(cmp) SKM_sk_new(X509_OBJECT, (cmp)) # define sk_X509_OBJECT_new_null() SKM_sk_new_null(X509_OBJECT) # define sk_X509_OBJECT_free(st) SKM_sk_free(X509_OBJECT, (st)) # define sk_X509_OBJECT_num(st) SKM_sk_num(X509_OBJECT, (st)) # define sk_X509_OBJECT_value(st, i) SKM_sk_value(X509_OBJECT, (st), (i)) # define sk_X509_OBJECT_set(st, i, val) SKM_sk_set(X509_OBJECT, (st), (i), (val)) # define sk_X509_OBJECT_zero(st) SKM_sk_zero(X509_OBJECT, (st)) # define sk_X509_OBJECT_push(st, val) SKM_sk_push(X509_OBJECT, (st), (val)) # define sk_X509_OBJECT_unshift(st, val) SKM_sk_unshift(X509_OBJECT, (st), (val)) # define sk_X509_OBJECT_find(st, val) SKM_sk_find(X509_OBJECT, (st), (val)) # define sk_X509_OBJECT_find_ex(st, val) SKM_sk_find_ex(X509_OBJECT, (st), (val)) # define sk_X509_OBJECT_delete(st, i) SKM_sk_delete(X509_OBJECT, (st), (i)) # define sk_X509_OBJECT_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_OBJECT, (st), (ptr)) # define sk_X509_OBJECT_insert(st, val, i) SKM_sk_insert(X509_OBJECT, (st), (val), (i)) # define sk_X509_OBJECT_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_OBJECT, (st), (cmp)) # define sk_X509_OBJECT_dup(st) SKM_sk_dup(X509_OBJECT, st) # define sk_X509_OBJECT_pop_free(st, free_func) SKM_sk_pop_free(X509_OBJECT, (st), (free_func)) # define sk_X509_OBJECT_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_OBJECT, (st), (copy_func), (free_func)) # define sk_X509_OBJECT_shift(st) SKM_sk_shift(X509_OBJECT, (st)) # define sk_X509_OBJECT_pop(st) SKM_sk_pop(X509_OBJECT, (st)) # define sk_X509_OBJECT_sort(st) SKM_sk_sort(X509_OBJECT, (st)) # define sk_X509_OBJECT_is_sorted(st) SKM_sk_is_sorted(X509_OBJECT, (st)) # define sk_X509_POLICY_DATA_new(cmp) SKM_sk_new(X509_POLICY_DATA, (cmp)) # define sk_X509_POLICY_DATA_new_null() SKM_sk_new_null(X509_POLICY_DATA) # define sk_X509_POLICY_DATA_free(st) SKM_sk_free(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_num(st) SKM_sk_num(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_value(st, i) SKM_sk_value(X509_POLICY_DATA, (st), (i)) # define sk_X509_POLICY_DATA_set(st, i, val) SKM_sk_set(X509_POLICY_DATA, (st), (i), (val)) # define sk_X509_POLICY_DATA_zero(st) SKM_sk_zero(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_push(st, val) SKM_sk_push(X509_POLICY_DATA, (st), (val)) # define sk_X509_POLICY_DATA_unshift(st, val) SKM_sk_unshift(X509_POLICY_DATA, (st), (val)) # define sk_X509_POLICY_DATA_find(st, val) SKM_sk_find(X509_POLICY_DATA, (st), (val)) # define sk_X509_POLICY_DATA_find_ex(st, val) SKM_sk_find_ex(X509_POLICY_DATA, (st), (val)) # define sk_X509_POLICY_DATA_delete(st, i) SKM_sk_delete(X509_POLICY_DATA, (st), (i)) # define sk_X509_POLICY_DATA_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_POLICY_DATA, (st), (ptr)) # define sk_X509_POLICY_DATA_insert(st, val, i) SKM_sk_insert(X509_POLICY_DATA, (st), (val), (i)) # define sk_X509_POLICY_DATA_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_POLICY_DATA, (st), (cmp)) # define sk_X509_POLICY_DATA_dup(st) SKM_sk_dup(X509_POLICY_DATA, st) # define sk_X509_POLICY_DATA_pop_free(st, free_func) SKM_sk_pop_free(X509_POLICY_DATA, (st), (free_func)) # define sk_X509_POLICY_DATA_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_POLICY_DATA, (st), (copy_func), (free_func)) # define sk_X509_POLICY_DATA_shift(st) SKM_sk_shift(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_pop(st) SKM_sk_pop(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_sort(st) SKM_sk_sort(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_DATA_is_sorted(st) SKM_sk_is_sorted(X509_POLICY_DATA, (st)) # define sk_X509_POLICY_NODE_new(cmp) SKM_sk_new(X509_POLICY_NODE, (cmp)) # define sk_X509_POLICY_NODE_new_null() SKM_sk_new_null(X509_POLICY_NODE) # define sk_X509_POLICY_NODE_free(st) SKM_sk_free(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_num(st) SKM_sk_num(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_value(st, i) SKM_sk_value(X509_POLICY_NODE, (st), (i)) # define sk_X509_POLICY_NODE_set(st, i, val) SKM_sk_set(X509_POLICY_NODE, (st), (i), (val)) # define sk_X509_POLICY_NODE_zero(st) SKM_sk_zero(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_push(st, val) SKM_sk_push(X509_POLICY_NODE, (st), (val)) # define sk_X509_POLICY_NODE_unshift(st, val) SKM_sk_unshift(X509_POLICY_NODE, (st), (val)) # define sk_X509_POLICY_NODE_find(st, val) SKM_sk_find(X509_POLICY_NODE, (st), (val)) # define sk_X509_POLICY_NODE_find_ex(st, val) SKM_sk_find_ex(X509_POLICY_NODE, (st), (val)) # define sk_X509_POLICY_NODE_delete(st, i) SKM_sk_delete(X509_POLICY_NODE, (st), (i)) # define sk_X509_POLICY_NODE_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_POLICY_NODE, (st), (ptr)) # define sk_X509_POLICY_NODE_insert(st, val, i) SKM_sk_insert(X509_POLICY_NODE, (st), (val), (i)) # define sk_X509_POLICY_NODE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_POLICY_NODE, (st), (cmp)) # define sk_X509_POLICY_NODE_dup(st) SKM_sk_dup(X509_POLICY_NODE, st) # define sk_X509_POLICY_NODE_pop_free(st, free_func) SKM_sk_pop_free(X509_POLICY_NODE, (st), (free_func)) # define sk_X509_POLICY_NODE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_POLICY_NODE, (st), (copy_func), (free_func)) # define sk_X509_POLICY_NODE_shift(st) SKM_sk_shift(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_pop(st) SKM_sk_pop(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_sort(st) SKM_sk_sort(X509_POLICY_NODE, (st)) # define sk_X509_POLICY_NODE_is_sorted(st) SKM_sk_is_sorted(X509_POLICY_NODE, (st)) # define sk_X509_PURPOSE_new(cmp) SKM_sk_new(X509_PURPOSE, (cmp)) # define sk_X509_PURPOSE_new_null() SKM_sk_new_null(X509_PURPOSE) # define sk_X509_PURPOSE_free(st) SKM_sk_free(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_num(st) SKM_sk_num(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_value(st, i) SKM_sk_value(X509_PURPOSE, (st), (i)) # define sk_X509_PURPOSE_set(st, i, val) SKM_sk_set(X509_PURPOSE, (st), (i), (val)) # define sk_X509_PURPOSE_zero(st) SKM_sk_zero(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_push(st, val) SKM_sk_push(X509_PURPOSE, (st), (val)) # define sk_X509_PURPOSE_unshift(st, val) SKM_sk_unshift(X509_PURPOSE, (st), (val)) # define sk_X509_PURPOSE_find(st, val) SKM_sk_find(X509_PURPOSE, (st), (val)) # define sk_X509_PURPOSE_find_ex(st, val) SKM_sk_find_ex(X509_PURPOSE, (st), (val)) # define sk_X509_PURPOSE_delete(st, i) SKM_sk_delete(X509_PURPOSE, (st), (i)) # define sk_X509_PURPOSE_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_PURPOSE, (st), (ptr)) # define sk_X509_PURPOSE_insert(st, val, i) SKM_sk_insert(X509_PURPOSE, (st), (val), (i)) # define sk_X509_PURPOSE_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_PURPOSE, (st), (cmp)) # define sk_X509_PURPOSE_dup(st) SKM_sk_dup(X509_PURPOSE, st) # define sk_X509_PURPOSE_pop_free(st, free_func) SKM_sk_pop_free(X509_PURPOSE, (st), (free_func)) # define sk_X509_PURPOSE_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_PURPOSE, (st), (copy_func), (free_func)) # define sk_X509_PURPOSE_shift(st) SKM_sk_shift(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_pop(st) SKM_sk_pop(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_sort(st) SKM_sk_sort(X509_PURPOSE, (st)) # define sk_X509_PURPOSE_is_sorted(st) SKM_sk_is_sorted(X509_PURPOSE, (st)) # define sk_X509_REVOKED_new(cmp) SKM_sk_new(X509_REVOKED, (cmp)) # define sk_X509_REVOKED_new_null() SKM_sk_new_null(X509_REVOKED) # define sk_X509_REVOKED_free(st) SKM_sk_free(X509_REVOKED, (st)) # define sk_X509_REVOKED_num(st) SKM_sk_num(X509_REVOKED, (st)) # define sk_X509_REVOKED_value(st, i) SKM_sk_value(X509_REVOKED, (st), (i)) # define sk_X509_REVOKED_set(st, i, val) SKM_sk_set(X509_REVOKED, (st), (i), (val)) # define sk_X509_REVOKED_zero(st) SKM_sk_zero(X509_REVOKED, (st)) # define sk_X509_REVOKED_push(st, val) SKM_sk_push(X509_REVOKED, (st), (val)) # define sk_X509_REVOKED_unshift(st, val) SKM_sk_unshift(X509_REVOKED, (st), (val)) # define sk_X509_REVOKED_find(st, val) SKM_sk_find(X509_REVOKED, (st), (val)) # define sk_X509_REVOKED_find_ex(st, val) SKM_sk_find_ex(X509_REVOKED, (st), (val)) # define sk_X509_REVOKED_delete(st, i) SKM_sk_delete(X509_REVOKED, (st), (i)) # define sk_X509_REVOKED_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_REVOKED, (st), (ptr)) # define sk_X509_REVOKED_insert(st, val, i) SKM_sk_insert(X509_REVOKED, (st), (val), (i)) # define sk_X509_REVOKED_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_REVOKED, (st), (cmp)) # define sk_X509_REVOKED_dup(st) SKM_sk_dup(X509_REVOKED, st) # define sk_X509_REVOKED_pop_free(st, free_func) SKM_sk_pop_free(X509_REVOKED, (st), (free_func)) # define sk_X509_REVOKED_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_REVOKED, (st), (copy_func), (free_func)) # define sk_X509_REVOKED_shift(st) SKM_sk_shift(X509_REVOKED, (st)) # define sk_X509_REVOKED_pop(st) SKM_sk_pop(X509_REVOKED, (st)) # define sk_X509_REVOKED_sort(st) SKM_sk_sort(X509_REVOKED, (st)) # define sk_X509_REVOKED_is_sorted(st) SKM_sk_is_sorted(X509_REVOKED, (st)) # define sk_X509_TRUST_new(cmp) SKM_sk_new(X509_TRUST, (cmp)) # define sk_X509_TRUST_new_null() SKM_sk_new_null(X509_TRUST) # define sk_X509_TRUST_free(st) SKM_sk_free(X509_TRUST, (st)) # define sk_X509_TRUST_num(st) SKM_sk_num(X509_TRUST, (st)) # define sk_X509_TRUST_value(st, i) SKM_sk_value(X509_TRUST, (st), (i)) # define sk_X509_TRUST_set(st, i, val) SKM_sk_set(X509_TRUST, (st), (i), (val)) # define sk_X509_TRUST_zero(st) SKM_sk_zero(X509_TRUST, (st)) # define sk_X509_TRUST_push(st, val) SKM_sk_push(X509_TRUST, (st), (val)) # define sk_X509_TRUST_unshift(st, val) SKM_sk_unshift(X509_TRUST, (st), (val)) # define sk_X509_TRUST_find(st, val) SKM_sk_find(X509_TRUST, (st), (val)) # define sk_X509_TRUST_find_ex(st, val) SKM_sk_find_ex(X509_TRUST, (st), (val)) # define sk_X509_TRUST_delete(st, i) SKM_sk_delete(X509_TRUST, (st), (i)) # define sk_X509_TRUST_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_TRUST, (st), (ptr)) # define sk_X509_TRUST_insert(st, val, i) SKM_sk_insert(X509_TRUST, (st), (val), (i)) # define sk_X509_TRUST_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_TRUST, (st), (cmp)) # define sk_X509_TRUST_dup(st) SKM_sk_dup(X509_TRUST, st) # define sk_X509_TRUST_pop_free(st, free_func) SKM_sk_pop_free(X509_TRUST, (st), (free_func)) # define sk_X509_TRUST_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_TRUST, (st), (copy_func), (free_func)) # define sk_X509_TRUST_shift(st) SKM_sk_shift(X509_TRUST, (st)) # define sk_X509_TRUST_pop(st) SKM_sk_pop(X509_TRUST, (st)) # define sk_X509_TRUST_sort(st) SKM_sk_sort(X509_TRUST, (st)) # define sk_X509_TRUST_is_sorted(st) SKM_sk_is_sorted(X509_TRUST, (st)) # define sk_X509_VERIFY_PARAM_new(cmp) SKM_sk_new(X509_VERIFY_PARAM, (cmp)) # define sk_X509_VERIFY_PARAM_new_null() SKM_sk_new_null(X509_VERIFY_PARAM) # define sk_X509_VERIFY_PARAM_free(st) SKM_sk_free(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_num(st) SKM_sk_num(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_value(st, i) SKM_sk_value(X509_VERIFY_PARAM, (st), (i)) # define sk_X509_VERIFY_PARAM_set(st, i, val) SKM_sk_set(X509_VERIFY_PARAM, (st), (i), (val)) # define sk_X509_VERIFY_PARAM_zero(st) SKM_sk_zero(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_push(st, val) SKM_sk_push(X509_VERIFY_PARAM, (st), (val)) # define sk_X509_VERIFY_PARAM_unshift(st, val) SKM_sk_unshift(X509_VERIFY_PARAM, (st), (val)) # define sk_X509_VERIFY_PARAM_find(st, val) SKM_sk_find(X509_VERIFY_PARAM, (st), (val)) # define sk_X509_VERIFY_PARAM_find_ex(st, val) SKM_sk_find_ex(X509_VERIFY_PARAM, (st), (val)) # define sk_X509_VERIFY_PARAM_delete(st, i) SKM_sk_delete(X509_VERIFY_PARAM, (st), (i)) # define sk_X509_VERIFY_PARAM_delete_ptr(st, ptr) SKM_sk_delete_ptr(X509_VERIFY_PARAM, (st), (ptr)) # define sk_X509_VERIFY_PARAM_insert(st, val, i) SKM_sk_insert(X509_VERIFY_PARAM, (st), (val), (i)) # define sk_X509_VERIFY_PARAM_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_VERIFY_PARAM, (st), (cmp)) # define sk_X509_VERIFY_PARAM_dup(st) SKM_sk_dup(X509_VERIFY_PARAM, st) # define sk_X509_VERIFY_PARAM_pop_free(st, free_func) SKM_sk_pop_free(X509_VERIFY_PARAM, (st), (free_func)) # define sk_X509_VERIFY_PARAM_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(X509_VERIFY_PARAM, (st), (copy_func), (free_func)) # define sk_X509_VERIFY_PARAM_shift(st) SKM_sk_shift(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_pop(st) SKM_sk_pop(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_sort(st) SKM_sk_sort(X509_VERIFY_PARAM, (st)) # define sk_X509_VERIFY_PARAM_is_sorted(st) SKM_sk_is_sorted(X509_VERIFY_PARAM, (st)) # define sk_nid_triple_new(cmp) SKM_sk_new(nid_triple, (cmp)) # define sk_nid_triple_new_null() SKM_sk_new_null(nid_triple) # define sk_nid_triple_free(st) SKM_sk_free(nid_triple, (st)) # define sk_nid_triple_num(st) SKM_sk_num(nid_triple, (st)) # define sk_nid_triple_value(st, i) SKM_sk_value(nid_triple, (st), (i)) # define sk_nid_triple_set(st, i, val) SKM_sk_set(nid_triple, (st), (i), (val)) # define sk_nid_triple_zero(st) SKM_sk_zero(nid_triple, (st)) # define sk_nid_triple_push(st, val) SKM_sk_push(nid_triple, (st), (val)) # define sk_nid_triple_unshift(st, val) SKM_sk_unshift(nid_triple, (st), (val)) # define sk_nid_triple_find(st, val) SKM_sk_find(nid_triple, (st), (val)) # define sk_nid_triple_find_ex(st, val) SKM_sk_find_ex(nid_triple, (st), (val)) # define sk_nid_triple_delete(st, i) SKM_sk_delete(nid_triple, (st), (i)) # define sk_nid_triple_delete_ptr(st, ptr) SKM_sk_delete_ptr(nid_triple, (st), (ptr)) # define sk_nid_triple_insert(st, val, i) SKM_sk_insert(nid_triple, (st), (val), (i)) # define sk_nid_triple_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(nid_triple, (st), (cmp)) # define sk_nid_triple_dup(st) SKM_sk_dup(nid_triple, st) # define sk_nid_triple_pop_free(st, free_func) SKM_sk_pop_free(nid_triple, (st), (free_func)) # define sk_nid_triple_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(nid_triple, (st), (copy_func), (free_func)) # define sk_nid_triple_shift(st) SKM_sk_shift(nid_triple, (st)) # define sk_nid_triple_pop(st) SKM_sk_pop(nid_triple, (st)) # define sk_nid_triple_sort(st) SKM_sk_sort(nid_triple, (st)) # define sk_nid_triple_is_sorted(st) SKM_sk_is_sorted(nid_triple, (st)) # define sk_void_new(cmp) SKM_sk_new(void, (cmp)) # define sk_void_new_null() SKM_sk_new_null(void) # define sk_void_free(st) SKM_sk_free(void, (st)) # define sk_void_num(st) SKM_sk_num(void, (st)) # define sk_void_value(st, i) SKM_sk_value(void, (st), (i)) # define sk_void_set(st, i, val) SKM_sk_set(void, (st), (i), (val)) # define sk_void_zero(st) SKM_sk_zero(void, (st)) # define sk_void_push(st, val) SKM_sk_push(void, (st), (val)) # define sk_void_unshift(st, val) SKM_sk_unshift(void, (st), (val)) # define sk_void_find(st, val) SKM_sk_find(void, (st), (val)) # define sk_void_find_ex(st, val) SKM_sk_find_ex(void, (st), (val)) # define sk_void_delete(st, i) SKM_sk_delete(void, (st), (i)) # define sk_void_delete_ptr(st, ptr) SKM_sk_delete_ptr(void, (st), (ptr)) # define sk_void_insert(st, val, i) SKM_sk_insert(void, (st), (val), (i)) # define sk_void_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(void, (st), (cmp)) # define sk_void_dup(st) SKM_sk_dup(void, st) # define sk_void_pop_free(st, free_func) SKM_sk_pop_free(void, (st), (free_func)) # define sk_void_deep_copy(st, copy_func, free_func) SKM_sk_deep_copy(void, (st), (copy_func), (free_func)) # define sk_void_shift(st) SKM_sk_shift(void, (st)) # define sk_void_pop(st) SKM_sk_pop(void, (st)) # define sk_void_sort(st) SKM_sk_sort(void, (st)) # define sk_void_is_sorted(st) SKM_sk_is_sorted(void, (st)) # define sk_OPENSSL_STRING_new(cmp) ((STACK_OF(OPENSSL_STRING) *)sk_new(CHECKED_SK_CMP_FUNC(char, cmp))) # define sk_OPENSSL_STRING_new_null() ((STACK_OF(OPENSSL_STRING) *)sk_new_null()) # define sk_OPENSSL_STRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val)) # define sk_OPENSSL_STRING_find(st, val) sk_find(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val)) # define sk_OPENSSL_STRING_value(st, i) ((OPENSSL_STRING)sk_value(CHECKED_STACK_OF(OPENSSL_STRING, st), i)) # define sk_OPENSSL_STRING_num(st) SKM_sk_num(OPENSSL_STRING, st) # define sk_OPENSSL_STRING_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_SK_FREE_FUNC(char, free_func)) # define sk_OPENSSL_STRING_deep_copy(st, copy_func, free_func) ((STACK_OF(OPENSSL_STRING) *)sk_deep_copy(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_SK_COPY_FUNC(char, copy_func), CHECKED_SK_FREE_FUNC(char, free_func))) # define sk_OPENSSL_STRING_insert(st, val, i) sk_insert(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val), i) # define sk_OPENSSL_STRING_free(st) SKM_sk_free(OPENSSL_STRING, st) # define sk_OPENSSL_STRING_set(st, i, val) sk_set(CHECKED_STACK_OF(OPENSSL_STRING, st), i, CHECKED_PTR_OF(char, val)) # define sk_OPENSSL_STRING_zero(st) SKM_sk_zero(OPENSSL_STRING, (st)) # define sk_OPENSSL_STRING_unshift(st, val) sk_unshift(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, val)) # define sk_OPENSSL_STRING_find_ex(st, val) sk_find_ex((_STACK *)CHECKED_CONST_PTR_OF(STACK_OF(OPENSSL_STRING), st), CHECKED_CONST_PTR_OF(char, val)) # define sk_OPENSSL_STRING_delete(st, i) SKM_sk_delete(OPENSSL_STRING, (st), (i)) # define sk_OPENSSL_STRING_delete_ptr(st, ptr) (OPENSSL_STRING *)sk_delete_ptr(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_PTR_OF(char, ptr)) # define sk_OPENSSL_STRING_set_cmp_func(st, cmp) \ ((int (*)(const char * const *,const char * const *)) \ sk_set_cmp_func(CHECKED_STACK_OF(OPENSSL_STRING, st), CHECKED_SK_CMP_FUNC(char, cmp))) # define sk_OPENSSL_STRING_dup(st) SKM_sk_dup(OPENSSL_STRING, st) # define sk_OPENSSL_STRING_shift(st) SKM_sk_shift(OPENSSL_STRING, (st)) # define sk_OPENSSL_STRING_pop(st) (char *)sk_pop(CHECKED_STACK_OF(OPENSSL_STRING, st)) # define sk_OPENSSL_STRING_sort(st) SKM_sk_sort(OPENSSL_STRING, (st)) # define sk_OPENSSL_STRING_is_sorted(st) SKM_sk_is_sorted(OPENSSL_STRING, (st)) # define sk_OPENSSL_BLOCK_new(cmp) ((STACK_OF(OPENSSL_BLOCK) *)sk_new(CHECKED_SK_CMP_FUNC(void, cmp))) # define sk_OPENSSL_BLOCK_new_null() ((STACK_OF(OPENSSL_BLOCK) *)sk_new_null()) # define sk_OPENSSL_BLOCK_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_PTR_OF(void, val)) # define sk_OPENSSL_BLOCK_find(st, val) sk_find(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_PTR_OF(void, val)) # define sk_OPENSSL_BLOCK_value(st, i) ((OPENSSL_BLOCK)sk_value(CHECKED_STACK_OF(OPENSSL_BLOCK, st), i)) # define sk_OPENSSL_BLOCK_num(st) SKM_sk_num(OPENSSL_BLOCK, st) # define sk_OPENSSL_BLOCK_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_SK_FREE_FUNC(void, free_func)) # define sk_OPENSSL_BLOCK_deep_copy(st, copy_func, free_func) ((STACK_OF(OPENSSL_BLOCK) *)sk_deep_copy(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_SK_COPY_FUNC(void, copy_func), CHECKED_SK_FREE_FUNC(void, free_func))) # define sk_OPENSSL_BLOCK_insert(st, val, i) sk_insert(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_PTR_OF(void, val), i) # define sk_OPENSSL_BLOCK_free(st) SKM_sk_free(OPENSSL_BLOCK, st) # define sk_OPENSSL_BLOCK_set(st, i, val) sk_set(CHECKED_STACK_OF(OPENSSL_BLOCK, st), i, CHECKED_PTR_OF(void, val)) # define sk_OPENSSL_BLOCK_zero(st) SKM_sk_zero(OPENSSL_BLOCK, (st)) # define sk_OPENSSL_BLOCK_unshift(st, val) sk_unshift(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_PTR_OF(void, val)) # define sk_OPENSSL_BLOCK_find_ex(st, val) sk_find_ex((_STACK *)CHECKED_CONST_PTR_OF(STACK_OF(OPENSSL_BLOCK), st), CHECKED_CONST_PTR_OF(void, val)) # define sk_OPENSSL_BLOCK_delete(st, i) SKM_sk_delete(OPENSSL_BLOCK, (st), (i)) # define sk_OPENSSL_BLOCK_delete_ptr(st, ptr) (OPENSSL_BLOCK *)sk_delete_ptr(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_PTR_OF(void, ptr)) # define sk_OPENSSL_BLOCK_set_cmp_func(st, cmp) \ ((int (*)(const void * const *,const void * const *)) \ sk_set_cmp_func(CHECKED_STACK_OF(OPENSSL_BLOCK, st), CHECKED_SK_CMP_FUNC(void, cmp))) # define sk_OPENSSL_BLOCK_dup(st) SKM_sk_dup(OPENSSL_BLOCK, st) # define sk_OPENSSL_BLOCK_shift(st) SKM_sk_shift(OPENSSL_BLOCK, (st)) # define sk_OPENSSL_BLOCK_pop(st) (void *)sk_pop(CHECKED_STACK_OF(OPENSSL_BLOCK, st)) # define sk_OPENSSL_BLOCK_sort(st) SKM_sk_sort(OPENSSL_BLOCK, (st)) # define sk_OPENSSL_BLOCK_is_sorted(st) SKM_sk_is_sorted(OPENSSL_BLOCK, (st)) # define sk_OPENSSL_PSTRING_new(cmp) ((STACK_OF(OPENSSL_PSTRING) *)sk_new(CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp))) # define sk_OPENSSL_PSTRING_new_null() ((STACK_OF(OPENSSL_PSTRING) *)sk_new_null()) # define sk_OPENSSL_PSTRING_push(st, val) sk_push(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val)) # define sk_OPENSSL_PSTRING_find(st, val) sk_find(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val)) # define sk_OPENSSL_PSTRING_value(st, i) ((OPENSSL_PSTRING)sk_value(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i)) # define sk_OPENSSL_PSTRING_num(st) SKM_sk_num(OPENSSL_PSTRING, st) # define sk_OPENSSL_PSTRING_pop_free(st, free_func) sk_pop_free(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func)) # define sk_OPENSSL_PSTRING_deep_copy(st, copy_func, free_func) ((STACK_OF(OPENSSL_PSTRING) *)sk_deep_copy(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_COPY_FUNC(OPENSSL_STRING, copy_func), CHECKED_SK_FREE_FUNC(OPENSSL_STRING, free_func))) # define sk_OPENSSL_PSTRING_insert(st, val, i) sk_insert(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val), i) # define sk_OPENSSL_PSTRING_free(st) SKM_sk_free(OPENSSL_PSTRING, st) # define sk_OPENSSL_PSTRING_set(st, i, val) sk_set(CHECKED_STACK_OF(OPENSSL_PSTRING, st), i, CHECKED_PTR_OF(OPENSSL_STRING, val)) # define sk_OPENSSL_PSTRING_zero(st) SKM_sk_zero(OPENSSL_PSTRING, (st)) # define sk_OPENSSL_PSTRING_unshift(st, val) sk_unshift(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, val)) # define sk_OPENSSL_PSTRING_find_ex(st, val) sk_find_ex((_STACK *)CHECKED_CONST_PTR_OF(STACK_OF(OPENSSL_PSTRING), st), CHECKED_CONST_PTR_OF(OPENSSL_STRING, val)) # define sk_OPENSSL_PSTRING_delete(st, i) SKM_sk_delete(OPENSSL_PSTRING, (st), (i)) # define sk_OPENSSL_PSTRING_delete_ptr(st, ptr) (OPENSSL_PSTRING *)sk_delete_ptr(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_PTR_OF(OPENSSL_STRING, ptr)) # define sk_OPENSSL_PSTRING_set_cmp_func(st, cmp) \ ((int (*)(const OPENSSL_STRING * const *,const OPENSSL_STRING * const *)) \ sk_set_cmp_func(CHECKED_STACK_OF(OPENSSL_PSTRING, st), CHECKED_SK_CMP_FUNC(OPENSSL_STRING, cmp))) # define sk_OPENSSL_PSTRING_dup(st) SKM_sk_dup(OPENSSL_PSTRING, st) # define sk_OPENSSL_PSTRING_shift(st) SKM_sk_shift(OPENSSL_PSTRING, (st)) # define sk_OPENSSL_PSTRING_pop(st) (OPENSSL_STRING *)sk_pop(CHECKED_STACK_OF(OPENSSL_PSTRING, st)) # define sk_OPENSSL_PSTRING_sort(st) SKM_sk_sort(OPENSSL_PSTRING, (st)) # define sk_OPENSSL_PSTRING_is_sorted(st) SKM_sk_is_sorted(OPENSSL_PSTRING, (st)) # define d2i_ASN1_SET_OF_ACCESS_DESCRIPTION(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ACCESS_DESCRIPTION, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ACCESS_DESCRIPTION(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ACCESS_DESCRIPTION, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ACCESS_DESCRIPTION(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ACCESS_DESCRIPTION, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ACCESS_DESCRIPTION(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ACCESS_DESCRIPTION, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_ASN1_INTEGER(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ASN1_INTEGER, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ASN1_INTEGER(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ASN1_INTEGER, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ASN1_INTEGER(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ASN1_INTEGER, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ASN1_INTEGER(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ASN1_INTEGER, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_ASN1_OBJECT(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ASN1_OBJECT, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ASN1_OBJECT(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ASN1_OBJECT, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ASN1_OBJECT(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ASN1_OBJECT, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ASN1_OBJECT(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ASN1_OBJECT, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_ASN1_TYPE(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ASN1_TYPE, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ASN1_TYPE(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ASN1_TYPE, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ASN1_TYPE(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ASN1_TYPE, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ASN1_TYPE(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ASN1_TYPE, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_ASN1_UTF8STRING(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ASN1_UTF8STRING, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ASN1_UTF8STRING(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ASN1_UTF8STRING, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ASN1_UTF8STRING(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ASN1_UTF8STRING, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ASN1_UTF8STRING(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ASN1_UTF8STRING, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_DIST_POINT(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(DIST_POINT, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_DIST_POINT(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(DIST_POINT, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_DIST_POINT(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(DIST_POINT, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_DIST_POINT(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(DIST_POINT, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_ESS_CERT_ID(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(ESS_CERT_ID, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_ESS_CERT_ID(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(ESS_CERT_ID, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_ESS_CERT_ID(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(ESS_CERT_ID, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_ESS_CERT_ID(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(ESS_CERT_ID, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_EVP_MD(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(EVP_MD, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_EVP_MD(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(EVP_MD, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_EVP_MD(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(EVP_MD, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_EVP_MD(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(EVP_MD, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_GENERAL_NAME(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(GENERAL_NAME, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_GENERAL_NAME(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(GENERAL_NAME, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_GENERAL_NAME(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(GENERAL_NAME, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_GENERAL_NAME(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(GENERAL_NAME, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_OCSP_ONEREQ(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(OCSP_ONEREQ, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_OCSP_ONEREQ(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(OCSP_ONEREQ, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_OCSP_ONEREQ(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(OCSP_ONEREQ, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_OCSP_ONEREQ(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(OCSP_ONEREQ, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_OCSP_SINGLERESP(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(OCSP_SINGLERESP, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_OCSP_SINGLERESP(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(OCSP_SINGLERESP, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_OCSP_SINGLERESP(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(OCSP_SINGLERESP, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_OCSP_SINGLERESP(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(OCSP_SINGLERESP, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_PKCS12_SAFEBAG(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(PKCS12_SAFEBAG, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_PKCS12_SAFEBAG(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(PKCS12_SAFEBAG, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_PKCS12_SAFEBAG(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(PKCS12_SAFEBAG, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_PKCS12_SAFEBAG(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(PKCS12_SAFEBAG, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_PKCS7(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(PKCS7, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_PKCS7(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(PKCS7, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_PKCS7(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(PKCS7, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_PKCS7(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(PKCS7, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_PKCS7_RECIP_INFO(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(PKCS7_RECIP_INFO, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_PKCS7_RECIP_INFO(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(PKCS7_RECIP_INFO, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_PKCS7_RECIP_INFO(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(PKCS7_RECIP_INFO, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_PKCS7_RECIP_INFO(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(PKCS7_RECIP_INFO, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_PKCS7_SIGNER_INFO(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(PKCS7_SIGNER_INFO, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_PKCS7_SIGNER_INFO(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(PKCS7_SIGNER_INFO, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_PKCS7_SIGNER_INFO(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(PKCS7_SIGNER_INFO, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_PKCS7_SIGNER_INFO(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(PKCS7_SIGNER_INFO, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_POLICYINFO(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(POLICYINFO, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_POLICYINFO(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(POLICYINFO, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_POLICYINFO(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(POLICYINFO, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_POLICYINFO(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(POLICYINFO, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_POLICYQUALINFO(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(POLICYQUALINFO, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_POLICYQUALINFO(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(POLICYQUALINFO, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_POLICYQUALINFO(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(POLICYQUALINFO, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_POLICYQUALINFO(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(POLICYQUALINFO, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_SXNETID(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(SXNETID, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_SXNETID(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(SXNETID, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_SXNETID(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(SXNETID, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_SXNETID(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(SXNETID, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_ALGOR(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_ALGOR, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_ALGOR(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_ALGOR, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_ALGOR(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_ALGOR, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_ALGOR(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_ALGOR, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_ATTRIBUTE(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_ATTRIBUTE, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_ATTRIBUTE(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_ATTRIBUTE, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_ATTRIBUTE(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_ATTRIBUTE, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_ATTRIBUTE(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_ATTRIBUTE, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_CRL(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_CRL, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_CRL(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_CRL, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_CRL(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_CRL, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_CRL(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_CRL, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_EXTENSION(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_EXTENSION, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_EXTENSION(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_EXTENSION, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_EXTENSION(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_EXTENSION, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_EXTENSION(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_EXTENSION, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_NAME_ENTRY(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_NAME_ENTRY, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_NAME_ENTRY(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_NAME_ENTRY, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_NAME_ENTRY(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_NAME_ENTRY, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_NAME_ENTRY(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_NAME_ENTRY, (buf), (len), (d2i_func), (free_func)) # define d2i_ASN1_SET_OF_X509_REVOKED(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \ SKM_ASN1_SET_OF_d2i(X509_REVOKED, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class)) # define i2d_ASN1_SET_OF_X509_REVOKED(st, pp, i2d_func, ex_tag, ex_class, is_set) \ SKM_ASN1_SET_OF_i2d(X509_REVOKED, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set)) # define ASN1_seq_pack_X509_REVOKED(st, i2d_func, buf, len) \ SKM_ASN1_seq_pack(X509_REVOKED, (st), (i2d_func), (buf), (len)) # define ASN1_seq_unpack_X509_REVOKED(buf, len, d2i_func, free_func) \ SKM_ASN1_seq_unpack(X509_REVOKED, (buf), (len), (d2i_func), (free_func)) # define PKCS12_decrypt_d2i_PKCS12_SAFEBAG(algor, d2i_func, free_func, pass, passlen, oct, seq) \ SKM_PKCS12_decrypt_d2i(PKCS12_SAFEBAG, (algor), (d2i_func), (free_func), (pass), (passlen), (oct), (seq)) # define PKCS12_decrypt_d2i_PKCS7(algor, d2i_func, free_func, pass, passlen, oct, seq) \ SKM_PKCS12_decrypt_d2i(PKCS7, (algor), (d2i_func), (free_func), (pass), (passlen), (oct), (seq)) # define lh_ADDED_OBJ_new() LHM_lh_new(ADDED_OBJ,added_obj) # define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) # define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) # define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) # define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) # define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(ADDED_OBJ,lh,fn,arg_type,arg) # define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) # define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) # define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) # define lh_ADDED_OBJ_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(ADDED_OBJ,lh,out) # define lh_ADDED_OBJ_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(ADDED_OBJ,lh,out) # define lh_ADDED_OBJ_stats_bio(lh,out) \ LHM_lh_stats_bio(ADDED_OBJ,lh,out) # define lh_ADDED_OBJ_free(lh) LHM_lh_free(ADDED_OBJ,lh) # define lh_APP_INFO_new() LHM_lh_new(APP_INFO,app_info) # define lh_APP_INFO_insert(lh,inst) LHM_lh_insert(APP_INFO,lh,inst) # define lh_APP_INFO_retrieve(lh,inst) LHM_lh_retrieve(APP_INFO,lh,inst) # define lh_APP_INFO_delete(lh,inst) LHM_lh_delete(APP_INFO,lh,inst) # define lh_APP_INFO_doall(lh,fn) LHM_lh_doall(APP_INFO,lh,fn) # define lh_APP_INFO_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(APP_INFO,lh,fn,arg_type,arg) # define lh_APP_INFO_error(lh) LHM_lh_error(APP_INFO,lh) # define lh_APP_INFO_num_items(lh) LHM_lh_num_items(APP_INFO,lh) # define lh_APP_INFO_down_load(lh) LHM_lh_down_load(APP_INFO,lh) # define lh_APP_INFO_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(APP_INFO,lh,out) # define lh_APP_INFO_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(APP_INFO,lh,out) # define lh_APP_INFO_stats_bio(lh,out) \ LHM_lh_stats_bio(APP_INFO,lh,out) # define lh_APP_INFO_free(lh) LHM_lh_free(APP_INFO,lh) # define lh_CONF_VALUE_new() LHM_lh_new(CONF_VALUE,conf_value) # define lh_CONF_VALUE_insert(lh,inst) LHM_lh_insert(CONF_VALUE,lh,inst) # define lh_CONF_VALUE_retrieve(lh,inst) LHM_lh_retrieve(CONF_VALUE,lh,inst) # define lh_CONF_VALUE_delete(lh,inst) LHM_lh_delete(CONF_VALUE,lh,inst) # define lh_CONF_VALUE_doall(lh,fn) LHM_lh_doall(CONF_VALUE,lh,fn) # define lh_CONF_VALUE_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(CONF_VALUE,lh,fn,arg_type,arg) # define lh_CONF_VALUE_error(lh) LHM_lh_error(CONF_VALUE,lh) # define lh_CONF_VALUE_num_items(lh) LHM_lh_num_items(CONF_VALUE,lh) # define lh_CONF_VALUE_down_load(lh) LHM_lh_down_load(CONF_VALUE,lh) # define lh_CONF_VALUE_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(CONF_VALUE,lh,out) # define lh_CONF_VALUE_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(CONF_VALUE,lh,out) # define lh_CONF_VALUE_stats_bio(lh,out) \ LHM_lh_stats_bio(CONF_VALUE,lh,out) # define lh_CONF_VALUE_free(lh) LHM_lh_free(CONF_VALUE,lh) # define lh_ENGINE_PILE_new() LHM_lh_new(ENGINE_PILE,engine_pile) # define lh_ENGINE_PILE_insert(lh,inst) LHM_lh_insert(ENGINE_PILE,lh,inst) # define lh_ENGINE_PILE_retrieve(lh,inst) LHM_lh_retrieve(ENGINE_PILE,lh,inst) # define lh_ENGINE_PILE_delete(lh,inst) LHM_lh_delete(ENGINE_PILE,lh,inst) # define lh_ENGINE_PILE_doall(lh,fn) LHM_lh_doall(ENGINE_PILE,lh,fn) # define lh_ENGINE_PILE_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(ENGINE_PILE,lh,fn,arg_type,arg) # define lh_ENGINE_PILE_error(lh) LHM_lh_error(ENGINE_PILE,lh) # define lh_ENGINE_PILE_num_items(lh) LHM_lh_num_items(ENGINE_PILE,lh) # define lh_ENGINE_PILE_down_load(lh) LHM_lh_down_load(ENGINE_PILE,lh) # define lh_ENGINE_PILE_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(ENGINE_PILE,lh,out) # define lh_ENGINE_PILE_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(ENGINE_PILE,lh,out) # define lh_ENGINE_PILE_stats_bio(lh,out) \ LHM_lh_stats_bio(ENGINE_PILE,lh,out) # define lh_ENGINE_PILE_free(lh) LHM_lh_free(ENGINE_PILE,lh) # define lh_ERR_STATE_new() LHM_lh_new(ERR_STATE,err_state) # define lh_ERR_STATE_insert(lh,inst) LHM_lh_insert(ERR_STATE,lh,inst) # define lh_ERR_STATE_retrieve(lh,inst) LHM_lh_retrieve(ERR_STATE,lh,inst) # define lh_ERR_STATE_delete(lh,inst) LHM_lh_delete(ERR_STATE,lh,inst) # define lh_ERR_STATE_doall(lh,fn) LHM_lh_doall(ERR_STATE,lh,fn) # define lh_ERR_STATE_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(ERR_STATE,lh,fn,arg_type,arg) # define lh_ERR_STATE_error(lh) LHM_lh_error(ERR_STATE,lh) # define lh_ERR_STATE_num_items(lh) LHM_lh_num_items(ERR_STATE,lh) # define lh_ERR_STATE_down_load(lh) LHM_lh_down_load(ERR_STATE,lh) # define lh_ERR_STATE_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(ERR_STATE,lh,out) # define lh_ERR_STATE_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(ERR_STATE,lh,out) # define lh_ERR_STATE_stats_bio(lh,out) \ LHM_lh_stats_bio(ERR_STATE,lh,out) # define lh_ERR_STATE_free(lh) LHM_lh_free(ERR_STATE,lh) # define lh_ERR_STRING_DATA_new() LHM_lh_new(ERR_STRING_DATA,err_string_data) # define lh_ERR_STRING_DATA_insert(lh,inst) LHM_lh_insert(ERR_STRING_DATA,lh,inst) # define lh_ERR_STRING_DATA_retrieve(lh,inst) LHM_lh_retrieve(ERR_STRING_DATA,lh,inst) # define lh_ERR_STRING_DATA_delete(lh,inst) LHM_lh_delete(ERR_STRING_DATA,lh,inst) # define lh_ERR_STRING_DATA_doall(lh,fn) LHM_lh_doall(ERR_STRING_DATA,lh,fn) # define lh_ERR_STRING_DATA_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(ERR_STRING_DATA,lh,fn,arg_type,arg) # define lh_ERR_STRING_DATA_error(lh) LHM_lh_error(ERR_STRING_DATA,lh) # define lh_ERR_STRING_DATA_num_items(lh) LHM_lh_num_items(ERR_STRING_DATA,lh) # define lh_ERR_STRING_DATA_down_load(lh) LHM_lh_down_load(ERR_STRING_DATA,lh) # define lh_ERR_STRING_DATA_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(ERR_STRING_DATA,lh,out) # define lh_ERR_STRING_DATA_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(ERR_STRING_DATA,lh,out) # define lh_ERR_STRING_DATA_stats_bio(lh,out) \ LHM_lh_stats_bio(ERR_STRING_DATA,lh,out) # define lh_ERR_STRING_DATA_free(lh) LHM_lh_free(ERR_STRING_DATA,lh) # define lh_EX_CLASS_ITEM_new() LHM_lh_new(EX_CLASS_ITEM,ex_class_item) # define lh_EX_CLASS_ITEM_insert(lh,inst) LHM_lh_insert(EX_CLASS_ITEM,lh,inst) # define lh_EX_CLASS_ITEM_retrieve(lh,inst) LHM_lh_retrieve(EX_CLASS_ITEM,lh,inst) # define lh_EX_CLASS_ITEM_delete(lh,inst) LHM_lh_delete(EX_CLASS_ITEM,lh,inst) # define lh_EX_CLASS_ITEM_doall(lh,fn) LHM_lh_doall(EX_CLASS_ITEM,lh,fn) # define lh_EX_CLASS_ITEM_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(EX_CLASS_ITEM,lh,fn,arg_type,arg) # define lh_EX_CLASS_ITEM_error(lh) LHM_lh_error(EX_CLASS_ITEM,lh) # define lh_EX_CLASS_ITEM_num_items(lh) LHM_lh_num_items(EX_CLASS_ITEM,lh) # define lh_EX_CLASS_ITEM_down_load(lh) LHM_lh_down_load(EX_CLASS_ITEM,lh) # define lh_EX_CLASS_ITEM_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(EX_CLASS_ITEM,lh,out) # define lh_EX_CLASS_ITEM_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(EX_CLASS_ITEM,lh,out) # define lh_EX_CLASS_ITEM_stats_bio(lh,out) \ LHM_lh_stats_bio(EX_CLASS_ITEM,lh,out) # define lh_EX_CLASS_ITEM_free(lh) LHM_lh_free(EX_CLASS_ITEM,lh) # define lh_FUNCTION_new() LHM_lh_new(FUNCTION,function) # define lh_FUNCTION_insert(lh,inst) LHM_lh_insert(FUNCTION,lh,inst) # define lh_FUNCTION_retrieve(lh,inst) LHM_lh_retrieve(FUNCTION,lh,inst) # define lh_FUNCTION_delete(lh,inst) LHM_lh_delete(FUNCTION,lh,inst) # define lh_FUNCTION_doall(lh,fn) LHM_lh_doall(FUNCTION,lh,fn) # define lh_FUNCTION_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(FUNCTION,lh,fn,arg_type,arg) # define lh_FUNCTION_error(lh) LHM_lh_error(FUNCTION,lh) # define lh_FUNCTION_num_items(lh) LHM_lh_num_items(FUNCTION,lh) # define lh_FUNCTION_down_load(lh) LHM_lh_down_load(FUNCTION,lh) # define lh_FUNCTION_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(FUNCTION,lh,out) # define lh_FUNCTION_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(FUNCTION,lh,out) # define lh_FUNCTION_stats_bio(lh,out) \ LHM_lh_stats_bio(FUNCTION,lh,out) # define lh_FUNCTION_free(lh) LHM_lh_free(FUNCTION,lh) # define lh_MEM_new() LHM_lh_new(MEM,mem) # define lh_MEM_insert(lh,inst) LHM_lh_insert(MEM,lh,inst) # define lh_MEM_retrieve(lh,inst) LHM_lh_retrieve(MEM,lh,inst) # define lh_MEM_delete(lh,inst) LHM_lh_delete(MEM,lh,inst) # define lh_MEM_doall(lh,fn) LHM_lh_doall(MEM,lh,fn) # define lh_MEM_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(MEM,lh,fn,arg_type,arg) # define lh_MEM_error(lh) LHM_lh_error(MEM,lh) # define lh_MEM_num_items(lh) LHM_lh_num_items(MEM,lh) # define lh_MEM_down_load(lh) LHM_lh_down_load(MEM,lh) # define lh_MEM_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(MEM,lh,out) # define lh_MEM_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(MEM,lh,out) # define lh_MEM_stats_bio(lh,out) \ LHM_lh_stats_bio(MEM,lh,out) # define lh_MEM_free(lh) LHM_lh_free(MEM,lh) # define lh_OBJ_NAME_new() LHM_lh_new(OBJ_NAME,obj_name) # define lh_OBJ_NAME_insert(lh,inst) LHM_lh_insert(OBJ_NAME,lh,inst) # define lh_OBJ_NAME_retrieve(lh,inst) LHM_lh_retrieve(OBJ_NAME,lh,inst) # define lh_OBJ_NAME_delete(lh,inst) LHM_lh_delete(OBJ_NAME,lh,inst) # define lh_OBJ_NAME_doall(lh,fn) LHM_lh_doall(OBJ_NAME,lh,fn) # define lh_OBJ_NAME_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(OBJ_NAME,lh,fn,arg_type,arg) # define lh_OBJ_NAME_error(lh) LHM_lh_error(OBJ_NAME,lh) # define lh_OBJ_NAME_num_items(lh) LHM_lh_num_items(OBJ_NAME,lh) # define lh_OBJ_NAME_down_load(lh) LHM_lh_down_load(OBJ_NAME,lh) # define lh_OBJ_NAME_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(OBJ_NAME,lh,out) # define lh_OBJ_NAME_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(OBJ_NAME,lh,out) # define lh_OBJ_NAME_stats_bio(lh,out) \ LHM_lh_stats_bio(OBJ_NAME,lh,out) # define lh_OBJ_NAME_free(lh) LHM_lh_free(OBJ_NAME,lh) # define lh_OPENSSL_CSTRING_new() LHM_lh_new(OPENSSL_CSTRING,openssl_cstring) # define lh_OPENSSL_CSTRING_insert(lh,inst) LHM_lh_insert(OPENSSL_CSTRING,lh,inst) # define lh_OPENSSL_CSTRING_retrieve(lh,inst) LHM_lh_retrieve(OPENSSL_CSTRING,lh,inst) # define lh_OPENSSL_CSTRING_delete(lh,inst) LHM_lh_delete(OPENSSL_CSTRING,lh,inst) # define lh_OPENSSL_CSTRING_doall(lh,fn) LHM_lh_doall(OPENSSL_CSTRING,lh,fn) # define lh_OPENSSL_CSTRING_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(OPENSSL_CSTRING,lh,fn,arg_type,arg) # define lh_OPENSSL_CSTRING_error(lh) LHM_lh_error(OPENSSL_CSTRING,lh) # define lh_OPENSSL_CSTRING_num_items(lh) LHM_lh_num_items(OPENSSL_CSTRING,lh) # define lh_OPENSSL_CSTRING_down_load(lh) LHM_lh_down_load(OPENSSL_CSTRING,lh) # define lh_OPENSSL_CSTRING_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(OPENSSL_CSTRING,lh,out) # define lh_OPENSSL_CSTRING_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(OPENSSL_CSTRING,lh,out) # define lh_OPENSSL_CSTRING_stats_bio(lh,out) \ LHM_lh_stats_bio(OPENSSL_CSTRING,lh,out) # define lh_OPENSSL_CSTRING_free(lh) LHM_lh_free(OPENSSL_CSTRING,lh) # define lh_OPENSSL_STRING_new() LHM_lh_new(OPENSSL_STRING,openssl_string) # define lh_OPENSSL_STRING_insert(lh,inst) LHM_lh_insert(OPENSSL_STRING,lh,inst) # define lh_OPENSSL_STRING_retrieve(lh,inst) LHM_lh_retrieve(OPENSSL_STRING,lh,inst) # define lh_OPENSSL_STRING_delete(lh,inst) LHM_lh_delete(OPENSSL_STRING,lh,inst) # define lh_OPENSSL_STRING_doall(lh,fn) LHM_lh_doall(OPENSSL_STRING,lh,fn) # define lh_OPENSSL_STRING_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(OPENSSL_STRING,lh,fn,arg_type,arg) # define lh_OPENSSL_STRING_error(lh) LHM_lh_error(OPENSSL_STRING,lh) # define lh_OPENSSL_STRING_num_items(lh) LHM_lh_num_items(OPENSSL_STRING,lh) # define lh_OPENSSL_STRING_down_load(lh) LHM_lh_down_load(OPENSSL_STRING,lh) # define lh_OPENSSL_STRING_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(OPENSSL_STRING,lh,out) # define lh_OPENSSL_STRING_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(OPENSSL_STRING,lh,out) # define lh_OPENSSL_STRING_stats_bio(lh,out) \ LHM_lh_stats_bio(OPENSSL_STRING,lh,out) # define lh_OPENSSL_STRING_free(lh) LHM_lh_free(OPENSSL_STRING,lh) # define lh_SSL_SESSION_new() LHM_lh_new(SSL_SESSION,ssl_session) # define lh_SSL_SESSION_insert(lh,inst) LHM_lh_insert(SSL_SESSION,lh,inst) # define lh_SSL_SESSION_retrieve(lh,inst) LHM_lh_retrieve(SSL_SESSION,lh,inst) # define lh_SSL_SESSION_delete(lh,inst) LHM_lh_delete(SSL_SESSION,lh,inst) # define lh_SSL_SESSION_doall(lh,fn) LHM_lh_doall(SSL_SESSION,lh,fn) # define lh_SSL_SESSION_doall_arg(lh,fn,arg_type,arg) \ LHM_lh_doall_arg(SSL_SESSION,lh,fn,arg_type,arg) # define lh_SSL_SESSION_error(lh) LHM_lh_error(SSL_SESSION,lh) # define lh_SSL_SESSION_num_items(lh) LHM_lh_num_items(SSL_SESSION,lh) # define lh_SSL_SESSION_down_load(lh) LHM_lh_down_load(SSL_SESSION,lh) # define lh_SSL_SESSION_node_stats_bio(lh,out) \ LHM_lh_node_stats_bio(SSL_SESSION,lh,out) # define lh_SSL_SESSION_node_usage_stats_bio(lh,out) \ LHM_lh_node_usage_stats_bio(SSL_SESSION,lh,out) # define lh_SSL_SESSION_stats_bio(lh,out) \ LHM_lh_stats_bio(SSL_SESSION,lh,out) # define lh_SSL_SESSION_free(lh) LHM_lh_free(SSL_SESSION,lh) #ifdef __cplusplus } #endif #endif /* !defined HEADER_SAFESTACK_H */ ================================================ FILE: third_party/include/openssl/seed.h ================================================ /* * Copyright (c) 2007 KISA(Korea Information Security Agency). All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Neither the name of author nor the names of its contributors may * be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * */ /* ==================================================================== * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_SEED_H # define HEADER_SEED_H # include # include # include # ifdef OPENSSL_NO_SEED # error SEED is disabled. # endif /* look whether we need 'long' to get 32 bits */ # ifdef AES_LONG # ifndef SEED_LONG # define SEED_LONG 1 # endif # endif # if !defined(NO_SYS_TYPES_H) # include # endif # define SEED_BLOCK_SIZE 16 # define SEED_KEY_LENGTH 16 #ifdef __cplusplus extern "C" { #endif typedef struct seed_key_st { # ifdef SEED_LONG unsigned long data[32]; # else unsigned int data[32]; # endif } SEED_KEY_SCHEDULE; # ifdef OPENSSL_FIPS void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks); # endif void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks); void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE], unsigned char d[SEED_BLOCK_SIZE], const SEED_KEY_SCHEDULE *ks); void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE], unsigned char d[SEED_BLOCK_SIZE], const SEED_KEY_SCHEDULE *ks); void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc); void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, const SEED_KEY_SCHEDULE *ks, unsigned char ivec[SEED_BLOCK_SIZE], int enc); void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const SEED_KEY_SCHEDULE *ks, unsigned char ivec[SEED_BLOCK_SIZE], int *num, int enc); void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t len, const SEED_KEY_SCHEDULE *ks, unsigned char ivec[SEED_BLOCK_SIZE], int *num); #ifdef __cplusplus } #endif #endif /* HEADER_SEED_H */ ================================================ FILE: third_party/include/openssl/sha.h ================================================ /* crypto/sha/sha.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_SHA_H # define HEADER_SHA_H # include # include #ifdef __cplusplus extern "C" { #endif # if defined(OPENSSL_NO_SHA) || (defined(OPENSSL_NO_SHA0) && defined(OPENSSL_NO_SHA1)) # error SHA is disabled. # endif # if defined(OPENSSL_FIPS) # define FIPS_SHA_SIZE_T size_t # endif /*- * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! * ! SHA_LONG has to be at least 32 bits wide. If it's wider, then ! * ! SHA_LONG_LOG2 has to be defined along. ! * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ # if defined(__LP32__) # define SHA_LONG unsigned long # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) # define SHA_LONG unsigned long # define SHA_LONG_LOG2 3 # else # define SHA_LONG unsigned int # endif # define SHA_LBLOCK 16 # define SHA_CBLOCK (SHA_LBLOCK*4)/* SHA treats input data as a * contiguous array of 32 bit wide * big-endian values. */ # define SHA_LAST_BLOCK (SHA_CBLOCK-8) # define SHA_DIGEST_LENGTH 20 typedef struct SHAstate_st { SHA_LONG h0, h1, h2, h3, h4; SHA_LONG Nl, Nh; SHA_LONG data[SHA_LBLOCK]; unsigned int num; } SHA_CTX; # ifndef OPENSSL_NO_SHA0 # ifdef OPENSSL_FIPS int private_SHA_Init(SHA_CTX *c); # endif int SHA_Init(SHA_CTX *c); int SHA_Update(SHA_CTX *c, const void *data, size_t len); int SHA_Final(unsigned char *md, SHA_CTX *c); unsigned char *SHA(const unsigned char *d, size_t n, unsigned char *md); void SHA_Transform(SHA_CTX *c, const unsigned char *data); # endif # ifndef OPENSSL_NO_SHA1 # ifdef OPENSSL_FIPS int private_SHA1_Init(SHA_CTX *c); # endif int SHA1_Init(SHA_CTX *c); int SHA1_Update(SHA_CTX *c, const void *data, size_t len); int SHA1_Final(unsigned char *md, SHA_CTX *c); unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md); void SHA1_Transform(SHA_CTX *c, const unsigned char *data); # endif # define SHA256_CBLOCK (SHA_LBLOCK*4)/* SHA-256 treats input data as a * contiguous array of 32 bit wide * big-endian values. */ # define SHA224_DIGEST_LENGTH 28 # define SHA256_DIGEST_LENGTH 32 typedef struct SHA256state_st { SHA_LONG h[8]; SHA_LONG Nl, Nh; SHA_LONG data[SHA_LBLOCK]; unsigned int num, md_len; } SHA256_CTX; # ifndef OPENSSL_NO_SHA256 # ifdef OPENSSL_FIPS int private_SHA224_Init(SHA256_CTX *c); int private_SHA256_Init(SHA256_CTX *c); # endif int SHA224_Init(SHA256_CTX *c); int SHA224_Update(SHA256_CTX *c, const void *data, size_t len); int SHA224_Final(unsigned char *md, SHA256_CTX *c); unsigned char *SHA224(const unsigned char *d, size_t n, unsigned char *md); int SHA256_Init(SHA256_CTX *c); int SHA256_Update(SHA256_CTX *c, const void *data, size_t len); int SHA256_Final(unsigned char *md, SHA256_CTX *c); unsigned char *SHA256(const unsigned char *d, size_t n, unsigned char *md); void SHA256_Transform(SHA256_CTX *c, const unsigned char *data); # endif # define SHA384_DIGEST_LENGTH 48 # define SHA512_DIGEST_LENGTH 64 # ifndef OPENSSL_NO_SHA512 /* * Unlike 32-bit digest algorithms, SHA-512 *relies* on SHA_LONG64 * being exactly 64-bit wide. See Implementation Notes in sha512.c * for further details. */ /* * SHA-512 treats input data as a * contiguous array of 64 bit * wide big-endian values. */ # define SHA512_CBLOCK (SHA_LBLOCK*8) # if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__) # define SHA_LONG64 unsigned __int64 # define U64(C) C##UI64 # elif defined(__arch64__) # define SHA_LONG64 unsigned long # define U64(C) C##UL # else # define SHA_LONG64 unsigned long long # define U64(C) C##ULL # endif typedef struct SHA512state_st { SHA_LONG64 h[8]; SHA_LONG64 Nl, Nh; union { SHA_LONG64 d[SHA_LBLOCK]; unsigned char p[SHA512_CBLOCK]; } u; unsigned int num, md_len; } SHA512_CTX; # endif # ifndef OPENSSL_NO_SHA512 # ifdef OPENSSL_FIPS int private_SHA384_Init(SHA512_CTX *c); int private_SHA512_Init(SHA512_CTX *c); # endif int SHA384_Init(SHA512_CTX *c); int SHA384_Update(SHA512_CTX *c, const void *data, size_t len); int SHA384_Final(unsigned char *md, SHA512_CTX *c); unsigned char *SHA384(const unsigned char *d, size_t n, unsigned char *md); int SHA512_Init(SHA512_CTX *c); int SHA512_Update(SHA512_CTX *c, const void *data, size_t len); int SHA512_Final(unsigned char *md, SHA512_CTX *c); unsigned char *SHA512(const unsigned char *d, size_t n, unsigned char *md); void SHA512_Transform(SHA512_CTX *c, const unsigned char *data); # endif #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/srp.h ================================================ /* crypto/srp/srp.h */ /* * Written by Christophe Renou (christophe.renou@edelweb.fr) with the * precious help of Peter Sylvester (peter.sylvester@edelweb.fr) for the * EdelKey project and contributed to the OpenSSL project 2004. */ /* ==================================================================== * Copyright (c) 2004 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef __SRP_H__ # define __SRP_H__ # ifndef OPENSSL_NO_SRP # include # include #ifdef __cplusplus extern "C" { #endif # include # include # include typedef struct SRP_gN_cache_st { char *b64_bn; BIGNUM *bn; } SRP_gN_cache; DECLARE_STACK_OF(SRP_gN_cache) typedef struct SRP_user_pwd_st { /* Owned by us. */ char *id; BIGNUM *s; BIGNUM *v; /* Not owned by us. */ const BIGNUM *g; const BIGNUM *N; /* Owned by us. */ char *info; } SRP_user_pwd; DECLARE_STACK_OF(SRP_user_pwd) void SRP_user_pwd_free(SRP_user_pwd *user_pwd); typedef struct SRP_VBASE_st { STACK_OF(SRP_user_pwd) *users_pwd; STACK_OF(SRP_gN_cache) *gN_cache; /* to simulate a user */ char *seed_key; BIGNUM *default_g; BIGNUM *default_N; } SRP_VBASE; /* * Structure interne pour retenir les couples N et g */ typedef struct SRP_gN_st { char *id; BIGNUM *g; BIGNUM *N; } SRP_gN; DECLARE_STACK_OF(SRP_gN) SRP_VBASE *SRP_VBASE_new(char *seed_key); int SRP_VBASE_free(SRP_VBASE *vb); int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); /* This method ignores the configured seed and fails for an unknown user. */ SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username); /* NOTE: unlike in SRP_VBASE_get_by_user, caller owns the returned pointer.*/ SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username); char *SRP_create_verifier(const char *user, const char *pass, char **salt, char **verifier, const char *N, const char *g); int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt, BIGNUM **verifier, BIGNUM *N, BIGNUM *g); # define SRP_NO_ERROR 0 # define SRP_ERR_VBASE_INCOMPLETE_FILE 1 # define SRP_ERR_VBASE_BN_LIB 2 # define SRP_ERR_OPEN_FILE 3 # define SRP_ERR_MEMORY 4 # define DB_srptype 0 # define DB_srpverifier 1 # define DB_srpsalt 2 # define DB_srpid 3 # define DB_srpgN 4 # define DB_srpinfo 5 # undef DB_NUMBER # define DB_NUMBER 6 # define DB_SRP_INDEX 'I' # define DB_SRP_VALID 'V' # define DB_SRP_REVOKED 'R' # define DB_SRP_MODIF 'v' /* see srp.c */ char *SRP_check_known_gN_param(BIGNUM *g, BIGNUM *N); SRP_gN *SRP_get_default_gN(const char *id); /* server side .... */ BIGNUM *SRP_Calc_server_key(BIGNUM *A, BIGNUM *v, BIGNUM *u, BIGNUM *b, BIGNUM *N); BIGNUM *SRP_Calc_B(BIGNUM *b, BIGNUM *N, BIGNUM *g, BIGNUM *v); int SRP_Verify_A_mod_N(BIGNUM *A, BIGNUM *N); BIGNUM *SRP_Calc_u(BIGNUM *A, BIGNUM *B, BIGNUM *N); /* client side .... */ BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass); BIGNUM *SRP_Calc_A(BIGNUM *a, BIGNUM *N, BIGNUM *g); BIGNUM *SRP_Calc_client_key(BIGNUM *N, BIGNUM *B, BIGNUM *g, BIGNUM *x, BIGNUM *a, BIGNUM *u); int SRP_Verify_B_mod_N(BIGNUM *B, BIGNUM *N); # define SRP_MINIMAL_N 1024 #ifdef __cplusplus } #endif # endif #endif ================================================ FILE: third_party/include/openssl/srtp.h ================================================ /* ssl/srtp.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* * DTLS code by Eric Rescorla * * Copyright (C) 2006, Network Resonance, Inc. Copyright (C) 2011, RTFM, Inc. */ #ifndef HEADER_D1_SRTP_H # define HEADER_D1_SRTP_H # include #ifdef __cplusplus extern "C" { #endif # define SRTP_AES128_CM_SHA1_80 0x0001 # define SRTP_AES128_CM_SHA1_32 0x0002 # define SRTP_AES128_F8_SHA1_80 0x0003 # define SRTP_AES128_F8_SHA1_32 0x0004 # define SRTP_NULL_SHA1_80 0x0005 # define SRTP_NULL_SHA1_32 0x0006 # ifndef OPENSSL_NO_SRTP int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles); STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *ssl); SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s); # endif #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ssl.h ================================================ /* ssl/ssl.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECC cipher suite support in OpenSSL originally developed by * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ /* ==================================================================== * Copyright 2005 Nokia. All rights reserved. * * The portions of the attached software ("Contribution") is developed by * Nokia Corporation and is licensed pursuant to the OpenSSL open source * license. * * The Contribution, originally written by Mika Kousa and Pasi Eronen of * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites * support (see RFC 4279) to OpenSSL. * * No patent licenses or other rights except those expressly stated in * the OpenSSL open source license shall be deemed granted or received * expressly, by implication, estoppel, or otherwise. * * No assurances are provided by Nokia that the Contribution does not * infringe the patent or other intellectual property rights of any third * party or that the license provides you with all the necessary rights * to make use of the Contribution. * * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR * OTHERWISE. */ #ifndef HEADER_SSL_H # define HEADER_SSL_H # include # ifndef OPENSSL_NO_COMP # include # endif # ifndef OPENSSL_NO_BIO # include # endif # ifndef OPENSSL_NO_DEPRECATED # ifndef OPENSSL_NO_X509 # include # endif # include # include # include # endif # include # include # include # include # include #ifdef __cplusplus extern "C" { #endif /* SSLeay version number for ASN.1 encoding of the session information */ /*- * Version 0 - initial version * Version 1 - added the optional peer certificate */ # define SSL_SESSION_ASN1_VERSION 0x0001 /* text strings for the ciphers */ # define SSL_TXT_NULL_WITH_MD5 SSL2_TXT_NULL_WITH_MD5 # define SSL_TXT_RC4_128_WITH_MD5 SSL2_TXT_RC4_128_WITH_MD5 # define SSL_TXT_RC4_128_EXPORT40_WITH_MD5 SSL2_TXT_RC4_128_EXPORT40_WITH_MD5 # define SSL_TXT_RC2_128_CBC_WITH_MD5 SSL2_TXT_RC2_128_CBC_WITH_MD5 # define SSL_TXT_RC2_128_CBC_EXPORT40_WITH_MD5 SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5 # define SSL_TXT_IDEA_128_CBC_WITH_MD5 SSL2_TXT_IDEA_128_CBC_WITH_MD5 # define SSL_TXT_DES_64_CBC_WITH_MD5 SSL2_TXT_DES_64_CBC_WITH_MD5 # define SSL_TXT_DES_64_CBC_WITH_SHA SSL2_TXT_DES_64_CBC_WITH_SHA # define SSL_TXT_DES_192_EDE3_CBC_WITH_MD5 SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5 # define SSL_TXT_DES_192_EDE3_CBC_WITH_SHA SSL2_TXT_DES_192_EDE3_CBC_WITH_SHA /* * VRS Additional Kerberos5 entries */ # define SSL_TXT_KRB5_DES_64_CBC_SHA SSL3_TXT_KRB5_DES_64_CBC_SHA # define SSL_TXT_KRB5_DES_192_CBC3_SHA SSL3_TXT_KRB5_DES_192_CBC3_SHA # define SSL_TXT_KRB5_RC4_128_SHA SSL3_TXT_KRB5_RC4_128_SHA # define SSL_TXT_KRB5_IDEA_128_CBC_SHA SSL3_TXT_KRB5_IDEA_128_CBC_SHA # define SSL_TXT_KRB5_DES_64_CBC_MD5 SSL3_TXT_KRB5_DES_64_CBC_MD5 # define SSL_TXT_KRB5_DES_192_CBC3_MD5 SSL3_TXT_KRB5_DES_192_CBC3_MD5 # define SSL_TXT_KRB5_RC4_128_MD5 SSL3_TXT_KRB5_RC4_128_MD5 # define SSL_TXT_KRB5_IDEA_128_CBC_MD5 SSL3_TXT_KRB5_IDEA_128_CBC_MD5 # define SSL_TXT_KRB5_DES_40_CBC_SHA SSL3_TXT_KRB5_DES_40_CBC_SHA # define SSL_TXT_KRB5_RC2_40_CBC_SHA SSL3_TXT_KRB5_RC2_40_CBC_SHA # define SSL_TXT_KRB5_RC4_40_SHA SSL3_TXT_KRB5_RC4_40_SHA # define SSL_TXT_KRB5_DES_40_CBC_MD5 SSL3_TXT_KRB5_DES_40_CBC_MD5 # define SSL_TXT_KRB5_RC2_40_CBC_MD5 SSL3_TXT_KRB5_RC2_40_CBC_MD5 # define SSL_TXT_KRB5_RC4_40_MD5 SSL3_TXT_KRB5_RC4_40_MD5 # define SSL_TXT_KRB5_DES_40_CBC_SHA SSL3_TXT_KRB5_DES_40_CBC_SHA # define SSL_TXT_KRB5_DES_40_CBC_MD5 SSL3_TXT_KRB5_DES_40_CBC_MD5 # define SSL_TXT_KRB5_DES_64_CBC_SHA SSL3_TXT_KRB5_DES_64_CBC_SHA # define SSL_TXT_KRB5_DES_64_CBC_MD5 SSL3_TXT_KRB5_DES_64_CBC_MD5 # define SSL_TXT_KRB5_DES_192_CBC3_SHA SSL3_TXT_KRB5_DES_192_CBC3_SHA # define SSL_TXT_KRB5_DES_192_CBC3_MD5 SSL3_TXT_KRB5_DES_192_CBC3_MD5 # define SSL_MAX_KRB5_PRINCIPAL_LENGTH 256 # define SSL_MAX_SSL_SESSION_ID_LENGTH 32 # define SSL_MAX_SID_CTX_LENGTH 32 # define SSL_MIN_RSA_MODULUS_LENGTH_IN_BYTES (512/8) # define SSL_MAX_KEY_ARG_LENGTH 8 # define SSL_MAX_MASTER_KEY_LENGTH 48 /* These are used to specify which ciphers to use and not to use */ # define SSL_TXT_EXP40 "EXPORT40" # define SSL_TXT_EXP56 "EXPORT56" # define SSL_TXT_LOW "LOW" # define SSL_TXT_MEDIUM "MEDIUM" # define SSL_TXT_HIGH "HIGH" # define SSL_TXT_FIPS "FIPS" # define SSL_TXT_kFZA "kFZA"/* unused! */ # define SSL_TXT_aFZA "aFZA"/* unused! */ # define SSL_TXT_eFZA "eFZA"/* unused! */ # define SSL_TXT_FZA "FZA"/* unused! */ # define SSL_TXT_aNULL "aNULL" # define SSL_TXT_eNULL "eNULL" # define SSL_TXT_NULL "NULL" # define SSL_TXT_kRSA "kRSA" # define SSL_TXT_kDHr "kDHr" # define SSL_TXT_kDHd "kDHd" # define SSL_TXT_kDH "kDH" # define SSL_TXT_kEDH "kEDH" # define SSL_TXT_kDHE "kDHE"/* alias for kEDH */ # define SSL_TXT_kKRB5 "kKRB5" # define SSL_TXT_kECDHr "kECDHr" # define SSL_TXT_kECDHe "kECDHe" # define SSL_TXT_kECDH "kECDH" # define SSL_TXT_kEECDH "kEECDH" # define SSL_TXT_kECDHE "kECDHE"/* alias for kEECDH */ # define SSL_TXT_kPSK "kPSK" # define SSL_TXT_kGOST "kGOST" # define SSL_TXT_kSRP "kSRP" # define SSL_TXT_aRSA "aRSA" # define SSL_TXT_aDSS "aDSS" # define SSL_TXT_aDH "aDH" # define SSL_TXT_aECDH "aECDH" # define SSL_TXT_aKRB5 "aKRB5" # define SSL_TXT_aECDSA "aECDSA" # define SSL_TXT_aPSK "aPSK" # define SSL_TXT_aGOST94 "aGOST94" # define SSL_TXT_aGOST01 "aGOST01" # define SSL_TXT_aGOST "aGOST" # define SSL_TXT_aSRP "aSRP" # define SSL_TXT_DSS "DSS" # define SSL_TXT_DH "DH" # define SSL_TXT_EDH "EDH"/* same as "kEDH:-ADH" */ # define SSL_TXT_DHE "DHE"/* alias for EDH */ # define SSL_TXT_ADH "ADH" # define SSL_TXT_RSA "RSA" # define SSL_TXT_ECDH "ECDH" # define SSL_TXT_EECDH "EECDH"/* same as "kEECDH:-AECDH" */ # define SSL_TXT_ECDHE "ECDHE"/* alias for ECDHE" */ # define SSL_TXT_AECDH "AECDH" # define SSL_TXT_ECDSA "ECDSA" # define SSL_TXT_KRB5 "KRB5" # define SSL_TXT_PSK "PSK" # define SSL_TXT_SRP "SRP" # define SSL_TXT_DES "DES" # define SSL_TXT_3DES "3DES" # define SSL_TXT_RC4 "RC4" # define SSL_TXT_RC2 "RC2" # define SSL_TXT_IDEA "IDEA" # define SSL_TXT_SEED "SEED" # define SSL_TXT_AES128 "AES128" # define SSL_TXT_AES256 "AES256" # define SSL_TXT_AES "AES" # define SSL_TXT_AES_GCM "AESGCM" # define SSL_TXT_CAMELLIA128 "CAMELLIA128" # define SSL_TXT_CAMELLIA256 "CAMELLIA256" # define SSL_TXT_CAMELLIA "CAMELLIA" # define SSL_TXT_MD5 "MD5" # define SSL_TXT_SHA1 "SHA1" # define SSL_TXT_SHA "SHA"/* same as "SHA1" */ # define SSL_TXT_GOST94 "GOST94" # define SSL_TXT_GOST89MAC "GOST89MAC" # define SSL_TXT_SHA256 "SHA256" # define SSL_TXT_SHA384 "SHA384" # define SSL_TXT_SSLV2 "SSLv2" # define SSL_TXT_SSLV3 "SSLv3" # define SSL_TXT_TLSV1 "TLSv1" # define SSL_TXT_TLSV1_1 "TLSv1.1" # define SSL_TXT_TLSV1_2 "TLSv1.2" # define SSL_TXT_EXP "EXP" # define SSL_TXT_EXPORT "EXPORT" # define SSL_TXT_ALL "ALL" /*- * COMPLEMENTOF* definitions. These identifiers are used to (de-select) * ciphers normally not being used. * Example: "RC4" will activate all ciphers using RC4 including ciphers * without authentication, which would normally disabled by DEFAULT (due * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT" * will make sure that it is also disabled in the specific selection. * COMPLEMENTOF* identifiers are portable between version, as adjustments * to the default cipher setup will also be included here. * * COMPLEMENTOFDEFAULT does not experience the same special treatment that * DEFAULT gets, as only selection is being done and no sorting as needed * for DEFAULT. */ # define SSL_TXT_CMPALL "COMPLEMENTOFALL" # define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT" /* * The following cipher list is used by default. It also is substituted when * an application-defined cipher list string starts with 'DEFAULT'. */ # define SSL_DEFAULT_CIPHER_LIST "ALL:!EXPORT:!LOW:!aNULL:!eNULL:!SSLv2" /* * As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always * starts with a reasonable order, and all we have to do for DEFAULT is * throwing out anonymous and unencrypted ciphersuites! (The latter are not * actually enabled by ALL, but "ALL:RSA" would enable some of them.) */ /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */ # define SSL_SENT_SHUTDOWN 1 # define SSL_RECEIVED_SHUTDOWN 2 #ifdef __cplusplus } #endif #ifdef __cplusplus extern "C" { #endif # if (defined(OPENSSL_NO_RSA) || defined(OPENSSL_NO_MD5)) && !defined(OPENSSL_NO_SSL2) # define OPENSSL_NO_SSL2 # endif # define SSL_FILETYPE_ASN1 X509_FILETYPE_ASN1 # define SSL_FILETYPE_PEM X509_FILETYPE_PEM /* * This is needed to stop compilers complaining about the 'struct ssl_st *' * function parameters used to prototype callbacks in SSL_CTX. */ typedef struct ssl_st *ssl_crock_st; typedef struct tls_session_ticket_ext_st TLS_SESSION_TICKET_EXT; typedef struct ssl_method_st SSL_METHOD; typedef struct ssl_cipher_st SSL_CIPHER; typedef struct ssl_session_st SSL_SESSION; typedef struct tls_sigalgs_st TLS_SIGALGS; typedef struct ssl_conf_ctx_st SSL_CONF_CTX; DECLARE_STACK_OF(SSL_CIPHER) /* SRTP protection profiles for use with the use_srtp extension (RFC 5764)*/ typedef struct srtp_protection_profile_st { const char *name; unsigned long id; } SRTP_PROTECTION_PROFILE; DECLARE_STACK_OF(SRTP_PROTECTION_PROFILE) typedef int (*tls_session_ticket_ext_cb_fn) (SSL *s, const unsigned char *data, int len, void *arg); typedef int (*tls_session_secret_cb_fn) (SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg); # ifndef OPENSSL_NO_TLSEXT /* Typedefs for handling custom extensions */ typedef int (*custom_ext_add_cb) (SSL *s, unsigned int ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg); typedef void (*custom_ext_free_cb) (SSL *s, unsigned int ext_type, const unsigned char *out, void *add_arg); typedef int (*custom_ext_parse_cb) (SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg); # endif # ifndef OPENSSL_NO_SSL_INTERN /* used to hold info on the particular ciphers used */ struct ssl_cipher_st { int valid; const char *name; /* text name */ unsigned long id; /* id, 4 bytes, first is version */ /* * changed in 0.9.9: these four used to be portions of a single value * 'algorithms' */ unsigned long algorithm_mkey; /* key exchange algorithm */ unsigned long algorithm_auth; /* server authentication */ unsigned long algorithm_enc; /* symmetric encryption */ unsigned long algorithm_mac; /* symmetric authentication */ unsigned long algorithm_ssl; /* (major) protocol version */ unsigned long algo_strength; /* strength and export flags */ unsigned long algorithm2; /* Extra flags */ int strength_bits; /* Number of bits really used */ int alg_bits; /* Number of bits for algorithm */ }; /* Used to hold functions for SSLv2 or SSLv3/TLSv1 functions */ struct ssl_method_st { int version; int (*ssl_new) (SSL *s); void (*ssl_clear) (SSL *s); void (*ssl_free) (SSL *s); int (*ssl_accept) (SSL *s); int (*ssl_connect) (SSL *s); int (*ssl_read) (SSL *s, void *buf, int len); int (*ssl_peek) (SSL *s, void *buf, int len); int (*ssl_write) (SSL *s, const void *buf, int len); int (*ssl_shutdown) (SSL *s); int (*ssl_renegotiate) (SSL *s); int (*ssl_renegotiate_check) (SSL *s); long (*ssl_get_message) (SSL *s, int st1, int stn, int mt, long max, int *ok); int (*ssl_read_bytes) (SSL *s, int type, unsigned char *buf, int len, int peek); int (*ssl_write_bytes) (SSL *s, int type, const void *buf_, int len); int (*ssl_dispatch_alert) (SSL *s); long (*ssl_ctrl) (SSL *s, int cmd, long larg, void *parg); long (*ssl_ctx_ctrl) (SSL_CTX *ctx, int cmd, long larg, void *parg); const SSL_CIPHER *(*get_cipher_by_char) (const unsigned char *ptr); int (*put_cipher_by_char) (const SSL_CIPHER *cipher, unsigned char *ptr); int (*ssl_pending) (const SSL *s); int (*num_ciphers) (void); const SSL_CIPHER *(*get_cipher) (unsigned ncipher); const struct ssl_method_st *(*get_ssl_method) (int version); long (*get_timeout) (void); struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ int (*ssl_version) (void); long (*ssl_callback_ctrl) (SSL *s, int cb_id, void (*fp) (void)); long (*ssl_ctx_callback_ctrl) (SSL_CTX *s, int cb_id, void (*fp) (void)); }; /*- * Lets make this into an ASN.1 type structure as follows * SSL_SESSION_ID ::= SEQUENCE { * version INTEGER, -- structure version number * SSLversion INTEGER, -- SSL version number * Cipher OCTET STRING, -- the 3 byte cipher ID * Session_ID OCTET STRING, -- the Session ID * Master_key OCTET STRING, -- the master key * KRB5_principal OCTET STRING -- optional Kerberos principal * Key_Arg [ 0 ] IMPLICIT OCTET STRING, -- the optional Key argument * Time [ 1 ] EXPLICIT INTEGER, -- optional Start Time * Timeout [ 2 ] EXPLICIT INTEGER, -- optional Timeout ins seconds * Peer [ 3 ] EXPLICIT X509, -- optional Peer Certificate * Session_ID_context [ 4 ] EXPLICIT OCTET STRING, -- the Session ID context * Verify_result [ 5 ] EXPLICIT INTEGER, -- X509_V_... code for `Peer' * HostName [ 6 ] EXPLICIT OCTET STRING, -- optional HostName from servername TLS extension * PSK_identity_hint [ 7 ] EXPLICIT OCTET STRING, -- optional PSK identity hint * PSK_identity [ 8 ] EXPLICIT OCTET STRING, -- optional PSK identity * Ticket_lifetime_hint [9] EXPLICIT INTEGER, -- server's lifetime hint for session ticket * Ticket [10] EXPLICIT OCTET STRING, -- session ticket (clients only) * Compression_meth [11] EXPLICIT OCTET STRING, -- optional compression method * SRP_username [ 12 ] EXPLICIT OCTET STRING -- optional SRP username * } * Look in ssl/ssl_asn1.c for more details * I'm using EXPLICIT tags so I can read the damn things using asn1parse :-). */ struct ssl_session_st { int ssl_version; /* what ssl version session info is being * kept in here? */ /* only really used in SSLv2 */ unsigned int key_arg_length; unsigned char key_arg[SSL_MAX_KEY_ARG_LENGTH]; int master_key_length; unsigned char master_key[SSL_MAX_MASTER_KEY_LENGTH]; /* session_id - valid? */ unsigned int session_id_length; unsigned char session_id[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* * this is used to determine whether the session is being reused in the * appropriate context. It is up to the application to set this, via * SSL_new */ unsigned int sid_ctx_length; unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH]; # ifndef OPENSSL_NO_KRB5 unsigned int krb5_client_princ_len; unsigned char krb5_client_princ[SSL_MAX_KRB5_PRINCIPAL_LENGTH]; # endif /* OPENSSL_NO_KRB5 */ # ifndef OPENSSL_NO_PSK char *psk_identity_hint; char *psk_identity; # endif /* * Used to indicate that session resumption is not allowed. Applications * can also set this bit for a new session via not_resumable_session_cb * to disable session caching and tickets. */ int not_resumable; /* The cert is the certificate used to establish this connection */ struct sess_cert_st /* SESS_CERT */ *sess_cert; /* * This is the cert for the other end. On clients, it will be the same as * sess_cert->peer_key->x509 (the latter is not enough as sess_cert is * not retained in the external representation of sessions, see * ssl_asn1.c). */ X509 *peer; /* * when app_verify_callback accepts a session where the peer's * certificate is not ok, we must remember the error for session reuse: */ long verify_result; /* only for servers */ int references; long timeout; long time; unsigned int compress_meth; /* Need to lookup the method */ const SSL_CIPHER *cipher; unsigned long cipher_id; /* when ASN.1 loaded, this needs to be used * to load the 'cipher' structure */ STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ CRYPTO_EX_DATA ex_data; /* application specific data */ /* * These are used to make removal of session-ids more efficient and to * implement a maximum cache size. */ struct ssl_session_st *prev, *next; # ifndef OPENSSL_NO_TLSEXT char *tlsext_hostname; # ifndef OPENSSL_NO_EC size_t tlsext_ecpointformatlist_length; unsigned char *tlsext_ecpointformatlist; /* peer's list */ size_t tlsext_ellipticcurvelist_length; unsigned char *tlsext_ellipticcurvelist; /* peer's list */ # endif /* OPENSSL_NO_EC */ /* RFC4507 info */ unsigned char *tlsext_tick; /* Session ticket */ size_t tlsext_ticklen; /* Session ticket length */ long tlsext_tick_lifetime_hint; /* Session lifetime hint in seconds */ # endif # ifndef OPENSSL_NO_SRP char *srp_username; # endif }; # endif # define SSL_OP_MICROSOFT_SESS_ID_BUG 0x00000001L # define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x00000002L /* Allow initial connection to servers that don't support RI */ # define SSL_OP_LEGACY_SERVER_CONNECT 0x00000004L # define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x00000008L # define SSL_OP_TLSEXT_PADDING 0x00000010L # define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0x00000020L # define SSL_OP_SAFARI_ECDHE_ECDSA_BUG 0x00000040L # define SSL_OP_SSLEAY_080_CLIENT_DH_BUG 0x00000080L # define SSL_OP_TLS_D5_BUG 0x00000100L # define SSL_OP_TLS_BLOCK_PADDING_BUG 0x00000200L /* Hasn't done anything since OpenSSL 0.9.7h, retained for compatibility */ # define SSL_OP_MSIE_SSLV2_RSA_PADDING 0x0 /* Refers to ancient SSLREF and SSLv2, retained for compatibility */ # define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0x0 /* * Disable SSL 3.0/TLS 1.0 CBC vulnerability workaround that was added in * OpenSSL 0.9.6d. Usually (depending on the application protocol) the * workaround is not needed. Unfortunately some broken SSL/TLS * implementations cannot handle it at all, which is why we include it in * SSL_OP_ALL. */ /* added in 0.9.6e */ # define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0x00000800L /* * SSL_OP_ALL: various bug workarounds that should be rather harmless. This * used to be 0x000FFFFFL before 0.9.7. */ # define SSL_OP_ALL 0x80000BFFL /* DTLS options */ # define SSL_OP_NO_QUERY_MTU 0x00001000L /* Turn on Cookie Exchange (on relevant for servers) */ # define SSL_OP_COOKIE_EXCHANGE 0x00002000L /* Don't use RFC4507 ticket extension */ # define SSL_OP_NO_TICKET 0x00004000L /* Use Cisco's "speshul" version of DTLS_BAD_VER (as client) */ # define SSL_OP_CISCO_ANYCONNECT 0x00008000L /* As server, disallow session resumption on renegotiation */ # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L /* Don't use compression even if supported */ # define SSL_OP_NO_COMPRESSION 0x00020000L /* Permit unsafe legacy renegotiation */ # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x00040000L /* If set, always create a new key when using tmp_ecdh parameters */ # define SSL_OP_SINGLE_ECDH_USE 0x00080000L /* Does nothing: retained for compatibility */ # define SSL_OP_SINGLE_DH_USE 0x00100000L /* Does nothing: retained for compatibiity */ # define SSL_OP_EPHEMERAL_RSA 0x0 /* * Set on servers to choose the cipher according to the server's preferences */ # define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L /* * If set, a server will allow a client to issue a SSLv3.0 version number as * latest version supported in the premaster secret, even when TLSv1.0 * (version 3.1) was announced in the client hello. Normally this is * forbidden to prevent version rollback attacks. */ # define SSL_OP_TLS_ROLLBACK_BUG 0x00800000L # define SSL_OP_NO_SSLv2 0x01000000L # define SSL_OP_NO_SSLv3 0x02000000L # define SSL_OP_NO_TLSv1 0x04000000L # define SSL_OP_NO_TLSv1_2 0x08000000L # define SSL_OP_NO_TLSv1_1 0x10000000L # define SSL_OP_NO_DTLSv1 0x04000000L # define SSL_OP_NO_DTLSv1_2 0x08000000L # define SSL_OP_NO_SSL_MASK (SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|\ SSL_OP_NO_TLSv1|SSL_OP_NO_TLSv1_1|SSL_OP_NO_TLSv1_2) /* * These next two were never actually used for anything since SSLeay zap so * we have some more flags. */ /* * The next flag deliberately changes the ciphertest, this is a check for the * PKCS#1 attack */ # define SSL_OP_PKCS1_CHECK_1 0x0 # define SSL_OP_PKCS1_CHECK_2 0x0 # define SSL_OP_NETSCAPE_CA_DN_BUG 0x20000000L # define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x40000000L /* * Make server add server-hello extension from early version of cryptopro * draft, when GOST ciphersuite is negotiated. Required for interoperability * with CryptoPro CSP 3.x */ # define SSL_OP_CRYPTOPRO_TLSEXT_BUG 0x80000000L /* * Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success * when just a single record has been written): */ # define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001L /* * Make it possible to retry SSL_write() with changed buffer location (buffer * contents must stay the same!); this is not the default to avoid the * misconception that non-blocking SSL_write() behaves like non-blocking * write(): */ # define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002L /* * Never bother the application with retries if the transport is blocking: */ # define SSL_MODE_AUTO_RETRY 0x00000004L /* Don't attempt to automatically build certificate chain */ # define SSL_MODE_NO_AUTO_CHAIN 0x00000008L /* * Save RAM by releasing read and write buffers when they're empty. (SSL3 and * TLS only.) "Released" buffers are put onto a free-list in the context or * just freed (depending on the context's setting for freelist_max_len). */ # define SSL_MODE_RELEASE_BUFFERS 0x00000010L /* * Send the current time in the Random fields of the ClientHello and * ServerHello records for compatibility with hypothetical implementations * that require it. */ # define SSL_MODE_SEND_CLIENTHELLO_TIME 0x00000020L # define SSL_MODE_SEND_SERVERHELLO_TIME 0x00000040L /* * Send TLS_FALLBACK_SCSV in the ClientHello. To be set only by applications * that reconnect with a downgraded protocol version; see * draft-ietf-tls-downgrade-scsv-00 for details. DO NOT ENABLE THIS if your * application attempts a normal handshake. Only use this in explicit * fallback retries, following the guidance in * draft-ietf-tls-downgrade-scsv-00. */ # define SSL_MODE_SEND_FALLBACK_SCSV 0x00000080L /* Cert related flags */ /* * Many implementations ignore some aspects of the TLS standards such as * enforcing certifcate chain algorithms. When this is set we enforce them. */ # define SSL_CERT_FLAG_TLS_STRICT 0x00000001L /* Suite B modes, takes same values as certificate verify flags */ # define SSL_CERT_FLAG_SUITEB_128_LOS_ONLY 0x10000 /* Suite B 192 bit only mode */ # define SSL_CERT_FLAG_SUITEB_192_LOS 0x20000 /* Suite B 128 bit mode allowing 192 bit algorithms */ # define SSL_CERT_FLAG_SUITEB_128_LOS 0x30000 /* Perform all sorts of protocol violations for testing purposes */ # define SSL_CERT_FLAG_BROKEN_PROTOCOL 0x10000000 /* Flags for building certificate chains */ /* Treat any existing certificates as untrusted CAs */ # define SSL_BUILD_CHAIN_FLAG_UNTRUSTED 0x1 /* Don't include root CA in chain */ # define SSL_BUILD_CHAIN_FLAG_NO_ROOT 0x2 /* Just check certificates already there */ # define SSL_BUILD_CHAIN_FLAG_CHECK 0x4 /* Ignore verification errors */ # define SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR 0x8 /* Clear verification errors from queue */ # define SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR 0x10 /* Flags returned by SSL_check_chain */ /* Certificate can be used with this session */ # define CERT_PKEY_VALID 0x1 /* Certificate can also be used for signing */ # define CERT_PKEY_SIGN 0x2 /* EE certificate signing algorithm OK */ # define CERT_PKEY_EE_SIGNATURE 0x10 /* CA signature algorithms OK */ # define CERT_PKEY_CA_SIGNATURE 0x20 /* EE certificate parameters OK */ # define CERT_PKEY_EE_PARAM 0x40 /* CA certificate parameters OK */ # define CERT_PKEY_CA_PARAM 0x80 /* Signing explicitly allowed as opposed to SHA1 fallback */ # define CERT_PKEY_EXPLICIT_SIGN 0x100 /* Client CA issuer names match (always set for server cert) */ # define CERT_PKEY_ISSUER_NAME 0x200 /* Cert type matches client types (always set for server cert) */ # define CERT_PKEY_CERT_TYPE 0x400 /* Cert chain suitable to Suite B */ # define CERT_PKEY_SUITEB 0x800 # define SSL_CONF_FLAG_CMDLINE 0x1 # define SSL_CONF_FLAG_FILE 0x2 # define SSL_CONF_FLAG_CLIENT 0x4 # define SSL_CONF_FLAG_SERVER 0x8 # define SSL_CONF_FLAG_SHOW_ERRORS 0x10 # define SSL_CONF_FLAG_CERTIFICATE 0x20 /* Configuration value types */ # define SSL_CONF_TYPE_UNKNOWN 0x0 # define SSL_CONF_TYPE_STRING 0x1 # define SSL_CONF_TYPE_FILE 0x2 # define SSL_CONF_TYPE_DIR 0x3 /* * Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, they * cannot be used to clear bits. */ # define SSL_CTX_set_options(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL) # define SSL_CTX_clear_options(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_OPTIONS,(op),NULL) # define SSL_CTX_get_options(ctx) \ SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,0,NULL) # define SSL_set_options(ssl,op) \ SSL_ctrl((ssl),SSL_CTRL_OPTIONS,(op),NULL) # define SSL_clear_options(ssl,op) \ SSL_ctrl((ssl),SSL_CTRL_CLEAR_OPTIONS,(op),NULL) # define SSL_get_options(ssl) \ SSL_ctrl((ssl),SSL_CTRL_OPTIONS,0,NULL) # define SSL_CTX_set_mode(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,(op),NULL) # define SSL_CTX_clear_mode(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_MODE,(op),NULL) # define SSL_CTX_get_mode(ctx) \ SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,0,NULL) # define SSL_clear_mode(ssl,op) \ SSL_ctrl((ssl),SSL_CTRL_CLEAR_MODE,(op),NULL) # define SSL_set_mode(ssl,op) \ SSL_ctrl((ssl),SSL_CTRL_MODE,(op),NULL) # define SSL_get_mode(ssl) \ SSL_ctrl((ssl),SSL_CTRL_MODE,0,NULL) # define SSL_set_mtu(ssl, mtu) \ SSL_ctrl((ssl),SSL_CTRL_SET_MTU,(mtu),NULL) # define DTLS_set_link_mtu(ssl, mtu) \ SSL_ctrl((ssl),DTLS_CTRL_SET_LINK_MTU,(mtu),NULL) # define DTLS_get_link_min_mtu(ssl) \ SSL_ctrl((ssl),DTLS_CTRL_GET_LINK_MIN_MTU,0,NULL) # define SSL_get_secure_renegotiation_support(ssl) \ SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL) # ifndef OPENSSL_NO_HEARTBEATS # define SSL_heartbeat(ssl) \ SSL_ctrl((ssl),SSL_CTRL_TLS_EXT_SEND_HEARTBEAT,0,NULL) # endif # define SSL_CTX_set_cert_flags(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_CERT_FLAGS,(op),NULL) # define SSL_set_cert_flags(s,op) \ SSL_ctrl((s),SSL_CTRL_CERT_FLAGS,(op),NULL) # define SSL_CTX_clear_cert_flags(ctx,op) \ SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL) # define SSL_clear_cert_flags(s,op) \ SSL_ctrl((s),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL) void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb) (int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); void SSL_set_msg_callback(SSL *ssl, void (*cb) (int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)); # define SSL_CTX_set_msg_callback_arg(ctx, arg) SSL_CTX_ctrl((ctx), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg)) # define SSL_set_msg_callback_arg(ssl, arg) SSL_ctrl((ssl), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg)) # ifndef OPENSSL_NO_SRP # ifndef OPENSSL_NO_SSL_INTERN typedef struct srp_ctx_st { /* param for all the callbacks */ void *SRP_cb_arg; /* set client Hello login callback */ int (*TLS_ext_srp_username_callback) (SSL *, int *, void *); /* set SRP N/g param callback for verification */ int (*SRP_verify_param_callback) (SSL *, void *); /* set SRP client passwd callback */ char *(*SRP_give_srp_client_pwd_callback) (SSL *, void *); char *login; BIGNUM *N, *g, *s, *B, *A; BIGNUM *a, *b, *v; char *info; int strength; unsigned long srp_Mask; } SRP_CTX; # endif /* see tls_srp.c */ int SSL_SRP_CTX_init(SSL *s); int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx); int SSL_SRP_CTX_free(SSL *ctx); int SSL_CTX_SRP_CTX_free(SSL_CTX *ctx); int SSL_srp_server_param_with_username(SSL *s, int *ad); int SRP_generate_server_master_secret(SSL *s, unsigned char *master_key); int SRP_Calc_A_param(SSL *s); int SRP_generate_client_master_secret(SSL *s, unsigned char *master_key); # endif # if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN32) # define SSL_MAX_CERT_LIST_DEFAULT 1024*30 /* 30k max cert list :-) */ # else # define SSL_MAX_CERT_LIST_DEFAULT 1024*100 /* 100k max cert list :-) */ # endif # define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20) /* * This callback type is used inside SSL_CTX, SSL, and in the functions that * set them. It is used to override the generation of SSL/TLS session IDs in * a server. Return value should be zero on an error, non-zero to proceed. * Also, callbacks should themselves check if the id they generate is unique * otherwise the SSL handshake will fail with an error - callbacks can do * this using the 'ssl' value they're passed by; * SSL_has_matching_session_id(ssl, id, *id_len) The length value passed in * is set at the maximum size the session ID can be. In SSLv2 this is 16 * bytes, whereas SSLv3/TLSv1 it is 32 bytes. The callback can alter this * length to be less if desired, but under SSLv2 session IDs are supposed to * be fixed at 16 bytes so the id will be padded after the callback returns * in this case. It is also an error for the callback to set the size to * zero. */ typedef int (*GEN_SESSION_CB) (const SSL *ssl, unsigned char *id, unsigned int *id_len); typedef struct ssl_comp_st SSL_COMP; # ifndef OPENSSL_NO_SSL_INTERN struct ssl_comp_st { int id; const char *name; # ifndef OPENSSL_NO_COMP COMP_METHOD *method; # else char *method; # endif }; DECLARE_STACK_OF(SSL_COMP) DECLARE_LHASH_OF(SSL_SESSION); struct ssl_ctx_st { const SSL_METHOD *method; STACK_OF(SSL_CIPHER) *cipher_list; /* same as above but sorted for lookup */ STACK_OF(SSL_CIPHER) *cipher_list_by_id; struct x509_store_st /* X509_STORE */ *cert_store; LHASH_OF(SSL_SESSION) *sessions; /* * Most session-ids that will be cached, default is * SSL_SESSION_CACHE_MAX_SIZE_DEFAULT. 0 is unlimited. */ unsigned long session_cache_size; struct ssl_session_st *session_cache_head; struct ssl_session_st *session_cache_tail; /* * This can have one of 2 values, ored together, SSL_SESS_CACHE_CLIENT, * SSL_SESS_CACHE_SERVER, Default is SSL_SESSION_CACHE_SERVER, which * means only SSL_accept which cache SSL_SESSIONS. */ int session_cache_mode; /* * If timeout is not 0, it is the default timeout value set when * SSL_new() is called. This has been put in to make life easier to set * things up */ long session_timeout; /* * If this callback is not null, it will be called each time a session id * is added to the cache. If this function returns 1, it means that the * callback will do a SSL_SESSION_free() when it has finished using it. * Otherwise, on 0, it means the callback has finished with it. If * remove_session_cb is not null, it will be called when a session-id is * removed from the cache. After the call, OpenSSL will * SSL_SESSION_free() it. */ int (*new_session_cb) (struct ssl_st *ssl, SSL_SESSION *sess); void (*remove_session_cb) (struct ssl_ctx_st *ctx, SSL_SESSION *sess); SSL_SESSION *(*get_session_cb) (struct ssl_st *ssl, unsigned char *data, int len, int *copy); struct { int sess_connect; /* SSL new conn - started */ int sess_connect_renegotiate; /* SSL reneg - requested */ int sess_connect_good; /* SSL new conne/reneg - finished */ int sess_accept; /* SSL new accept - started */ int sess_accept_renegotiate; /* SSL reneg - requested */ int sess_accept_good; /* SSL accept/reneg - finished */ int sess_miss; /* session lookup misses */ int sess_timeout; /* reuse attempt on timeouted session */ int sess_cache_full; /* session removed due to full cache */ int sess_hit; /* session reuse actually done */ int sess_cb_hit; /* session-id that was not in the cache was * passed back via the callback. This * indicates that the application is * supplying session-id's from other * processes - spooky :-) */ } stats; int references; /* if defined, these override the X509_verify_cert() calls */ int (*app_verify_callback) (X509_STORE_CTX *, void *); void *app_verify_arg; /* * before OpenSSL 0.9.7, 'app_verify_arg' was ignored * ('app_verify_callback' was called with just one argument) */ /* Default password callback. */ pem_password_cb *default_passwd_callback; /* Default password callback user data. */ void *default_passwd_callback_userdata; /* get client cert callback */ int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); /* cookie generate callback */ int (*app_gen_cookie_cb) (SSL *ssl, unsigned char *cookie, unsigned int *cookie_len); /* verify cookie callback */ int (*app_verify_cookie_cb) (SSL *ssl, unsigned char *cookie, unsigned int cookie_len); CRYPTO_EX_DATA ex_data; const EVP_MD *rsa_md5; /* For SSLv2 - name is 'ssl2-md5' */ const EVP_MD *md5; /* For SSLv3/TLSv1 'ssl3-md5' */ const EVP_MD *sha1; /* For SSLv3/TLSv1 'ssl3->sha1' */ STACK_OF(X509) *extra_certs; STACK_OF(SSL_COMP) *comp_methods; /* stack of SSL_COMP, SSLv3/TLSv1 */ /* Default values used when no per-SSL value is defined follow */ /* used if SSL's info_callback is NULL */ void (*info_callback) (const SSL *ssl, int type, int val); /* what we put in client cert requests */ STACK_OF(X509_NAME) *client_CA; /* * Default values to use in SSL structures follow (these are copied by * SSL_new) */ unsigned long options; unsigned long mode; long max_cert_list; struct cert_st /* CERT */ *cert; int read_ahead; /* callback that allows applications to peek at protocol messages */ void (*msg_callback) (int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg); void *msg_callback_arg; int verify_mode; unsigned int sid_ctx_length; unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH]; /* called 'verify_callback' in the SSL */ int (*default_verify_callback) (int ok, X509_STORE_CTX *ctx); /* Default generate session ID callback. */ GEN_SESSION_CB generate_session_id; X509_VERIFY_PARAM *param; # if 0 int purpose; /* Purpose setting */ int trust; /* Trust setting */ # endif int quiet_shutdown; /* * Maximum amount of data to send in one fragment. actual record size can * be more than this due to padding and MAC overheads. */ unsigned int max_send_fragment; # ifndef OPENSSL_NO_ENGINE /* * Engine to pass requests for client certs to */ ENGINE *client_cert_engine; # endif # ifndef OPENSSL_NO_TLSEXT /* TLS extensions servername callback */ int (*tlsext_servername_callback) (SSL *, int *, void *); void *tlsext_servername_arg; /* RFC 4507 session ticket keys */ unsigned char tlsext_tick_key_name[16]; unsigned char tlsext_tick_hmac_key[16]; unsigned char tlsext_tick_aes_key[16]; /* Callback to support customisation of ticket key setting */ int (*tlsext_ticket_key_cb) (SSL *ssl, unsigned char *name, unsigned char *iv, EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc); /* certificate status request info */ /* Callback for status request */ int (*tlsext_status_cb) (SSL *ssl, void *arg); void *tlsext_status_arg; /* draft-rescorla-tls-opaque-prf-input-00.txt information */ int (*tlsext_opaque_prf_input_callback) (SSL *, void *peerinput, size_t len, void *arg); void *tlsext_opaque_prf_input_callback_arg; # endif # ifndef OPENSSL_NO_PSK char *psk_identity_hint; unsigned int (*psk_client_callback) (SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len); unsigned int (*psk_server_callback) (SSL *ssl, const char *identity, unsigned char *psk, unsigned int max_psk_len); # endif # ifndef OPENSSL_NO_BUF_FREELISTS # define SSL_MAX_BUF_FREELIST_LEN_DEFAULT 32 unsigned int freelist_max_len; struct ssl3_buf_freelist_st *wbuf_freelist; struct ssl3_buf_freelist_st *rbuf_freelist; # endif # ifndef OPENSSL_NO_SRP SRP_CTX srp_ctx; /* ctx for SRP authentication */ # endif # ifndef OPENSSL_NO_TLSEXT # ifndef OPENSSL_NO_NEXTPROTONEG /* Next protocol negotiation information */ /* (for experimental NPN extension). */ /* * For a server, this contains a callback function by which the set of * advertised protocols can be provided. */ int (*next_protos_advertised_cb) (SSL *s, const unsigned char **buf, unsigned int *len, void *arg); void *next_protos_advertised_cb_arg; /* * For a client, this contains a callback function that selects the next * protocol from the list provided by the server. */ int (*next_proto_select_cb) (SSL *s, unsigned char **out, unsigned char *outlen, const unsigned char *in, unsigned int inlen, void *arg); void *next_proto_select_cb_arg; # endif /* SRTP profiles we are willing to do from RFC 5764 */ STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; /* * ALPN information (we are in the process of transitioning from NPN to * ALPN.) */ /*- * For a server, this contains a callback function that allows the * server to select the protocol for the connection. * out: on successful return, this must point to the raw protocol * name (without the length prefix). * outlen: on successful return, this contains the length of |*out|. * in: points to the client's list of supported protocols in * wire-format. * inlen: the length of |in|. */ int (*alpn_select_cb) (SSL *s, const unsigned char **out, unsigned char *outlen, const unsigned char *in, unsigned int inlen, void *arg); void *alpn_select_cb_arg; /* * For a client, this contains the list of supported protocols in wire * format. */ unsigned char *alpn_client_proto_list; unsigned alpn_client_proto_list_len; # ifndef OPENSSL_NO_EC /* EC extension values inherited by SSL structure */ size_t tlsext_ecpointformatlist_length; unsigned char *tlsext_ecpointformatlist; size_t tlsext_ellipticcurvelist_length; unsigned char *tlsext_ellipticcurvelist; # endif /* OPENSSL_NO_EC */ # endif }; # endif # define SSL_SESS_CACHE_OFF 0x0000 # define SSL_SESS_CACHE_CLIENT 0x0001 # define SSL_SESS_CACHE_SERVER 0x0002 # define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT|SSL_SESS_CACHE_SERVER) # define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080 /* enough comments already ... see SSL_CTX_set_session_cache_mode(3) */ # define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100 # define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200 # define SSL_SESS_CACHE_NO_INTERNAL \ (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP|SSL_SESS_CACHE_NO_INTERNAL_STORE) LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx); # define SSL_CTX_sess_number(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_NUMBER,0,NULL) # define SSL_CTX_sess_connect(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT,0,NULL) # define SSL_CTX_sess_connect_good(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_GOOD,0,NULL) # define SSL_CTX_sess_connect_renegotiate(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_RENEGOTIATE,0,NULL) # define SSL_CTX_sess_accept(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT,0,NULL) # define SSL_CTX_sess_accept_renegotiate(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_RENEGOTIATE,0,NULL) # define SSL_CTX_sess_accept_good(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_GOOD,0,NULL) # define SSL_CTX_sess_hits(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_HIT,0,NULL) # define SSL_CTX_sess_cb_hits(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CB_HIT,0,NULL) # define SSL_CTX_sess_misses(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_MISSES,0,NULL) # define SSL_CTX_sess_timeouts(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_TIMEOUTS,0,NULL) # define SSL_CTX_sess_cache_full(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CACHE_FULL,0,NULL) void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*new_session_cb) (struct ssl_st *ssl, SSL_SESSION *sess)); int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (struct ssl_st *ssl, SSL_SESSION *sess); void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, void (*remove_session_cb) (struct ssl_ctx_st *ctx, SSL_SESSION *sess)); void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (struct ssl_ctx_st *ctx, SSL_SESSION *sess); void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*get_session_cb) (struct ssl_st *ssl, unsigned char *data, int len, int *copy)); SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (struct ssl_st *ssl, unsigned char *Data, int len, int *copy); void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb) (const SSL *ssl, int type, int val)); void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type, int val); void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx, int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey)); int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); # ifndef OPENSSL_NO_ENGINE int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e); # endif void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx, int (*app_gen_cookie_cb) (SSL *ssl, unsigned char *cookie, unsigned int *cookie_len)); void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx, int (*app_verify_cookie_cb) (SSL *ssl, unsigned char *cookie, unsigned int cookie_len)); # ifndef OPENSSL_NO_NEXTPROTONEG void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *s, int (*cb) (SSL *ssl, const unsigned char **out, unsigned int *outlen, void *arg), void *arg); void SSL_CTX_set_next_proto_select_cb(SSL_CTX *s, int (*cb) (SSL *ssl, unsigned char **out, unsigned char *outlen, const unsigned char *in, unsigned int inlen, void *arg), void *arg); void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data, unsigned *len); # endif # ifndef OPENSSL_NO_TLSEXT int SSL_select_next_proto(unsigned char **out, unsigned char *outlen, const unsigned char *in, unsigned int inlen, const unsigned char *client, unsigned int client_len); # endif # define OPENSSL_NPN_UNSUPPORTED 0 # define OPENSSL_NPN_NEGOTIATED 1 # define OPENSSL_NPN_NO_OVERLAP 2 int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos, unsigned protos_len); int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos, unsigned protos_len); void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx, int (*cb) (SSL *ssl, const unsigned char **out, unsigned char *outlen, const unsigned char *in, unsigned int inlen, void *arg), void *arg); void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data, unsigned *len); # ifndef OPENSSL_NO_PSK /* * the maximum length of the buffer given to callbacks containing the * resulting identity/psk */ # define PSK_MAX_IDENTITY_LEN 128 # define PSK_MAX_PSK_LEN 256 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, unsigned int (*psk_client_callback) (SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len)); void SSL_set_psk_client_callback(SSL *ssl, unsigned int (*psk_client_callback) (SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len)); void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, unsigned int (*psk_server_callback) (SSL *ssl, const char *identity, unsigned char *psk, unsigned int max_psk_len)); void SSL_set_psk_server_callback(SSL *ssl, unsigned int (*psk_server_callback) (SSL *ssl, const char *identity, unsigned char *psk, unsigned int max_psk_len)); int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint); int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint); const char *SSL_get_psk_identity_hint(const SSL *s); const char *SSL_get_psk_identity(const SSL *s); # endif # ifndef OPENSSL_NO_TLSEXT /* Register callbacks to handle custom TLS Extensions for client or server. */ int SSL_CTX_add_client_custom_ext(SSL_CTX *ctx, unsigned int ext_type, custom_ext_add_cb add_cb, custom_ext_free_cb free_cb, void *add_arg, custom_ext_parse_cb parse_cb, void *parse_arg); int SSL_CTX_add_server_custom_ext(SSL_CTX *ctx, unsigned int ext_type, custom_ext_add_cb add_cb, custom_ext_free_cb free_cb, void *add_arg, custom_ext_parse_cb parse_cb, void *parse_arg); int SSL_extension_supported(unsigned int ext_type); # endif # define SSL_NOTHING 1 # define SSL_WRITING 2 # define SSL_READING 3 # define SSL_X509_LOOKUP 4 /* These will only be used when doing non-blocking IO */ # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING) # define SSL_want_read(s) (SSL_want(s) == SSL_READING) # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING) # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP) # define SSL_MAC_FLAG_READ_MAC_STREAM 1 # define SSL_MAC_FLAG_WRITE_MAC_STREAM 2 # ifndef OPENSSL_NO_SSL_INTERN struct ssl_st { /* * protocol version (one of SSL2_VERSION, SSL3_VERSION, TLS1_VERSION, * DTLS1_VERSION) */ int version; /* SSL_ST_CONNECT or SSL_ST_ACCEPT */ int type; /* SSLv3 */ const SSL_METHOD *method; /* * There are 2 BIO's even though they are normally both the same. This * is so data can be read and written to different handlers */ # ifndef OPENSSL_NO_BIO /* used by SSL_read */ BIO *rbio; /* used by SSL_write */ BIO *wbio; /* used during session-id reuse to concatenate messages */ BIO *bbio; # else /* used by SSL_read */ char *rbio; /* used by SSL_write */ char *wbio; char *bbio; # endif /* * This holds a variable that indicates what we were doing when a 0 or -1 * is returned. This is needed for non-blocking IO so we know what * request needs re-doing when in SSL_accept or SSL_connect */ int rwstate; /* true when we are actually in SSL_accept() or SSL_connect() */ int in_handshake; int (*handshake_func) (SSL *); /* * Imagine that here's a boolean member "init" that is switched as soon * as SSL_set_{accept/connect}_state is called for the first time, so * that "state" and "handshake_func" are properly initialized. But as * handshake_func is == 0 until then, we use this test instead of an * "init" member. */ /* are we the server side? - mostly used by SSL_clear */ int server; /* * Generate a new session or reuse an old one. * NB: For servers, the 'new' session may actually be a previously * cached session or even the previous session unless * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */ int new_session; /* don't send shutdown packets */ int quiet_shutdown; /* we have shut things down, 0x01 sent, 0x02 for received */ int shutdown; /* where we are */ int state; /* where we are when reading */ int rstate; BUF_MEM *init_buf; /* buffer used during init */ void *init_msg; /* pointer to handshake message body, set by * ssl3_get_message() */ int init_num; /* amount read/written */ int init_off; /* amount read/written */ /* used internally to point at a raw packet */ unsigned char *packet; unsigned int packet_length; struct ssl2_state_st *s2; /* SSLv2 variables */ struct ssl3_state_st *s3; /* SSLv3 variables */ struct dtls1_state_st *d1; /* DTLSv1 variables */ int read_ahead; /* Read as many input bytes as possible (for * non-blocking reads) */ /* callback that allows applications to peek at protocol messages */ void (*msg_callback) (int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg); void *msg_callback_arg; int hit; /* reusing a previous session */ X509_VERIFY_PARAM *param; # if 0 int purpose; /* Purpose setting */ int trust; /* Trust setting */ # endif /* crypto */ STACK_OF(SSL_CIPHER) *cipher_list; STACK_OF(SSL_CIPHER) *cipher_list_by_id; /* * These are the ones being used, the ones in SSL_SESSION are the ones to * be 'copied' into these ones */ int mac_flags; EVP_CIPHER_CTX *enc_read_ctx; /* cryptographic state */ EVP_MD_CTX *read_hash; /* used for mac generation */ # ifndef OPENSSL_NO_COMP COMP_CTX *expand; /* uncompress */ # else char *expand; # endif EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ EVP_MD_CTX *write_hash; /* used for mac generation */ # ifndef OPENSSL_NO_COMP COMP_CTX *compress; /* compression */ # else char *compress; # endif /* session info */ /* client cert? */ /* This is used to hold the server certificate used */ struct cert_st /* CERT */ *cert; /* * the session_id_context is used to ensure sessions are only reused in * the appropriate context */ unsigned int sid_ctx_length; unsigned char sid_ctx[SSL_MAX_SID_CTX_LENGTH]; /* This can also be in the session once a session is established */ SSL_SESSION *session; /* Default generate session ID callback. */ GEN_SESSION_CB generate_session_id; /* Used in SSL2 and SSL3 */ /* * 0 don't care about verify failure. * 1 fail if verify fails */ int verify_mode; /* fail if callback returns 0 */ int (*verify_callback) (int ok, X509_STORE_CTX *ctx); /* optional informational callback */ void (*info_callback) (const SSL *ssl, int type, int val); /* error bytes to be written */ int error; /* actual code */ int error_code; # ifndef OPENSSL_NO_KRB5 /* Kerberos 5 context */ KSSL_CTX *kssl_ctx; # endif /* OPENSSL_NO_KRB5 */ # ifndef OPENSSL_NO_PSK unsigned int (*psk_client_callback) (SSL *ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len); unsigned int (*psk_server_callback) (SSL *ssl, const char *identity, unsigned char *psk, unsigned int max_psk_len); # endif SSL_CTX *ctx; /* * set this flag to 1 and a sleep(1) is put into all SSL_read() and * SSL_write() calls, good for nbio debuging :-) */ int debug; /* extra application data */ long verify_result; CRYPTO_EX_DATA ex_data; /* for server side, keep the list of CA_dn we can use */ STACK_OF(X509_NAME) *client_CA; int references; /* protocol behaviour */ unsigned long options; /* API behaviour */ unsigned long mode; long max_cert_list; int first_packet; /* what was passed, used for SSLv3/TLS rollback check */ int client_version; unsigned int max_send_fragment; # ifndef OPENSSL_NO_TLSEXT /* TLS extension debug callback */ void (*tlsext_debug_cb) (SSL *s, int client_server, int type, unsigned char *data, int len, void *arg); void *tlsext_debug_arg; char *tlsext_hostname; /*- * no further mod of servername * 0 : call the servername extension callback. * 1 : prepare 2, allow last ack just after in server callback. * 2 : don't call servername callback, no ack in server hello */ int servername_done; /* certificate status request info */ /* Status type or -1 if no status type */ int tlsext_status_type; /* Expect OCSP CertificateStatus message */ int tlsext_status_expected; /* OCSP status request only */ STACK_OF(OCSP_RESPID) *tlsext_ocsp_ids; X509_EXTENSIONS *tlsext_ocsp_exts; /* OCSP response received or to be sent */ unsigned char *tlsext_ocsp_resp; int tlsext_ocsp_resplen; /* RFC4507 session ticket expected to be received or sent */ int tlsext_ticket_expected; # ifndef OPENSSL_NO_EC size_t tlsext_ecpointformatlist_length; /* our list */ unsigned char *tlsext_ecpointformatlist; size_t tlsext_ellipticcurvelist_length; /* our list */ unsigned char *tlsext_ellipticcurvelist; # endif /* OPENSSL_NO_EC */ /* * draft-rescorla-tls-opaque-prf-input-00.txt information to be used for * handshakes */ void *tlsext_opaque_prf_input; size_t tlsext_opaque_prf_input_len; /* TLS Session Ticket extension override */ TLS_SESSION_TICKET_EXT *tlsext_session_ticket; /* TLS Session Ticket extension callback */ tls_session_ticket_ext_cb_fn tls_session_ticket_ext_cb; void *tls_session_ticket_ext_cb_arg; /* TLS pre-shared secret session resumption */ tls_session_secret_cb_fn tls_session_secret_cb; void *tls_session_secret_cb_arg; SSL_CTX *initial_ctx; /* initial ctx, used to store sessions */ # ifndef OPENSSL_NO_NEXTPROTONEG /* * Next protocol negotiation. For the client, this is the protocol that * we sent in NextProtocol and is set when handling ServerHello * extensions. For a server, this is the client's selected_protocol from * NextProtocol and is set when handling the NextProtocol message, before * the Finished message. */ unsigned char *next_proto_negotiated; unsigned char next_proto_negotiated_len; # endif # define session_ctx initial_ctx /* What we'll do */ STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles; /* What's been chosen */ SRTP_PROTECTION_PROFILE *srtp_profile; /*- * Is use of the Heartbeat extension negotiated? * 0: disabled * 1: enabled * 2: enabled, but not allowed to send Requests */ unsigned int tlsext_heartbeat; /* Indicates if a HeartbeatRequest is in flight */ unsigned int tlsext_hb_pending; /* HeartbeatRequest sequence number */ unsigned int tlsext_hb_seq; # else # define session_ctx ctx # endif /* OPENSSL_NO_TLSEXT */ /*- * 1 if we are renegotiating. * 2 if we are a server and are inside a handshake * (i.e. not just sending a HelloRequest) */ int renegotiate; # ifndef OPENSSL_NO_SRP /* ctx for SRP authentication */ SRP_CTX srp_ctx; # endif # ifndef OPENSSL_NO_TLSEXT /* * For a client, this contains the list of supported protocols in wire * format. */ unsigned char *alpn_client_proto_list; unsigned alpn_client_proto_list_len; # endif /* OPENSSL_NO_TLSEXT */ }; # endif #ifdef __cplusplus } #endif # include # include # include /* This is mostly sslv3 with a few tweaks */ # include /* Datagram TLS */ # include # include /* Support for the use_srtp extension */ #ifdef __cplusplus extern "C" { #endif /* compatibility */ # define SSL_set_app_data(s,arg) (SSL_set_ex_data(s,0,(char *)arg)) # define SSL_get_app_data(s) (SSL_get_ex_data(s,0)) # define SSL_SESSION_set_app_data(s,a) (SSL_SESSION_set_ex_data(s,0,(char *)a)) # define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s,0)) # define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx,0)) # define SSL_CTX_set_app_data(ctx,arg) (SSL_CTX_set_ex_data(ctx,0,(char *)arg)) /* * The following are the possible values for ssl->state are are used to * indicate where we are up to in the SSL connection establishment. The * macros that follow are about the only things you should need to use and * even then, only when using non-blocking IO. It can also be useful to work * out where you were when the connection failed */ # define SSL_ST_CONNECT 0x1000 # define SSL_ST_ACCEPT 0x2000 # define SSL_ST_MASK 0x0FFF # define SSL_ST_INIT (SSL_ST_CONNECT|SSL_ST_ACCEPT) # define SSL_ST_BEFORE 0x4000 # define SSL_ST_OK 0x03 # define SSL_ST_RENEGOTIATE (0x04|SSL_ST_INIT) # define SSL_ST_ERR (0x05|SSL_ST_INIT) # define SSL_CB_LOOP 0x01 # define SSL_CB_EXIT 0x02 # define SSL_CB_READ 0x04 # define SSL_CB_WRITE 0x08 # define SSL_CB_ALERT 0x4000/* used in callback */ # define SSL_CB_READ_ALERT (SSL_CB_ALERT|SSL_CB_READ) # define SSL_CB_WRITE_ALERT (SSL_CB_ALERT|SSL_CB_WRITE) # define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT|SSL_CB_LOOP) # define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT|SSL_CB_EXIT) # define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT|SSL_CB_LOOP) # define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT|SSL_CB_EXIT) # define SSL_CB_HANDSHAKE_START 0x10 # define SSL_CB_HANDSHAKE_DONE 0x20 /* Is the SSL_connection established? */ # define SSL_get_state(a) SSL_state(a) # define SSL_is_init_finished(a) (SSL_state(a) == SSL_ST_OK) # define SSL_in_init(a) (SSL_state(a)&SSL_ST_INIT) # define SSL_in_before(a) (SSL_state(a)&SSL_ST_BEFORE) # define SSL_in_connect_init(a) (SSL_state(a)&SSL_ST_CONNECT) # define SSL_in_accept_init(a) (SSL_state(a)&SSL_ST_ACCEPT) /* * The following 2 states are kept in ssl->rstate when reads fail, you should * not need these */ # define SSL_ST_READ_HEADER 0xF0 # define SSL_ST_READ_BODY 0xF1 # define SSL_ST_READ_DONE 0xF2 /*- * Obtain latest Finished message * -- that we sent (SSL_get_finished) * -- that we expected from peer (SSL_get_peer_finished). * Returns length (0 == no Finished so far), copies up to 'count' bytes. */ size_t SSL_get_finished(const SSL *s, void *buf, size_t count); size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count); /* * use either SSL_VERIFY_NONE or SSL_VERIFY_PEER, the last 2 options are * 'ored' with SSL_VERIFY_PEER if they are desired */ # define SSL_VERIFY_NONE 0x00 # define SSL_VERIFY_PEER 0x01 # define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02 # define SSL_VERIFY_CLIENT_ONCE 0x04 # define OpenSSL_add_ssl_algorithms() SSL_library_init() # define SSLeay_add_ssl_algorithms() SSL_library_init() /* this is for backward compatibility */ # if 0 /* NEW_SSLEAY */ # define SSL_CTX_set_default_verify(a,b,c) SSL_CTX_set_verify(a,b,c) # define SSL_set_pref_cipher(c,n) SSL_set_cipher_list(c,n) # define SSL_add_session(a,b) SSL_CTX_add_session((a),(b)) # define SSL_remove_session(a,b) SSL_CTX_remove_session((a),(b)) # define SSL_flush_sessions(a,b) SSL_CTX_flush_sessions((a),(b)) # endif /* More backward compatibility */ # define SSL_get_cipher(s) \ SSL_CIPHER_get_name(SSL_get_current_cipher(s)) # define SSL_get_cipher_bits(s,np) \ SSL_CIPHER_get_bits(SSL_get_current_cipher(s),np) # define SSL_get_cipher_version(s) \ SSL_CIPHER_get_version(SSL_get_current_cipher(s)) # define SSL_get_cipher_name(s) \ SSL_CIPHER_get_name(SSL_get_current_cipher(s)) # define SSL_get_time(a) SSL_SESSION_get_time(a) # define SSL_set_time(a,b) SSL_SESSION_set_time((a),(b)) # define SSL_get_timeout(a) SSL_SESSION_get_timeout(a) # define SSL_set_timeout(a,b) SSL_SESSION_set_timeout((a),(b)) # define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id) # define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id) DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) # define SSL_AD_REASON_OFFSET 1000/* offset to get SSL_R_... value * from SSL_AD_... */ /* These alert types are for SSLv3 and TLSv1 */ # define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY /* fatal */ # define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE /* fatal */ # define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC # define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED # define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW /* fatal */ # define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE /* fatal */ # define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE /* Not for TLS */ # define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE # define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE # define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE # define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED # define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED # define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN /* fatal */ # define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER /* fatal */ # define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA /* fatal */ # define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED /* fatal */ # define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR # define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR /* fatal */ # define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION /* fatal */ # define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION /* fatal */ # define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY /* fatal */ # define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR # define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED # define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION # define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION # define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE # define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME # define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE # define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE /* fatal */ # define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY /* fatal */ # define SSL_AD_INAPPROPRIATE_FALLBACK TLS1_AD_INAPPROPRIATE_FALLBACK # define SSL_ERROR_NONE 0 # define SSL_ERROR_SSL 1 # define SSL_ERROR_WANT_READ 2 # define SSL_ERROR_WANT_WRITE 3 # define SSL_ERROR_WANT_X509_LOOKUP 4 # define SSL_ERROR_SYSCALL 5/* look at error stack/return * value/errno */ # define SSL_ERROR_ZERO_RETURN 6 # define SSL_ERROR_WANT_CONNECT 7 # define SSL_ERROR_WANT_ACCEPT 8 # define SSL_CTRL_NEED_TMP_RSA 1 # define SSL_CTRL_SET_TMP_RSA 2 # define SSL_CTRL_SET_TMP_DH 3 # define SSL_CTRL_SET_TMP_ECDH 4 # define SSL_CTRL_SET_TMP_RSA_CB 5 # define SSL_CTRL_SET_TMP_DH_CB 6 # define SSL_CTRL_SET_TMP_ECDH_CB 7 # define SSL_CTRL_GET_SESSION_REUSED 8 # define SSL_CTRL_GET_CLIENT_CERT_REQUEST 9 # define SSL_CTRL_GET_NUM_RENEGOTIATIONS 10 # define SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS 11 # define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS 12 # define SSL_CTRL_GET_FLAGS 13 # define SSL_CTRL_EXTRA_CHAIN_CERT 14 # define SSL_CTRL_SET_MSG_CALLBACK 15 # define SSL_CTRL_SET_MSG_CALLBACK_ARG 16 /* only applies to datagram connections */ # define SSL_CTRL_SET_MTU 17 /* Stats */ # define SSL_CTRL_SESS_NUMBER 20 # define SSL_CTRL_SESS_CONNECT 21 # define SSL_CTRL_SESS_CONNECT_GOOD 22 # define SSL_CTRL_SESS_CONNECT_RENEGOTIATE 23 # define SSL_CTRL_SESS_ACCEPT 24 # define SSL_CTRL_SESS_ACCEPT_GOOD 25 # define SSL_CTRL_SESS_ACCEPT_RENEGOTIATE 26 # define SSL_CTRL_SESS_HIT 27 # define SSL_CTRL_SESS_CB_HIT 28 # define SSL_CTRL_SESS_MISSES 29 # define SSL_CTRL_SESS_TIMEOUTS 30 # define SSL_CTRL_SESS_CACHE_FULL 31 # define SSL_CTRL_OPTIONS 32 # define SSL_CTRL_MODE 33 # define SSL_CTRL_GET_READ_AHEAD 40 # define SSL_CTRL_SET_READ_AHEAD 41 # define SSL_CTRL_SET_SESS_CACHE_SIZE 42 # define SSL_CTRL_GET_SESS_CACHE_SIZE 43 # define SSL_CTRL_SET_SESS_CACHE_MODE 44 # define SSL_CTRL_GET_SESS_CACHE_MODE 45 # define SSL_CTRL_GET_MAX_CERT_LIST 50 # define SSL_CTRL_SET_MAX_CERT_LIST 51 # define SSL_CTRL_SET_MAX_SEND_FRAGMENT 52 /* see tls1.h for macros based on these */ # ifndef OPENSSL_NO_TLSEXT # define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB 53 # define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG 54 # define SSL_CTRL_SET_TLSEXT_HOSTNAME 55 # define SSL_CTRL_SET_TLSEXT_DEBUG_CB 56 # define SSL_CTRL_SET_TLSEXT_DEBUG_ARG 57 # define SSL_CTRL_GET_TLSEXT_TICKET_KEYS 58 # define SSL_CTRL_SET_TLSEXT_TICKET_KEYS 59 # define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT 60 # define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB 61 # define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB_ARG 62 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB 63 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB_ARG 64 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE 65 # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS 66 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS 67 # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS 68 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS 69 # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_OCSP_RESP 70 # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP 71 # define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB 72 # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME_CB 75 # define SSL_CTRL_SET_SRP_VERIFY_PARAM_CB 76 # define SSL_CTRL_SET_SRP_GIVE_CLIENT_PWD_CB 77 # define SSL_CTRL_SET_SRP_ARG 78 # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME 79 # define SSL_CTRL_SET_TLS_EXT_SRP_STRENGTH 80 # define SSL_CTRL_SET_TLS_EXT_SRP_PASSWORD 81 # ifndef OPENSSL_NO_HEARTBEATS # define SSL_CTRL_TLS_EXT_SEND_HEARTBEAT 85 # define SSL_CTRL_GET_TLS_EXT_HEARTBEAT_PENDING 86 # define SSL_CTRL_SET_TLS_EXT_HEARTBEAT_NO_REQUESTS 87 # endif # endif /* OPENSSL_NO_TLSEXT */ # define DTLS_CTRL_GET_TIMEOUT 73 # define DTLS_CTRL_HANDLE_TIMEOUT 74 # define DTLS_CTRL_LISTEN 75 # define SSL_CTRL_GET_RI_SUPPORT 76 # define SSL_CTRL_CLEAR_OPTIONS 77 # define SSL_CTRL_CLEAR_MODE 78 # define SSL_CTRL_GET_EXTRA_CHAIN_CERTS 82 # define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS 83 # define SSL_CTRL_CHAIN 88 # define SSL_CTRL_CHAIN_CERT 89 # define SSL_CTRL_GET_CURVES 90 # define SSL_CTRL_SET_CURVES 91 # define SSL_CTRL_SET_CURVES_LIST 92 # define SSL_CTRL_GET_SHARED_CURVE 93 # define SSL_CTRL_SET_ECDH_AUTO 94 # define SSL_CTRL_SET_SIGALGS 97 # define SSL_CTRL_SET_SIGALGS_LIST 98 # define SSL_CTRL_CERT_FLAGS 99 # define SSL_CTRL_CLEAR_CERT_FLAGS 100 # define SSL_CTRL_SET_CLIENT_SIGALGS 101 # define SSL_CTRL_SET_CLIENT_SIGALGS_LIST 102 # define SSL_CTRL_GET_CLIENT_CERT_TYPES 103 # define SSL_CTRL_SET_CLIENT_CERT_TYPES 104 # define SSL_CTRL_BUILD_CERT_CHAIN 105 # define SSL_CTRL_SET_VERIFY_CERT_STORE 106 # define SSL_CTRL_SET_CHAIN_CERT_STORE 107 # define SSL_CTRL_GET_PEER_SIGNATURE_NID 108 # define SSL_CTRL_GET_SERVER_TMP_KEY 109 # define SSL_CTRL_GET_RAW_CIPHERLIST 110 # define SSL_CTRL_GET_EC_POINT_FORMATS 111 # define SSL_CTRL_GET_CHAIN_CERTS 115 # define SSL_CTRL_SELECT_CURRENT_CERT 116 # define SSL_CTRL_SET_CURRENT_CERT 117 # define SSL_CTRL_CHECK_PROTO_VERSION 119 # define DTLS_CTRL_SET_LINK_MTU 120 # define DTLS_CTRL_GET_LINK_MIN_MTU 121 # define SSL_CERT_SET_FIRST 1 # define SSL_CERT_SET_NEXT 2 # define SSL_CERT_SET_SERVER 3 # define DTLSv1_get_timeout(ssl, arg) \ SSL_ctrl(ssl,DTLS_CTRL_GET_TIMEOUT,0, (void *)arg) # define DTLSv1_handle_timeout(ssl) \ SSL_ctrl(ssl,DTLS_CTRL_HANDLE_TIMEOUT,0, NULL) # define DTLSv1_listen(ssl, peer) \ SSL_ctrl(ssl,DTLS_CTRL_LISTEN,0, (void *)peer) # define SSL_session_reused(ssl) \ SSL_ctrl((ssl),SSL_CTRL_GET_SESSION_REUSED,0,NULL) # define SSL_num_renegotiations(ssl) \ SSL_ctrl((ssl),SSL_CTRL_GET_NUM_RENEGOTIATIONS,0,NULL) # define SSL_clear_num_renegotiations(ssl) \ SSL_ctrl((ssl),SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS,0,NULL) # define SSL_total_renegotiations(ssl) \ SSL_ctrl((ssl),SSL_CTRL_GET_TOTAL_RENEGOTIATIONS,0,NULL) # define SSL_CTX_need_tmp_RSA(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_NEED_TMP_RSA,0,NULL) # define SSL_CTX_set_tmp_rsa(ctx,rsa) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_RSA,0,(char *)rsa) # define SSL_CTX_set_tmp_dh(ctx,dh) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH,0,(char *)dh) # define SSL_CTX_set_tmp_ecdh(ctx,ecdh) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh) # define SSL_need_tmp_RSA(ssl) \ SSL_ctrl(ssl,SSL_CTRL_NEED_TMP_RSA,0,NULL) # define SSL_set_tmp_rsa(ssl,rsa) \ SSL_ctrl(ssl,SSL_CTRL_SET_TMP_RSA,0,(char *)rsa) # define SSL_set_tmp_dh(ssl,dh) \ SSL_ctrl(ssl,SSL_CTRL_SET_TMP_DH,0,(char *)dh) # define SSL_set_tmp_ecdh(ssl,ecdh) \ SSL_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH,0,(char *)ecdh) # define SSL_CTX_add_extra_chain_cert(ctx,x509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_EXTRA_CHAIN_CERT,0,(char *)x509) # define SSL_CTX_get_extra_chain_certs(ctx,px509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,0,px509) # define SSL_CTX_get_extra_chain_certs_only(ctx,px509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,1,px509) # define SSL_CTX_clear_extra_chain_certs(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS,0,NULL) # define SSL_CTX_set0_chain(ctx,sk) \ SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,0,(char *)sk) # define SSL_CTX_set1_chain(ctx,sk) \ SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,1,(char *)sk) # define SSL_CTX_add0_chain_cert(ctx,x509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,0,(char *)x509) # define SSL_CTX_add1_chain_cert(ctx,x509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,1,(char *)x509) # define SSL_CTX_get0_chain_certs(ctx,px509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERTS,0,px509) # define SSL_CTX_clear_chain_certs(ctx) \ SSL_CTX_set0_chain(ctx,NULL) # define SSL_CTX_build_cert_chain(ctx, flags) \ SSL_CTX_ctrl(ctx,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL) # define SSL_CTX_select_current_cert(ctx,x509) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)x509) # define SSL_CTX_set_current_cert(ctx, op) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CURRENT_CERT, op, NULL) # define SSL_CTX_set0_verify_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)st) # define SSL_CTX_set1_verify_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)st) # define SSL_CTX_set0_chain_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)st) # define SSL_CTX_set1_chain_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)st) # define SSL_set0_chain(ctx,sk) \ SSL_ctrl(ctx,SSL_CTRL_CHAIN,0,(char *)sk) # define SSL_set1_chain(ctx,sk) \ SSL_ctrl(ctx,SSL_CTRL_CHAIN,1,(char *)sk) # define SSL_add0_chain_cert(ctx,x509) \ SSL_ctrl(ctx,SSL_CTRL_CHAIN_CERT,0,(char *)x509) # define SSL_add1_chain_cert(ctx,x509) \ SSL_ctrl(ctx,SSL_CTRL_CHAIN_CERT,1,(char *)x509) # define SSL_get0_chain_certs(ctx,px509) \ SSL_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERTS,0,px509) # define SSL_clear_chain_certs(ctx) \ SSL_set0_chain(ctx,NULL) # define SSL_build_cert_chain(s, flags) \ SSL_ctrl(s,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL) # define SSL_select_current_cert(ctx,x509) \ SSL_ctrl(ctx,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)x509) # define SSL_set_current_cert(ctx,op) \ SSL_ctrl(ctx,SSL_CTRL_SET_CURRENT_CERT, op, NULL) # define SSL_set0_verify_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)st) # define SSL_set1_verify_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)st) # define SSL_set0_chain_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)st) # define SSL_set1_chain_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)st) # define SSL_get1_curves(ctx, s) \ SSL_ctrl(ctx,SSL_CTRL_GET_CURVES,0,(char *)s) # define SSL_CTX_set1_curves(ctx, clist, clistlen) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CURVES,clistlen,(char *)clist) # define SSL_CTX_set1_curves_list(ctx, s) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CURVES_LIST,0,(char *)s) # define SSL_set1_curves(ctx, clist, clistlen) \ SSL_ctrl(ctx,SSL_CTRL_SET_CURVES,clistlen,(char *)clist) # define SSL_set1_curves_list(ctx, s) \ SSL_ctrl(ctx,SSL_CTRL_SET_CURVES_LIST,0,(char *)s) # define SSL_get_shared_curve(s, n) \ SSL_ctrl(s,SSL_CTRL_GET_SHARED_CURVE,n,NULL) # define SSL_CTX_set_ecdh_auto(ctx, onoff) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_ECDH_AUTO,onoff,NULL) # define SSL_set_ecdh_auto(s, onoff) \ SSL_ctrl(s,SSL_CTRL_SET_ECDH_AUTO,onoff,NULL) # define SSL_CTX_set1_sigalgs(ctx, slist, slistlen) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS,slistlen,(int *)slist) # define SSL_CTX_set1_sigalgs_list(ctx, s) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)s) # define SSL_set1_sigalgs(ctx, slist, slistlen) \ SSL_ctrl(ctx,SSL_CTRL_SET_SIGALGS,slistlen,(int *)slist) # define SSL_set1_sigalgs_list(ctx, s) \ SSL_ctrl(ctx,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)s) # define SSL_CTX_set1_client_sigalgs(ctx, slist, slistlen) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)slist) # define SSL_CTX_set1_client_sigalgs_list(ctx, s) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)s) # define SSL_set1_client_sigalgs(ctx, slist, slistlen) \ SSL_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,clistlen,(int *)slist) # define SSL_set1_client_sigalgs_list(ctx, s) \ SSL_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)s) # define SSL_get0_certificate_types(s, clist) \ SSL_ctrl(s, SSL_CTRL_GET_CLIENT_CERT_TYPES, 0, (char *)clist) # define SSL_CTX_set1_client_certificate_types(ctx, clist, clistlen) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen,(char *)clist) # define SSL_set1_client_certificate_types(s, clist, clistlen) \ SSL_ctrl(s,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen,(char *)clist) # define SSL_get_peer_signature_nid(s, pn) \ SSL_ctrl(s,SSL_CTRL_GET_PEER_SIGNATURE_NID,0,pn) # define SSL_get_server_tmp_key(s, pk) \ SSL_ctrl(s,SSL_CTRL_GET_SERVER_TMP_KEY,0,pk) # define SSL_get0_raw_cipherlist(s, plst) \ SSL_ctrl(s,SSL_CTRL_GET_RAW_CIPHERLIST,0,(char *)plst) # define SSL_get0_ec_point_formats(s, plst) \ SSL_ctrl(s,SSL_CTRL_GET_EC_POINT_FORMATS,0,(char *)plst) # ifndef OPENSSL_NO_BIO BIO_METHOD *BIO_f_ssl(void); BIO *BIO_new_ssl(SSL_CTX *ctx, int client); BIO *BIO_new_ssl_connect(SSL_CTX *ctx); BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx); int BIO_ssl_copy_session_id(BIO *to, BIO *from); void BIO_ssl_shutdown(BIO *ssl_bio); # endif int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str); SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth); void SSL_CTX_free(SSL_CTX *); long SSL_CTX_set_timeout(SSL_CTX *ctx, long t); long SSL_CTX_get_timeout(const SSL_CTX *ctx); X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); int SSL_want(const SSL *s); int SSL_clear(SSL *s); void SSL_CTX_flush_sessions(SSL_CTX *ctx, long tm); const SSL_CIPHER *SSL_get_current_cipher(const SSL *s); int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits); char *SSL_CIPHER_get_version(const SSL_CIPHER *c); const char *SSL_CIPHER_get_name(const SSL_CIPHER *c); unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c); int SSL_get_fd(const SSL *s); int SSL_get_rfd(const SSL *s); int SSL_get_wfd(const SSL *s); const char *SSL_get_cipher_list(const SSL *s, int n); char *SSL_get_shared_ciphers(const SSL *s, char *buf, int len); int SSL_get_read_ahead(const SSL *s); int SSL_pending(const SSL *s); # ifndef OPENSSL_NO_SOCK int SSL_set_fd(SSL *s, int fd); int SSL_set_rfd(SSL *s, int fd); int SSL_set_wfd(SSL *s, int fd); # endif # ifndef OPENSSL_NO_BIO void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); BIO *SSL_get_rbio(const SSL *s); BIO *SSL_get_wbio(const SSL *s); # endif int SSL_set_cipher_list(SSL *s, const char *str); void SSL_set_read_ahead(SSL *s, int yes); int SSL_get_verify_mode(const SSL *s); int SSL_get_verify_depth(const SSL *s); int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *); void SSL_set_verify(SSL *s, int mode, int (*callback) (int ok, X509_STORE_CTX *ctx)); void SSL_set_verify_depth(SSL *s, int depth); void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg); # ifndef OPENSSL_NO_RSA int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa); # endif int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, unsigned char *d, long len); int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey); int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const unsigned char *d, long len); int SSL_use_certificate(SSL *ssl, X509 *x); int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len); # ifndef OPENSSL_NO_TLSEXT /* Set serverinfo data for the current active cert. */ int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo, size_t serverinfo_length); # ifndef OPENSSL_NO_STDIO int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file); # endif /* NO_STDIO */ # endif # ifndef OPENSSL_NO_STDIO int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type); int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type); int SSL_use_certificate_file(SSL *ssl, const char *file, int type); int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type); int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type); int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type); /* PEM type */ int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file); STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file); int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, const char *file); # ifndef OPENSSL_SYS_VMS /* XXXXX: Better scheme needed! [was: #ifndef MAC_OS_pre_X] */ # ifndef OPENSSL_SYS_MACINTOSH_CLASSIC int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, const char *dir); # endif # endif # endif void SSL_load_error_strings(void); const char *SSL_state_string(const SSL *s); const char *SSL_rstate_string(const SSL *s); const char *SSL_state_string_long(const SSL *s); const char *SSL_rstate_string_long(const SSL *s); long SSL_SESSION_get_time(const SSL_SESSION *s); long SSL_SESSION_set_time(SSL_SESSION *s, long t); long SSL_SESSION_get_timeout(const SSL_SESSION *s); long SSL_SESSION_set_timeout(SSL_SESSION *s, long t); void SSL_copy_session_id(SSL *to, const SSL *from); X509 *SSL_SESSION_get0_peer(SSL_SESSION *s); int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx, unsigned int sid_ctx_len); SSL_SESSION *SSL_SESSION_new(void); const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len); unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s); # ifndef OPENSSL_NO_FP_API int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *ses); # endif # ifndef OPENSSL_NO_BIO int SSL_SESSION_print(BIO *fp, const SSL_SESSION *ses); # endif void SSL_SESSION_free(SSL_SESSION *ses); int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp); int SSL_set_session(SSL *to, SSL_SESSION *session); int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c); int SSL_CTX_remove_session(SSL_CTX *, SSL_SESSION *c); int SSL_CTX_set_generate_session_id(SSL_CTX *, GEN_SESSION_CB); int SSL_set_generate_session_id(SSL *, GEN_SESSION_CB); int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id, unsigned int id_len); SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp, long length); # ifdef HEADER_X509_H X509 *SSL_get_peer_certificate(const SSL *s); # endif STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s); int SSL_CTX_get_verify_mode(const SSL_CTX *ctx); int SSL_CTX_get_verify_depth(const SSL_CTX *ctx); int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *); void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, int (*callback) (int, X509_STORE_CTX *)); void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth); void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb) (X509_STORE_CTX *, void *), void *arg); void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg), void *arg); # ifndef OPENSSL_NO_RSA int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa); # endif int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d, long len); int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey); int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, const unsigned char *d, long len); int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x); int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, const unsigned char *d); void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb); void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u); int SSL_CTX_check_private_key(const SSL_CTX *ctx); int SSL_check_private_key(const SSL *ctx); int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx, unsigned int sid_ctx_len); SSL *SSL_new(SSL_CTX *ctx); int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx, unsigned int sid_ctx_len); int SSL_CTX_set_purpose(SSL_CTX *s, int purpose); int SSL_set_purpose(SSL *s, int purpose); int SSL_CTX_set_trust(SSL_CTX *s, int trust); int SSL_set_trust(SSL *s, int trust); int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm); int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm); X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx); X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl); # ifndef OPENSSL_NO_SRP int SSL_CTX_set_srp_username(SSL_CTX *ctx, char *name); int SSL_CTX_set_srp_password(SSL_CTX *ctx, char *password); int SSL_CTX_set_srp_strength(SSL_CTX *ctx, int strength); int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, char *(*cb) (SSL *, void *)); int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, int (*cb) (SSL *, void *)); int SSL_CTX_set_srp_username_callback(SSL_CTX *ctx, int (*cb) (SSL *, int *, void *)); int SSL_CTX_set_srp_cb_arg(SSL_CTX *ctx, void *arg); int SSL_set_srp_server_param(SSL *s, const BIGNUM *N, const BIGNUM *g, BIGNUM *sa, BIGNUM *v, char *info); int SSL_set_srp_server_param_pw(SSL *s, const char *user, const char *pass, const char *grp); BIGNUM *SSL_get_srp_g(SSL *s); BIGNUM *SSL_get_srp_N(SSL *s); char *SSL_get_srp_username(SSL *s); char *SSL_get_srp_userinfo(SSL *s); # endif void SSL_certs_clear(SSL *s); void SSL_free(SSL *ssl); int SSL_accept(SSL *ssl); int SSL_connect(SSL *ssl); int SSL_read(SSL *ssl, void *buf, int num); int SSL_peek(SSL *ssl, void *buf, int num); int SSL_write(SSL *ssl, const void *buf, int num); long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg); long SSL_callback_ctrl(SSL *, int, void (*)(void)); long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg); long SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)(void)); int SSL_get_error(const SSL *s, int ret_code); const char *SSL_get_version(const SSL *s); /* This sets the 'default' SSL version that SSL_new() will create */ int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth); # ifndef OPENSSL_NO_SSL2_METHOD const SSL_METHOD *SSLv2_method(void); /* SSLv2 */ const SSL_METHOD *SSLv2_server_method(void); /* SSLv2 */ const SSL_METHOD *SSLv2_client_method(void); /* SSLv2 */ # endif # ifndef OPENSSL_NO_SSL3_METHOD const SSL_METHOD *SSLv3_method(void); /* SSLv3 */ const SSL_METHOD *SSLv3_server_method(void); /* SSLv3 */ const SSL_METHOD *SSLv3_client_method(void); /* SSLv3 */ # endif const SSL_METHOD *SSLv23_method(void); /* Negotiate highest available SSL/TLS * version */ const SSL_METHOD *SSLv23_server_method(void); /* Negotiate highest available * SSL/TLS version */ const SSL_METHOD *SSLv23_client_method(void); /* Negotiate highest available * SSL/TLS version */ const SSL_METHOD *TLSv1_method(void); /* TLSv1.0 */ const SSL_METHOD *TLSv1_server_method(void); /* TLSv1.0 */ const SSL_METHOD *TLSv1_client_method(void); /* TLSv1.0 */ const SSL_METHOD *TLSv1_1_method(void); /* TLSv1.1 */ const SSL_METHOD *TLSv1_1_server_method(void); /* TLSv1.1 */ const SSL_METHOD *TLSv1_1_client_method(void); /* TLSv1.1 */ const SSL_METHOD *TLSv1_2_method(void); /* TLSv1.2 */ const SSL_METHOD *TLSv1_2_server_method(void); /* TLSv1.2 */ const SSL_METHOD *TLSv1_2_client_method(void); /* TLSv1.2 */ const SSL_METHOD *DTLSv1_method(void); /* DTLSv1.0 */ const SSL_METHOD *DTLSv1_server_method(void); /* DTLSv1.0 */ const SSL_METHOD *DTLSv1_client_method(void); /* DTLSv1.0 */ const SSL_METHOD *DTLSv1_2_method(void); /* DTLSv1.2 */ const SSL_METHOD *DTLSv1_2_server_method(void); /* DTLSv1.2 */ const SSL_METHOD *DTLSv1_2_client_method(void); /* DTLSv1.2 */ const SSL_METHOD *DTLS_method(void); /* DTLS 1.0 and 1.2 */ const SSL_METHOD *DTLS_server_method(void); /* DTLS 1.0 and 1.2 */ const SSL_METHOD *DTLS_client_method(void); /* DTLS 1.0 and 1.2 */ STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s); int SSL_do_handshake(SSL *s); int SSL_renegotiate(SSL *s); int SSL_renegotiate_abbreviated(SSL *s); int SSL_renegotiate_pending(SSL *s); int SSL_shutdown(SSL *s); const SSL_METHOD *SSL_CTX_get_ssl_method(SSL_CTX *ctx); const SSL_METHOD *SSL_get_ssl_method(SSL *s); int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method); const char *SSL_alert_type_string_long(int value); const char *SSL_alert_type_string(int value); const char *SSL_alert_desc_string_long(int value); const char *SSL_alert_desc_string(int value); void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list); void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list); STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s); STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *s); int SSL_add_client_CA(SSL *ssl, X509 *x); int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x); void SSL_set_connect_state(SSL *s); void SSL_set_accept_state(SSL *s); long SSL_get_default_timeout(const SSL *s); int SSL_library_init(void); char *SSL_CIPHER_description(const SSL_CIPHER *, char *buf, int size); STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk); SSL *SSL_dup(SSL *ssl); X509 *SSL_get_certificate(const SSL *ssl); /* * EVP_PKEY */ struct evp_pkey_st *SSL_get_privatekey(const SSL *ssl); X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode); int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx); void SSL_set_quiet_shutdown(SSL *ssl, int mode); int SSL_get_quiet_shutdown(const SSL *ssl); void SSL_set_shutdown(SSL *ssl, int mode); int SSL_get_shutdown(const SSL *ssl); int SSL_version(const SSL *ssl); int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx); int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, const char *CApath); # define SSL_get0_session SSL_get_session/* just peek at pointer */ SSL_SESSION *SSL_get_session(const SSL *ssl); SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */ SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl); SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx); void SSL_set_info_callback(SSL *ssl, void (*cb) (const SSL *ssl, int type, int val)); void (*SSL_get_info_callback(const SSL *ssl)) (const SSL *ssl, int type, int val); int SSL_state(const SSL *ssl); void SSL_set_state(SSL *ssl, int state); void SSL_set_verify_result(SSL *ssl, long v); long SSL_get_verify_result(const SSL *ssl); int SSL_set_ex_data(SSL *ssl, int idx, void *data); void *SSL_get_ex_data(const SSL *ssl, int idx); int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int SSL_SESSION_set_ex_data(SSL_SESSION *ss, int idx, void *data); void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss, int idx); int SSL_SESSION_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int SSL_CTX_set_ex_data(SSL_CTX *ssl, int idx, void *data); void *SSL_CTX_get_ex_data(const SSL_CTX *ssl, int idx); int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int SSL_get_ex_data_X509_STORE_CTX_idx(void); # define SSL_CTX_sess_set_cache_size(ctx,t) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_SIZE,t,NULL) # define SSL_CTX_sess_get_cache_size(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_SIZE,0,NULL) # define SSL_CTX_set_session_cache_mode(ctx,m) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_MODE,m,NULL) # define SSL_CTX_get_session_cache_mode(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_MODE,0,NULL) # define SSL_CTX_get_default_read_ahead(ctx) SSL_CTX_get_read_ahead(ctx) # define SSL_CTX_set_default_read_ahead(ctx,m) SSL_CTX_set_read_ahead(ctx,m) # define SSL_CTX_get_read_ahead(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_READ_AHEAD,0,NULL) # define SSL_CTX_set_read_ahead(ctx,m) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_READ_AHEAD,m,NULL) # define SSL_CTX_get_max_cert_list(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL) # define SSL_CTX_set_max_cert_list(ctx,m) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL) # define SSL_get_max_cert_list(ssl) \ SSL_ctrl(ssl,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL) # define SSL_set_max_cert_list(ssl,m) \ SSL_ctrl(ssl,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL) # define SSL_CTX_set_max_send_fragment(ctx,m) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL) # define SSL_set_max_send_fragment(ssl,m) \ SSL_ctrl(ssl,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL) /* NB: the keylength is only applicable when is_export is true */ # ifndef OPENSSL_NO_RSA void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, RSA *(*cb) (SSL *ssl, int is_export, int keylength)); void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb) (SSL *ssl, int is_export, int keylength)); # endif # ifndef OPENSSL_NO_DH void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, DH *(*dh) (SSL *ssl, int is_export, int keylength)); void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export, int keylength)); # endif # ifndef OPENSSL_NO_ECDH void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx, EC_KEY *(*ecdh) (SSL *ssl, int is_export, int keylength)); void SSL_set_tmp_ecdh_callback(SSL *ssl, EC_KEY *(*ecdh) (SSL *ssl, int is_export, int keylength)); # endif const COMP_METHOD *SSL_get_current_compression(SSL *s); const COMP_METHOD *SSL_get_current_expansion(SSL *s); const char *SSL_COMP_get_name(const COMP_METHOD *comp); STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) *meths); void SSL_COMP_free_compression_methods(void); int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm); const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr); /* TLS extensions functions */ int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len); int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb, void *arg); /* Pre-shared secret session resumption functions */ int SSL_set_session_secret_cb(SSL *s, tls_session_secret_cb_fn tls_session_secret_cb, void *arg); void SSL_set_debug(SSL *s, int debug); int SSL_cache_hit(SSL *s); int SSL_is_server(SSL *s); SSL_CONF_CTX *SSL_CONF_CTX_new(void); int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx); void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx); unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags); unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, unsigned int flags); int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre); void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl); void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx); int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value); int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv); int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd); # ifndef OPENSSL_NO_SSL_TRACE void SSL_trace(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg); const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c); # endif # ifndef OPENSSL_NO_UNIT_TEST const struct openssl_ssl_test_functions *SSL_test_functions(void); # endif /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_SSL_strings(void); /* Error codes for the SSL functions. */ /* Function codes. */ # define SSL_F_CHECK_SUITEB_CIPHER_LIST 331 # define SSL_F_CLIENT_CERTIFICATE 100 # define SSL_F_CLIENT_FINISHED 167 # define SSL_F_CLIENT_HELLO 101 # define SSL_F_CLIENT_MASTER_KEY 102 # define SSL_F_D2I_SSL_SESSION 103 # define SSL_F_DO_DTLS1_WRITE 245 # define SSL_F_DO_SSL3_WRITE 104 # define SSL_F_DTLS1_ACCEPT 246 # define SSL_F_DTLS1_ADD_CERT_TO_BUF 295 # define SSL_F_DTLS1_BUFFER_RECORD 247 # define SSL_F_DTLS1_CHECK_TIMEOUT_NUM 316 # define SSL_F_DTLS1_CLIENT_HELLO 248 # define SSL_F_DTLS1_CONNECT 249 # define SSL_F_DTLS1_ENC 250 # define SSL_F_DTLS1_GET_HELLO_VERIFY 251 # define SSL_F_DTLS1_GET_MESSAGE 252 # define SSL_F_DTLS1_GET_MESSAGE_FRAGMENT 253 # define SSL_F_DTLS1_GET_RECORD 254 # define SSL_F_DTLS1_HANDLE_TIMEOUT 297 # define SSL_F_DTLS1_HEARTBEAT 305 # define SSL_F_DTLS1_OUTPUT_CERT_CHAIN 255 # define SSL_F_DTLS1_PREPROCESS_FRAGMENT 288 # define SSL_F_DTLS1_PROCESS_BUFFERED_RECORDS 424 # define SSL_F_DTLS1_PROCESS_OUT_OF_SEQ_MESSAGE 256 # define SSL_F_DTLS1_PROCESS_RECORD 257 # define SSL_F_DTLS1_READ_BYTES 258 # define SSL_F_DTLS1_READ_FAILED 259 # define SSL_F_DTLS1_SEND_CERTIFICATE_REQUEST 260 # define SSL_F_DTLS1_SEND_CLIENT_CERTIFICATE 261 # define SSL_F_DTLS1_SEND_CLIENT_KEY_EXCHANGE 262 # define SSL_F_DTLS1_SEND_CLIENT_VERIFY 263 # define SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST 264 # define SSL_F_DTLS1_SEND_SERVER_CERTIFICATE 265 # define SSL_F_DTLS1_SEND_SERVER_HELLO 266 # define SSL_F_DTLS1_SEND_SERVER_KEY_EXCHANGE 267 # define SSL_F_DTLS1_WRITE_APP_DATA_BYTES 268 # define SSL_F_GET_CLIENT_FINISHED 105 # define SSL_F_GET_CLIENT_HELLO 106 # define SSL_F_GET_CLIENT_MASTER_KEY 107 # define SSL_F_GET_SERVER_FINISHED 108 # define SSL_F_GET_SERVER_HELLO 109 # define SSL_F_GET_SERVER_STATIC_DH_KEY 340 # define SSL_F_GET_SERVER_VERIFY 110 # define SSL_F_I2D_SSL_SESSION 111 # define SSL_F_READ_N 112 # define SSL_F_REQUEST_CERTIFICATE 113 # define SSL_F_SERVER_FINISH 239 # define SSL_F_SERVER_HELLO 114 # define SSL_F_SERVER_VERIFY 240 # define SSL_F_SSL23_ACCEPT 115 # define SSL_F_SSL23_CLIENT_HELLO 116 # define SSL_F_SSL23_CONNECT 117 # define SSL_F_SSL23_GET_CLIENT_HELLO 118 # define SSL_F_SSL23_GET_SERVER_HELLO 119 # define SSL_F_SSL23_PEEK 237 # define SSL_F_SSL23_READ 120 # define SSL_F_SSL23_WRITE 121 # define SSL_F_SSL2_ACCEPT 122 # define SSL_F_SSL2_CONNECT 123 # define SSL_F_SSL2_ENC_INIT 124 # define SSL_F_SSL2_GENERATE_KEY_MATERIAL 241 # define SSL_F_SSL2_PEEK 234 # define SSL_F_SSL2_READ 125 # define SSL_F_SSL2_READ_INTERNAL 236 # define SSL_F_SSL2_SET_CERTIFICATE 126 # define SSL_F_SSL2_WRITE 127 # define SSL_F_SSL3_ACCEPT 128 # define SSL_F_SSL3_ADD_CERT_TO_BUF 296 # define SSL_F_SSL3_CALLBACK_CTRL 233 # define SSL_F_SSL3_CHANGE_CIPHER_STATE 129 # define SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM 130 # define SSL_F_SSL3_CHECK_CLIENT_HELLO 304 # define SSL_F_SSL3_CHECK_FINISHED 339 # define SSL_F_SSL3_CLIENT_HELLO 131 # define SSL_F_SSL3_CONNECT 132 # define SSL_F_SSL3_CTRL 213 # define SSL_F_SSL3_CTX_CTRL 133 # define SSL_F_SSL3_DIGEST_CACHED_RECORDS 293 # define SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC 292 # define SSL_F_SSL3_ENC 134 # define SSL_F_SSL3_GENERATE_KEY_BLOCK 238 # define SSL_F_SSL3_GENERATE_MASTER_SECRET 388 # define SSL_F_SSL3_GET_CERTIFICATE_REQUEST 135 # define SSL_F_SSL3_GET_CERT_STATUS 289 # define SSL_F_SSL3_GET_CERT_VERIFY 136 # define SSL_F_SSL3_GET_CLIENT_CERTIFICATE 137 # define SSL_F_SSL3_GET_CLIENT_HELLO 138 # define SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE 139 # define SSL_F_SSL3_GET_FINISHED 140 # define SSL_F_SSL3_GET_KEY_EXCHANGE 141 # define SSL_F_SSL3_GET_MESSAGE 142 # define SSL_F_SSL3_GET_NEW_SESSION_TICKET 283 # define SSL_F_SSL3_GET_NEXT_PROTO 306 # define SSL_F_SSL3_GET_RECORD 143 # define SSL_F_SSL3_GET_SERVER_CERTIFICATE 144 # define SSL_F_SSL3_GET_SERVER_DONE 145 # define SSL_F_SSL3_GET_SERVER_HELLO 146 # define SSL_F_SSL3_HANDSHAKE_MAC 285 # define SSL_F_SSL3_NEW_SESSION_TICKET 287 # define SSL_F_SSL3_OUTPUT_CERT_CHAIN 147 # define SSL_F_SSL3_PEEK 235 # define SSL_F_SSL3_READ_BYTES 148 # define SSL_F_SSL3_READ_N 149 # define SSL_F_SSL3_SEND_CERTIFICATE_REQUEST 150 # define SSL_F_SSL3_SEND_CLIENT_CERTIFICATE 151 # define SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE 152 # define SSL_F_SSL3_SEND_CLIENT_VERIFY 153 # define SSL_F_SSL3_SEND_SERVER_CERTIFICATE 154 # define SSL_F_SSL3_SEND_SERVER_HELLO 242 # define SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE 155 # define SSL_F_SSL3_SETUP_KEY_BLOCK 157 # define SSL_F_SSL3_SETUP_READ_BUFFER 156 # define SSL_F_SSL3_SETUP_WRITE_BUFFER 291 # define SSL_F_SSL3_WRITE_BYTES 158 # define SSL_F_SSL3_WRITE_PENDING 159 # define SSL_F_SSL_ADD_CERT_CHAIN 318 # define SSL_F_SSL_ADD_CERT_TO_BUF 319 # define SSL_F_SSL_ADD_CLIENTHELLO_RENEGOTIATE_EXT 298 # define SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT 277 # define SSL_F_SSL_ADD_CLIENTHELLO_USE_SRTP_EXT 307 # define SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK 215 # define SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK 216 # define SSL_F_SSL_ADD_SERVERHELLO_RENEGOTIATE_EXT 299 # define SSL_F_SSL_ADD_SERVERHELLO_TLSEXT 278 # define SSL_F_SSL_ADD_SERVERHELLO_USE_SRTP_EXT 308 # define SSL_F_SSL_BAD_METHOD 160 # define SSL_F_SSL_BUILD_CERT_CHAIN 332 # define SSL_F_SSL_BYTES_TO_CIPHER_LIST 161 # define SSL_F_SSL_CERT_DUP 221 # define SSL_F_SSL_CERT_INST 222 # define SSL_F_SSL_CERT_INSTANTIATE 214 # define SSL_F_SSL_CERT_NEW 162 # define SSL_F_SSL_CHECK_PRIVATE_KEY 163 # define SSL_F_SSL_CHECK_SERVERHELLO_TLSEXT 280 # define SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG 279 # define SSL_F_SSL_CIPHER_PROCESS_RULESTR 230 # define SSL_F_SSL_CIPHER_STRENGTH_SORT 231 # define SSL_F_SSL_CLEAR 164 # define SSL_F_SSL_COMP_ADD_COMPRESSION_METHOD 165 # define SSL_F_SSL_CONF_CMD 334 # define SSL_F_SSL_CREATE_CIPHER_LIST 166 # define SSL_F_SSL_CTRL 232 # define SSL_F_SSL_CTX_CHECK_PRIVATE_KEY 168 # define SSL_F_SSL_CTX_MAKE_PROFILES 309 # define SSL_F_SSL_CTX_NEW 169 # define SSL_F_SSL_CTX_SET_CIPHER_LIST 269 # define SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE 290 # define SSL_F_SSL_CTX_SET_PURPOSE 226 # define SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT 219 # define SSL_F_SSL_CTX_SET_SSL_VERSION 170 # define SSL_F_SSL_CTX_SET_TRUST 229 # define SSL_F_SSL_CTX_USE_CERTIFICATE 171 # define SSL_F_SSL_CTX_USE_CERTIFICATE_ASN1 172 # define SSL_F_SSL_CTX_USE_CERTIFICATE_CHAIN_FILE 220 # define SSL_F_SSL_CTX_USE_CERTIFICATE_FILE 173 # define SSL_F_SSL_CTX_USE_PRIVATEKEY 174 # define SSL_F_SSL_CTX_USE_PRIVATEKEY_ASN1 175 # define SSL_F_SSL_CTX_USE_PRIVATEKEY_FILE 176 # define SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT 272 # define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY 177 # define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY_ASN1 178 # define SSL_F_SSL_CTX_USE_RSAPRIVATEKEY_FILE 179 # define SSL_F_SSL_CTX_USE_SERVERINFO 336 # define SSL_F_SSL_CTX_USE_SERVERINFO_FILE 337 # define SSL_F_SSL_DO_HANDSHAKE 180 # define SSL_F_SSL_GET_NEW_SESSION 181 # define SSL_F_SSL_GET_PREV_SESSION 217 # define SSL_F_SSL_GET_SERVER_CERT_INDEX 322 # define SSL_F_SSL_GET_SERVER_SEND_CERT 182 # define SSL_F_SSL_GET_SERVER_SEND_PKEY 317 # define SSL_F_SSL_GET_SIGN_PKEY 183 # define SSL_F_SSL_INIT_WBIO_BUFFER 184 # define SSL_F_SSL_LOAD_CLIENT_CA_FILE 185 # define SSL_F_SSL_NEW 186 # define SSL_F_SSL_PARSE_CLIENTHELLO_RENEGOTIATE_EXT 300 # define SSL_F_SSL_PARSE_CLIENTHELLO_TLSEXT 302 # define SSL_F_SSL_PARSE_CLIENTHELLO_USE_SRTP_EXT 310 # define SSL_F_SSL_PARSE_SERVERHELLO_RENEGOTIATE_EXT 301 # define SSL_F_SSL_PARSE_SERVERHELLO_TLSEXT 303 # define SSL_F_SSL_PARSE_SERVERHELLO_USE_SRTP_EXT 311 # define SSL_F_SSL_PEEK 270 # define SSL_F_SSL_PREPARE_CLIENTHELLO_TLSEXT 281 # define SSL_F_SSL_PREPARE_SERVERHELLO_TLSEXT 282 # define SSL_F_SSL_READ 223 # define SSL_F_SSL_RSA_PRIVATE_DECRYPT 187 # define SSL_F_SSL_RSA_PUBLIC_ENCRYPT 188 # define SSL_F_SSL_SCAN_CLIENTHELLO_TLSEXT 320 # define SSL_F_SSL_SCAN_SERVERHELLO_TLSEXT 321 # define SSL_F_SSL_SESSION_DUP 348 # define SSL_F_SSL_SESSION_NEW 189 # define SSL_F_SSL_SESSION_PRINT_FP 190 # define SSL_F_SSL_SESSION_SET1_ID_CONTEXT 312 # define SSL_F_SSL_SESS_CERT_NEW 225 # define SSL_F_SSL_SET_CERT 191 # define SSL_F_SSL_SET_CIPHER_LIST 271 # define SSL_F_SSL_SET_FD 192 # define SSL_F_SSL_SET_PKEY 193 # define SSL_F_SSL_SET_PURPOSE 227 # define SSL_F_SSL_SET_RFD 194 # define SSL_F_SSL_SET_SESSION 195 # define SSL_F_SSL_SET_SESSION_ID_CONTEXT 218 # define SSL_F_SSL_SET_SESSION_TICKET_EXT 294 # define SSL_F_SSL_SET_TRUST 228 # define SSL_F_SSL_SET_WFD 196 # define SSL_F_SSL_SHUTDOWN 224 # define SSL_F_SSL_SRP_CTX_INIT 313 # define SSL_F_SSL_UNDEFINED_CONST_FUNCTION 243 # define SSL_F_SSL_UNDEFINED_FUNCTION 197 # define SSL_F_SSL_UNDEFINED_VOID_FUNCTION 244 # define SSL_F_SSL_USE_CERTIFICATE 198 # define SSL_F_SSL_USE_CERTIFICATE_ASN1 199 # define SSL_F_SSL_USE_CERTIFICATE_FILE 200 # define SSL_F_SSL_USE_PRIVATEKEY 201 # define SSL_F_SSL_USE_PRIVATEKEY_ASN1 202 # define SSL_F_SSL_USE_PRIVATEKEY_FILE 203 # define SSL_F_SSL_USE_PSK_IDENTITY_HINT 273 # define SSL_F_SSL_USE_RSAPRIVATEKEY 204 # define SSL_F_SSL_USE_RSAPRIVATEKEY_ASN1 205 # define SSL_F_SSL_USE_RSAPRIVATEKEY_FILE 206 # define SSL_F_SSL_VERIFY_CERT_CHAIN 207 # define SSL_F_SSL_WRITE 208 # define SSL_F_TLS12_CHECK_PEER_SIGALG 333 # define SSL_F_TLS1_CERT_VERIFY_MAC 286 # define SSL_F_TLS1_CHANGE_CIPHER_STATE 209 # define SSL_F_TLS1_CHECK_SERVERHELLO_TLSEXT 274 # define SSL_F_TLS1_ENC 210 # define SSL_F_TLS1_EXPORT_KEYING_MATERIAL 314 # define SSL_F_TLS1_GET_CURVELIST 338 # define SSL_F_TLS1_HEARTBEAT 315 # define SSL_F_TLS1_PREPARE_CLIENTHELLO_TLSEXT 275 # define SSL_F_TLS1_PREPARE_SERVERHELLO_TLSEXT 276 # define SSL_F_TLS1_PRF 284 # define SSL_F_TLS1_SETUP_KEY_BLOCK 211 # define SSL_F_TLS1_SET_SERVER_SIGALGS 335 # define SSL_F_WRITE_PENDING 212 /* Reason codes. */ # define SSL_R_APP_DATA_IN_HANDSHAKE 100 # define SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT 272 # define SSL_R_BAD_ALERT_RECORD 101 # define SSL_R_BAD_AUTHENTICATION_TYPE 102 # define SSL_R_BAD_CHANGE_CIPHER_SPEC 103 # define SSL_R_BAD_CHECKSUM 104 # define SSL_R_BAD_DATA 390 # define SSL_R_BAD_DATA_RETURNED_BY_CALLBACK 106 # define SSL_R_BAD_DECOMPRESSION 107 # define SSL_R_BAD_DH_G_LENGTH 108 # define SSL_R_BAD_DH_G_VALUE 375 # define SSL_R_BAD_DH_PUB_KEY_LENGTH 109 # define SSL_R_BAD_DH_PUB_KEY_VALUE 393 # define SSL_R_BAD_DH_P_LENGTH 110 # define SSL_R_BAD_DH_P_VALUE 395 # define SSL_R_BAD_DIGEST_LENGTH 111 # define SSL_R_BAD_DSA_SIGNATURE 112 # define SSL_R_BAD_ECC_CERT 304 # define SSL_R_BAD_ECDSA_SIGNATURE 305 # define SSL_R_BAD_ECPOINT 306 # define SSL_R_BAD_HANDSHAKE_LENGTH 332 # define SSL_R_BAD_HELLO_REQUEST 105 # define SSL_R_BAD_LENGTH 271 # define SSL_R_BAD_MAC_DECODE 113 # define SSL_R_BAD_MAC_LENGTH 333 # define SSL_R_BAD_MESSAGE_TYPE 114 # define SSL_R_BAD_PACKET_LENGTH 115 # define SSL_R_BAD_PROTOCOL_VERSION_NUMBER 116 # define SSL_R_BAD_PSK_IDENTITY_HINT_LENGTH 316 # define SSL_R_BAD_RESPONSE_ARGUMENT 117 # define SSL_R_BAD_RSA_DECRYPT 118 # define SSL_R_BAD_RSA_ENCRYPT 119 # define SSL_R_BAD_RSA_E_LENGTH 120 # define SSL_R_BAD_RSA_MODULUS_LENGTH 121 # define SSL_R_BAD_RSA_SIGNATURE 122 # define SSL_R_BAD_SIGNATURE 123 # define SSL_R_BAD_SRP_A_LENGTH 347 # define SSL_R_BAD_SRP_B_LENGTH 348 # define SSL_R_BAD_SRP_G_LENGTH 349 # define SSL_R_BAD_SRP_N_LENGTH 350 # define SSL_R_BAD_SRP_PARAMETERS 371 # define SSL_R_BAD_SRP_S_LENGTH 351 # define SSL_R_BAD_SRTP_MKI_VALUE 352 # define SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST 353 # define SSL_R_BAD_SSL_FILETYPE 124 # define SSL_R_BAD_SSL_SESSION_ID_LENGTH 125 # define SSL_R_BAD_STATE 126 # define SSL_R_BAD_VALUE 384 # define SSL_R_BAD_WRITE_RETRY 127 # define SSL_R_BIO_NOT_SET 128 # define SSL_R_BLOCK_CIPHER_PAD_IS_WRONG 129 # define SSL_R_BN_LIB 130 # define SSL_R_CA_DN_LENGTH_MISMATCH 131 # define SSL_R_CA_DN_TOO_LONG 132 # define SSL_R_CCS_RECEIVED_EARLY 133 # define SSL_R_CERTIFICATE_VERIFY_FAILED 134 # define SSL_R_CERT_CB_ERROR 377 # define SSL_R_CERT_LENGTH_MISMATCH 135 # define SSL_R_CHALLENGE_IS_DIFFERENT 136 # define SSL_R_CIPHER_CODE_WRONG_LENGTH 137 # define SSL_R_CIPHER_OR_HASH_UNAVAILABLE 138 # define SSL_R_CIPHER_TABLE_SRC_ERROR 139 # define SSL_R_CLIENTHELLO_TLSEXT 226 # define SSL_R_COMPRESSED_LENGTH_TOO_LONG 140 # define SSL_R_COMPRESSION_DISABLED 343 # define SSL_R_COMPRESSION_FAILURE 141 # define SSL_R_COMPRESSION_ID_NOT_WITHIN_PRIVATE_RANGE 307 # define SSL_R_COMPRESSION_LIBRARY_ERROR 142 # define SSL_R_CONNECTION_ID_IS_DIFFERENT 143 # define SSL_R_CONNECTION_TYPE_NOT_SET 144 # define SSL_R_COOKIE_MISMATCH 308 # define SSL_R_DATA_BETWEEN_CCS_AND_FINISHED 145 # define SSL_R_DATA_LENGTH_TOO_LONG 146 # define SSL_R_DECRYPTION_FAILED 147 # define SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC 281 # define SSL_R_DH_KEY_TOO_SMALL 372 # define SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG 148 # define SSL_R_DIGEST_CHECK_FAILED 149 # define SSL_R_DTLS_MESSAGE_TOO_BIG 334 # define SSL_R_DUPLICATE_COMPRESSION_ID 309 # define SSL_R_ECC_CERT_NOT_FOR_KEY_AGREEMENT 317 # define SSL_R_ECC_CERT_NOT_FOR_SIGNING 318 # define SSL_R_ECC_CERT_SHOULD_HAVE_RSA_SIGNATURE 322 # define SSL_R_ECC_CERT_SHOULD_HAVE_SHA1_SIGNATURE 323 # define SSL_R_ECDH_REQUIRED_FOR_SUITEB_MODE 374 # define SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER 310 # define SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST 354 # define SSL_R_ENCRYPTED_LENGTH_TOO_LONG 150 # define SSL_R_ERROR_GENERATING_TMP_RSA_KEY 282 # define SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST 151 # define SSL_R_EXCESSIVE_MESSAGE_SIZE 152 # define SSL_R_EXTRA_DATA_IN_MESSAGE 153 # define SSL_R_GOT_A_FIN_BEFORE_A_CCS 154 # define SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS 355 # define SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION 356 # define SSL_R_HTTPS_PROXY_REQUEST 155 # define SSL_R_HTTP_REQUEST 156 # define SSL_R_ILLEGAL_PADDING 283 # define SSL_R_ILLEGAL_SUITEB_DIGEST 380 # define SSL_R_INAPPROPRIATE_FALLBACK 373 # define SSL_R_INCONSISTENT_COMPRESSION 340 # define SSL_R_INVALID_CHALLENGE_LENGTH 158 # define SSL_R_INVALID_COMMAND 280 # define SSL_R_INVALID_COMPRESSION_ALGORITHM 341 # define SSL_R_INVALID_NULL_CMD_NAME 385 # define SSL_R_INVALID_PURPOSE 278 # define SSL_R_INVALID_SERVERINFO_DATA 388 # define SSL_R_INVALID_SRP_USERNAME 357 # define SSL_R_INVALID_STATUS_RESPONSE 328 # define SSL_R_INVALID_TICKET_KEYS_LENGTH 325 # define SSL_R_INVALID_TRUST 279 # define SSL_R_KEY_ARG_TOO_LONG 284 # define SSL_R_KRB5 285 # define SSL_R_KRB5_C_CC_PRINC 286 # define SSL_R_KRB5_C_GET_CRED 287 # define SSL_R_KRB5_C_INIT 288 # define SSL_R_KRB5_C_MK_REQ 289 # define SSL_R_KRB5_S_BAD_TICKET 290 # define SSL_R_KRB5_S_INIT 291 # define SSL_R_KRB5_S_RD_REQ 292 # define SSL_R_KRB5_S_TKT_EXPIRED 293 # define SSL_R_KRB5_S_TKT_NYV 294 # define SSL_R_KRB5_S_TKT_SKEW 295 # define SSL_R_LENGTH_MISMATCH 159 # define SSL_R_LENGTH_TOO_SHORT 160 # define SSL_R_LIBRARY_BUG 274 # define SSL_R_LIBRARY_HAS_NO_CIPHERS 161 # define SSL_R_MESSAGE_TOO_LONG 296 # define SSL_R_MISSING_DH_DSA_CERT 162 # define SSL_R_MISSING_DH_KEY 163 # define SSL_R_MISSING_DH_RSA_CERT 164 # define SSL_R_MISSING_DSA_SIGNING_CERT 165 # define SSL_R_MISSING_ECDH_CERT 382 # define SSL_R_MISSING_ECDSA_SIGNING_CERT 381 # define SSL_R_MISSING_EXPORT_TMP_DH_KEY 166 # define SSL_R_MISSING_EXPORT_TMP_RSA_KEY 167 # define SSL_R_MISSING_RSA_CERTIFICATE 168 # define SSL_R_MISSING_RSA_ENCRYPTING_CERT 169 # define SSL_R_MISSING_RSA_SIGNING_CERT 170 # define SSL_R_MISSING_SRP_PARAM 358 # define SSL_R_MISSING_TMP_DH_KEY 171 # define SSL_R_MISSING_TMP_ECDH_KEY 311 # define SSL_R_MISSING_TMP_RSA_KEY 172 # define SSL_R_MISSING_TMP_RSA_PKEY 173 # define SSL_R_MISSING_VERIFY_MESSAGE 174 # define SSL_R_MULTIPLE_SGC_RESTARTS 346 # define SSL_R_NON_SSLV2_INITIAL_PACKET 175 # define SSL_R_NO_CERTIFICATES_RETURNED 176 # define SSL_R_NO_CERTIFICATE_ASSIGNED 177 # define SSL_R_NO_CERTIFICATE_RETURNED 178 # define SSL_R_NO_CERTIFICATE_SET 179 # define SSL_R_NO_CERTIFICATE_SPECIFIED 180 # define SSL_R_NO_CIPHERS_AVAILABLE 181 # define SSL_R_NO_CIPHERS_PASSED 182 # define SSL_R_NO_CIPHERS_SPECIFIED 183 # define SSL_R_NO_CIPHER_LIST 184 # define SSL_R_NO_CIPHER_MATCH 185 # define SSL_R_NO_CLIENT_CERT_METHOD 331 # define SSL_R_NO_CLIENT_CERT_RECEIVED 186 # define SSL_R_NO_COMPRESSION_SPECIFIED 187 # define SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER 330 # define SSL_R_NO_METHOD_SPECIFIED 188 # define SSL_R_NO_PEM_EXTENSIONS 389 # define SSL_R_NO_PRIVATEKEY 189 # define SSL_R_NO_PRIVATE_KEY_ASSIGNED 190 # define SSL_R_NO_PROTOCOLS_AVAILABLE 191 # define SSL_R_NO_PUBLICKEY 192 # define SSL_R_NO_RENEGOTIATION 339 # define SSL_R_NO_REQUIRED_DIGEST 324 # define SSL_R_NO_SHARED_CIPHER 193 # define SSL_R_NO_SHARED_SIGATURE_ALGORITHMS 376 # define SSL_R_NO_SRTP_PROFILES 359 # define SSL_R_NO_VERIFY_CALLBACK 194 # define SSL_R_NULL_SSL_CTX 195 # define SSL_R_NULL_SSL_METHOD_PASSED 196 # define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED 197 # define SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED 344 # define SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE 387 # define SSL_R_ONLY_TLS_1_2_ALLOWED_IN_SUITEB_MODE 379 # define SSL_R_ONLY_TLS_ALLOWED_IN_FIPS_MODE 297 # define SSL_R_OPAQUE_PRF_INPUT_TOO_LONG 327 # define SSL_R_PACKET_LENGTH_TOO_LONG 198 # define SSL_R_PARSE_TLSEXT 227 # define SSL_R_PATH_TOO_LONG 270 # define SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE 199 # define SSL_R_PEER_ERROR 200 # define SSL_R_PEER_ERROR_CERTIFICATE 201 # define SSL_R_PEER_ERROR_NO_CERTIFICATE 202 # define SSL_R_PEER_ERROR_NO_CIPHER 203 # define SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE 204 # define SSL_R_PEM_NAME_BAD_PREFIX 391 # define SSL_R_PEM_NAME_TOO_SHORT 392 # define SSL_R_PRE_MAC_LENGTH_TOO_LONG 205 # define SSL_R_PROBLEMS_MAPPING_CIPHER_FUNCTIONS 206 # define SSL_R_PROTOCOL_IS_SHUTDOWN 207 # define SSL_R_PSK_IDENTITY_NOT_FOUND 223 # define SSL_R_PSK_NO_CLIENT_CB 224 # define SSL_R_PSK_NO_SERVER_CB 225 # define SSL_R_PUBLIC_KEY_ENCRYPT_ERROR 208 # define SSL_R_PUBLIC_KEY_IS_NOT_RSA 209 # define SSL_R_PUBLIC_KEY_NOT_RSA 210 # define SSL_R_READ_BIO_NOT_SET 211 # define SSL_R_READ_TIMEOUT_EXPIRED 312 # define SSL_R_READ_WRONG_PACKET_TYPE 212 # define SSL_R_RECORD_LENGTH_MISMATCH 213 # define SSL_R_RECORD_TOO_LARGE 214 # define SSL_R_RECORD_TOO_SMALL 298 # define SSL_R_RENEGOTIATE_EXT_TOO_LONG 335 # define SSL_R_RENEGOTIATION_ENCODING_ERR 336 # define SSL_R_RENEGOTIATION_MISMATCH 337 # define SSL_R_REQUIRED_CIPHER_MISSING 215 # define SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING 342 # define SSL_R_REUSE_CERT_LENGTH_NOT_ZERO 216 # define SSL_R_REUSE_CERT_TYPE_NOT_ZERO 217 # define SSL_R_REUSE_CIPHER_LIST_NOT_ZERO 218 # define SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING 345 # define SSL_R_SERVERHELLO_TLSEXT 275 # define SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED 277 # define SSL_R_SHORT_READ 219 # define SSL_R_SHUTDOWN_WHILE_IN_INIT 407 # define SSL_R_SIGNATURE_ALGORITHMS_ERROR 360 # define SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE 220 # define SSL_R_SRP_A_CALC 361 # define SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES 362 # define SSL_R_SRTP_PROTECTION_PROFILE_LIST_TOO_LONG 363 # define SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE 364 # define SSL_R_SSL23_DOING_SESSION_ID_REUSE 221 # define SSL_R_SSL2_CONNECTION_ID_TOO_LONG 299 # define SSL_R_SSL3_EXT_INVALID_ECPOINTFORMAT 321 # define SSL_R_SSL3_EXT_INVALID_SERVERNAME 319 # define SSL_R_SSL3_EXT_INVALID_SERVERNAME_TYPE 320 # define SSL_R_SSL3_SESSION_ID_TOO_LONG 300 # define SSL_R_SSL3_SESSION_ID_TOO_SHORT 222 # define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042 # define SSL_R_SSLV3_ALERT_BAD_RECORD_MAC 1020 # define SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED 1045 # define SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED 1044 # define SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN 1046 # define SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE 1030 # define SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE 1040 # define SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER 1047 # define SSL_R_SSLV3_ALERT_NO_CERTIFICATE 1041 # define SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE 1010 # define SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE 1043 # define SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION 228 # define SSL_R_SSL_HANDSHAKE_FAILURE 229 # define SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS 230 # define SSL_R_SSL_SESSION_ID_CALLBACK_FAILED 301 # define SSL_R_SSL_SESSION_ID_CONFLICT 302 # define SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG 273 # define SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH 303 # define SSL_R_SSL_SESSION_ID_IS_DIFFERENT 231 # define SSL_R_TLSV1_ALERT_ACCESS_DENIED 1049 # define SSL_R_TLSV1_ALERT_DECODE_ERROR 1050 # define SSL_R_TLSV1_ALERT_DECRYPTION_FAILED 1021 # define SSL_R_TLSV1_ALERT_DECRYPT_ERROR 1051 # define SSL_R_TLSV1_ALERT_EXPORT_RESTRICTION 1060 # define SSL_R_TLSV1_ALERT_INAPPROPRIATE_FALLBACK 1086 # define SSL_R_TLSV1_ALERT_INSUFFICIENT_SECURITY 1071 # define SSL_R_TLSV1_ALERT_INTERNAL_ERROR 1080 # define SSL_R_TLSV1_ALERT_NO_RENEGOTIATION 1100 # define SSL_R_TLSV1_ALERT_PROTOCOL_VERSION 1070 # define SSL_R_TLSV1_ALERT_RECORD_OVERFLOW 1022 # define SSL_R_TLSV1_ALERT_UNKNOWN_CA 1048 # define SSL_R_TLSV1_ALERT_USER_CANCELLED 1090 # define SSL_R_TLSV1_BAD_CERTIFICATE_HASH_VALUE 1114 # define SSL_R_TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE 1113 # define SSL_R_TLSV1_CERTIFICATE_UNOBTAINABLE 1111 # define SSL_R_TLSV1_UNRECOGNIZED_NAME 1112 # define SSL_R_TLSV1_UNSUPPORTED_EXTENSION 1110 # define SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER 232 # define SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT 365 # define SSL_R_TLS_HEARTBEAT_PENDING 366 # define SSL_R_TLS_ILLEGAL_EXPORTER_LABEL 367 # define SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST 157 # define SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST 233 # define SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG 234 # define SSL_R_TOO_MANY_WARN_ALERTS 409 # define SSL_R_TRIED_TO_USE_UNSUPPORTED_CIPHER 235 # define SSL_R_UNABLE_TO_DECODE_DH_CERTS 236 # define SSL_R_UNABLE_TO_DECODE_ECDH_CERTS 313 # define SSL_R_UNABLE_TO_EXTRACT_PUBLIC_KEY 237 # define SSL_R_UNABLE_TO_FIND_DH_PARAMETERS 238 # define SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS 314 # define SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS 239 # define SSL_R_UNABLE_TO_FIND_SSL_METHOD 240 # define SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES 241 # define SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES 242 # define SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES 243 # define SSL_R_UNEXPECTED_MESSAGE 244 # define SSL_R_UNEXPECTED_RECORD 245 # define SSL_R_UNINITIALIZED 276 # define SSL_R_UNKNOWN_ALERT_TYPE 246 # define SSL_R_UNKNOWN_CERTIFICATE_TYPE 247 # define SSL_R_UNKNOWN_CIPHER_RETURNED 248 # define SSL_R_UNKNOWN_CIPHER_TYPE 249 # define SSL_R_UNKNOWN_CMD_NAME 386 # define SSL_R_UNKNOWN_DIGEST 368 # define SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE 250 # define SSL_R_UNKNOWN_PKEY_TYPE 251 # define SSL_R_UNKNOWN_PROTOCOL 252 # define SSL_R_UNKNOWN_REMOTE_ERROR_TYPE 253 # define SSL_R_UNKNOWN_SSL_VERSION 254 # define SSL_R_UNKNOWN_STATE 255 # define SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED 338 # define SSL_R_UNSUPPORTED_CIPHER 256 # define SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM 257 # define SSL_R_UNSUPPORTED_DIGEST_TYPE 326 # define SSL_R_UNSUPPORTED_ELLIPTIC_CURVE 315 # define SSL_R_UNSUPPORTED_PROTOCOL 258 # define SSL_R_UNSUPPORTED_SSL_VERSION 259 # define SSL_R_UNSUPPORTED_STATUS_TYPE 329 # define SSL_R_USE_SRTP_NOT_NEGOTIATED 369 # define SSL_R_WRITE_BIO_NOT_SET 260 # define SSL_R_WRONG_CERTIFICATE_TYPE 383 # define SSL_R_WRONG_CIPHER_RETURNED 261 # define SSL_R_WRONG_CURVE 378 # define SSL_R_WRONG_MESSAGE_TYPE 262 # define SSL_R_WRONG_NUMBER_OF_KEY_BITS 263 # define SSL_R_WRONG_SIGNATURE_LENGTH 264 # define SSL_R_WRONG_SIGNATURE_SIZE 265 # define SSL_R_WRONG_SIGNATURE_TYPE 370 # define SSL_R_WRONG_SSL_VERSION 266 # define SSL_R_WRONG_VERSION_NUMBER 267 # define SSL_R_X509_LIB 268 # define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 269 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ssl2.h ================================================ /* ssl/ssl2.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_SSL2_H # define HEADER_SSL2_H #ifdef __cplusplus extern "C" { #endif /* Protocol Version Codes */ # define SSL2_VERSION 0x0002 # define SSL2_VERSION_MAJOR 0x00 # define SSL2_VERSION_MINOR 0x02 /* #define SSL2_CLIENT_VERSION 0x0002 */ /* #define SSL2_SERVER_VERSION 0x0002 */ /* Protocol Message Codes */ # define SSL2_MT_ERROR 0 # define SSL2_MT_CLIENT_HELLO 1 # define SSL2_MT_CLIENT_MASTER_KEY 2 # define SSL2_MT_CLIENT_FINISHED 3 # define SSL2_MT_SERVER_HELLO 4 # define SSL2_MT_SERVER_VERIFY 5 # define SSL2_MT_SERVER_FINISHED 6 # define SSL2_MT_REQUEST_CERTIFICATE 7 # define SSL2_MT_CLIENT_CERTIFICATE 8 /* Error Message Codes */ # define SSL2_PE_UNDEFINED_ERROR 0x0000 # define SSL2_PE_NO_CIPHER 0x0001 # define SSL2_PE_NO_CERTIFICATE 0x0002 # define SSL2_PE_BAD_CERTIFICATE 0x0004 # define SSL2_PE_UNSUPPORTED_CERTIFICATE_TYPE 0x0006 /* Cipher Kind Values */ # define SSL2_CK_NULL_WITH_MD5 0x02000000/* v3 */ # define SSL2_CK_RC4_128_WITH_MD5 0x02010080 # define SSL2_CK_RC4_128_EXPORT40_WITH_MD5 0x02020080 # define SSL2_CK_RC2_128_CBC_WITH_MD5 0x02030080 # define SSL2_CK_RC2_128_CBC_EXPORT40_WITH_MD5 0x02040080 # define SSL2_CK_IDEA_128_CBC_WITH_MD5 0x02050080 # define SSL2_CK_DES_64_CBC_WITH_MD5 0x02060040 # define SSL2_CK_DES_64_CBC_WITH_SHA 0x02060140/* v3 */ # define SSL2_CK_DES_192_EDE3_CBC_WITH_MD5 0x020700c0 # define SSL2_CK_DES_192_EDE3_CBC_WITH_SHA 0x020701c0/* v3 */ # define SSL2_CK_RC4_64_WITH_MD5 0x02080080/* MS hack */ # define SSL2_CK_DES_64_CFB64_WITH_MD5_1 0x02ff0800/* SSLeay */ # define SSL2_CK_NULL 0x02ff0810/* SSLeay */ # define SSL2_TXT_DES_64_CFB64_WITH_MD5_1 "DES-CFB-M1" # define SSL2_TXT_NULL_WITH_MD5 "NULL-MD5" # define SSL2_TXT_RC4_128_WITH_MD5 "RC4-MD5" # define SSL2_TXT_RC4_128_EXPORT40_WITH_MD5 "EXP-RC4-MD5" # define SSL2_TXT_RC2_128_CBC_WITH_MD5 "RC2-CBC-MD5" # define SSL2_TXT_RC2_128_CBC_EXPORT40_WITH_MD5 "EXP-RC2-CBC-MD5" # define SSL2_TXT_IDEA_128_CBC_WITH_MD5 "IDEA-CBC-MD5" # define SSL2_TXT_DES_64_CBC_WITH_MD5 "DES-CBC-MD5" # define SSL2_TXT_DES_64_CBC_WITH_SHA "DES-CBC-SHA" # define SSL2_TXT_DES_192_EDE3_CBC_WITH_MD5 "DES-CBC3-MD5" # define SSL2_TXT_DES_192_EDE3_CBC_WITH_SHA "DES-CBC3-SHA" # define SSL2_TXT_RC4_64_WITH_MD5 "RC4-64-MD5" # define SSL2_TXT_NULL "NULL" /* Flags for the SSL_CIPHER.algorithm2 field */ # define SSL2_CF_5_BYTE_ENC 0x01 # define SSL2_CF_8_BYTE_ENC 0x02 /* Certificate Type Codes */ # define SSL2_CT_X509_CERTIFICATE 0x01 /* Authentication Type Code */ # define SSL2_AT_MD5_WITH_RSA_ENCRYPTION 0x01 # define SSL2_MAX_SSL_SESSION_ID_LENGTH 32 /* Upper/Lower Bounds */ # define SSL2_MAX_MASTER_KEY_LENGTH_IN_BITS 256 # ifdef OPENSSL_SYS_MPE # define SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER 29998u # else # define SSL2_MAX_RECORD_LENGTH_2_BYTE_HEADER 32767u /* 2^15-1 */ # endif # define SSL2_MAX_RECORD_LENGTH_3_BYTE_HEADER 16383/* 2^14-1 */ # define SSL2_CHALLENGE_LENGTH 16 /* * #define SSL2_CHALLENGE_LENGTH 32 */ # define SSL2_MIN_CHALLENGE_LENGTH 16 # define SSL2_MAX_CHALLENGE_LENGTH 32 # define SSL2_CONNECTION_ID_LENGTH 16 # define SSL2_MAX_CONNECTION_ID_LENGTH 16 # define SSL2_SSL_SESSION_ID_LENGTH 16 # define SSL2_MAX_CERT_CHALLENGE_LENGTH 32 # define SSL2_MIN_CERT_CHALLENGE_LENGTH 16 # define SSL2_MAX_KEY_MATERIAL_LENGTH 24 # ifndef HEADER_SSL_LOCL_H # define CERT char # endif # ifndef OPENSSL_NO_SSL_INTERN typedef struct ssl2_state_st { int three_byte_header; int clear_text; /* clear text */ int escape; /* not used in SSLv2 */ int ssl2_rollback; /* used if SSLv23 rolled back to SSLv2 */ /* * non-blocking io info, used to make sure the same args were passwd */ unsigned int wnum; /* number of bytes sent so far */ int wpend_tot; const unsigned char *wpend_buf; int wpend_off; /* offset to data to write */ int wpend_len; /* number of bytes passwd to write */ int wpend_ret; /* number of bytes to return to caller */ /* buffer raw data */ int rbuf_left; int rbuf_offs; unsigned char *rbuf; unsigned char *wbuf; unsigned char *write_ptr; /* used to point to the start due to 2/3 byte * header. */ unsigned int padding; unsigned int rlength; /* passed to ssl2_enc */ int ract_data_length; /* Set when things are encrypted. */ unsigned int wlength; /* passed to ssl2_enc */ int wact_data_length; /* Set when things are decrypted. */ unsigned char *ract_data; unsigned char *wact_data; unsigned char *mac_data; unsigned char *read_key; unsigned char *write_key; /* Stuff specifically to do with this SSL session */ unsigned int challenge_length; unsigned char challenge[SSL2_MAX_CHALLENGE_LENGTH]; unsigned int conn_id_length; unsigned char conn_id[SSL2_MAX_CONNECTION_ID_LENGTH]; unsigned int key_material_length; unsigned char key_material[SSL2_MAX_KEY_MATERIAL_LENGTH * 2]; unsigned long read_sequence; unsigned long write_sequence; struct { unsigned int conn_id_length; unsigned int cert_type; unsigned int cert_length; unsigned int csl; unsigned int clear; unsigned int enc; unsigned char ccl[SSL2_MAX_CERT_CHALLENGE_LENGTH]; unsigned int cipher_spec_length; unsigned int session_id_length; unsigned int clen; unsigned int rlen; } tmp; } SSL2_STATE; # endif /* SSLv2 */ /* client */ # define SSL2_ST_SEND_CLIENT_HELLO_A (0x10|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_HELLO_B (0x11|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_HELLO_A (0x20|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_HELLO_B (0x21|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_MASTER_KEY_A (0x30|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_MASTER_KEY_B (0x31|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_FINISHED_A (0x40|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_FINISHED_B (0x41|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_CERTIFICATE_A (0x50|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_CERTIFICATE_B (0x51|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_CERTIFICATE_C (0x52|SSL_ST_CONNECT) # define SSL2_ST_SEND_CLIENT_CERTIFICATE_D (0x53|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_VERIFY_A (0x60|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_VERIFY_B (0x61|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_FINISHED_A (0x70|SSL_ST_CONNECT) # define SSL2_ST_GET_SERVER_FINISHED_B (0x71|SSL_ST_CONNECT) # define SSL2_ST_CLIENT_START_ENCRYPTION (0x80|SSL_ST_CONNECT) # define SSL2_ST_X509_GET_CLIENT_CERTIFICATE (0x90|SSL_ST_CONNECT) /* server */ # define SSL2_ST_GET_CLIENT_HELLO_A (0x10|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_HELLO_B (0x11|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_HELLO_C (0x12|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_HELLO_A (0x20|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_HELLO_B (0x21|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_MASTER_KEY_A (0x30|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_MASTER_KEY_B (0x31|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_VERIFY_A (0x40|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_VERIFY_B (0x41|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_VERIFY_C (0x42|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_FINISHED_A (0x50|SSL_ST_ACCEPT) # define SSL2_ST_GET_CLIENT_FINISHED_B (0x51|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_FINISHED_A (0x60|SSL_ST_ACCEPT) # define SSL2_ST_SEND_SERVER_FINISHED_B (0x61|SSL_ST_ACCEPT) # define SSL2_ST_SEND_REQUEST_CERTIFICATE_A (0x70|SSL_ST_ACCEPT) # define SSL2_ST_SEND_REQUEST_CERTIFICATE_B (0x71|SSL_ST_ACCEPT) # define SSL2_ST_SEND_REQUEST_CERTIFICATE_C (0x72|SSL_ST_ACCEPT) # define SSL2_ST_SEND_REQUEST_CERTIFICATE_D (0x73|SSL_ST_ACCEPT) # define SSL2_ST_SERVER_START_ENCRYPTION (0x80|SSL_ST_ACCEPT) # define SSL2_ST_X509_GET_SERVER_CERTIFICATE (0x90|SSL_ST_ACCEPT) #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ssl23.h ================================================ /* ssl/ssl23.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_SSL23_H # define HEADER_SSL23_H #ifdef __cplusplus extern "C" { #endif /* * client */ /* write to server */ # define SSL23_ST_CW_CLNT_HELLO_A (0x210|SSL_ST_CONNECT) # define SSL23_ST_CW_CLNT_HELLO_B (0x211|SSL_ST_CONNECT) /* read from server */ # define SSL23_ST_CR_SRVR_HELLO_A (0x220|SSL_ST_CONNECT) # define SSL23_ST_CR_SRVR_HELLO_B (0x221|SSL_ST_CONNECT) /* server */ /* read from client */ # define SSL23_ST_SR_CLNT_HELLO_A (0x210|SSL_ST_ACCEPT) # define SSL23_ST_SR_CLNT_HELLO_B (0x211|SSL_ST_ACCEPT) #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ssl3.h ================================================ /* ssl/ssl3.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECC cipher suite support in OpenSSL originally developed by * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ #ifndef HEADER_SSL3_H # define HEADER_SSL3_H # ifndef OPENSSL_NO_COMP # include # endif # include # include # include #ifdef __cplusplus extern "C" { #endif /* * Signalling cipher suite value from RFC 5746 * (TLS_EMPTY_RENEGOTIATION_INFO_SCSV) */ # define SSL3_CK_SCSV 0x030000FF /* * Signalling cipher suite value from draft-ietf-tls-downgrade-scsv-00 * (TLS_FALLBACK_SCSV) */ # define SSL3_CK_FALLBACK_SCSV 0x03005600 # define SSL3_CK_RSA_NULL_MD5 0x03000001 # define SSL3_CK_RSA_NULL_SHA 0x03000002 # define SSL3_CK_RSA_RC4_40_MD5 0x03000003 # define SSL3_CK_RSA_RC4_128_MD5 0x03000004 # define SSL3_CK_RSA_RC4_128_SHA 0x03000005 # define SSL3_CK_RSA_RC2_40_MD5 0x03000006 # define SSL3_CK_RSA_IDEA_128_SHA 0x03000007 # define SSL3_CK_RSA_DES_40_CBC_SHA 0x03000008 # define SSL3_CK_RSA_DES_64_CBC_SHA 0x03000009 # define SSL3_CK_RSA_DES_192_CBC3_SHA 0x0300000A # define SSL3_CK_DH_DSS_DES_40_CBC_SHA 0x0300000B # define SSL3_CK_DH_DSS_DES_64_CBC_SHA 0x0300000C # define SSL3_CK_DH_DSS_DES_192_CBC3_SHA 0x0300000D # define SSL3_CK_DH_RSA_DES_40_CBC_SHA 0x0300000E # define SSL3_CK_DH_RSA_DES_64_CBC_SHA 0x0300000F # define SSL3_CK_DH_RSA_DES_192_CBC3_SHA 0x03000010 # define SSL3_CK_EDH_DSS_DES_40_CBC_SHA 0x03000011 # define SSL3_CK_DHE_DSS_DES_40_CBC_SHA SSL3_CK_EDH_DSS_DES_40_CBC_SHA # define SSL3_CK_EDH_DSS_DES_64_CBC_SHA 0x03000012 # define SSL3_CK_DHE_DSS_DES_64_CBC_SHA SSL3_CK_EDH_DSS_DES_64_CBC_SHA # define SSL3_CK_EDH_DSS_DES_192_CBC3_SHA 0x03000013 # define SSL3_CK_DHE_DSS_DES_192_CBC3_SHA SSL3_CK_EDH_DSS_DES_192_CBC3_SHA # define SSL3_CK_EDH_RSA_DES_40_CBC_SHA 0x03000014 # define SSL3_CK_DHE_RSA_DES_40_CBC_SHA SSL3_CK_EDH_RSA_DES_40_CBC_SHA # define SSL3_CK_EDH_RSA_DES_64_CBC_SHA 0x03000015 # define SSL3_CK_DHE_RSA_DES_64_CBC_SHA SSL3_CK_EDH_RSA_DES_64_CBC_SHA # define SSL3_CK_EDH_RSA_DES_192_CBC3_SHA 0x03000016 # define SSL3_CK_DHE_RSA_DES_192_CBC3_SHA SSL3_CK_EDH_RSA_DES_192_CBC3_SHA # define SSL3_CK_ADH_RC4_40_MD5 0x03000017 # define SSL3_CK_ADH_RC4_128_MD5 0x03000018 # define SSL3_CK_ADH_DES_40_CBC_SHA 0x03000019 # define SSL3_CK_ADH_DES_64_CBC_SHA 0x0300001A # define SSL3_CK_ADH_DES_192_CBC_SHA 0x0300001B # if 0 # define SSL3_CK_FZA_DMS_NULL_SHA 0x0300001C # define SSL3_CK_FZA_DMS_FZA_SHA 0x0300001D # if 0 /* Because it clashes with KRB5, is never * used any more, and is safe to remove * according to David Hopwood * of the * ietf-tls list */ # define SSL3_CK_FZA_DMS_RC4_SHA 0x0300001E # endif # endif /* * VRS Additional Kerberos5 entries */ # define SSL3_CK_KRB5_DES_64_CBC_SHA 0x0300001E # define SSL3_CK_KRB5_DES_192_CBC3_SHA 0x0300001F # define SSL3_CK_KRB5_RC4_128_SHA 0x03000020 # define SSL3_CK_KRB5_IDEA_128_CBC_SHA 0x03000021 # define SSL3_CK_KRB5_DES_64_CBC_MD5 0x03000022 # define SSL3_CK_KRB5_DES_192_CBC3_MD5 0x03000023 # define SSL3_CK_KRB5_RC4_128_MD5 0x03000024 # define SSL3_CK_KRB5_IDEA_128_CBC_MD5 0x03000025 # define SSL3_CK_KRB5_DES_40_CBC_SHA 0x03000026 # define SSL3_CK_KRB5_RC2_40_CBC_SHA 0x03000027 # define SSL3_CK_KRB5_RC4_40_SHA 0x03000028 # define SSL3_CK_KRB5_DES_40_CBC_MD5 0x03000029 # define SSL3_CK_KRB5_RC2_40_CBC_MD5 0x0300002A # define SSL3_CK_KRB5_RC4_40_MD5 0x0300002B # define SSL3_TXT_RSA_NULL_MD5 "NULL-MD5" # define SSL3_TXT_RSA_NULL_SHA "NULL-SHA" # define SSL3_TXT_RSA_RC4_40_MD5 "EXP-RC4-MD5" # define SSL3_TXT_RSA_RC4_128_MD5 "RC4-MD5" # define SSL3_TXT_RSA_RC4_128_SHA "RC4-SHA" # define SSL3_TXT_RSA_RC2_40_MD5 "EXP-RC2-CBC-MD5" # define SSL3_TXT_RSA_IDEA_128_SHA "IDEA-CBC-SHA" # define SSL3_TXT_RSA_DES_40_CBC_SHA "EXP-DES-CBC-SHA" # define SSL3_TXT_RSA_DES_64_CBC_SHA "DES-CBC-SHA" # define SSL3_TXT_RSA_DES_192_CBC3_SHA "DES-CBC3-SHA" # define SSL3_TXT_DH_DSS_DES_40_CBC_SHA "EXP-DH-DSS-DES-CBC-SHA" # define SSL3_TXT_DH_DSS_DES_64_CBC_SHA "DH-DSS-DES-CBC-SHA" # define SSL3_TXT_DH_DSS_DES_192_CBC3_SHA "DH-DSS-DES-CBC3-SHA" # define SSL3_TXT_DH_RSA_DES_40_CBC_SHA "EXP-DH-RSA-DES-CBC-SHA" # define SSL3_TXT_DH_RSA_DES_64_CBC_SHA "DH-RSA-DES-CBC-SHA" # define SSL3_TXT_DH_RSA_DES_192_CBC3_SHA "DH-RSA-DES-CBC3-SHA" # define SSL3_TXT_DHE_DSS_DES_40_CBC_SHA "EXP-DHE-DSS-DES-CBC-SHA" # define SSL3_TXT_DHE_DSS_DES_64_CBC_SHA "DHE-DSS-DES-CBC-SHA" # define SSL3_TXT_DHE_DSS_DES_192_CBC3_SHA "DHE-DSS-DES-CBC3-SHA" # define SSL3_TXT_DHE_RSA_DES_40_CBC_SHA "EXP-DHE-RSA-DES-CBC-SHA" # define SSL3_TXT_DHE_RSA_DES_64_CBC_SHA "DHE-RSA-DES-CBC-SHA" # define SSL3_TXT_DHE_RSA_DES_192_CBC3_SHA "DHE-RSA-DES-CBC3-SHA" /* * This next block of six "EDH" labels is for backward compatibility with * older versions of OpenSSL. New code should use the six "DHE" labels above * instead: */ # define SSL3_TXT_EDH_DSS_DES_40_CBC_SHA "EXP-EDH-DSS-DES-CBC-SHA" # define SSL3_TXT_EDH_DSS_DES_64_CBC_SHA "EDH-DSS-DES-CBC-SHA" # define SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA "EDH-DSS-DES-CBC3-SHA" # define SSL3_TXT_EDH_RSA_DES_40_CBC_SHA "EXP-EDH-RSA-DES-CBC-SHA" # define SSL3_TXT_EDH_RSA_DES_64_CBC_SHA "EDH-RSA-DES-CBC-SHA" # define SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA "EDH-RSA-DES-CBC3-SHA" # define SSL3_TXT_ADH_RC4_40_MD5 "EXP-ADH-RC4-MD5" # define SSL3_TXT_ADH_RC4_128_MD5 "ADH-RC4-MD5" # define SSL3_TXT_ADH_DES_40_CBC_SHA "EXP-ADH-DES-CBC-SHA" # define SSL3_TXT_ADH_DES_64_CBC_SHA "ADH-DES-CBC-SHA" # define SSL3_TXT_ADH_DES_192_CBC_SHA "ADH-DES-CBC3-SHA" # if 0 # define SSL3_TXT_FZA_DMS_NULL_SHA "FZA-NULL-SHA" # define SSL3_TXT_FZA_DMS_FZA_SHA "FZA-FZA-CBC-SHA" # define SSL3_TXT_FZA_DMS_RC4_SHA "FZA-RC4-SHA" # endif # define SSL3_TXT_KRB5_DES_64_CBC_SHA "KRB5-DES-CBC-SHA" # define SSL3_TXT_KRB5_DES_192_CBC3_SHA "KRB5-DES-CBC3-SHA" # define SSL3_TXT_KRB5_RC4_128_SHA "KRB5-RC4-SHA" # define SSL3_TXT_KRB5_IDEA_128_CBC_SHA "KRB5-IDEA-CBC-SHA" # define SSL3_TXT_KRB5_DES_64_CBC_MD5 "KRB5-DES-CBC-MD5" # define SSL3_TXT_KRB5_DES_192_CBC3_MD5 "KRB5-DES-CBC3-MD5" # define SSL3_TXT_KRB5_RC4_128_MD5 "KRB5-RC4-MD5" # define SSL3_TXT_KRB5_IDEA_128_CBC_MD5 "KRB5-IDEA-CBC-MD5" # define SSL3_TXT_KRB5_DES_40_CBC_SHA "EXP-KRB5-DES-CBC-SHA" # define SSL3_TXT_KRB5_RC2_40_CBC_SHA "EXP-KRB5-RC2-CBC-SHA" # define SSL3_TXT_KRB5_RC4_40_SHA "EXP-KRB5-RC4-SHA" # define SSL3_TXT_KRB5_DES_40_CBC_MD5 "EXP-KRB5-DES-CBC-MD5" # define SSL3_TXT_KRB5_RC2_40_CBC_MD5 "EXP-KRB5-RC2-CBC-MD5" # define SSL3_TXT_KRB5_RC4_40_MD5 "EXP-KRB5-RC4-MD5" # define SSL3_SSL_SESSION_ID_LENGTH 32 # define SSL3_MAX_SSL_SESSION_ID_LENGTH 32 # define SSL3_MASTER_SECRET_SIZE 48 # define SSL3_RANDOM_SIZE 32 # define SSL3_SESSION_ID_SIZE 32 # define SSL3_RT_HEADER_LENGTH 5 # define SSL3_HM_HEADER_LENGTH 4 # ifndef SSL3_ALIGN_PAYLOAD /* * Some will argue that this increases memory footprint, but it's not * actually true. Point is that malloc has to return at least 64-bit aligned * pointers, meaning that allocating 5 bytes wastes 3 bytes in either case. * Suggested pre-gaping simply moves these wasted bytes from the end of * allocated region to its front, but makes data payload aligned, which * improves performance:-) */ # define SSL3_ALIGN_PAYLOAD 8 # else # if (SSL3_ALIGN_PAYLOAD&(SSL3_ALIGN_PAYLOAD-1))!=0 # error "insane SSL3_ALIGN_PAYLOAD" # undef SSL3_ALIGN_PAYLOAD # endif # endif /* * This is the maximum MAC (digest) size used by the SSL library. Currently * maximum of 20 is used by SHA1, but we reserve for future extension for * 512-bit hashes. */ # define SSL3_RT_MAX_MD_SIZE 64 /* * Maximum block size used in all ciphersuites. Currently 16 for AES. */ # define SSL_RT_MAX_CIPHER_BLOCK_SIZE 16 # define SSL3_RT_MAX_EXTRA (16384) /* Maximum plaintext length: defined by SSL/TLS standards */ # define SSL3_RT_MAX_PLAIN_LENGTH 16384 /* Maximum compression overhead: defined by SSL/TLS standards */ # define SSL3_RT_MAX_COMPRESSED_OVERHEAD 1024 /* * The standards give a maximum encryption overhead of 1024 bytes. In * practice the value is lower than this. The overhead is the maximum number * of padding bytes (256) plus the mac size. */ # define SSL3_RT_MAX_ENCRYPTED_OVERHEAD (256 + SSL3_RT_MAX_MD_SIZE) /* * OpenSSL currently only uses a padding length of at most one block so the * send overhead is smaller. */ # define SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD \ (SSL_RT_MAX_CIPHER_BLOCK_SIZE + SSL3_RT_MAX_MD_SIZE) /* If compression isn't used don't include the compression overhead */ # ifdef OPENSSL_NO_COMP # define SSL3_RT_MAX_COMPRESSED_LENGTH SSL3_RT_MAX_PLAIN_LENGTH # else # define SSL3_RT_MAX_COMPRESSED_LENGTH \ (SSL3_RT_MAX_PLAIN_LENGTH+SSL3_RT_MAX_COMPRESSED_OVERHEAD) # endif # define SSL3_RT_MAX_ENCRYPTED_LENGTH \ (SSL3_RT_MAX_ENCRYPTED_OVERHEAD+SSL3_RT_MAX_COMPRESSED_LENGTH) # define SSL3_RT_MAX_PACKET_SIZE \ (SSL3_RT_MAX_ENCRYPTED_LENGTH+SSL3_RT_HEADER_LENGTH) # define SSL3_MD_CLIENT_FINISHED_CONST "\x43\x4C\x4E\x54" # define SSL3_MD_SERVER_FINISHED_CONST "\x53\x52\x56\x52" # define SSL3_VERSION 0x0300 # define SSL3_VERSION_MAJOR 0x03 # define SSL3_VERSION_MINOR 0x00 # define SSL3_RT_CHANGE_CIPHER_SPEC 20 # define SSL3_RT_ALERT 21 # define SSL3_RT_HANDSHAKE 22 # define SSL3_RT_APPLICATION_DATA 23 # define TLS1_RT_HEARTBEAT 24 /* Pseudo content types to indicate additional parameters */ # define TLS1_RT_CRYPTO 0x1000 # define TLS1_RT_CRYPTO_PREMASTER (TLS1_RT_CRYPTO | 0x1) # define TLS1_RT_CRYPTO_CLIENT_RANDOM (TLS1_RT_CRYPTO | 0x2) # define TLS1_RT_CRYPTO_SERVER_RANDOM (TLS1_RT_CRYPTO | 0x3) # define TLS1_RT_CRYPTO_MASTER (TLS1_RT_CRYPTO | 0x4) # define TLS1_RT_CRYPTO_READ 0x0000 # define TLS1_RT_CRYPTO_WRITE 0x0100 # define TLS1_RT_CRYPTO_MAC (TLS1_RT_CRYPTO | 0x5) # define TLS1_RT_CRYPTO_KEY (TLS1_RT_CRYPTO | 0x6) # define TLS1_RT_CRYPTO_IV (TLS1_RT_CRYPTO | 0x7) # define TLS1_RT_CRYPTO_FIXED_IV (TLS1_RT_CRYPTO | 0x8) /* Pseudo content type for SSL/TLS header info */ # define SSL3_RT_HEADER 0x100 # define SSL3_AL_WARNING 1 # define SSL3_AL_FATAL 2 # define SSL3_AD_CLOSE_NOTIFY 0 # define SSL3_AD_UNEXPECTED_MESSAGE 10/* fatal */ # define SSL3_AD_BAD_RECORD_MAC 20/* fatal */ # define SSL3_AD_DECOMPRESSION_FAILURE 30/* fatal */ # define SSL3_AD_HANDSHAKE_FAILURE 40/* fatal */ # define SSL3_AD_NO_CERTIFICATE 41 # define SSL3_AD_BAD_CERTIFICATE 42 # define SSL3_AD_UNSUPPORTED_CERTIFICATE 43 # define SSL3_AD_CERTIFICATE_REVOKED 44 # define SSL3_AD_CERTIFICATE_EXPIRED 45 # define SSL3_AD_CERTIFICATE_UNKNOWN 46 # define SSL3_AD_ILLEGAL_PARAMETER 47/* fatal */ # define TLS1_HB_REQUEST 1 # define TLS1_HB_RESPONSE 2 # ifndef OPENSSL_NO_SSL_INTERN typedef struct ssl3_record_st { /* type of record */ /* * r */ int type; /* How many bytes available */ /* * rw */ unsigned int length; /* read/write offset into 'buf' */ /* * r */ unsigned int off; /* pointer to the record data */ /* * rw */ unsigned char *data; /* where the decode bytes are */ /* * rw */ unsigned char *input; /* only used with decompression - malloc()ed */ /* * r */ unsigned char *comp; /* epoch number, needed by DTLS1 */ /* * r */ unsigned long epoch; /* sequence number, needed by DTLS1 */ /* * r */ unsigned char seq_num[8]; } SSL3_RECORD; typedef struct ssl3_buffer_st { /* at least SSL3_RT_MAX_PACKET_SIZE bytes, see ssl3_setup_buffers() */ unsigned char *buf; /* buffer size */ size_t len; /* where to 'copy from' */ int offset; /* how many bytes left */ int left; } SSL3_BUFFER; # endif # define SSL3_CT_RSA_SIGN 1 # define SSL3_CT_DSS_SIGN 2 # define SSL3_CT_RSA_FIXED_DH 3 # define SSL3_CT_DSS_FIXED_DH 4 # define SSL3_CT_RSA_EPHEMERAL_DH 5 # define SSL3_CT_DSS_EPHEMERAL_DH 6 # define SSL3_CT_FORTEZZA_DMS 20 /* * SSL3_CT_NUMBER is used to size arrays and it must be large enough to * contain all of the cert types defined either for SSLv3 and TLSv1. */ # define SSL3_CT_NUMBER 9 # define SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS 0x0001 # define SSL3_FLAGS_DELAY_CLIENT_FINISHED 0x0002 # define SSL3_FLAGS_POP_BUFFER 0x0004 # define TLS1_FLAGS_TLS_PADDING_BUG 0x0008 # define TLS1_FLAGS_SKIP_CERT_VERIFY 0x0010 # define TLS1_FLAGS_KEEP_HANDSHAKE 0x0020 /* * Set when the handshake is ready to process peer's ChangeCipherSpec message. * Cleared after the message has been processed. */ # define SSL3_FLAGS_CCS_OK 0x0080 /* SSL3_FLAGS_SGC_RESTART_DONE is no longer used */ # define SSL3_FLAGS_SGC_RESTART_DONE 0x0040 # ifndef OPENSSL_NO_SSL_INTERN typedef struct ssl3_state_st { long flags; int delay_buf_pop_ret; unsigned char read_sequence[8]; int read_mac_secret_size; unsigned char read_mac_secret[EVP_MAX_MD_SIZE]; unsigned char write_sequence[8]; int write_mac_secret_size; unsigned char write_mac_secret[EVP_MAX_MD_SIZE]; unsigned char server_random[SSL3_RANDOM_SIZE]; unsigned char client_random[SSL3_RANDOM_SIZE]; /* flags for countermeasure against known-IV weakness */ int need_empty_fragments; int empty_fragment_done; /* The value of 'extra' when the buffers were initialized */ int init_extra; SSL3_BUFFER rbuf; /* read IO goes into here */ SSL3_BUFFER wbuf; /* write IO goes into here */ SSL3_RECORD rrec; /* each decoded record goes in here */ SSL3_RECORD wrec; /* goes out from here */ /* * storage for Alert/Handshake protocol data received but not yet * processed by ssl3_read_bytes: */ unsigned char alert_fragment[2]; unsigned int alert_fragment_len; unsigned char handshake_fragment[4]; unsigned int handshake_fragment_len; /* partial write - check the numbers match */ unsigned int wnum; /* number of bytes sent so far */ int wpend_tot; /* number bytes written */ int wpend_type; int wpend_ret; /* number of bytes submitted */ const unsigned char *wpend_buf; /* used during startup, digest all incoming/outgoing packets */ BIO *handshake_buffer; /* * When set of handshake digests is determined, buffer is hashed and * freed and MD_CTX-es for all required digests are stored in this array */ EVP_MD_CTX **handshake_dgst; /* * Set whenever an expected ChangeCipherSpec message is processed. * Unset when the peer's Finished message is received. * Unexpected ChangeCipherSpec messages trigger a fatal alert. */ int change_cipher_spec; int warn_alert; int fatal_alert; /* * we allow one fatal and one warning alert to be outstanding, send close * alert via the warning alert */ int alert_dispatch; unsigned char send_alert[2]; /* * This flag is set when we should renegotiate ASAP, basically when there * is no more data in the read or write buffers */ int renegotiate; int total_renegotiations; int num_renegotiations; int in_read_app_data; /* * Opaque PRF input as used for the current handshake. These fields are * used only if TLSEXT_TYPE_opaque_prf_input is defined (otherwise, they * are merely present to improve binary compatibility) */ void *client_opaque_prf_input; size_t client_opaque_prf_input_len; void *server_opaque_prf_input; size_t server_opaque_prf_input_len; struct { /* actually only needs to be 16+20 */ unsigned char cert_verify_md[EVP_MAX_MD_SIZE * 2]; /* actually only need to be 16+20 for SSLv3 and 12 for TLS */ unsigned char finish_md[EVP_MAX_MD_SIZE * 2]; int finish_md_len; unsigned char peer_finish_md[EVP_MAX_MD_SIZE * 2]; int peer_finish_md_len; unsigned long message_size; int message_type; /* used to hold the new cipher we are going to use */ const SSL_CIPHER *new_cipher; # ifndef OPENSSL_NO_DH DH *dh; # endif # ifndef OPENSSL_NO_ECDH EC_KEY *ecdh; /* holds short lived ECDH key */ # endif /* used when SSL_ST_FLUSH_DATA is entered */ int next_state; int reuse_message; /* used for certificate requests */ int cert_req; int ctype_num; char ctype[SSL3_CT_NUMBER]; STACK_OF(X509_NAME) *ca_names; int use_rsa_tmp; int key_block_length; unsigned char *key_block; const EVP_CIPHER *new_sym_enc; const EVP_MD *new_hash; int new_mac_pkey_type; int new_mac_secret_size; # ifndef OPENSSL_NO_COMP const SSL_COMP *new_compression; # else char *new_compression; # endif int cert_request; } tmp; /* Connection binding to prevent renegotiation attacks */ unsigned char previous_client_finished[EVP_MAX_MD_SIZE]; unsigned char previous_client_finished_len; unsigned char previous_server_finished[EVP_MAX_MD_SIZE]; unsigned char previous_server_finished_len; int send_connection_binding; /* TODOEKR */ # ifndef OPENSSL_NO_NEXTPROTONEG /* * Set if we saw the Next Protocol Negotiation extension from our peer. */ int next_proto_neg_seen; # endif # ifndef OPENSSL_NO_TLSEXT # ifndef OPENSSL_NO_EC /* * This is set to true if we believe that this is a version of Safari * running on OS X 10.6 or newer. We wish to know this because Safari on * 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */ char is_probably_safari; # endif /* !OPENSSL_NO_EC */ /* * ALPN information (we are in the process of transitioning from NPN to * ALPN.) */ /* * In a server these point to the selected ALPN protocol after the * ClientHello has been processed. In a client these contain the protocol * that the server selected once the ServerHello has been processed. */ unsigned char *alpn_selected; unsigned alpn_selected_len; # endif /* OPENSSL_NO_TLSEXT */ } SSL3_STATE; # endif /* SSLv3 */ /* * client */ /* extra state */ # define SSL3_ST_CW_FLUSH (0x100|SSL_ST_CONNECT) # ifndef OPENSSL_NO_SCTP # define DTLS1_SCTP_ST_CW_WRITE_SOCK (0x310|SSL_ST_CONNECT) # define DTLS1_SCTP_ST_CR_READ_SOCK (0x320|SSL_ST_CONNECT) # endif /* write to server */ # define SSL3_ST_CW_CLNT_HELLO_A (0x110|SSL_ST_CONNECT) # define SSL3_ST_CW_CLNT_HELLO_B (0x111|SSL_ST_CONNECT) /* read from server */ # define SSL3_ST_CR_SRVR_HELLO_A (0x120|SSL_ST_CONNECT) # define SSL3_ST_CR_SRVR_HELLO_B (0x121|SSL_ST_CONNECT) # define DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A (0x126|SSL_ST_CONNECT) # define DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B (0x127|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_A (0x130|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_B (0x131|SSL_ST_CONNECT) # define SSL3_ST_CR_KEY_EXCH_A (0x140|SSL_ST_CONNECT) # define SSL3_ST_CR_KEY_EXCH_B (0x141|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_REQ_A (0x150|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_REQ_B (0x151|SSL_ST_CONNECT) # define SSL3_ST_CR_SRVR_DONE_A (0x160|SSL_ST_CONNECT) # define SSL3_ST_CR_SRVR_DONE_B (0x161|SSL_ST_CONNECT) /* write to server */ # define SSL3_ST_CW_CERT_A (0x170|SSL_ST_CONNECT) # define SSL3_ST_CW_CERT_B (0x171|SSL_ST_CONNECT) # define SSL3_ST_CW_CERT_C (0x172|SSL_ST_CONNECT) # define SSL3_ST_CW_CERT_D (0x173|SSL_ST_CONNECT) # define SSL3_ST_CW_KEY_EXCH_A (0x180|SSL_ST_CONNECT) # define SSL3_ST_CW_KEY_EXCH_B (0x181|SSL_ST_CONNECT) # define SSL3_ST_CW_CERT_VRFY_A (0x190|SSL_ST_CONNECT) # define SSL3_ST_CW_CERT_VRFY_B (0x191|SSL_ST_CONNECT) # define SSL3_ST_CW_CHANGE_A (0x1A0|SSL_ST_CONNECT) # define SSL3_ST_CW_CHANGE_B (0x1A1|SSL_ST_CONNECT) # ifndef OPENSSL_NO_NEXTPROTONEG # define SSL3_ST_CW_NEXT_PROTO_A (0x200|SSL_ST_CONNECT) # define SSL3_ST_CW_NEXT_PROTO_B (0x201|SSL_ST_CONNECT) # endif # define SSL3_ST_CW_FINISHED_A (0x1B0|SSL_ST_CONNECT) # define SSL3_ST_CW_FINISHED_B (0x1B1|SSL_ST_CONNECT) /* read from server */ # define SSL3_ST_CR_CHANGE_A (0x1C0|SSL_ST_CONNECT) # define SSL3_ST_CR_CHANGE_B (0x1C1|SSL_ST_CONNECT) # define SSL3_ST_CR_FINISHED_A (0x1D0|SSL_ST_CONNECT) # define SSL3_ST_CR_FINISHED_B (0x1D1|SSL_ST_CONNECT) # define SSL3_ST_CR_SESSION_TICKET_A (0x1E0|SSL_ST_CONNECT) # define SSL3_ST_CR_SESSION_TICKET_B (0x1E1|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_STATUS_A (0x1F0|SSL_ST_CONNECT) # define SSL3_ST_CR_CERT_STATUS_B (0x1F1|SSL_ST_CONNECT) /* server */ /* extra state */ # define SSL3_ST_SW_FLUSH (0x100|SSL_ST_ACCEPT) # ifndef OPENSSL_NO_SCTP # define DTLS1_SCTP_ST_SW_WRITE_SOCK (0x310|SSL_ST_ACCEPT) # define DTLS1_SCTP_ST_SR_READ_SOCK (0x320|SSL_ST_ACCEPT) # endif /* read from client */ /* Do not change the number values, they do matter */ # define SSL3_ST_SR_CLNT_HELLO_A (0x110|SSL_ST_ACCEPT) # define SSL3_ST_SR_CLNT_HELLO_B (0x111|SSL_ST_ACCEPT) # define SSL3_ST_SR_CLNT_HELLO_C (0x112|SSL_ST_ACCEPT) # define SSL3_ST_SR_CLNT_HELLO_D (0x115|SSL_ST_ACCEPT) /* write to client */ # define DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A (0x113|SSL_ST_ACCEPT) # define DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B (0x114|SSL_ST_ACCEPT) # define SSL3_ST_SW_HELLO_REQ_A (0x120|SSL_ST_ACCEPT) # define SSL3_ST_SW_HELLO_REQ_B (0x121|SSL_ST_ACCEPT) # define SSL3_ST_SW_HELLO_REQ_C (0x122|SSL_ST_ACCEPT) # define SSL3_ST_SW_SRVR_HELLO_A (0x130|SSL_ST_ACCEPT) # define SSL3_ST_SW_SRVR_HELLO_B (0x131|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_A (0x140|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_B (0x141|SSL_ST_ACCEPT) # define SSL3_ST_SW_KEY_EXCH_A (0x150|SSL_ST_ACCEPT) # define SSL3_ST_SW_KEY_EXCH_B (0x151|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_REQ_A (0x160|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_REQ_B (0x161|SSL_ST_ACCEPT) # define SSL3_ST_SW_SRVR_DONE_A (0x170|SSL_ST_ACCEPT) # define SSL3_ST_SW_SRVR_DONE_B (0x171|SSL_ST_ACCEPT) /* read from client */ # define SSL3_ST_SR_CERT_A (0x180|SSL_ST_ACCEPT) # define SSL3_ST_SR_CERT_B (0x181|SSL_ST_ACCEPT) # define SSL3_ST_SR_KEY_EXCH_A (0x190|SSL_ST_ACCEPT) # define SSL3_ST_SR_KEY_EXCH_B (0x191|SSL_ST_ACCEPT) # define SSL3_ST_SR_CERT_VRFY_A (0x1A0|SSL_ST_ACCEPT) # define SSL3_ST_SR_CERT_VRFY_B (0x1A1|SSL_ST_ACCEPT) # define SSL3_ST_SR_CHANGE_A (0x1B0|SSL_ST_ACCEPT) # define SSL3_ST_SR_CHANGE_B (0x1B1|SSL_ST_ACCEPT) # ifndef OPENSSL_NO_NEXTPROTONEG # define SSL3_ST_SR_NEXT_PROTO_A (0x210|SSL_ST_ACCEPT) # define SSL3_ST_SR_NEXT_PROTO_B (0x211|SSL_ST_ACCEPT) # endif # define SSL3_ST_SR_FINISHED_A (0x1C0|SSL_ST_ACCEPT) # define SSL3_ST_SR_FINISHED_B (0x1C1|SSL_ST_ACCEPT) /* write to client */ # define SSL3_ST_SW_CHANGE_A (0x1D0|SSL_ST_ACCEPT) # define SSL3_ST_SW_CHANGE_B (0x1D1|SSL_ST_ACCEPT) # define SSL3_ST_SW_FINISHED_A (0x1E0|SSL_ST_ACCEPT) # define SSL3_ST_SW_FINISHED_B (0x1E1|SSL_ST_ACCEPT) # define SSL3_ST_SW_SESSION_TICKET_A (0x1F0|SSL_ST_ACCEPT) # define SSL3_ST_SW_SESSION_TICKET_B (0x1F1|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_STATUS_A (0x200|SSL_ST_ACCEPT) # define SSL3_ST_SW_CERT_STATUS_B (0x201|SSL_ST_ACCEPT) # define SSL3_MT_HELLO_REQUEST 0 # define SSL3_MT_CLIENT_HELLO 1 # define SSL3_MT_SERVER_HELLO 2 # define SSL3_MT_NEWSESSION_TICKET 4 # define SSL3_MT_CERTIFICATE 11 # define SSL3_MT_SERVER_KEY_EXCHANGE 12 # define SSL3_MT_CERTIFICATE_REQUEST 13 # define SSL3_MT_SERVER_DONE 14 # define SSL3_MT_CERTIFICATE_VERIFY 15 # define SSL3_MT_CLIENT_KEY_EXCHANGE 16 # define SSL3_MT_FINISHED 20 # define SSL3_MT_CERTIFICATE_STATUS 22 # ifndef OPENSSL_NO_NEXTPROTONEG # define SSL3_MT_NEXT_PROTO 67 # endif # define DTLS1_MT_HELLO_VERIFY_REQUEST 3 # define SSL3_MT_CCS 1 /* These are used when changing over to a new cipher */ # define SSL3_CC_READ 0x01 # define SSL3_CC_WRITE 0x02 # define SSL3_CC_CLIENT 0x10 # define SSL3_CC_SERVER 0x20 # define SSL3_CHANGE_CIPHER_CLIENT_WRITE (SSL3_CC_CLIENT|SSL3_CC_WRITE) # define SSL3_CHANGE_CIPHER_SERVER_READ (SSL3_CC_SERVER|SSL3_CC_READ) # define SSL3_CHANGE_CIPHER_CLIENT_READ (SSL3_CC_CLIENT|SSL3_CC_READ) # define SSL3_CHANGE_CIPHER_SERVER_WRITE (SSL3_CC_SERVER|SSL3_CC_WRITE) #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/stack.h ================================================ /* crypto/stack/stack.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_STACK_H # define HEADER_STACK_H #ifdef __cplusplus extern "C" { #endif typedef struct stack_st { int num; char **data; int sorted; int num_alloc; int (*comp) (const void *, const void *); } _STACK; /* Use STACK_OF(...) instead */ # define M_sk_num(sk) ((sk) ? (sk)->num:-1) # define M_sk_value(sk,n) ((sk) ? (sk)->data[n] : NULL) int sk_num(const _STACK *); void *sk_value(const _STACK *, int); void *sk_set(_STACK *, int, void *); _STACK *sk_new(int (*cmp) (const void *, const void *)); _STACK *sk_new_null(void); void sk_free(_STACK *); void sk_pop_free(_STACK *st, void (*func) (void *)); _STACK *sk_deep_copy(_STACK *, void *(*)(void *), void (*)(void *)); int sk_insert(_STACK *sk, void *data, int where); void *sk_delete(_STACK *st, int loc); void *sk_delete_ptr(_STACK *st, void *p); int sk_find(_STACK *st, void *data); int sk_find_ex(_STACK *st, void *data); int sk_push(_STACK *st, void *data); int sk_unshift(_STACK *st, void *data); void *sk_shift(_STACK *st); void *sk_pop(_STACK *st); void sk_zero(_STACK *st); int (*sk_set_cmp_func(_STACK *sk, int (*c) (const void *, const void *))) (const void *, const void *); _STACK *sk_dup(_STACK *st); void sk_sort(_STACK *st); int sk_is_sorted(const _STACK *st); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/symhacks.h ================================================ /* ==================================================================== * Copyright (c) 1999 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_SYMHACKS_H # define HEADER_SYMHACKS_H # include /* * Hacks to solve the problem with linkers incapable of handling very long * symbol names. In the case of VMS, the limit is 31 characters on VMS for * VAX. */ /* * Note that this affects util/libeay.num and util/ssleay.num... you may * change those manually, but that's not recommended, as those files are * controlled centrally and updated on Unix, and the central definition may * disagree with yours, which in turn may come with shareable library * incompatibilities. */ # ifdef OPENSSL_SYS_VMS /* Hack a long name in crypto/ex_data.c */ # undef CRYPTO_get_ex_data_implementation # define CRYPTO_get_ex_data_implementation CRYPTO_get_ex_data_impl # undef CRYPTO_set_ex_data_implementation # define CRYPTO_set_ex_data_implementation CRYPTO_set_ex_data_impl /* Hack a long name in crypto/asn1/a_mbstr.c */ # undef ASN1_STRING_set_default_mask_asc # define ASN1_STRING_set_default_mask_asc ASN1_STRING_set_def_mask_asc # if 0 /* No longer needed, since safestack macro * magic does the job */ /* Hack the names created with DECLARE_ASN1_SET_OF(PKCS7_SIGNER_INFO) */ # undef i2d_ASN1_SET_OF_PKCS7_SIGNER_INFO # define i2d_ASN1_SET_OF_PKCS7_SIGNER_INFO i2d_ASN1_SET_OF_PKCS7_SIGINF # undef d2i_ASN1_SET_OF_PKCS7_SIGNER_INFO # define d2i_ASN1_SET_OF_PKCS7_SIGNER_INFO d2i_ASN1_SET_OF_PKCS7_SIGINF # endif # if 0 /* No longer needed, since safestack macro * magic does the job */ /* Hack the names created with DECLARE_ASN1_SET_OF(PKCS7_RECIP_INFO) */ # undef i2d_ASN1_SET_OF_PKCS7_RECIP_INFO # define i2d_ASN1_SET_OF_PKCS7_RECIP_INFO i2d_ASN1_SET_OF_PKCS7_RECINF # undef d2i_ASN1_SET_OF_PKCS7_RECIP_INFO # define d2i_ASN1_SET_OF_PKCS7_RECIP_INFO d2i_ASN1_SET_OF_PKCS7_RECINF # endif # if 0 /* No longer needed, since safestack macro * magic does the job */ /* Hack the names created with DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION) */ # undef i2d_ASN1_SET_OF_ACCESS_DESCRIPTION # define i2d_ASN1_SET_OF_ACCESS_DESCRIPTION i2d_ASN1_SET_OF_ACC_DESC # undef d2i_ASN1_SET_OF_ACCESS_DESCRIPTION # define d2i_ASN1_SET_OF_ACCESS_DESCRIPTION d2i_ASN1_SET_OF_ACC_DESC # endif /* Hack the names created with DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE) */ # undef PEM_read_NETSCAPE_CERT_SEQUENCE # define PEM_read_NETSCAPE_CERT_SEQUENCE PEM_read_NS_CERT_SEQ # undef PEM_write_NETSCAPE_CERT_SEQUENCE # define PEM_write_NETSCAPE_CERT_SEQUENCE PEM_write_NS_CERT_SEQ # undef PEM_read_bio_NETSCAPE_CERT_SEQUENCE # define PEM_read_bio_NETSCAPE_CERT_SEQUENCE PEM_read_bio_NS_CERT_SEQ # undef PEM_write_bio_NETSCAPE_CERT_SEQUENCE # define PEM_write_bio_NETSCAPE_CERT_SEQUENCE PEM_write_bio_NS_CERT_SEQ # undef PEM_write_cb_bio_NETSCAPE_CERT_SEQUENCE # define PEM_write_cb_bio_NETSCAPE_CERT_SEQUENCE PEM_write_cb_bio_NS_CERT_SEQ /* Hack the names created with DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO) */ # undef PEM_read_PKCS8_PRIV_KEY_INFO # define PEM_read_PKCS8_PRIV_KEY_INFO PEM_read_P8_PRIV_KEY_INFO # undef PEM_write_PKCS8_PRIV_KEY_INFO # define PEM_write_PKCS8_PRIV_KEY_INFO PEM_write_P8_PRIV_KEY_INFO # undef PEM_read_bio_PKCS8_PRIV_KEY_INFO # define PEM_read_bio_PKCS8_PRIV_KEY_INFO PEM_read_bio_P8_PRIV_KEY_INFO # undef PEM_write_bio_PKCS8_PRIV_KEY_INFO # define PEM_write_bio_PKCS8_PRIV_KEY_INFO PEM_write_bio_P8_PRIV_KEY_INFO # undef PEM_write_cb_bio_PKCS8_PRIV_KEY_INFO # define PEM_write_cb_bio_PKCS8_PRIV_KEY_INFO PEM_wrt_cb_bio_P8_PRIV_KEY_INFO /* Hack other PEM names */ # undef PEM_write_bio_PKCS8PrivateKey_nid # define PEM_write_bio_PKCS8PrivateKey_nid PEM_write_bio_PKCS8PrivKey_nid /* Hack some long X509 names */ # undef X509_REVOKED_get_ext_by_critical # define X509_REVOKED_get_ext_by_critical X509_REVOKED_get_ext_by_critic # undef X509_policy_tree_get0_user_policies # define X509_policy_tree_get0_user_policies X509_pcy_tree_get0_usr_policies # undef X509_policy_node_get0_qualifiers # define X509_policy_node_get0_qualifiers X509_pcy_node_get0_qualifiers # undef X509_STORE_CTX_get_explicit_policy # define X509_STORE_CTX_get_explicit_policy X509_STORE_CTX_get_expl_policy # undef X509_STORE_CTX_get0_current_issuer # define X509_STORE_CTX_get0_current_issuer X509_STORE_CTX_get0_cur_issuer /* Hack some long CRYPTO names */ # undef CRYPTO_set_dynlock_destroy_callback # define CRYPTO_set_dynlock_destroy_callback CRYPTO_set_dynlock_destroy_cb # undef CRYPTO_set_dynlock_create_callback # define CRYPTO_set_dynlock_create_callback CRYPTO_set_dynlock_create_cb # undef CRYPTO_set_dynlock_lock_callback # define CRYPTO_set_dynlock_lock_callback CRYPTO_set_dynlock_lock_cb # undef CRYPTO_get_dynlock_lock_callback # define CRYPTO_get_dynlock_lock_callback CRYPTO_get_dynlock_lock_cb # undef CRYPTO_get_dynlock_destroy_callback # define CRYPTO_get_dynlock_destroy_callback CRYPTO_get_dynlock_destroy_cb # undef CRYPTO_get_dynlock_create_callback # define CRYPTO_get_dynlock_create_callback CRYPTO_get_dynlock_create_cb # undef CRYPTO_set_locked_mem_ex_functions # define CRYPTO_set_locked_mem_ex_functions CRYPTO_set_locked_mem_ex_funcs # undef CRYPTO_get_locked_mem_ex_functions # define CRYPTO_get_locked_mem_ex_functions CRYPTO_get_locked_mem_ex_funcs /* Hack some long SSL/TLS names */ # undef SSL_CTX_set_default_verify_paths # define SSL_CTX_set_default_verify_paths SSL_CTX_set_def_verify_paths # undef SSL_get_ex_data_X509_STORE_CTX_idx # define SSL_get_ex_data_X509_STORE_CTX_idx SSL_get_ex_d_X509_STORE_CTX_idx # undef SSL_add_file_cert_subjects_to_stack # define SSL_add_file_cert_subjects_to_stack SSL_add_file_cert_subjs_to_stk # undef SSL_add_dir_cert_subjects_to_stack # define SSL_add_dir_cert_subjects_to_stack SSL_add_dir_cert_subjs_to_stk # undef SSL_CTX_use_certificate_chain_file # define SSL_CTX_use_certificate_chain_file SSL_CTX_use_cert_chain_file # undef SSL_CTX_set_cert_verify_callback # define SSL_CTX_set_cert_verify_callback SSL_CTX_set_cert_verify_cb # undef SSL_CTX_set_default_passwd_cb_userdata # define SSL_CTX_set_default_passwd_cb_userdata SSL_CTX_set_def_passwd_cb_ud # undef SSL_COMP_get_compression_methods # define SSL_COMP_get_compression_methods SSL_COMP_get_compress_methods # undef SSL_COMP_set0_compression_methods # define SSL_COMP_set0_compression_methods SSL_COMP_set0_compress_methods # undef SSL_COMP_free_compression_methods # define SSL_COMP_free_compression_methods SSL_COMP_free_compress_methods # undef ssl_add_clienthello_renegotiate_ext # define ssl_add_clienthello_renegotiate_ext ssl_add_clienthello_reneg_ext # undef ssl_add_serverhello_renegotiate_ext # define ssl_add_serverhello_renegotiate_ext ssl_add_serverhello_reneg_ext # undef ssl_parse_clienthello_renegotiate_ext # define ssl_parse_clienthello_renegotiate_ext ssl_parse_clienthello_reneg_ext # undef ssl_parse_serverhello_renegotiate_ext # define ssl_parse_serverhello_renegotiate_ext ssl_parse_serverhello_reneg_ext # undef SSL_srp_server_param_with_username # define SSL_srp_server_param_with_username SSL_srp_server_param_with_un # undef SSL_CTX_set_srp_client_pwd_callback # define SSL_CTX_set_srp_client_pwd_callback SSL_CTX_set_srp_client_pwd_cb # undef SSL_CTX_set_srp_verify_param_callback # define SSL_CTX_set_srp_verify_param_callback SSL_CTX_set_srp_vfy_param_cb # undef SSL_CTX_set_srp_username_callback # define SSL_CTX_set_srp_username_callback SSL_CTX_set_srp_un_cb # undef ssl_add_clienthello_use_srtp_ext # define ssl_add_clienthello_use_srtp_ext ssl_add_clihello_use_srtp_ext # undef ssl_add_serverhello_use_srtp_ext # define ssl_add_serverhello_use_srtp_ext ssl_add_serhello_use_srtp_ext # undef ssl_parse_clienthello_use_srtp_ext # define ssl_parse_clienthello_use_srtp_ext ssl_parse_clihello_use_srtp_ext # undef ssl_parse_serverhello_use_srtp_ext # define ssl_parse_serverhello_use_srtp_ext ssl_parse_serhello_use_srtp_ext # undef SSL_CTX_set_next_protos_advertised_cb # define SSL_CTX_set_next_protos_advertised_cb SSL_CTX_set_next_protos_adv_cb # undef SSL_CTX_set_next_proto_select_cb # define SSL_CTX_set_next_proto_select_cb SSL_CTX_set_next_proto_sel_cb # undef tls1_send_server_supplemental_data # define tls1_send_server_supplemental_data tls1_send_server_suppl_data # undef tls1_send_client_supplemental_data # define tls1_send_client_supplemental_data tls1_send_client_suppl_data # undef tls1_get_server_supplemental_data # define tls1_get_server_supplemental_data tls1_get_server_suppl_data # undef tls1_get_client_supplemental_data # define tls1_get_client_supplemental_data tls1_get_client_suppl_data # undef ssl3_cbc_record_digest_supported # define ssl3_cbc_record_digest_supported ssl3_cbc_record_digest_support # undef ssl_check_clienthello_tlsext_late # define ssl_check_clienthello_tlsext_late ssl_check_clihello_tlsext_late # undef ssl_check_clienthello_tlsext_early # define ssl_check_clienthello_tlsext_early ssl_check_clihello_tlsext_early /* Hack some RSA long names */ # undef RSA_padding_check_PKCS1_OAEP_mgf1 # define RSA_padding_check_PKCS1_OAEP_mgf1 RSA_pad_check_PKCS1_OAEP_mgf1 /* Hack some ENGINE long names */ # undef ENGINE_get_default_BN_mod_exp_crt # define ENGINE_get_default_BN_mod_exp_crt ENGINE_get_def_BN_mod_exp_crt # undef ENGINE_set_default_BN_mod_exp_crt # define ENGINE_set_default_BN_mod_exp_crt ENGINE_set_def_BN_mod_exp_crt # undef ENGINE_set_load_privkey_function # define ENGINE_set_load_privkey_function ENGINE_set_load_privkey_fn # undef ENGINE_get_load_privkey_function # define ENGINE_get_load_privkey_function ENGINE_get_load_privkey_fn # undef ENGINE_unregister_pkey_asn1_meths # define ENGINE_unregister_pkey_asn1_meths ENGINE_unreg_pkey_asn1_meths # undef ENGINE_register_all_pkey_asn1_meths # define ENGINE_register_all_pkey_asn1_meths ENGINE_reg_all_pkey_asn1_meths # undef ENGINE_set_default_pkey_asn1_meths # define ENGINE_set_default_pkey_asn1_meths ENGINE_set_def_pkey_asn1_meths # undef ENGINE_get_pkey_asn1_meth_engine # define ENGINE_get_pkey_asn1_meth_engine ENGINE_get_pkey_asn1_meth_eng # undef ENGINE_set_load_ssl_client_cert_function # define ENGINE_set_load_ssl_client_cert_function \ ENGINE_set_ld_ssl_clnt_cert_fn # undef ENGINE_get_ssl_client_cert_function # define ENGINE_get_ssl_client_cert_function ENGINE_get_ssl_client_cert_fn /* Hack some long OCSP names */ # undef OCSP_REQUEST_get_ext_by_critical # define OCSP_REQUEST_get_ext_by_critical OCSP_REQUEST_get_ext_by_crit # undef OCSP_BASICRESP_get_ext_by_critical # define OCSP_BASICRESP_get_ext_by_critical OCSP_BASICRESP_get_ext_by_crit # undef OCSP_SINGLERESP_get_ext_by_critical # define OCSP_SINGLERESP_get_ext_by_critical OCSP_SINGLERESP_get_ext_by_crit /* Hack some long DES names */ # undef _ossl_old_des_ede3_cfb64_encrypt # define _ossl_old_des_ede3_cfb64_encrypt _ossl_odes_ede3_cfb64_encrypt # undef _ossl_old_des_ede3_ofb64_encrypt # define _ossl_old_des_ede3_ofb64_encrypt _ossl_odes_ede3_ofb64_encrypt /* Hack some long EVP names */ # undef OPENSSL_add_all_algorithms_noconf # define OPENSSL_add_all_algorithms_noconf OPENSSL_add_all_algo_noconf # undef OPENSSL_add_all_algorithms_conf # define OPENSSL_add_all_algorithms_conf OPENSSL_add_all_algo_conf # undef EVP_PKEY_meth_set_verify_recover # define EVP_PKEY_meth_set_verify_recover EVP_PKEY_meth_set_vrfy_recover # undef EVP_PKEY_meth_get_verify_recover # define EVP_PKEY_meth_get_verify_recover EVP_PKEY_meth_get_vrfy_recover /* Hack some long EC names */ # undef EC_GROUP_set_point_conversion_form # define EC_GROUP_set_point_conversion_form EC_GROUP_set_point_conv_form # undef EC_GROUP_get_point_conversion_form # define EC_GROUP_get_point_conversion_form EC_GROUP_get_point_conv_form # undef EC_GROUP_clear_free_all_extra_data # define EC_GROUP_clear_free_all_extra_data EC_GROUP_clr_free_all_xtra_data # undef EC_KEY_set_public_key_affine_coordinates # define EC_KEY_set_public_key_affine_coordinates \ EC_KEY_set_pub_key_aff_coords # undef EC_POINT_set_Jprojective_coordinates_GFp # define EC_POINT_set_Jprojective_coordinates_GFp \ EC_POINT_set_Jproj_coords_GFp # undef EC_POINT_get_Jprojective_coordinates_GFp # define EC_POINT_get_Jprojective_coordinates_GFp \ EC_POINT_get_Jproj_coords_GFp # undef EC_POINT_set_affine_coordinates_GFp # define EC_POINT_set_affine_coordinates_GFp EC_POINT_set_affine_coords_GFp # undef EC_POINT_get_affine_coordinates_GFp # define EC_POINT_get_affine_coordinates_GFp EC_POINT_get_affine_coords_GFp # undef EC_POINT_set_compressed_coordinates_GFp # define EC_POINT_set_compressed_coordinates_GFp EC_POINT_set_compr_coords_GFp # undef EC_POINT_set_affine_coordinates_GF2m # define EC_POINT_set_affine_coordinates_GF2m EC_POINT_set_affine_coords_GF2m # undef EC_POINT_get_affine_coordinates_GF2m # define EC_POINT_get_affine_coordinates_GF2m EC_POINT_get_affine_coords_GF2m # undef EC_POINT_set_compressed_coordinates_GF2m # define EC_POINT_set_compressed_coordinates_GF2m \ EC_POINT_set_compr_coords_GF2m # undef ec_GF2m_simple_group_clear_finish # define ec_GF2m_simple_group_clear_finish ec_GF2m_simple_grp_clr_finish # undef ec_GF2m_simple_group_check_discriminant # define ec_GF2m_simple_group_check_discriminant ec_GF2m_simple_grp_chk_discrim # undef ec_GF2m_simple_point_clear_finish # define ec_GF2m_simple_point_clear_finish ec_GF2m_simple_pt_clr_finish # undef ec_GF2m_simple_point_set_to_infinity # define ec_GF2m_simple_point_set_to_infinity ec_GF2m_simple_pt_set_to_inf # undef ec_GF2m_simple_points_make_affine # define ec_GF2m_simple_points_make_affine ec_GF2m_simple_pts_make_affine # undef ec_GF2m_simple_point_set_affine_coordinates # define ec_GF2m_simple_point_set_affine_coordinates \ ec_GF2m_smp_pt_set_af_coords # undef ec_GF2m_simple_point_get_affine_coordinates # define ec_GF2m_simple_point_get_affine_coordinates \ ec_GF2m_smp_pt_get_af_coords # undef ec_GF2m_simple_set_compressed_coordinates # define ec_GF2m_simple_set_compressed_coordinates \ ec_GF2m_smp_set_compr_coords # undef ec_GFp_simple_group_set_curve_GFp # define ec_GFp_simple_group_set_curve_GFp ec_GFp_simple_grp_set_curve_GFp # undef ec_GFp_simple_group_get_curve_GFp # define ec_GFp_simple_group_get_curve_GFp ec_GFp_simple_grp_get_curve_GFp # undef ec_GFp_simple_group_clear_finish # define ec_GFp_simple_group_clear_finish ec_GFp_simple_grp_clear_finish # undef ec_GFp_simple_group_set_generator # define ec_GFp_simple_group_set_generator ec_GFp_simple_grp_set_generator # undef ec_GFp_simple_group_get0_generator # define ec_GFp_simple_group_get0_generator ec_GFp_simple_grp_gt0_generator # undef ec_GFp_simple_group_get_cofactor # define ec_GFp_simple_group_get_cofactor ec_GFp_simple_grp_get_cofactor # undef ec_GFp_simple_point_clear_finish # define ec_GFp_simple_point_clear_finish ec_GFp_simple_pt_clear_finish # undef ec_GFp_simple_point_set_to_infinity # define ec_GFp_simple_point_set_to_infinity ec_GFp_simple_pt_set_to_inf # undef ec_GFp_simple_points_make_affine # define ec_GFp_simple_points_make_affine ec_GFp_simple_pts_make_affine # undef ec_GFp_simple_set_Jprojective_coordinates_GFp # define ec_GFp_simple_set_Jprojective_coordinates_GFp \ ec_GFp_smp_set_Jproj_coords_GFp # undef ec_GFp_simple_get_Jprojective_coordinates_GFp # define ec_GFp_simple_get_Jprojective_coordinates_GFp \ ec_GFp_smp_get_Jproj_coords_GFp # undef ec_GFp_simple_point_set_affine_coordinates_GFp # define ec_GFp_simple_point_set_affine_coordinates_GFp \ ec_GFp_smp_pt_set_af_coords_GFp # undef ec_GFp_simple_point_get_affine_coordinates_GFp # define ec_GFp_simple_point_get_affine_coordinates_GFp \ ec_GFp_smp_pt_get_af_coords_GFp # undef ec_GFp_simple_set_compressed_coordinates_GFp # define ec_GFp_simple_set_compressed_coordinates_GFp \ ec_GFp_smp_set_compr_coords_GFp # undef ec_GFp_simple_point_set_affine_coordinates # define ec_GFp_simple_point_set_affine_coordinates \ ec_GFp_smp_pt_set_af_coords # undef ec_GFp_simple_point_get_affine_coordinates # define ec_GFp_simple_point_get_affine_coordinates \ ec_GFp_smp_pt_get_af_coords # undef ec_GFp_simple_set_compressed_coordinates # define ec_GFp_simple_set_compressed_coordinates \ ec_GFp_smp_set_compr_coords # undef ec_GFp_simple_group_check_discriminant # define ec_GFp_simple_group_check_discriminant ec_GFp_simple_grp_chk_discrim /* Hack som long STORE names */ # undef STORE_method_set_initialise_function # define STORE_method_set_initialise_function STORE_meth_set_initialise_fn # undef STORE_method_set_cleanup_function # define STORE_method_set_cleanup_function STORE_meth_set_cleanup_fn # undef STORE_method_set_generate_function # define STORE_method_set_generate_function STORE_meth_set_generate_fn # undef STORE_method_set_modify_function # define STORE_method_set_modify_function STORE_meth_set_modify_fn # undef STORE_method_set_revoke_function # define STORE_method_set_revoke_function STORE_meth_set_revoke_fn # undef STORE_method_set_delete_function # define STORE_method_set_delete_function STORE_meth_set_delete_fn # undef STORE_method_set_list_start_function # define STORE_method_set_list_start_function STORE_meth_set_list_start_fn # undef STORE_method_set_list_next_function # define STORE_method_set_list_next_function STORE_meth_set_list_next_fn # undef STORE_method_set_list_end_function # define STORE_method_set_list_end_function STORE_meth_set_list_end_fn # undef STORE_method_set_update_store_function # define STORE_method_set_update_store_function STORE_meth_set_update_store_fn # undef STORE_method_set_lock_store_function # define STORE_method_set_lock_store_function STORE_meth_set_lock_store_fn # undef STORE_method_set_unlock_store_function # define STORE_method_set_unlock_store_function STORE_meth_set_unlock_store_fn # undef STORE_method_get_initialise_function # define STORE_method_get_initialise_function STORE_meth_get_initialise_fn # undef STORE_method_get_cleanup_function # define STORE_method_get_cleanup_function STORE_meth_get_cleanup_fn # undef STORE_method_get_generate_function # define STORE_method_get_generate_function STORE_meth_get_generate_fn # undef STORE_method_get_modify_function # define STORE_method_get_modify_function STORE_meth_get_modify_fn # undef STORE_method_get_revoke_function # define STORE_method_get_revoke_function STORE_meth_get_revoke_fn # undef STORE_method_get_delete_function # define STORE_method_get_delete_function STORE_meth_get_delete_fn # undef STORE_method_get_list_start_function # define STORE_method_get_list_start_function STORE_meth_get_list_start_fn # undef STORE_method_get_list_next_function # define STORE_method_get_list_next_function STORE_meth_get_list_next_fn # undef STORE_method_get_list_end_function # define STORE_method_get_list_end_function STORE_meth_get_list_end_fn # undef STORE_method_get_update_store_function # define STORE_method_get_update_store_function STORE_meth_get_update_store_fn # undef STORE_method_get_lock_store_function # define STORE_method_get_lock_store_function STORE_meth_get_lock_store_fn # undef STORE_method_get_unlock_store_function # define STORE_method_get_unlock_store_function STORE_meth_get_unlock_store_fn /* Hack some long TS names */ # undef TS_RESP_CTX_set_status_info_cond # define TS_RESP_CTX_set_status_info_cond TS_RESP_CTX_set_stat_info_cond # undef TS_RESP_CTX_set_clock_precision_digits # define TS_RESP_CTX_set_clock_precision_digits TS_RESP_CTX_set_clk_prec_digits # undef TS_CONF_set_clock_precision_digits # define TS_CONF_set_clock_precision_digits TS_CONF_set_clk_prec_digits /* Hack some long CMS names */ # undef CMS_RecipientInfo_ktri_get0_algs # define CMS_RecipientInfo_ktri_get0_algs CMS_RecipInfo_ktri_get0_algs # undef CMS_RecipientInfo_ktri_get0_signer_id # define CMS_RecipientInfo_ktri_get0_signer_id CMS_RecipInfo_ktri_get0_sigr_id # undef CMS_OtherRevocationInfoFormat_it # define CMS_OtherRevocationInfoFormat_it CMS_OtherRevocInfoFormat_it # undef CMS_KeyAgreeRecipientIdentifier_it # define CMS_KeyAgreeRecipientIdentifier_it CMS_KeyAgreeRecipIdentifier_it # undef CMS_OriginatorIdentifierOrKey_it # define CMS_OriginatorIdentifierOrKey_it CMS_OriginatorIdOrKey_it # undef cms_SignerIdentifier_get0_signer_id # define cms_SignerIdentifier_get0_signer_id cms_SignerId_get0_signer_id # undef CMS_RecipientInfo_kari_get0_orig_id # define CMS_RecipientInfo_kari_get0_orig_id CMS_RecipInfo_kari_get0_orig_id # undef CMS_RecipientInfo_kari_get0_reks # define CMS_RecipientInfo_kari_get0_reks CMS_RecipInfo_kari_get0_reks # undef CMS_RecipientEncryptedKey_cert_cmp # define CMS_RecipientEncryptedKey_cert_cmp CMS_RecipEncryptedKey_cert_cmp # undef CMS_RecipientInfo_kari_set0_pkey # define CMS_RecipientInfo_kari_set0_pkey CMS_RecipInfo_kari_set0_pkey # undef CMS_RecipientEncryptedKey_get0_id # define CMS_RecipientEncryptedKey_get0_id CMS_RecipEncryptedKey_get0_id # undef CMS_RecipientInfo_kari_orig_id_cmp # define CMS_RecipientInfo_kari_orig_id_cmp CMS_RecipInfo_kari_orig_id_cmp /* Hack some long DTLS1 names */ # undef dtls1_retransmit_buffered_messages # define dtls1_retransmit_buffered_messages dtls1_retransmit_buffered_msgs /* Hack some long SRP names */ # undef SRP_generate_server_master_secret # define SRP_generate_server_master_secret SRP_gen_server_master_secret # undef SRP_generate_client_master_secret # define SRP_generate_client_master_secret SRP_gen_client_master_secret /* Hack some long UI names */ # undef UI_method_get_prompt_constructor # define UI_method_get_prompt_constructor UI_method_get_prompt_constructr # undef UI_method_set_prompt_constructor # define UI_method_set_prompt_constructor UI_method_set_prompt_constructr # endif /* defined OPENSSL_SYS_VMS */ /* Case insensitive linking causes problems.... */ # if defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2) # undef ERR_load_CRYPTO_strings # define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings # undef OCSP_crlID_new # define OCSP_crlID_new OCSP_crlID2_new # undef d2i_ECPARAMETERS # define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS # undef i2d_ECPARAMETERS # define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS # undef d2i_ECPKPARAMETERS # define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS # undef i2d_ECPKPARAMETERS # define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS /* * These functions do not seem to exist! However, I'm paranoid... Original * command in x509v3.h: These functions are being redefined in another * directory, and clash when the linker is case-insensitive, so let's hide * them a little, by giving them an extra 'o' at the beginning of the name... */ # undef X509v3_cleanup_extensions # define X509v3_cleanup_extensions oX509v3_cleanup_extensions # undef X509v3_add_extension # define X509v3_add_extension oX509v3_add_extension # undef X509v3_add_netscape_extensions # define X509v3_add_netscape_extensions oX509v3_add_netscape_extensions # undef X509v3_add_standard_extensions # define X509v3_add_standard_extensions oX509v3_add_standard_extensions /* This one clashes with CMS_data_create */ # undef cms_Data_create # define cms_Data_create priv_cms_Data_create # endif #endif /* ! defined HEADER_VMS_IDHACKS_H */ ================================================ FILE: third_party/include/openssl/tls1.h ================================================ /* ssl/tls1.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * Portions of the attached software ("Contribution") are developed by * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. * * The Contribution is licensed pursuant to the OpenSSL open source * license provided above. * * ECC cipher suite support in OpenSSL originally written by * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories. * */ /* ==================================================================== * Copyright 2005 Nokia. All rights reserved. * * The portions of the attached software ("Contribution") is developed by * Nokia Corporation and is licensed pursuant to the OpenSSL open source * license. * * The Contribution, originally written by Mika Kousa and Pasi Eronen of * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites * support (see RFC 4279) to OpenSSL. * * No patent licenses or other rights except those expressly stated in * the OpenSSL open source license shall be deemed granted or received * expressly, by implication, estoppel, or otherwise. * * No assurances are provided by Nokia that the Contribution does not * infringe the patent or other intellectual property rights of any third * party or that the license provides you with all the necessary rights * to make use of the Contribution. * * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR * OTHERWISE. */ #ifndef HEADER_TLS1_H # define HEADER_TLS1_H # include #ifdef __cplusplus extern "C" { #endif # define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 0 # define TLS1_VERSION 0x0301 # define TLS1_1_VERSION 0x0302 # define TLS1_2_VERSION 0x0303 # define TLS_MAX_VERSION TLS1_2_VERSION # define TLS1_VERSION_MAJOR 0x03 # define TLS1_VERSION_MINOR 0x01 # define TLS1_1_VERSION_MAJOR 0x03 # define TLS1_1_VERSION_MINOR 0x02 # define TLS1_2_VERSION_MAJOR 0x03 # define TLS1_2_VERSION_MINOR 0x03 # define TLS1_get_version(s) \ ((s->version >> 8) == TLS1_VERSION_MAJOR ? s->version : 0) # define TLS1_get_client_version(s) \ ((s->client_version >> 8) == TLS1_VERSION_MAJOR ? s->client_version : 0) # define TLS1_AD_DECRYPTION_FAILED 21 # define TLS1_AD_RECORD_OVERFLOW 22 # define TLS1_AD_UNKNOWN_CA 48/* fatal */ # define TLS1_AD_ACCESS_DENIED 49/* fatal */ # define TLS1_AD_DECODE_ERROR 50/* fatal */ # define TLS1_AD_DECRYPT_ERROR 51 # define TLS1_AD_EXPORT_RESTRICTION 60/* fatal */ # define TLS1_AD_PROTOCOL_VERSION 70/* fatal */ # define TLS1_AD_INSUFFICIENT_SECURITY 71/* fatal */ # define TLS1_AD_INTERNAL_ERROR 80/* fatal */ # define TLS1_AD_INAPPROPRIATE_FALLBACK 86/* fatal */ # define TLS1_AD_USER_CANCELLED 90 # define TLS1_AD_NO_RENEGOTIATION 100 /* codes 110-114 are from RFC3546 */ # define TLS1_AD_UNSUPPORTED_EXTENSION 110 # define TLS1_AD_CERTIFICATE_UNOBTAINABLE 111 # define TLS1_AD_UNRECOGNIZED_NAME 112 # define TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE 113 # define TLS1_AD_BAD_CERTIFICATE_HASH_VALUE 114 # define TLS1_AD_UNKNOWN_PSK_IDENTITY 115/* fatal */ /* ExtensionType values from RFC3546 / RFC4366 / RFC6066 */ # define TLSEXT_TYPE_server_name 0 # define TLSEXT_TYPE_max_fragment_length 1 # define TLSEXT_TYPE_client_certificate_url 2 # define TLSEXT_TYPE_trusted_ca_keys 3 # define TLSEXT_TYPE_truncated_hmac 4 # define TLSEXT_TYPE_status_request 5 /* ExtensionType values from RFC4681 */ # define TLSEXT_TYPE_user_mapping 6 /* ExtensionType values from RFC5878 */ # define TLSEXT_TYPE_client_authz 7 # define TLSEXT_TYPE_server_authz 8 /* ExtensionType values from RFC6091 */ # define TLSEXT_TYPE_cert_type 9 /* ExtensionType values from RFC4492 */ # define TLSEXT_TYPE_elliptic_curves 10 # define TLSEXT_TYPE_ec_point_formats 11 /* ExtensionType value from RFC5054 */ # define TLSEXT_TYPE_srp 12 /* ExtensionType values from RFC5246 */ # define TLSEXT_TYPE_signature_algorithms 13 /* ExtensionType value from RFC5764 */ # define TLSEXT_TYPE_use_srtp 14 /* ExtensionType value from RFC5620 */ # define TLSEXT_TYPE_heartbeat 15 /* ExtensionType value from RFC7301 */ # define TLSEXT_TYPE_application_layer_protocol_negotiation 16 /* * ExtensionType value for TLS padding extension. * http://tools.ietf.org/html/draft-agl-tls-padding */ # define TLSEXT_TYPE_padding 21 /* ExtensionType value from RFC4507 */ # define TLSEXT_TYPE_session_ticket 35 /* ExtensionType value from draft-rescorla-tls-opaque-prf-input-00.txt */ # if 0 /* * will have to be provided externally for now , * i.e. build with -DTLSEXT_TYPE_opaque_prf_input=38183 * using whatever extension number you'd like to try */ # define TLSEXT_TYPE_opaque_prf_input ?? # endif /* Temporary extension type */ # define TLSEXT_TYPE_renegotiate 0xff01 # ifndef OPENSSL_NO_NEXTPROTONEG /* This is not an IANA defined extension number */ # define TLSEXT_TYPE_next_proto_neg 13172 # endif /* NameType value from RFC3546 */ # define TLSEXT_NAMETYPE_host_name 0 /* status request value from RFC3546 */ # define TLSEXT_STATUSTYPE_ocsp 1 /* ECPointFormat values from RFC4492 */ # define TLSEXT_ECPOINTFORMAT_first 0 # define TLSEXT_ECPOINTFORMAT_uncompressed 0 # define TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime 1 # define TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2 2 # define TLSEXT_ECPOINTFORMAT_last 2 /* Signature and hash algorithms from RFC5246 */ # define TLSEXT_signature_anonymous 0 # define TLSEXT_signature_rsa 1 # define TLSEXT_signature_dsa 2 # define TLSEXT_signature_ecdsa 3 /* Total number of different signature algorithms */ # define TLSEXT_signature_num 4 # define TLSEXT_hash_none 0 # define TLSEXT_hash_md5 1 # define TLSEXT_hash_sha1 2 # define TLSEXT_hash_sha224 3 # define TLSEXT_hash_sha256 4 # define TLSEXT_hash_sha384 5 # define TLSEXT_hash_sha512 6 /* Total number of different digest algorithms */ # define TLSEXT_hash_num 7 /* Flag set for unrecognised algorithms */ # define TLSEXT_nid_unknown 0x1000000 /* ECC curves */ # define TLSEXT_curve_P_256 23 # define TLSEXT_curve_P_384 24 # ifndef OPENSSL_NO_TLSEXT # define TLSEXT_MAXLEN_host_name 255 const char *SSL_get_servername(const SSL *s, const int type); int SSL_get_servername_type(const SSL *s); /* * SSL_export_keying_material exports a value derived from the master secret, * as specified in RFC 5705. It writes |olen| bytes to |out| given a label and * optional context. (Since a zero length context is allowed, the |use_context| * flag controls whether a context is included.) It returns 1 on success and * zero otherwise. */ int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen, const char *label, size_t llen, const unsigned char *context, size_t contextlen, int use_context); int SSL_get_sigalgs(SSL *s, int idx, int *psign, int *phash, int *psignandhash, unsigned char *rsig, unsigned char *rhash); int SSL_get_shared_sigalgs(SSL *s, int idx, int *psign, int *phash, int *psignandhash, unsigned char *rsig, unsigned char *rhash); int SSL_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain); # define SSL_set_tlsext_host_name(s,name) \ SSL_ctrl(s,SSL_CTRL_SET_TLSEXT_HOSTNAME,TLSEXT_NAMETYPE_host_name,(char *)name) # define SSL_set_tlsext_debug_callback(ssl, cb) \ SSL_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_CB,(void (*)(void))cb) # define SSL_set_tlsext_debug_arg(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg) # define SSL_set_tlsext_status_type(ssl, type) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE,type, NULL) # define SSL_get_tlsext_status_exts(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg) # define SSL_set_tlsext_status_exts(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg) # define SSL_get_tlsext_status_ids(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg) # define SSL_set_tlsext_status_ids(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg) # define SSL_get_tlsext_status_ocsp_resp(ssl, arg) \ SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_OCSP_RESP,0, (void *)arg) # define SSL_set_tlsext_status_ocsp_resp(ssl, arg, arglen) \ SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP,arglen, (void *)arg) # define SSL_CTX_set_tlsext_servername_callback(ctx, cb) \ SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_SERVERNAME_CB,(void (*)(void))cb) # define SSL_TLSEXT_ERR_OK 0 # define SSL_TLSEXT_ERR_ALERT_WARNING 1 # define SSL_TLSEXT_ERR_ALERT_FATAL 2 # define SSL_TLSEXT_ERR_NOACK 3 # define SSL_CTX_set_tlsext_servername_arg(ctx, arg) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG,0, (void *)arg) # define SSL_CTX_get_tlsext_ticket_keys(ctx, keys, keylen) \ SSL_CTX_ctrl((ctx),SSL_CTRL_GET_TLSEXT_TICKET_KEYS,(keylen),(keys)) # define SSL_CTX_set_tlsext_ticket_keys(ctx, keys, keylen) \ SSL_CTX_ctrl((ctx),SSL_CTRL_SET_TLSEXT_TICKET_KEYS,(keylen),(keys)) # define SSL_CTX_set_tlsext_status_cb(ssl, cb) \ SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB,(void (*)(void))cb) # define SSL_CTX_set_tlsext_status_arg(ssl, arg) \ SSL_CTX_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB_ARG,0, (void *)arg) # define SSL_set_tlsext_opaque_prf_input(s, src, len) \ SSL_ctrl(s,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT, len, src) # define SSL_CTX_set_tlsext_opaque_prf_input_callback(ctx, cb) \ SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB, (void (*)(void))cb) # define SSL_CTX_set_tlsext_opaque_prf_input_callback_arg(ctx, arg) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB_ARG, 0, arg) # define SSL_CTX_set_tlsext_ticket_key_cb(ssl, cb) \ SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB,(void (*)(void))cb) # ifndef OPENSSL_NO_HEARTBEATS # define SSL_TLSEXT_HB_ENABLED 0x01 # define SSL_TLSEXT_HB_DONT_SEND_REQUESTS 0x02 # define SSL_TLSEXT_HB_DONT_RECV_REQUESTS 0x04 # define SSL_get_tlsext_heartbeat_pending(ssl) \ SSL_ctrl((ssl),SSL_CTRL_GET_TLS_EXT_HEARTBEAT_PENDING,0,NULL) # define SSL_set_tlsext_heartbeat_no_requests(ssl, arg) \ SSL_ctrl((ssl),SSL_CTRL_SET_TLS_EXT_HEARTBEAT_NO_REQUESTS,arg,NULL) # endif # endif /* PSK ciphersuites from 4279 */ # define TLS1_CK_PSK_WITH_RC4_128_SHA 0x0300008A # define TLS1_CK_PSK_WITH_3DES_EDE_CBC_SHA 0x0300008B # define TLS1_CK_PSK_WITH_AES_128_CBC_SHA 0x0300008C # define TLS1_CK_PSK_WITH_AES_256_CBC_SHA 0x0300008D /* * Additional TLS ciphersuites from expired Internet Draft * draft-ietf-tls-56-bit-ciphersuites-01.txt (available if * TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES is defined, see s3_lib.c). We * actually treat them like SSL 3.0 ciphers, which we probably shouldn't. * Note that the first two are actually not in the IDs. */ # define TLS1_CK_RSA_EXPORT1024_WITH_RC4_56_MD5 0x03000060/* not in * ID */ # define TLS1_CK_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 0x03000061/* not in * ID */ # define TLS1_CK_RSA_EXPORT1024_WITH_DES_CBC_SHA 0x03000062 # define TLS1_CK_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA 0x03000063 # define TLS1_CK_RSA_EXPORT1024_WITH_RC4_56_SHA 0x03000064 # define TLS1_CK_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA 0x03000065 # define TLS1_CK_DHE_DSS_WITH_RC4_128_SHA 0x03000066 /* AES ciphersuites from RFC3268 */ # define TLS1_CK_RSA_WITH_AES_128_SHA 0x0300002F # define TLS1_CK_DH_DSS_WITH_AES_128_SHA 0x03000030 # define TLS1_CK_DH_RSA_WITH_AES_128_SHA 0x03000031 # define TLS1_CK_DHE_DSS_WITH_AES_128_SHA 0x03000032 # define TLS1_CK_DHE_RSA_WITH_AES_128_SHA 0x03000033 # define TLS1_CK_ADH_WITH_AES_128_SHA 0x03000034 # define TLS1_CK_RSA_WITH_AES_256_SHA 0x03000035 # define TLS1_CK_DH_DSS_WITH_AES_256_SHA 0x03000036 # define TLS1_CK_DH_RSA_WITH_AES_256_SHA 0x03000037 # define TLS1_CK_DHE_DSS_WITH_AES_256_SHA 0x03000038 # define TLS1_CK_DHE_RSA_WITH_AES_256_SHA 0x03000039 # define TLS1_CK_ADH_WITH_AES_256_SHA 0x0300003A /* TLS v1.2 ciphersuites */ # define TLS1_CK_RSA_WITH_NULL_SHA256 0x0300003B # define TLS1_CK_RSA_WITH_AES_128_SHA256 0x0300003C # define TLS1_CK_RSA_WITH_AES_256_SHA256 0x0300003D # define TLS1_CK_DH_DSS_WITH_AES_128_SHA256 0x0300003E # define TLS1_CK_DH_RSA_WITH_AES_128_SHA256 0x0300003F # define TLS1_CK_DHE_DSS_WITH_AES_128_SHA256 0x03000040 /* Camellia ciphersuites from RFC4132 */ # define TLS1_CK_RSA_WITH_CAMELLIA_128_CBC_SHA 0x03000041 # define TLS1_CK_DH_DSS_WITH_CAMELLIA_128_CBC_SHA 0x03000042 # define TLS1_CK_DH_RSA_WITH_CAMELLIA_128_CBC_SHA 0x03000043 # define TLS1_CK_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA 0x03000044 # define TLS1_CK_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA 0x03000045 # define TLS1_CK_ADH_WITH_CAMELLIA_128_CBC_SHA 0x03000046 /* TLS v1.2 ciphersuites */ # define TLS1_CK_DHE_RSA_WITH_AES_128_SHA256 0x03000067 # define TLS1_CK_DH_DSS_WITH_AES_256_SHA256 0x03000068 # define TLS1_CK_DH_RSA_WITH_AES_256_SHA256 0x03000069 # define TLS1_CK_DHE_DSS_WITH_AES_256_SHA256 0x0300006A # define TLS1_CK_DHE_RSA_WITH_AES_256_SHA256 0x0300006B # define TLS1_CK_ADH_WITH_AES_128_SHA256 0x0300006C # define TLS1_CK_ADH_WITH_AES_256_SHA256 0x0300006D /* Camellia ciphersuites from RFC4132 */ # define TLS1_CK_RSA_WITH_CAMELLIA_256_CBC_SHA 0x03000084 # define TLS1_CK_DH_DSS_WITH_CAMELLIA_256_CBC_SHA 0x03000085 # define TLS1_CK_DH_RSA_WITH_CAMELLIA_256_CBC_SHA 0x03000086 # define TLS1_CK_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA 0x03000087 # define TLS1_CK_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA 0x03000088 # define TLS1_CK_ADH_WITH_CAMELLIA_256_CBC_SHA 0x03000089 /* SEED ciphersuites from RFC4162 */ # define TLS1_CK_RSA_WITH_SEED_SHA 0x03000096 # define TLS1_CK_DH_DSS_WITH_SEED_SHA 0x03000097 # define TLS1_CK_DH_RSA_WITH_SEED_SHA 0x03000098 # define TLS1_CK_DHE_DSS_WITH_SEED_SHA 0x03000099 # define TLS1_CK_DHE_RSA_WITH_SEED_SHA 0x0300009A # define TLS1_CK_ADH_WITH_SEED_SHA 0x0300009B /* TLS v1.2 GCM ciphersuites from RFC5288 */ # define TLS1_CK_RSA_WITH_AES_128_GCM_SHA256 0x0300009C # define TLS1_CK_RSA_WITH_AES_256_GCM_SHA384 0x0300009D # define TLS1_CK_DHE_RSA_WITH_AES_128_GCM_SHA256 0x0300009E # define TLS1_CK_DHE_RSA_WITH_AES_256_GCM_SHA384 0x0300009F # define TLS1_CK_DH_RSA_WITH_AES_128_GCM_SHA256 0x030000A0 # define TLS1_CK_DH_RSA_WITH_AES_256_GCM_SHA384 0x030000A1 # define TLS1_CK_DHE_DSS_WITH_AES_128_GCM_SHA256 0x030000A2 # define TLS1_CK_DHE_DSS_WITH_AES_256_GCM_SHA384 0x030000A3 # define TLS1_CK_DH_DSS_WITH_AES_128_GCM_SHA256 0x030000A4 # define TLS1_CK_DH_DSS_WITH_AES_256_GCM_SHA384 0x030000A5 # define TLS1_CK_ADH_WITH_AES_128_GCM_SHA256 0x030000A6 # define TLS1_CK_ADH_WITH_AES_256_GCM_SHA384 0x030000A7 /* * ECC ciphersuites from draft-ietf-tls-ecc-12.txt with changes soon to be in * draft 13 */ # define TLS1_CK_ECDH_ECDSA_WITH_NULL_SHA 0x0300C001 # define TLS1_CK_ECDH_ECDSA_WITH_RC4_128_SHA 0x0300C002 # define TLS1_CK_ECDH_ECDSA_WITH_DES_192_CBC3_SHA 0x0300C003 # define TLS1_CK_ECDH_ECDSA_WITH_AES_128_CBC_SHA 0x0300C004 # define TLS1_CK_ECDH_ECDSA_WITH_AES_256_CBC_SHA 0x0300C005 # define TLS1_CK_ECDHE_ECDSA_WITH_NULL_SHA 0x0300C006 # define TLS1_CK_ECDHE_ECDSA_WITH_RC4_128_SHA 0x0300C007 # define TLS1_CK_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA 0x0300C008 # define TLS1_CK_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 0x0300C009 # define TLS1_CK_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 0x0300C00A # define TLS1_CK_ECDH_RSA_WITH_NULL_SHA 0x0300C00B # define TLS1_CK_ECDH_RSA_WITH_RC4_128_SHA 0x0300C00C # define TLS1_CK_ECDH_RSA_WITH_DES_192_CBC3_SHA 0x0300C00D # define TLS1_CK_ECDH_RSA_WITH_AES_128_CBC_SHA 0x0300C00E # define TLS1_CK_ECDH_RSA_WITH_AES_256_CBC_SHA 0x0300C00F # define TLS1_CK_ECDHE_RSA_WITH_NULL_SHA 0x0300C010 # define TLS1_CK_ECDHE_RSA_WITH_RC4_128_SHA 0x0300C011 # define TLS1_CK_ECDHE_RSA_WITH_DES_192_CBC3_SHA 0x0300C012 # define TLS1_CK_ECDHE_RSA_WITH_AES_128_CBC_SHA 0x0300C013 # define TLS1_CK_ECDHE_RSA_WITH_AES_256_CBC_SHA 0x0300C014 # define TLS1_CK_ECDH_anon_WITH_NULL_SHA 0x0300C015 # define TLS1_CK_ECDH_anon_WITH_RC4_128_SHA 0x0300C016 # define TLS1_CK_ECDH_anon_WITH_DES_192_CBC3_SHA 0x0300C017 # define TLS1_CK_ECDH_anon_WITH_AES_128_CBC_SHA 0x0300C018 # define TLS1_CK_ECDH_anon_WITH_AES_256_CBC_SHA 0x0300C019 /* SRP ciphersuites from RFC 5054 */ # define TLS1_CK_SRP_SHA_WITH_3DES_EDE_CBC_SHA 0x0300C01A # define TLS1_CK_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA 0x0300C01B # define TLS1_CK_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA 0x0300C01C # define TLS1_CK_SRP_SHA_WITH_AES_128_CBC_SHA 0x0300C01D # define TLS1_CK_SRP_SHA_RSA_WITH_AES_128_CBC_SHA 0x0300C01E # define TLS1_CK_SRP_SHA_DSS_WITH_AES_128_CBC_SHA 0x0300C01F # define TLS1_CK_SRP_SHA_WITH_AES_256_CBC_SHA 0x0300C020 # define TLS1_CK_SRP_SHA_RSA_WITH_AES_256_CBC_SHA 0x0300C021 # define TLS1_CK_SRP_SHA_DSS_WITH_AES_256_CBC_SHA 0x0300C022 /* ECDH HMAC based ciphersuites from RFC5289 */ # define TLS1_CK_ECDHE_ECDSA_WITH_AES_128_SHA256 0x0300C023 # define TLS1_CK_ECDHE_ECDSA_WITH_AES_256_SHA384 0x0300C024 # define TLS1_CK_ECDH_ECDSA_WITH_AES_128_SHA256 0x0300C025 # define TLS1_CK_ECDH_ECDSA_WITH_AES_256_SHA384 0x0300C026 # define TLS1_CK_ECDHE_RSA_WITH_AES_128_SHA256 0x0300C027 # define TLS1_CK_ECDHE_RSA_WITH_AES_256_SHA384 0x0300C028 # define TLS1_CK_ECDH_RSA_WITH_AES_128_SHA256 0x0300C029 # define TLS1_CK_ECDH_RSA_WITH_AES_256_SHA384 0x0300C02A /* ECDH GCM based ciphersuites from RFC5289 */ # define TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 0x0300C02B # define TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 0x0300C02C # define TLS1_CK_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 0x0300C02D # define TLS1_CK_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 0x0300C02E # define TLS1_CK_ECDHE_RSA_WITH_AES_128_GCM_SHA256 0x0300C02F # define TLS1_CK_ECDHE_RSA_WITH_AES_256_GCM_SHA384 0x0300C030 # define TLS1_CK_ECDH_RSA_WITH_AES_128_GCM_SHA256 0x0300C031 # define TLS1_CK_ECDH_RSA_WITH_AES_256_GCM_SHA384 0x0300C032 /* * XXX * Backward compatibility alert: + * Older versions of OpenSSL gave * some DHE ciphers names with "EDH" + * instead of "DHE". Going forward, we * should be using DHE + * everywhere, though we may indefinitely maintain * aliases for users + * or configurations that used "EDH" + */ # define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_MD5 "EXP1024-RC4-MD5" # define TLS1_TXT_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5 "EXP1024-RC2-CBC-MD5" # define TLS1_TXT_RSA_EXPORT1024_WITH_DES_CBC_SHA "EXP1024-DES-CBC-SHA" # define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA "EXP1024-DHE-DSS-DES-CBC-SHA" # define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_SHA "EXP1024-RC4-SHA" # define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA "EXP1024-DHE-DSS-RC4-SHA" # define TLS1_TXT_DHE_DSS_WITH_RC4_128_SHA "DHE-DSS-RC4-SHA" /* AES ciphersuites from RFC3268 */ # define TLS1_TXT_RSA_WITH_AES_128_SHA "AES128-SHA" # define TLS1_TXT_DH_DSS_WITH_AES_128_SHA "DH-DSS-AES128-SHA" # define TLS1_TXT_DH_RSA_WITH_AES_128_SHA "DH-RSA-AES128-SHA" # define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA "DHE-DSS-AES128-SHA" # define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA "DHE-RSA-AES128-SHA" # define TLS1_TXT_ADH_WITH_AES_128_SHA "ADH-AES128-SHA" # define TLS1_TXT_RSA_WITH_AES_256_SHA "AES256-SHA" # define TLS1_TXT_DH_DSS_WITH_AES_256_SHA "DH-DSS-AES256-SHA" # define TLS1_TXT_DH_RSA_WITH_AES_256_SHA "DH-RSA-AES256-SHA" # define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA "DHE-DSS-AES256-SHA" # define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA "DHE-RSA-AES256-SHA" # define TLS1_TXT_ADH_WITH_AES_256_SHA "ADH-AES256-SHA" /* ECC ciphersuites from RFC4492 */ # define TLS1_TXT_ECDH_ECDSA_WITH_NULL_SHA "ECDH-ECDSA-NULL-SHA" # define TLS1_TXT_ECDH_ECDSA_WITH_RC4_128_SHA "ECDH-ECDSA-RC4-SHA" # define TLS1_TXT_ECDH_ECDSA_WITH_DES_192_CBC3_SHA "ECDH-ECDSA-DES-CBC3-SHA" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_128_CBC_SHA "ECDH-ECDSA-AES128-SHA" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_256_CBC_SHA "ECDH-ECDSA-AES256-SHA" # define TLS1_TXT_ECDHE_ECDSA_WITH_NULL_SHA "ECDHE-ECDSA-NULL-SHA" # define TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA "ECDHE-ECDSA-RC4-SHA" # define TLS1_TXT_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA "ECDHE-ECDSA-DES-CBC3-SHA" # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA "ECDHE-ECDSA-AES128-SHA" # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA "ECDHE-ECDSA-AES256-SHA" # define TLS1_TXT_ECDH_RSA_WITH_NULL_SHA "ECDH-RSA-NULL-SHA" # define TLS1_TXT_ECDH_RSA_WITH_RC4_128_SHA "ECDH-RSA-RC4-SHA" # define TLS1_TXT_ECDH_RSA_WITH_DES_192_CBC3_SHA "ECDH-RSA-DES-CBC3-SHA" # define TLS1_TXT_ECDH_RSA_WITH_AES_128_CBC_SHA "ECDH-RSA-AES128-SHA" # define TLS1_TXT_ECDH_RSA_WITH_AES_256_CBC_SHA "ECDH-RSA-AES256-SHA" # define TLS1_TXT_ECDHE_RSA_WITH_NULL_SHA "ECDHE-RSA-NULL-SHA" # define TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA "ECDHE-RSA-RC4-SHA" # define TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA "ECDHE-RSA-DES-CBC3-SHA" # define TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA "ECDHE-RSA-AES128-SHA" # define TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA "ECDHE-RSA-AES256-SHA" # define TLS1_TXT_ECDH_anon_WITH_NULL_SHA "AECDH-NULL-SHA" # define TLS1_TXT_ECDH_anon_WITH_RC4_128_SHA "AECDH-RC4-SHA" # define TLS1_TXT_ECDH_anon_WITH_DES_192_CBC3_SHA "AECDH-DES-CBC3-SHA" # define TLS1_TXT_ECDH_anon_WITH_AES_128_CBC_SHA "AECDH-AES128-SHA" # define TLS1_TXT_ECDH_anon_WITH_AES_256_CBC_SHA "AECDH-AES256-SHA" /* PSK ciphersuites from RFC 4279 */ # define TLS1_TXT_PSK_WITH_RC4_128_SHA "PSK-RC4-SHA" # define TLS1_TXT_PSK_WITH_3DES_EDE_CBC_SHA "PSK-3DES-EDE-CBC-SHA" # define TLS1_TXT_PSK_WITH_AES_128_CBC_SHA "PSK-AES128-CBC-SHA" # define TLS1_TXT_PSK_WITH_AES_256_CBC_SHA "PSK-AES256-CBC-SHA" /* SRP ciphersuite from RFC 5054 */ # define TLS1_TXT_SRP_SHA_WITH_3DES_EDE_CBC_SHA "SRP-3DES-EDE-CBC-SHA" # define TLS1_TXT_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA "SRP-RSA-3DES-EDE-CBC-SHA" # define TLS1_TXT_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA "SRP-DSS-3DES-EDE-CBC-SHA" # define TLS1_TXT_SRP_SHA_WITH_AES_128_CBC_SHA "SRP-AES-128-CBC-SHA" # define TLS1_TXT_SRP_SHA_RSA_WITH_AES_128_CBC_SHA "SRP-RSA-AES-128-CBC-SHA" # define TLS1_TXT_SRP_SHA_DSS_WITH_AES_128_CBC_SHA "SRP-DSS-AES-128-CBC-SHA" # define TLS1_TXT_SRP_SHA_WITH_AES_256_CBC_SHA "SRP-AES-256-CBC-SHA" # define TLS1_TXT_SRP_SHA_RSA_WITH_AES_256_CBC_SHA "SRP-RSA-AES-256-CBC-SHA" # define TLS1_TXT_SRP_SHA_DSS_WITH_AES_256_CBC_SHA "SRP-DSS-AES-256-CBC-SHA" /* Camellia ciphersuites from RFC4132 */ # define TLS1_TXT_RSA_WITH_CAMELLIA_128_CBC_SHA "CAMELLIA128-SHA" # define TLS1_TXT_DH_DSS_WITH_CAMELLIA_128_CBC_SHA "DH-DSS-CAMELLIA128-SHA" # define TLS1_TXT_DH_RSA_WITH_CAMELLIA_128_CBC_SHA "DH-RSA-CAMELLIA128-SHA" # define TLS1_TXT_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA "DHE-DSS-CAMELLIA128-SHA" # define TLS1_TXT_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA "DHE-RSA-CAMELLIA128-SHA" # define TLS1_TXT_ADH_WITH_CAMELLIA_128_CBC_SHA "ADH-CAMELLIA128-SHA" # define TLS1_TXT_RSA_WITH_CAMELLIA_256_CBC_SHA "CAMELLIA256-SHA" # define TLS1_TXT_DH_DSS_WITH_CAMELLIA_256_CBC_SHA "DH-DSS-CAMELLIA256-SHA" # define TLS1_TXT_DH_RSA_WITH_CAMELLIA_256_CBC_SHA "DH-RSA-CAMELLIA256-SHA" # define TLS1_TXT_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA "DHE-DSS-CAMELLIA256-SHA" # define TLS1_TXT_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA "DHE-RSA-CAMELLIA256-SHA" # define TLS1_TXT_ADH_WITH_CAMELLIA_256_CBC_SHA "ADH-CAMELLIA256-SHA" /* SEED ciphersuites from RFC4162 */ # define TLS1_TXT_RSA_WITH_SEED_SHA "SEED-SHA" # define TLS1_TXT_DH_DSS_WITH_SEED_SHA "DH-DSS-SEED-SHA" # define TLS1_TXT_DH_RSA_WITH_SEED_SHA "DH-RSA-SEED-SHA" # define TLS1_TXT_DHE_DSS_WITH_SEED_SHA "DHE-DSS-SEED-SHA" # define TLS1_TXT_DHE_RSA_WITH_SEED_SHA "DHE-RSA-SEED-SHA" # define TLS1_TXT_ADH_WITH_SEED_SHA "ADH-SEED-SHA" /* TLS v1.2 ciphersuites */ # define TLS1_TXT_RSA_WITH_NULL_SHA256 "NULL-SHA256" # define TLS1_TXT_RSA_WITH_AES_128_SHA256 "AES128-SHA256" # define TLS1_TXT_RSA_WITH_AES_256_SHA256 "AES256-SHA256" # define TLS1_TXT_DH_DSS_WITH_AES_128_SHA256 "DH-DSS-AES128-SHA256" # define TLS1_TXT_DH_RSA_WITH_AES_128_SHA256 "DH-RSA-AES128-SHA256" # define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA256 "DHE-DSS-AES128-SHA256" # define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA256 "DHE-RSA-AES128-SHA256" # define TLS1_TXT_DH_DSS_WITH_AES_256_SHA256 "DH-DSS-AES256-SHA256" # define TLS1_TXT_DH_RSA_WITH_AES_256_SHA256 "DH-RSA-AES256-SHA256" # define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA256 "DHE-DSS-AES256-SHA256" # define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA256 "DHE-RSA-AES256-SHA256" # define TLS1_TXT_ADH_WITH_AES_128_SHA256 "ADH-AES128-SHA256" # define TLS1_TXT_ADH_WITH_AES_256_SHA256 "ADH-AES256-SHA256" /* TLS v1.2 GCM ciphersuites from RFC5288 */ # define TLS1_TXT_RSA_WITH_AES_128_GCM_SHA256 "AES128-GCM-SHA256" # define TLS1_TXT_RSA_WITH_AES_256_GCM_SHA384 "AES256-GCM-SHA384" # define TLS1_TXT_DHE_RSA_WITH_AES_128_GCM_SHA256 "DHE-RSA-AES128-GCM-SHA256" # define TLS1_TXT_DHE_RSA_WITH_AES_256_GCM_SHA384 "DHE-RSA-AES256-GCM-SHA384" # define TLS1_TXT_DH_RSA_WITH_AES_128_GCM_SHA256 "DH-RSA-AES128-GCM-SHA256" # define TLS1_TXT_DH_RSA_WITH_AES_256_GCM_SHA384 "DH-RSA-AES256-GCM-SHA384" # define TLS1_TXT_DHE_DSS_WITH_AES_128_GCM_SHA256 "DHE-DSS-AES128-GCM-SHA256" # define TLS1_TXT_DHE_DSS_WITH_AES_256_GCM_SHA384 "DHE-DSS-AES256-GCM-SHA384" # define TLS1_TXT_DH_DSS_WITH_AES_128_GCM_SHA256 "DH-DSS-AES128-GCM-SHA256" # define TLS1_TXT_DH_DSS_WITH_AES_256_GCM_SHA384 "DH-DSS-AES256-GCM-SHA384" # define TLS1_TXT_ADH_WITH_AES_128_GCM_SHA256 "ADH-AES128-GCM-SHA256" # define TLS1_TXT_ADH_WITH_AES_256_GCM_SHA384 "ADH-AES256-GCM-SHA384" /* ECDH HMAC based ciphersuites from RFC5289 */ # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_SHA256 "ECDHE-ECDSA-AES128-SHA256" # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_SHA384 "ECDHE-ECDSA-AES256-SHA384" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_128_SHA256 "ECDH-ECDSA-AES128-SHA256" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_256_SHA384 "ECDH-ECDSA-AES256-SHA384" # define TLS1_TXT_ECDHE_RSA_WITH_AES_128_SHA256 "ECDHE-RSA-AES128-SHA256" # define TLS1_TXT_ECDHE_RSA_WITH_AES_256_SHA384 "ECDHE-RSA-AES256-SHA384" # define TLS1_TXT_ECDH_RSA_WITH_AES_128_SHA256 "ECDH-RSA-AES128-SHA256" # define TLS1_TXT_ECDH_RSA_WITH_AES_256_SHA384 "ECDH-RSA-AES256-SHA384" /* ECDH GCM based ciphersuites from RFC5289 */ # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 "ECDHE-ECDSA-AES128-GCM-SHA256" # define TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 "ECDHE-ECDSA-AES256-GCM-SHA384" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 "ECDH-ECDSA-AES128-GCM-SHA256" # define TLS1_TXT_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 "ECDH-ECDSA-AES256-GCM-SHA384" # define TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256 "ECDHE-RSA-AES128-GCM-SHA256" # define TLS1_TXT_ECDHE_RSA_WITH_AES_256_GCM_SHA384 "ECDHE-RSA-AES256-GCM-SHA384" # define TLS1_TXT_ECDH_RSA_WITH_AES_128_GCM_SHA256 "ECDH-RSA-AES128-GCM-SHA256" # define TLS1_TXT_ECDH_RSA_WITH_AES_256_GCM_SHA384 "ECDH-RSA-AES256-GCM-SHA384" # define TLS_CT_RSA_SIGN 1 # define TLS_CT_DSS_SIGN 2 # define TLS_CT_RSA_FIXED_DH 3 # define TLS_CT_DSS_FIXED_DH 4 # define TLS_CT_ECDSA_SIGN 64 # define TLS_CT_RSA_FIXED_ECDH 65 # define TLS_CT_ECDSA_FIXED_ECDH 66 # define TLS_CT_GOST94_SIGN 21 # define TLS_CT_GOST01_SIGN 22 /* * when correcting this number, correct also SSL3_CT_NUMBER in ssl3.h (see * comment there) */ # define TLS_CT_NUMBER 9 # define TLS1_FINISH_MAC_LENGTH 12 # define TLS_MD_MAX_CONST_SIZE 20 # define TLS_MD_CLIENT_FINISH_CONST "client finished" # define TLS_MD_CLIENT_FINISH_CONST_SIZE 15 # define TLS_MD_SERVER_FINISH_CONST "server finished" # define TLS_MD_SERVER_FINISH_CONST_SIZE 15 # define TLS_MD_SERVER_WRITE_KEY_CONST "server write key" # define TLS_MD_SERVER_WRITE_KEY_CONST_SIZE 16 # define TLS_MD_KEY_EXPANSION_CONST "key expansion" # define TLS_MD_KEY_EXPANSION_CONST_SIZE 13 # define TLS_MD_CLIENT_WRITE_KEY_CONST "client write key" # define TLS_MD_CLIENT_WRITE_KEY_CONST_SIZE 16 # define TLS_MD_SERVER_WRITE_KEY_CONST "server write key" # define TLS_MD_SERVER_WRITE_KEY_CONST_SIZE 16 # define TLS_MD_IV_BLOCK_CONST "IV block" # define TLS_MD_IV_BLOCK_CONST_SIZE 8 # define TLS_MD_MASTER_SECRET_CONST "master secret" # define TLS_MD_MASTER_SECRET_CONST_SIZE 13 # ifdef CHARSET_EBCDIC # undef TLS_MD_CLIENT_FINISH_CONST /* * client finished */ # define TLS_MD_CLIENT_FINISH_CONST "\x63\x6c\x69\x65\x6e\x74\x20\x66\x69\x6e\x69\x73\x68\x65\x64" # undef TLS_MD_SERVER_FINISH_CONST /* * server finished */ # define TLS_MD_SERVER_FINISH_CONST "\x73\x65\x72\x76\x65\x72\x20\x66\x69\x6e\x69\x73\x68\x65\x64" # undef TLS_MD_SERVER_WRITE_KEY_CONST /* * server write key */ # define TLS_MD_SERVER_WRITE_KEY_CONST "\x73\x65\x72\x76\x65\x72\x20\x77\x72\x69\x74\x65\x20\x6b\x65\x79" # undef TLS_MD_KEY_EXPANSION_CONST /* * key expansion */ # define TLS_MD_KEY_EXPANSION_CONST "\x6b\x65\x79\x20\x65\x78\x70\x61\x6e\x73\x69\x6f\x6e" # undef TLS_MD_CLIENT_WRITE_KEY_CONST /* * client write key */ # define TLS_MD_CLIENT_WRITE_KEY_CONST "\x63\x6c\x69\x65\x6e\x74\x20\x77\x72\x69\x74\x65\x20\x6b\x65\x79" # undef TLS_MD_SERVER_WRITE_KEY_CONST /* * server write key */ # define TLS_MD_SERVER_WRITE_KEY_CONST "\x73\x65\x72\x76\x65\x72\x20\x77\x72\x69\x74\x65\x20\x6b\x65\x79" # undef TLS_MD_IV_BLOCK_CONST /* * IV block */ # define TLS_MD_IV_BLOCK_CONST "\x49\x56\x20\x62\x6c\x6f\x63\x6b" # undef TLS_MD_MASTER_SECRET_CONST /* * master secret */ # define TLS_MD_MASTER_SECRET_CONST "\x6d\x61\x73\x74\x65\x72\x20\x73\x65\x63\x72\x65\x74" # endif /* TLS Session Ticket extension struct */ struct tls_session_ticket_ext_st { unsigned short length; void *data; }; #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ts.h ================================================ /* crypto/ts/ts.h */ /* * Written by Zoltan Glozik (zglozik@opentsa.org) for the OpenSSL project * 2002, 2003, 2004. */ /* ==================================================================== * Copyright (c) 2006 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_TS_H # define HEADER_TS_H # include # include # ifndef OPENSSL_NO_BUFFER # include # endif # ifndef OPENSSL_NO_EVP # include # endif # ifndef OPENSSL_NO_BIO # include # endif # include # include # include # ifndef OPENSSL_NO_RSA # include # endif # ifndef OPENSSL_NO_DSA # include # endif # ifndef OPENSSL_NO_DH # include # endif #ifdef __cplusplus extern "C" { #endif # ifdef WIN32 /* Under Win32 this is defined in wincrypt.h */ # undef X509_NAME # endif # include # include /*- MessageImprint ::= SEQUENCE { hashAlgorithm AlgorithmIdentifier, hashedMessage OCTET STRING } */ typedef struct TS_msg_imprint_st { X509_ALGOR *hash_algo; ASN1_OCTET_STRING *hashed_msg; } TS_MSG_IMPRINT; /*- TimeStampReq ::= SEQUENCE { version INTEGER { v1(1) }, messageImprint MessageImprint, --a hash algorithm OID and the hash value of the data to be --time-stamped reqPolicy TSAPolicyId OPTIONAL, nonce INTEGER OPTIONAL, certReq BOOLEAN DEFAULT FALSE, extensions [0] IMPLICIT Extensions OPTIONAL } */ typedef struct TS_req_st { ASN1_INTEGER *version; TS_MSG_IMPRINT *msg_imprint; ASN1_OBJECT *policy_id; /* OPTIONAL */ ASN1_INTEGER *nonce; /* OPTIONAL */ ASN1_BOOLEAN cert_req; /* DEFAULT FALSE */ STACK_OF(X509_EXTENSION) *extensions; /* [0] OPTIONAL */ } TS_REQ; /*- Accuracy ::= SEQUENCE { seconds INTEGER OPTIONAL, millis [0] INTEGER (1..999) OPTIONAL, micros [1] INTEGER (1..999) OPTIONAL } */ typedef struct TS_accuracy_st { ASN1_INTEGER *seconds; ASN1_INTEGER *millis; ASN1_INTEGER *micros; } TS_ACCURACY; /*- TSTInfo ::= SEQUENCE { version INTEGER { v1(1) }, policy TSAPolicyId, messageImprint MessageImprint, -- MUST have the same value as the similar field in -- TimeStampReq serialNumber INTEGER, -- Time-Stamping users MUST be ready to accommodate integers -- up to 160 bits. genTime GeneralizedTime, accuracy Accuracy OPTIONAL, ordering BOOLEAN DEFAULT FALSE, nonce INTEGER OPTIONAL, -- MUST be present if the similar field was present -- in TimeStampReq. In that case it MUST have the same value. tsa [0] GeneralName OPTIONAL, extensions [1] IMPLICIT Extensions OPTIONAL } */ typedef struct TS_tst_info_st { ASN1_INTEGER *version; ASN1_OBJECT *policy_id; TS_MSG_IMPRINT *msg_imprint; ASN1_INTEGER *serial; ASN1_GENERALIZEDTIME *time; TS_ACCURACY *accuracy; ASN1_BOOLEAN ordering; ASN1_INTEGER *nonce; GENERAL_NAME *tsa; STACK_OF(X509_EXTENSION) *extensions; } TS_TST_INFO; /*- PKIStatusInfo ::= SEQUENCE { status PKIStatus, statusString PKIFreeText OPTIONAL, failInfo PKIFailureInfo OPTIONAL } From RFC 1510 - section 3.1.1: PKIFreeText ::= SEQUENCE SIZE (1..MAX) OF UTF8String -- text encoded as UTF-8 String (note: each UTF8String SHOULD -- include an RFC 1766 language tag to indicate the language -- of the contained text) */ /* Possible values for status. See ts_resp_print.c && ts_resp_verify.c. */ # define TS_STATUS_GRANTED 0 # define TS_STATUS_GRANTED_WITH_MODS 1 # define TS_STATUS_REJECTION 2 # define TS_STATUS_WAITING 3 # define TS_STATUS_REVOCATION_WARNING 4 # define TS_STATUS_REVOCATION_NOTIFICATION 5 /* * Possible values for failure_info. See ts_resp_print.c && ts_resp_verify.c */ # define TS_INFO_BAD_ALG 0 # define TS_INFO_BAD_REQUEST 2 # define TS_INFO_BAD_DATA_FORMAT 5 # define TS_INFO_TIME_NOT_AVAILABLE 14 # define TS_INFO_UNACCEPTED_POLICY 15 # define TS_INFO_UNACCEPTED_EXTENSION 16 # define TS_INFO_ADD_INFO_NOT_AVAILABLE 17 # define TS_INFO_SYSTEM_FAILURE 25 typedef struct TS_status_info_st { ASN1_INTEGER *status; STACK_OF(ASN1_UTF8STRING) *text; ASN1_BIT_STRING *failure_info; } TS_STATUS_INFO; DECLARE_STACK_OF(ASN1_UTF8STRING) DECLARE_ASN1_SET_OF(ASN1_UTF8STRING) /*- TimeStampResp ::= SEQUENCE { status PKIStatusInfo, timeStampToken TimeStampToken OPTIONAL } */ typedef struct TS_resp_st { TS_STATUS_INFO *status_info; PKCS7 *token; TS_TST_INFO *tst_info; } TS_RESP; /* The structure below would belong to the ESS component. */ /*- IssuerSerial ::= SEQUENCE { issuer GeneralNames, serialNumber CertificateSerialNumber } */ typedef struct ESS_issuer_serial { STACK_OF(GENERAL_NAME) *issuer; ASN1_INTEGER *serial; } ESS_ISSUER_SERIAL; /*- ESSCertID ::= SEQUENCE { certHash Hash, issuerSerial IssuerSerial OPTIONAL } */ typedef struct ESS_cert_id { ASN1_OCTET_STRING *hash; /* Always SHA-1 digest. */ ESS_ISSUER_SERIAL *issuer_serial; } ESS_CERT_ID; DECLARE_STACK_OF(ESS_CERT_ID) DECLARE_ASN1_SET_OF(ESS_CERT_ID) /*- SigningCertificate ::= SEQUENCE { certs SEQUENCE OF ESSCertID, policies SEQUENCE OF PolicyInformation OPTIONAL } */ typedef struct ESS_signing_cert { STACK_OF(ESS_CERT_ID) *cert_ids; STACK_OF(POLICYINFO) *policy_info; } ESS_SIGNING_CERT; TS_REQ *TS_REQ_new(void); void TS_REQ_free(TS_REQ *a); int i2d_TS_REQ(const TS_REQ *a, unsigned char **pp); TS_REQ *d2i_TS_REQ(TS_REQ **a, const unsigned char **pp, long length); TS_REQ *TS_REQ_dup(TS_REQ *a); TS_REQ *d2i_TS_REQ_fp(FILE *fp, TS_REQ **a); int i2d_TS_REQ_fp(FILE *fp, TS_REQ *a); TS_REQ *d2i_TS_REQ_bio(BIO *fp, TS_REQ **a); int i2d_TS_REQ_bio(BIO *fp, TS_REQ *a); TS_MSG_IMPRINT *TS_MSG_IMPRINT_new(void); void TS_MSG_IMPRINT_free(TS_MSG_IMPRINT *a); int i2d_TS_MSG_IMPRINT(const TS_MSG_IMPRINT *a, unsigned char **pp); TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT(TS_MSG_IMPRINT **a, const unsigned char **pp, long length); TS_MSG_IMPRINT *TS_MSG_IMPRINT_dup(TS_MSG_IMPRINT *a); TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT **a); int i2d_TS_MSG_IMPRINT_fp(FILE *fp, TS_MSG_IMPRINT *a); TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT **a); int i2d_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT *a); TS_RESP *TS_RESP_new(void); void TS_RESP_free(TS_RESP *a); int i2d_TS_RESP(const TS_RESP *a, unsigned char **pp); TS_RESP *d2i_TS_RESP(TS_RESP **a, const unsigned char **pp, long length); TS_TST_INFO *PKCS7_to_TS_TST_INFO(PKCS7 *token); TS_RESP *TS_RESP_dup(TS_RESP *a); TS_RESP *d2i_TS_RESP_fp(FILE *fp, TS_RESP **a); int i2d_TS_RESP_fp(FILE *fp, TS_RESP *a); TS_RESP *d2i_TS_RESP_bio(BIO *fp, TS_RESP **a); int i2d_TS_RESP_bio(BIO *fp, TS_RESP *a); TS_STATUS_INFO *TS_STATUS_INFO_new(void); void TS_STATUS_INFO_free(TS_STATUS_INFO *a); int i2d_TS_STATUS_INFO(const TS_STATUS_INFO *a, unsigned char **pp); TS_STATUS_INFO *d2i_TS_STATUS_INFO(TS_STATUS_INFO **a, const unsigned char **pp, long length); TS_STATUS_INFO *TS_STATUS_INFO_dup(TS_STATUS_INFO *a); TS_TST_INFO *TS_TST_INFO_new(void); void TS_TST_INFO_free(TS_TST_INFO *a); int i2d_TS_TST_INFO(const TS_TST_INFO *a, unsigned char **pp); TS_TST_INFO *d2i_TS_TST_INFO(TS_TST_INFO **a, const unsigned char **pp, long length); TS_TST_INFO *TS_TST_INFO_dup(TS_TST_INFO *a); TS_TST_INFO *d2i_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO **a); int i2d_TS_TST_INFO_fp(FILE *fp, TS_TST_INFO *a); TS_TST_INFO *d2i_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO **a); int i2d_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO *a); TS_ACCURACY *TS_ACCURACY_new(void); void TS_ACCURACY_free(TS_ACCURACY *a); int i2d_TS_ACCURACY(const TS_ACCURACY *a, unsigned char **pp); TS_ACCURACY *d2i_TS_ACCURACY(TS_ACCURACY **a, const unsigned char **pp, long length); TS_ACCURACY *TS_ACCURACY_dup(TS_ACCURACY *a); ESS_ISSUER_SERIAL *ESS_ISSUER_SERIAL_new(void); void ESS_ISSUER_SERIAL_free(ESS_ISSUER_SERIAL *a); int i2d_ESS_ISSUER_SERIAL(const ESS_ISSUER_SERIAL *a, unsigned char **pp); ESS_ISSUER_SERIAL *d2i_ESS_ISSUER_SERIAL(ESS_ISSUER_SERIAL **a, const unsigned char **pp, long length); ESS_ISSUER_SERIAL *ESS_ISSUER_SERIAL_dup(ESS_ISSUER_SERIAL *a); ESS_CERT_ID *ESS_CERT_ID_new(void); void ESS_CERT_ID_free(ESS_CERT_ID *a); int i2d_ESS_CERT_ID(const ESS_CERT_ID *a, unsigned char **pp); ESS_CERT_ID *d2i_ESS_CERT_ID(ESS_CERT_ID **a, const unsigned char **pp, long length); ESS_CERT_ID *ESS_CERT_ID_dup(ESS_CERT_ID *a); ESS_SIGNING_CERT *ESS_SIGNING_CERT_new(void); void ESS_SIGNING_CERT_free(ESS_SIGNING_CERT *a); int i2d_ESS_SIGNING_CERT(const ESS_SIGNING_CERT *a, unsigned char **pp); ESS_SIGNING_CERT *d2i_ESS_SIGNING_CERT(ESS_SIGNING_CERT **a, const unsigned char **pp, long length); ESS_SIGNING_CERT *ESS_SIGNING_CERT_dup(ESS_SIGNING_CERT *a); void ERR_load_TS_strings(void); int TS_REQ_set_version(TS_REQ *a, long version); long TS_REQ_get_version(const TS_REQ *a); int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint); TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a); int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg); X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a); int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len); ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a); int TS_REQ_set_policy_id(TS_REQ *a, ASN1_OBJECT *policy); ASN1_OBJECT *TS_REQ_get_policy_id(TS_REQ *a); int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce); const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a); int TS_REQ_set_cert_req(TS_REQ *a, int cert_req); int TS_REQ_get_cert_req(const TS_REQ *a); STACK_OF(X509_EXTENSION) *TS_REQ_get_exts(TS_REQ *a); void TS_REQ_ext_free(TS_REQ *a); int TS_REQ_get_ext_count(TS_REQ *a); int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos); int TS_REQ_get_ext_by_OBJ(TS_REQ *a, ASN1_OBJECT *obj, int lastpos); int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos); X509_EXTENSION *TS_REQ_get_ext(TS_REQ *a, int loc); X509_EXTENSION *TS_REQ_delete_ext(TS_REQ *a, int loc); int TS_REQ_add_ext(TS_REQ *a, X509_EXTENSION *ex, int loc); void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx); /* Function declarations for TS_REQ defined in ts/ts_req_print.c */ int TS_REQ_print_bio(BIO *bio, TS_REQ *a); /* Function declarations for TS_RESP defined in ts/ts_resp_utils.c */ int TS_RESP_set_status_info(TS_RESP *a, TS_STATUS_INFO *info); TS_STATUS_INFO *TS_RESP_get_status_info(TS_RESP *a); /* Caller loses ownership of PKCS7 and TS_TST_INFO objects. */ void TS_RESP_set_tst_info(TS_RESP *a, PKCS7 *p7, TS_TST_INFO *tst_info); PKCS7 *TS_RESP_get_token(TS_RESP *a); TS_TST_INFO *TS_RESP_get_tst_info(TS_RESP *a); int TS_TST_INFO_set_version(TS_TST_INFO *a, long version); long TS_TST_INFO_get_version(const TS_TST_INFO *a); int TS_TST_INFO_set_policy_id(TS_TST_INFO *a, ASN1_OBJECT *policy_id); ASN1_OBJECT *TS_TST_INFO_get_policy_id(TS_TST_INFO *a); int TS_TST_INFO_set_msg_imprint(TS_TST_INFO *a, TS_MSG_IMPRINT *msg_imprint); TS_MSG_IMPRINT *TS_TST_INFO_get_msg_imprint(TS_TST_INFO *a); int TS_TST_INFO_set_serial(TS_TST_INFO *a, const ASN1_INTEGER *serial); const ASN1_INTEGER *TS_TST_INFO_get_serial(const TS_TST_INFO *a); int TS_TST_INFO_set_time(TS_TST_INFO *a, const ASN1_GENERALIZEDTIME *gtime); const ASN1_GENERALIZEDTIME *TS_TST_INFO_get_time(const TS_TST_INFO *a); int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy); TS_ACCURACY *TS_TST_INFO_get_accuracy(TS_TST_INFO *a); int TS_ACCURACY_set_seconds(TS_ACCURACY *a, const ASN1_INTEGER *seconds); const ASN1_INTEGER *TS_ACCURACY_get_seconds(const TS_ACCURACY *a); int TS_ACCURACY_set_millis(TS_ACCURACY *a, const ASN1_INTEGER *millis); const ASN1_INTEGER *TS_ACCURACY_get_millis(const TS_ACCURACY *a); int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros); const ASN1_INTEGER *TS_ACCURACY_get_micros(const TS_ACCURACY *a); int TS_TST_INFO_set_ordering(TS_TST_INFO *a, int ordering); int TS_TST_INFO_get_ordering(const TS_TST_INFO *a); int TS_TST_INFO_set_nonce(TS_TST_INFO *a, const ASN1_INTEGER *nonce); const ASN1_INTEGER *TS_TST_INFO_get_nonce(const TS_TST_INFO *a); int TS_TST_INFO_set_tsa(TS_TST_INFO *a, GENERAL_NAME *tsa); GENERAL_NAME *TS_TST_INFO_get_tsa(TS_TST_INFO *a); STACK_OF(X509_EXTENSION) *TS_TST_INFO_get_exts(TS_TST_INFO *a); void TS_TST_INFO_ext_free(TS_TST_INFO *a); int TS_TST_INFO_get_ext_count(TS_TST_INFO *a); int TS_TST_INFO_get_ext_by_NID(TS_TST_INFO *a, int nid, int lastpos); int TS_TST_INFO_get_ext_by_OBJ(TS_TST_INFO *a, ASN1_OBJECT *obj, int lastpos); int TS_TST_INFO_get_ext_by_critical(TS_TST_INFO *a, int crit, int lastpos); X509_EXTENSION *TS_TST_INFO_get_ext(TS_TST_INFO *a, int loc); X509_EXTENSION *TS_TST_INFO_delete_ext(TS_TST_INFO *a, int loc); int TS_TST_INFO_add_ext(TS_TST_INFO *a, X509_EXTENSION *ex, int loc); void *TS_TST_INFO_get_ext_d2i(TS_TST_INFO *a, int nid, int *crit, int *idx); /* * Declarations related to response generation, defined in ts/ts_resp_sign.c. */ /* Optional flags for response generation. */ /* Don't include the TSA name in response. */ # define TS_TSA_NAME 0x01 /* Set ordering to true in response. */ # define TS_ORDERING 0x02 /* * Include the signer certificate and the other specified certificates in * the ESS signing certificate attribute beside the PKCS7 signed data. * Only the signer certificates is included by default. */ # define TS_ESS_CERT_ID_CHAIN 0x04 /* Forward declaration. */ struct TS_resp_ctx; /* This must return a unique number less than 160 bits long. */ typedef ASN1_INTEGER *(*TS_serial_cb) (struct TS_resp_ctx *, void *); /* * This must return the seconds and microseconds since Jan 1, 1970 in the sec * and usec variables allocated by the caller. Return non-zero for success * and zero for failure. */ typedef int (*TS_time_cb) (struct TS_resp_ctx *, void *, long *sec, long *usec); /* * This must process the given extension. It can modify the TS_TST_INFO * object of the context. Return values: !0 (processed), 0 (error, it must * set the status info/failure info of the response). */ typedef int (*TS_extension_cb) (struct TS_resp_ctx *, X509_EXTENSION *, void *); typedef struct TS_resp_ctx { X509 *signer_cert; EVP_PKEY *signer_key; STACK_OF(X509) *certs; /* Certs to include in signed data. */ STACK_OF(ASN1_OBJECT) *policies; /* Acceptable policies. */ ASN1_OBJECT *default_policy; /* It may appear in policies, too. */ STACK_OF(EVP_MD) *mds; /* Acceptable message digests. */ ASN1_INTEGER *seconds; /* accuracy, 0 means not specified. */ ASN1_INTEGER *millis; /* accuracy, 0 means not specified. */ ASN1_INTEGER *micros; /* accuracy, 0 means not specified. */ unsigned clock_precision_digits; /* fraction of seconds in time stamp * token. */ unsigned flags; /* Optional info, see values above. */ /* Callback functions. */ TS_serial_cb serial_cb; void *serial_cb_data; /* User data for serial_cb. */ TS_time_cb time_cb; void *time_cb_data; /* User data for time_cb. */ TS_extension_cb extension_cb; void *extension_cb_data; /* User data for extension_cb. */ /* These members are used only while creating the response. */ TS_REQ *request; TS_RESP *response; TS_TST_INFO *tst_info; } TS_RESP_CTX; DECLARE_STACK_OF(EVP_MD) DECLARE_ASN1_SET_OF(EVP_MD) /* Creates a response context that can be used for generating responses. */ TS_RESP_CTX *TS_RESP_CTX_new(void); void TS_RESP_CTX_free(TS_RESP_CTX *ctx); /* This parameter must be set. */ int TS_RESP_CTX_set_signer_cert(TS_RESP_CTX *ctx, X509 *signer); /* This parameter must be set. */ int TS_RESP_CTX_set_signer_key(TS_RESP_CTX *ctx, EVP_PKEY *key); /* This parameter must be set. */ int TS_RESP_CTX_set_def_policy(TS_RESP_CTX *ctx, ASN1_OBJECT *def_policy); /* No additional certs are included in the response by default. */ int TS_RESP_CTX_set_certs(TS_RESP_CTX *ctx, STACK_OF(X509) *certs); /* * Adds a new acceptable policy, only the default policy is accepted by * default. */ int TS_RESP_CTX_add_policy(TS_RESP_CTX *ctx, ASN1_OBJECT *policy); /* * Adds a new acceptable message digest. Note that no message digests are * accepted by default. The md argument is shared with the caller. */ int TS_RESP_CTX_add_md(TS_RESP_CTX *ctx, const EVP_MD *md); /* Accuracy is not included by default. */ int TS_RESP_CTX_set_accuracy(TS_RESP_CTX *ctx, int secs, int millis, int micros); /* * Clock precision digits, i.e. the number of decimal digits: '0' means sec, * '3' msec, '6' usec, and so on. Default is 0. */ int TS_RESP_CTX_set_clock_precision_digits(TS_RESP_CTX *ctx, unsigned clock_precision_digits); /* At most we accept usec precision. */ # define TS_MAX_CLOCK_PRECISION_DIGITS 6 /* Maximum status message length */ # define TS_MAX_STATUS_LENGTH (1024 * 1024) /* No flags are set by default. */ void TS_RESP_CTX_add_flags(TS_RESP_CTX *ctx, int flags); /* Default callback always returns a constant. */ void TS_RESP_CTX_set_serial_cb(TS_RESP_CTX *ctx, TS_serial_cb cb, void *data); /* Default callback uses the gettimeofday() and gmtime() system calls. */ void TS_RESP_CTX_set_time_cb(TS_RESP_CTX *ctx, TS_time_cb cb, void *data); /* * Default callback rejects all extensions. The extension callback is called * when the TS_TST_INFO object is already set up and not signed yet. */ /* FIXME: extension handling is not tested yet. */ void TS_RESP_CTX_set_extension_cb(TS_RESP_CTX *ctx, TS_extension_cb cb, void *data); /* The following methods can be used in the callbacks. */ int TS_RESP_CTX_set_status_info(TS_RESP_CTX *ctx, int status, const char *text); /* Sets the status info only if it is still TS_STATUS_GRANTED. */ int TS_RESP_CTX_set_status_info_cond(TS_RESP_CTX *ctx, int status, const char *text); int TS_RESP_CTX_add_failure_info(TS_RESP_CTX *ctx, int failure); /* The get methods below can be used in the extension callback. */ TS_REQ *TS_RESP_CTX_get_request(TS_RESP_CTX *ctx); TS_TST_INFO *TS_RESP_CTX_get_tst_info(TS_RESP_CTX *ctx); /* * Creates the signed TS_TST_INFO and puts it in TS_RESP. * In case of errors it sets the status info properly. * Returns NULL only in case of memory allocation/fatal error. */ TS_RESP *TS_RESP_create_response(TS_RESP_CTX *ctx, BIO *req_bio); /* * Declarations related to response verification, * they are defined in ts/ts_resp_verify.c. */ int TS_RESP_verify_signature(PKCS7 *token, STACK_OF(X509) *certs, X509_STORE *store, X509 **signer_out); /* Context structure for the generic verify method. */ /* Verify the signer's certificate and the signature of the response. */ # define TS_VFY_SIGNATURE (1u << 0) /* Verify the version number of the response. */ # define TS_VFY_VERSION (1u << 1) /* Verify if the policy supplied by the user matches the policy of the TSA. */ # define TS_VFY_POLICY (1u << 2) /* * Verify the message imprint provided by the user. This flag should not be * specified with TS_VFY_DATA. */ # define TS_VFY_IMPRINT (1u << 3) /* * Verify the message imprint computed by the verify method from the user * provided data and the MD algorithm of the response. This flag should not * be specified with TS_VFY_IMPRINT. */ # define TS_VFY_DATA (1u << 4) /* Verify the nonce value. */ # define TS_VFY_NONCE (1u << 5) /* Verify if the TSA name field matches the signer certificate. */ # define TS_VFY_SIGNER (1u << 6) /* Verify if the TSA name field equals to the user provided name. */ # define TS_VFY_TSA_NAME (1u << 7) /* You can use the following convenience constants. */ # define TS_VFY_ALL_IMPRINT (TS_VFY_SIGNATURE \ | TS_VFY_VERSION \ | TS_VFY_POLICY \ | TS_VFY_IMPRINT \ | TS_VFY_NONCE \ | TS_VFY_SIGNER \ | TS_VFY_TSA_NAME) # define TS_VFY_ALL_DATA (TS_VFY_SIGNATURE \ | TS_VFY_VERSION \ | TS_VFY_POLICY \ | TS_VFY_DATA \ | TS_VFY_NONCE \ | TS_VFY_SIGNER \ | TS_VFY_TSA_NAME) typedef struct TS_verify_ctx { /* Set this to the union of TS_VFY_... flags you want to carry out. */ unsigned flags; /* Must be set only with TS_VFY_SIGNATURE. certs is optional. */ X509_STORE *store; STACK_OF(X509) *certs; /* Must be set only with TS_VFY_POLICY. */ ASN1_OBJECT *policy; /* * Must be set only with TS_VFY_IMPRINT. If md_alg is NULL, the * algorithm from the response is used. */ X509_ALGOR *md_alg; unsigned char *imprint; unsigned imprint_len; /* Must be set only with TS_VFY_DATA. */ BIO *data; /* Must be set only with TS_VFY_TSA_NAME. */ ASN1_INTEGER *nonce; /* Must be set only with TS_VFY_TSA_NAME. */ GENERAL_NAME *tsa_name; } TS_VERIFY_CTX; int TS_RESP_verify_response(TS_VERIFY_CTX *ctx, TS_RESP *response); int TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token); /* * Declarations related to response verification context, * they are defined in ts/ts_verify_ctx.c. */ /* Set all fields to zero. */ TS_VERIFY_CTX *TS_VERIFY_CTX_new(void); void TS_VERIFY_CTX_init(TS_VERIFY_CTX *ctx); void TS_VERIFY_CTX_free(TS_VERIFY_CTX *ctx); void TS_VERIFY_CTX_cleanup(TS_VERIFY_CTX *ctx); /*- * If ctx is NULL, it allocates and returns a new object, otherwise * it returns ctx. It initialises all the members as follows: * flags = TS_VFY_ALL_IMPRINT & ~(TS_VFY_TSA_NAME | TS_VFY_SIGNATURE) * certs = NULL * store = NULL * policy = policy from the request or NULL if absent (in this case * TS_VFY_POLICY is cleared from flags as well) * md_alg = MD algorithm from request * imprint, imprint_len = imprint from request * data = NULL * nonce, nonce_len = nonce from the request or NULL if absent (in this case * TS_VFY_NONCE is cleared from flags as well) * tsa_name = NULL * Important: after calling this method TS_VFY_SIGNATURE should be added! */ TS_VERIFY_CTX *TS_REQ_to_TS_VERIFY_CTX(TS_REQ *req, TS_VERIFY_CTX *ctx); /* Function declarations for TS_RESP defined in ts/ts_resp_print.c */ int TS_RESP_print_bio(BIO *bio, TS_RESP *a); int TS_STATUS_INFO_print_bio(BIO *bio, TS_STATUS_INFO *a); int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a); /* Common utility functions defined in ts/ts_lib.c */ int TS_ASN1_INTEGER_print_bio(BIO *bio, const ASN1_INTEGER *num); int TS_OBJ_print_bio(BIO *bio, const ASN1_OBJECT *obj); int TS_ext_print_bio(BIO *bio, const STACK_OF(X509_EXTENSION) *extensions); int TS_X509_ALGOR_print_bio(BIO *bio, const X509_ALGOR *alg); int TS_MSG_IMPRINT_print_bio(BIO *bio, TS_MSG_IMPRINT *msg); /* * Function declarations for handling configuration options, defined in * ts/ts_conf.c */ X509 *TS_CONF_load_cert(const char *file); STACK_OF(X509) *TS_CONF_load_certs(const char *file); EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass); const char *TS_CONF_get_tsa_section(CONF *conf, const char *section); int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, TS_RESP_CTX *ctx); int TS_CONF_set_crypto_device(CONF *conf, const char *section, const char *device); int TS_CONF_set_default_engine(const char *name); int TS_CONF_set_signer_cert(CONF *conf, const char *section, const char *cert, TS_RESP_CTX *ctx); int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs, TS_RESP_CTX *ctx); int TS_CONF_set_signer_key(CONF *conf, const char *section, const char *key, const char *pass, TS_RESP_CTX *ctx); int TS_CONF_set_def_policy(CONF *conf, const char *section, const char *policy, TS_RESP_CTX *ctx); int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx); int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section, TS_RESP_CTX *ctx); /* -------------------------------------------------- */ /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_TS_strings(void); /* Error codes for the TS functions. */ /* Function codes. */ # define TS_F_D2I_TS_RESP 147 # define TS_F_DEF_SERIAL_CB 110 # define TS_F_DEF_TIME_CB 111 # define TS_F_ESS_ADD_SIGNING_CERT 112 # define TS_F_ESS_CERT_ID_NEW_INIT 113 # define TS_F_ESS_SIGNING_CERT_NEW_INIT 114 # define TS_F_INT_TS_RESP_VERIFY_TOKEN 149 # define TS_F_PKCS7_TO_TS_TST_INFO 148 # define TS_F_TS_ACCURACY_SET_MICROS 115 # define TS_F_TS_ACCURACY_SET_MILLIS 116 # define TS_F_TS_ACCURACY_SET_SECONDS 117 # define TS_F_TS_CHECK_IMPRINTS 100 # define TS_F_TS_CHECK_NONCES 101 # define TS_F_TS_CHECK_POLICY 102 # define TS_F_TS_CHECK_SIGNING_CERTS 103 # define TS_F_TS_CHECK_STATUS_INFO 104 # define TS_F_TS_COMPUTE_IMPRINT 145 # define TS_F_TS_CONF_SET_DEFAULT_ENGINE 146 # define TS_F_TS_GET_STATUS_TEXT 105 # define TS_F_TS_MSG_IMPRINT_SET_ALGO 118 # define TS_F_TS_REQ_SET_MSG_IMPRINT 119 # define TS_F_TS_REQ_SET_NONCE 120 # define TS_F_TS_REQ_SET_POLICY_ID 121 # define TS_F_TS_RESP_CREATE_RESPONSE 122 # define TS_F_TS_RESP_CREATE_TST_INFO 123 # define TS_F_TS_RESP_CTX_ADD_FAILURE_INFO 124 # define TS_F_TS_RESP_CTX_ADD_MD 125 # define TS_F_TS_RESP_CTX_ADD_POLICY 126 # define TS_F_TS_RESP_CTX_NEW 127 # define TS_F_TS_RESP_CTX_SET_ACCURACY 128 # define TS_F_TS_RESP_CTX_SET_CERTS 129 # define TS_F_TS_RESP_CTX_SET_DEF_POLICY 130 # define TS_F_TS_RESP_CTX_SET_SIGNER_CERT 131 # define TS_F_TS_RESP_CTX_SET_STATUS_INFO 132 # define TS_F_TS_RESP_GET_POLICY 133 # define TS_F_TS_RESP_SET_GENTIME_WITH_PRECISION 134 # define TS_F_TS_RESP_SET_STATUS_INFO 135 # define TS_F_TS_RESP_SET_TST_INFO 150 # define TS_F_TS_RESP_SIGN 136 # define TS_F_TS_RESP_VERIFY_SIGNATURE 106 # define TS_F_TS_RESP_VERIFY_TOKEN 107 # define TS_F_TS_TST_INFO_SET_ACCURACY 137 # define TS_F_TS_TST_INFO_SET_MSG_IMPRINT 138 # define TS_F_TS_TST_INFO_SET_NONCE 139 # define TS_F_TS_TST_INFO_SET_POLICY_ID 140 # define TS_F_TS_TST_INFO_SET_SERIAL 141 # define TS_F_TS_TST_INFO_SET_TIME 142 # define TS_F_TS_TST_INFO_SET_TSA 143 # define TS_F_TS_VERIFY 108 # define TS_F_TS_VERIFY_CERT 109 # define TS_F_TS_VERIFY_CTX_NEW 144 /* Reason codes. */ # define TS_R_BAD_PKCS7_TYPE 132 # define TS_R_BAD_TYPE 133 # define TS_R_CERTIFICATE_VERIFY_ERROR 100 # define TS_R_COULD_NOT_SET_ENGINE 127 # define TS_R_COULD_NOT_SET_TIME 115 # define TS_R_D2I_TS_RESP_INT_FAILED 128 # define TS_R_DETACHED_CONTENT 134 # define TS_R_ESS_ADD_SIGNING_CERT_ERROR 116 # define TS_R_ESS_SIGNING_CERTIFICATE_ERROR 101 # define TS_R_INVALID_NULL_POINTER 102 # define TS_R_INVALID_SIGNER_CERTIFICATE_PURPOSE 117 # define TS_R_MESSAGE_IMPRINT_MISMATCH 103 # define TS_R_NONCE_MISMATCH 104 # define TS_R_NONCE_NOT_RETURNED 105 # define TS_R_NO_CONTENT 106 # define TS_R_NO_TIME_STAMP_TOKEN 107 # define TS_R_PKCS7_ADD_SIGNATURE_ERROR 118 # define TS_R_PKCS7_ADD_SIGNED_ATTR_ERROR 119 # define TS_R_PKCS7_TO_TS_TST_INFO_FAILED 129 # define TS_R_POLICY_MISMATCH 108 # define TS_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE 120 # define TS_R_RESPONSE_SETUP_ERROR 121 # define TS_R_SIGNATURE_FAILURE 109 # define TS_R_THERE_MUST_BE_ONE_SIGNER 110 # define TS_R_TIME_SYSCALL_ERROR 122 # define TS_R_TOKEN_NOT_PRESENT 130 # define TS_R_TOKEN_PRESENT 131 # define TS_R_TSA_NAME_MISMATCH 111 # define TS_R_TSA_UNTRUSTED 112 # define TS_R_TST_INFO_SETUP_ERROR 123 # define TS_R_TS_DATASIGN 124 # define TS_R_UNACCEPTABLE_POLICY 125 # define TS_R_UNSUPPORTED_MD_ALGORITHM 126 # define TS_R_UNSUPPORTED_VERSION 113 # define TS_R_WRONG_CONTENT_TYPE 114 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/txt_db.h ================================================ /* crypto/txt_db/txt_db.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_TXT_DB_H # define HEADER_TXT_DB_H # include # ifndef OPENSSL_NO_BIO # include # endif # include # include # define DB_ERROR_OK 0 # define DB_ERROR_MALLOC 1 # define DB_ERROR_INDEX_CLASH 2 # define DB_ERROR_INDEX_OUT_OF_RANGE 3 # define DB_ERROR_NO_INDEX 4 # define DB_ERROR_INSERT_INDEX_CLASH 5 #ifdef __cplusplus extern "C" { #endif typedef OPENSSL_STRING *OPENSSL_PSTRING; DECLARE_SPECIAL_STACK_OF(OPENSSL_PSTRING, OPENSSL_STRING) typedef struct txt_db_st { int num_fields; STACK_OF(OPENSSL_PSTRING) *data; LHASH_OF(OPENSSL_STRING) **index; int (**qual) (OPENSSL_STRING *); long error; long arg1; long arg2; OPENSSL_STRING *arg_row; } TXT_DB; # ifndef OPENSSL_NO_BIO TXT_DB *TXT_DB_read(BIO *in, int num); long TXT_DB_write(BIO *out, TXT_DB *db); # else TXT_DB *TXT_DB_read(char *in, int num); long TXT_DB_write(char *out, TXT_DB *db); # endif int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp); void TXT_DB_free(TXT_DB *db); OPENSSL_STRING *TXT_DB_get_by_index(TXT_DB *db, int idx, OPENSSL_STRING *value); int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *value); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ui.h ================================================ /* crypto/ui/ui.h */ /* * Written by Richard Levitte (richard@levitte.org) for the OpenSSL project * 2001. */ /* ==================================================================== * Copyright (c) 2001 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_UI_H # define HEADER_UI_H # ifndef OPENSSL_NO_DEPRECATED # include # endif # include # include #ifdef __cplusplus extern "C" { #endif /* Declared already in ossl_typ.h */ /* typedef struct ui_st UI; */ /* typedef struct ui_method_st UI_METHOD; */ /* * All the following functions return -1 or NULL on error and in some cases * (UI_process()) -2 if interrupted or in some other way cancelled. When * everything is fine, they return 0, a positive value or a non-NULL pointer, * all depending on their purpose. */ /* Creators and destructor. */ UI *UI_new(void); UI *UI_new_method(const UI_METHOD *method); void UI_free(UI *ui); /*- The following functions are used to add strings to be printed and prompt strings to prompt for data. The names are UI_{add,dup}__string and UI_{add,dup}_input_boolean. UI_{add,dup}__string have the following meanings: add add a text or prompt string. The pointers given to these functions are used verbatim, no copying is done. dup make a copy of the text or prompt string, then add the copy to the collection of strings in the user interface. The function is a name for the functionality that the given string shall be used for. It can be one of: input use the string as data prompt. verify use the string as verification prompt. This is used to verify a previous input. info use the string for informational output. error use the string for error output. Honestly, there's currently no difference between info and error for the moment. UI_{add,dup}_input_boolean have the same semantics for "add" and "dup", and are typically used when one wants to prompt for a yes/no response. All of the functions in this group take a UI and a prompt string. The string input and verify addition functions also take a flag argument, a buffer for the result to end up with, a minimum input size and a maximum input size (the result buffer MUST be large enough to be able to contain the maximum number of characters). Additionally, the verify addition functions takes another buffer to compare the result against. The boolean input functions take an action description string (which should be safe to ignore if the expected user action is obvious, for example with a dialog box with an OK button and a Cancel button), a string of acceptable characters to mean OK and to mean Cancel. The two last strings are checked to make sure they don't have common characters. Additionally, the same flag argument as for the string input is taken, as well as a result buffer. The result buffer is required to be at least one byte long. Depending on the answer, the first character from the OK or the Cancel character strings will be stored in the first byte of the result buffer. No NUL will be added, so the result is *not* a string. On success, the all return an index of the added information. That index is usefull when retrieving results with UI_get0_result(). */ int UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize); int UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize); int UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf); int UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf); int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf); int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf); int UI_add_info_string(UI *ui, const char *text); int UI_dup_info_string(UI *ui, const char *text); int UI_add_error_string(UI *ui, const char *text); int UI_dup_error_string(UI *ui, const char *text); /* These are the possible flags. They can be or'ed together. */ /* Use to have echoing of input */ # define UI_INPUT_FLAG_ECHO 0x01 /* * Use a default password. Where that password is found is completely up to * the application, it might for example be in the user data set with * UI_add_user_data(). It is not recommended to have more than one input in * each UI being marked with this flag, or the application might get * confused. */ # define UI_INPUT_FLAG_DEFAULT_PWD 0x02 /*- * The user of these routines may want to define flags of their own. The core * UI won't look at those, but will pass them on to the method routines. They * must use higher bits so they don't get confused with the UI bits above. * UI_INPUT_FLAG_USER_BASE tells which is the lowest bit to use. A good * example of use is this: * * #define MY_UI_FLAG1 (0x01 << UI_INPUT_FLAG_USER_BASE) * */ # define UI_INPUT_FLAG_USER_BASE 16 /*- * The following function helps construct a prompt. object_desc is a * textual short description of the object, for example "pass phrase", * and object_name is the name of the object (might be a card name or * a file name. * The returned string shall always be allocated on the heap with * OPENSSL_malloc(), and need to be free'd with OPENSSL_free(). * * If the ui_method doesn't contain a pointer to a user-defined prompt * constructor, a default string is built, looking like this: * * "Enter {object_desc} for {object_name}:" * * So, if object_desc has the value "pass phrase" and object_name has * the value "foo.key", the resulting string is: * * "Enter pass phrase for foo.key:" */ char *UI_construct_prompt(UI *ui_method, const char *object_desc, const char *object_name); /* * The following function is used to store a pointer to user-specific data. * Any previous such pointer will be returned and replaced. * * For callback purposes, this function makes a lot more sense than using * ex_data, since the latter requires that different parts of OpenSSL or * applications share the same ex_data index. * * Note that the UI_OpenSSL() method completely ignores the user data. Other * methods may not, however. */ void *UI_add_user_data(UI *ui, void *user_data); /* We need a user data retrieving function as well. */ void *UI_get0_user_data(UI *ui); /* Return the result associated with a prompt given with the index i. */ const char *UI_get0_result(UI *ui, int i); /* When all strings have been added, process the whole thing. */ int UI_process(UI *ui); /* * Give a user interface parametrised control commands. This can be used to * send down an integer, a data pointer or a function pointer, as well as be * used to get information from a UI. */ int UI_ctrl(UI *ui, int cmd, long i, void *p, void (*f) (void)); /* The commands */ /* * Use UI_CONTROL_PRINT_ERRORS with the value 1 to have UI_process print the * OpenSSL error stack before printing any info or added error messages and * before any prompting. */ # define UI_CTRL_PRINT_ERRORS 1 /* * Check if a UI_process() is possible to do again with the same instance of * a user interface. This makes UI_ctrl() return 1 if it is redoable, and 0 * if not. */ # define UI_CTRL_IS_REDOABLE 2 /* Some methods may use extra data */ # define UI_set_app_data(s,arg) UI_set_ex_data(s,0,arg) # define UI_get_app_data(s) UI_get_ex_data(s,0) int UI_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int UI_set_ex_data(UI *r, int idx, void *arg); void *UI_get_ex_data(UI *r, int idx); /* Use specific methods instead of the built-in one */ void UI_set_default_method(const UI_METHOD *meth); const UI_METHOD *UI_get_default_method(void); const UI_METHOD *UI_get_method(UI *ui); const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth); /* The method with all the built-in thingies */ UI_METHOD *UI_OpenSSL(void); /* ---------- For method writers ---------- */ /*- A method contains a number of functions that implement the low level of the User Interface. The functions are: an opener This function starts a session, maybe by opening a channel to a tty, or by opening a window. a writer This function is called to write a given string, maybe to the tty, maybe as a field label in a window. a flusher This function is called to flush everything that has been output so far. It can be used to actually display a dialog box after it has been built. a reader This function is called to read a given prompt, maybe from the tty, maybe from a field in a window. Note that it's called wth all string structures, not only the prompt ones, so it must check such things itself. a closer This function closes the session, maybe by closing the channel to the tty, or closing the window. All these functions are expected to return: 0 on error. 1 on success. -1 on out-of-band events, for example if some prompting has been canceled (by pressing Ctrl-C, for example). This is only checked when returned by the flusher or the reader. The way this is used, the opener is first called, then the writer for all strings, then the flusher, then the reader for all strings and finally the closer. Note that if you want to prompt from a terminal or other command line interface, the best is to have the reader also write the prompts instead of having the writer do it. If you want to prompt from a dialog box, the writer can be used to build up the contents of the box, and the flusher to actually display the box and run the event loop until all data has been given, after which the reader only grabs the given data and puts them back into the UI strings. All method functions take a UI as argument. Additionally, the writer and the reader take a UI_STRING. */ /* * The UI_STRING type is the data structure that contains all the needed info * about a string or a prompt, including test data for a verification prompt. */ typedef struct ui_string_st UI_STRING; DECLARE_STACK_OF(UI_STRING) /* * The different types of strings that are currently supported. This is only * needed by method authors. */ enum UI_string_types { UIT_NONE = 0, UIT_PROMPT, /* Prompt for a string */ UIT_VERIFY, /* Prompt for a string and verify */ UIT_BOOLEAN, /* Prompt for a yes/no response */ UIT_INFO, /* Send info to the user */ UIT_ERROR /* Send an error message to the user */ }; /* Create and manipulate methods */ UI_METHOD *UI_create_method(char *name); void UI_destroy_method(UI_METHOD *ui_method); int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)); int UI_method_set_writer(UI_METHOD *method, int (*writer) (UI *ui, UI_STRING *uis)); int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)); int UI_method_set_reader(UI_METHOD *method, int (*reader) (UI *ui, UI_STRING *uis)); int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)); int UI_method_set_prompt_constructor(UI_METHOD *method, char *(*prompt_constructor) (UI *ui, const char *object_desc, const char *object_name)); int (*UI_method_get_opener(UI_METHOD *method)) (UI *); int (*UI_method_get_writer(UI_METHOD *method)) (UI *, UI_STRING *); int (*UI_method_get_flusher(UI_METHOD *method)) (UI *); int (*UI_method_get_reader(UI_METHOD *method)) (UI *, UI_STRING *); int (*UI_method_get_closer(UI_METHOD *method)) (UI *); char *(*UI_method_get_prompt_constructor(UI_METHOD *method)) (UI *, const char *, const char *); /* * The following functions are helpers for method writers to access relevant * data from a UI_STRING. */ /* Return type of the UI_STRING */ enum UI_string_types UI_get_string_type(UI_STRING *uis); /* Return input flags of the UI_STRING */ int UI_get_input_flags(UI_STRING *uis); /* Return the actual string to output (the prompt, info or error) */ const char *UI_get0_output_string(UI_STRING *uis); /* * Return the optional action string to output (the boolean promtp * instruction) */ const char *UI_get0_action_string(UI_STRING *uis); /* Return the result of a prompt */ const char *UI_get0_result_string(UI_STRING *uis); /* * Return the string to test the result against. Only useful with verifies. */ const char *UI_get0_test_string(UI_STRING *uis); /* Return the required minimum size of the result */ int UI_get_result_minsize(UI_STRING *uis); /* Return the required maximum size of the result */ int UI_get_result_maxsize(UI_STRING *uis); /* Set the result of a UI_STRING. */ int UI_set_result(UI *ui, UI_STRING *uis, const char *result); /* A couple of popular utility functions */ int UI_UTIL_read_pw_string(char *buf, int length, const char *prompt, int verify); int UI_UTIL_read_pw(char *buf, char *buff, int size, const char *prompt, int verify); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_UI_strings(void); /* Error codes for the UI functions. */ /* Function codes. */ # define UI_F_GENERAL_ALLOCATE_BOOLEAN 108 # define UI_F_GENERAL_ALLOCATE_PROMPT 109 # define UI_F_GENERAL_ALLOCATE_STRING 100 # define UI_F_UI_CTRL 111 # define UI_F_UI_DUP_ERROR_STRING 101 # define UI_F_UI_DUP_INFO_STRING 102 # define UI_F_UI_DUP_INPUT_BOOLEAN 110 # define UI_F_UI_DUP_INPUT_STRING 103 # define UI_F_UI_DUP_VERIFY_STRING 106 # define UI_F_UI_GET0_RESULT 107 # define UI_F_UI_NEW_METHOD 104 # define UI_F_UI_SET_RESULT 105 /* Reason codes. */ # define UI_R_COMMON_OK_AND_CANCEL_CHARACTERS 104 # define UI_R_INDEX_TOO_LARGE 102 # define UI_R_INDEX_TOO_SMALL 103 # define UI_R_NO_RESULT_BUFFER 105 # define UI_R_RESULT_TOO_LARGE 100 # define UI_R_RESULT_TOO_SMALL 101 # define UI_R_UNKNOWN_CONTROL_COMMAND 106 #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/ui_compat.h ================================================ /* crypto/ui/ui.h */ /* * Written by Richard Levitte (richard@levitte.org) for the OpenSSL project * 2001. */ /* ==================================================================== * Copyright (c) 2001 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * openssl-core@openssl.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.openssl.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_UI_COMPAT_H # define HEADER_UI_COMPAT_H # include # include #ifdef __cplusplus extern "C" { #endif /* * The following functions were previously part of the DES section, and are * provided here for backward compatibility reasons. */ # define des_read_pw_string(b,l,p,v) \ _ossl_old_des_read_pw_string((b),(l),(p),(v)) # define des_read_pw(b,bf,s,p,v) \ _ossl_old_des_read_pw((b),(bf),(s),(p),(v)) int _ossl_old_des_read_pw_string(char *buf, int length, const char *prompt, int verify); int _ossl_old_des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/whrlpool.h ================================================ #ifndef HEADER_WHRLPOOL_H # define HEADER_WHRLPOOL_H # include # include #ifdef __cplusplus extern "C" { #endif # define WHIRLPOOL_DIGEST_LENGTH (512/8) # define WHIRLPOOL_BBLOCK 512 # define WHIRLPOOL_COUNTER (256/8) typedef struct { union { unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; /* double q is here to ensure 64-bit alignment */ double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)]; } H; unsigned char data[WHIRLPOOL_BBLOCK / 8]; unsigned int bitoff; size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)]; } WHIRLPOOL_CTX; # ifndef OPENSSL_NO_WHIRLPOOL # ifdef OPENSSL_FIPS int private_WHIRLPOOL_Init(WHIRLPOOL_CTX *c); # endif int WHIRLPOOL_Init(WHIRLPOOL_CTX *c); int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, const void *inp, size_t bytes); void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits); int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c); unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md); # endif #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/x509.h ================================================ /* crypto/x509/x509.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * ECDH support in OpenSSL originally developed by * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ #ifndef HEADER_X509_H # define HEADER_X509_H # include # include # ifndef OPENSSL_NO_BUFFER # include # endif # ifndef OPENSSL_NO_EVP # include # endif # ifndef OPENSSL_NO_BIO # include # endif # include # include # include # ifndef OPENSSL_NO_EC # include # endif # ifndef OPENSSL_NO_ECDSA # include # endif # ifndef OPENSSL_NO_ECDH # include # endif # ifndef OPENSSL_NO_DEPRECATED # ifndef OPENSSL_NO_RSA # include # endif # ifndef OPENSSL_NO_DSA # include # endif # ifndef OPENSSL_NO_DH # include # endif # endif # ifndef OPENSSL_NO_SHA # include # endif # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_SYS_WIN32 /* Under Win32 these are defined in wincrypt.h */ # undef X509_NAME # undef X509_CERT_PAIR # undef X509_EXTENSIONS # endif # define X509_FILETYPE_PEM 1 # define X509_FILETYPE_ASN1 2 # define X509_FILETYPE_DEFAULT 3 # define X509v3_KU_DIGITAL_SIGNATURE 0x0080 # define X509v3_KU_NON_REPUDIATION 0x0040 # define X509v3_KU_KEY_ENCIPHERMENT 0x0020 # define X509v3_KU_DATA_ENCIPHERMENT 0x0010 # define X509v3_KU_KEY_AGREEMENT 0x0008 # define X509v3_KU_KEY_CERT_SIGN 0x0004 # define X509v3_KU_CRL_SIGN 0x0002 # define X509v3_KU_ENCIPHER_ONLY 0x0001 # define X509v3_KU_DECIPHER_ONLY 0x8000 # define X509v3_KU_UNDEF 0xffff typedef struct X509_objects_st { int nid; int (*a2i) (void); int (*i2a) (void); } X509_OBJECTS; struct X509_algor_st { ASN1_OBJECT *algorithm; ASN1_TYPE *parameter; } /* X509_ALGOR */ ; DECLARE_ASN1_SET_OF(X509_ALGOR) typedef STACK_OF(X509_ALGOR) X509_ALGORS; typedef struct X509_val_st { ASN1_TIME *notBefore; ASN1_TIME *notAfter; } X509_VAL; struct X509_pubkey_st { X509_ALGOR *algor; ASN1_BIT_STRING *public_key; EVP_PKEY *pkey; }; typedef struct X509_sig_st { X509_ALGOR *algor; ASN1_OCTET_STRING *digest; } X509_SIG; typedef struct X509_name_entry_st { ASN1_OBJECT *object; ASN1_STRING *value; int set; int size; /* temp variable */ } X509_NAME_ENTRY; DECLARE_STACK_OF(X509_NAME_ENTRY) DECLARE_ASN1_SET_OF(X509_NAME_ENTRY) /* we always keep X509_NAMEs in 2 forms. */ struct X509_name_st { STACK_OF(X509_NAME_ENTRY) *entries; int modified; /* true if 'bytes' needs to be built */ # ifndef OPENSSL_NO_BUFFER BUF_MEM *bytes; # else char *bytes; # endif /* unsigned long hash; Keep the hash around for lookups */ unsigned char *canon_enc; int canon_enclen; } /* X509_NAME */ ; DECLARE_STACK_OF(X509_NAME) # define X509_EX_V_NETSCAPE_HACK 0x8000 # define X509_EX_V_INIT 0x0001 typedef struct X509_extension_st { ASN1_OBJECT *object; ASN1_BOOLEAN critical; ASN1_OCTET_STRING *value; } X509_EXTENSION; typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS; DECLARE_STACK_OF(X509_EXTENSION) DECLARE_ASN1_SET_OF(X509_EXTENSION) /* a sequence of these are used */ typedef struct x509_attributes_st { ASN1_OBJECT *object; int single; /* 0 for a set, 1 for a single item (which is * wrong) */ union { char *ptr; /* * 0 */ STACK_OF(ASN1_TYPE) *set; /* * 1 */ ASN1_TYPE *single; } value; } X509_ATTRIBUTE; DECLARE_STACK_OF(X509_ATTRIBUTE) DECLARE_ASN1_SET_OF(X509_ATTRIBUTE) typedef struct X509_req_info_st { ASN1_ENCODING enc; ASN1_INTEGER *version; X509_NAME *subject; X509_PUBKEY *pubkey; /* d=2 hl=2 l= 0 cons: cont: 00 */ STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */ } X509_REQ_INFO; typedef struct X509_req_st { X509_REQ_INFO *req_info; X509_ALGOR *sig_alg; ASN1_BIT_STRING *signature; int references; } X509_REQ; typedef struct x509_cinf_st { ASN1_INTEGER *version; /* [ 0 ] default of v1 */ ASN1_INTEGER *serialNumber; X509_ALGOR *signature; X509_NAME *issuer; X509_VAL *validity; X509_NAME *subject; X509_PUBKEY *key; ASN1_BIT_STRING *issuerUID; /* [ 1 ] optional in v2 */ ASN1_BIT_STRING *subjectUID; /* [ 2 ] optional in v2 */ STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */ ASN1_ENCODING enc; } X509_CINF; /* * This stuff is certificate "auxiliary info" it contains details which are * useful in certificate stores and databases. When used this is tagged onto * the end of the certificate itself */ typedef struct x509_cert_aux_st { STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ STACK_OF(ASN1_OBJECT) *reject; /* rejected uses */ ASN1_UTF8STRING *alias; /* "friendly name" */ ASN1_OCTET_STRING *keyid; /* key id of private key */ STACK_OF(X509_ALGOR) *other; /* other unspecified info */ } X509_CERT_AUX; struct x509_st { X509_CINF *cert_info; X509_ALGOR *sig_alg; ASN1_BIT_STRING *signature; int valid; int references; char *name; CRYPTO_EX_DATA ex_data; /* These contain copies of various extension values */ long ex_pathlen; long ex_pcpathlen; unsigned long ex_flags; unsigned long ex_kusage; unsigned long ex_xkusage; unsigned long ex_nscert; ASN1_OCTET_STRING *skid; AUTHORITY_KEYID *akid; X509_POLICY_CACHE *policy_cache; STACK_OF(DIST_POINT) *crldp; STACK_OF(GENERAL_NAME) *altname; NAME_CONSTRAINTS *nc; # ifndef OPENSSL_NO_RFC3779 STACK_OF(IPAddressFamily) *rfc3779_addr; struct ASIdentifiers_st *rfc3779_asid; # endif # ifndef OPENSSL_NO_SHA unsigned char sha1_hash[SHA_DIGEST_LENGTH]; # endif X509_CERT_AUX *aux; } /* X509 */ ; DECLARE_STACK_OF(X509) DECLARE_ASN1_SET_OF(X509) /* This is used for a table of trust checking functions */ typedef struct x509_trust_st { int trust; int flags; int (*check_trust) (struct x509_trust_st *, X509 *, int); char *name; int arg1; void *arg2; } X509_TRUST; DECLARE_STACK_OF(X509_TRUST) typedef struct x509_cert_pair_st { X509 *forward; X509 *reverse; } X509_CERT_PAIR; /* standard trust ids */ # define X509_TRUST_DEFAULT -1/* Only valid in purpose settings */ # define X509_TRUST_COMPAT 1 # define X509_TRUST_SSL_CLIENT 2 # define X509_TRUST_SSL_SERVER 3 # define X509_TRUST_EMAIL 4 # define X509_TRUST_OBJECT_SIGN 5 # define X509_TRUST_OCSP_SIGN 6 # define X509_TRUST_OCSP_REQUEST 7 # define X509_TRUST_TSA 8 /* Keep these up to date! */ # define X509_TRUST_MIN 1 # define X509_TRUST_MAX 8 /* trust_flags values */ # define X509_TRUST_DYNAMIC 1 # define X509_TRUST_DYNAMIC_NAME 2 /* check_trust return codes */ # define X509_TRUST_TRUSTED 1 # define X509_TRUST_REJECTED 2 # define X509_TRUST_UNTRUSTED 3 /* Flags for X509_print_ex() */ # define X509_FLAG_COMPAT 0 # define X509_FLAG_NO_HEADER 1L # define X509_FLAG_NO_VERSION (1L << 1) # define X509_FLAG_NO_SERIAL (1L << 2) # define X509_FLAG_NO_SIGNAME (1L << 3) # define X509_FLAG_NO_ISSUER (1L << 4) # define X509_FLAG_NO_VALIDITY (1L << 5) # define X509_FLAG_NO_SUBJECT (1L << 6) # define X509_FLAG_NO_PUBKEY (1L << 7) # define X509_FLAG_NO_EXTENSIONS (1L << 8) # define X509_FLAG_NO_SIGDUMP (1L << 9) # define X509_FLAG_NO_AUX (1L << 10) # define X509_FLAG_NO_ATTRIBUTES (1L << 11) # define X509_FLAG_NO_IDS (1L << 12) /* Flags specific to X509_NAME_print_ex() */ /* The field separator information */ # define XN_FLAG_SEP_MASK (0xf << 16) # define XN_FLAG_COMPAT 0/* Traditional SSLeay: use old * X509_NAME_print */ # define XN_FLAG_SEP_COMMA_PLUS (1 << 16)/* RFC2253 ,+ */ # define XN_FLAG_SEP_CPLUS_SPC (2 << 16)/* ,+ spaced: more readable */ # define XN_FLAG_SEP_SPLUS_SPC (3 << 16)/* ;+ spaced */ # define XN_FLAG_SEP_MULTILINE (4 << 16)/* One line per field */ # define XN_FLAG_DN_REV (1 << 20)/* Reverse DN order */ /* How the field name is shown */ # define XN_FLAG_FN_MASK (0x3 << 21) # define XN_FLAG_FN_SN 0/* Object short name */ # define XN_FLAG_FN_LN (1 << 21)/* Object long name */ # define XN_FLAG_FN_OID (2 << 21)/* Always use OIDs */ # define XN_FLAG_FN_NONE (3 << 21)/* No field names */ # define XN_FLAG_SPC_EQ (1 << 23)/* Put spaces round '=' */ /* * This determines if we dump fields we don't recognise: RFC2253 requires * this. */ # define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24) # define XN_FLAG_FN_ALIGN (1 << 25)/* Align field names to 20 * characters */ /* Complete set of RFC2253 flags */ # define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \ XN_FLAG_SEP_COMMA_PLUS | \ XN_FLAG_DN_REV | \ XN_FLAG_FN_SN | \ XN_FLAG_DUMP_UNKNOWN_FIELDS) /* readable oneline form */ # define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \ ASN1_STRFLGS_ESC_QUOTE | \ XN_FLAG_SEP_CPLUS_SPC | \ XN_FLAG_SPC_EQ | \ XN_FLAG_FN_SN) /* readable multiline form */ # define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \ ASN1_STRFLGS_ESC_MSB | \ XN_FLAG_SEP_MULTILINE | \ XN_FLAG_SPC_EQ | \ XN_FLAG_FN_LN | \ XN_FLAG_FN_ALIGN) struct x509_revoked_st { ASN1_INTEGER *serialNumber; ASN1_TIME *revocationDate; STACK_OF(X509_EXTENSION) /* optional */ *extensions; /* Set up if indirect CRL */ STACK_OF(GENERAL_NAME) *issuer; /* Revocation reason */ int reason; int sequence; /* load sequence */ }; DECLARE_STACK_OF(X509_REVOKED) DECLARE_ASN1_SET_OF(X509_REVOKED) typedef struct X509_crl_info_st { ASN1_INTEGER *version; X509_ALGOR *sig_alg; X509_NAME *issuer; ASN1_TIME *lastUpdate; ASN1_TIME *nextUpdate; STACK_OF(X509_REVOKED) *revoked; STACK_OF(X509_EXTENSION) /* [0] */ *extensions; ASN1_ENCODING enc; } X509_CRL_INFO; struct X509_crl_st { /* actual signature */ X509_CRL_INFO *crl; X509_ALGOR *sig_alg; ASN1_BIT_STRING *signature; int references; int flags; /* Copies of various extensions */ AUTHORITY_KEYID *akid; ISSUING_DIST_POINT *idp; /* Convenient breakdown of IDP */ int idp_flags; int idp_reasons; /* CRL and base CRL numbers for delta processing */ ASN1_INTEGER *crl_number; ASN1_INTEGER *base_crl_number; # ifndef OPENSSL_NO_SHA unsigned char sha1_hash[SHA_DIGEST_LENGTH]; # endif STACK_OF(GENERAL_NAMES) *issuers; const X509_CRL_METHOD *meth; void *meth_data; } /* X509_CRL */ ; DECLARE_STACK_OF(X509_CRL) DECLARE_ASN1_SET_OF(X509_CRL) typedef struct private_key_st { int version; /* The PKCS#8 data types */ X509_ALGOR *enc_algor; ASN1_OCTET_STRING *enc_pkey; /* encrypted pub key */ /* When decrypted, the following will not be NULL */ EVP_PKEY *dec_pkey; /* used to encrypt and decrypt */ int key_length; char *key_data; int key_free; /* true if we should auto free key_data */ /* expanded version of 'enc_algor' */ EVP_CIPHER_INFO cipher; int references; } X509_PKEY; # ifndef OPENSSL_NO_EVP typedef struct X509_info_st { X509 *x509; X509_CRL *crl; X509_PKEY *x_pkey; EVP_CIPHER_INFO enc_cipher; int enc_len; char *enc_data; int references; } X509_INFO; DECLARE_STACK_OF(X509_INFO) # endif /* * The next 2 structures and their 8 routines were sent to me by Pat Richard * and are used to manipulate Netscapes spki structures - * useful if you are writing a CA web page */ typedef struct Netscape_spkac_st { X509_PUBKEY *pubkey; ASN1_IA5STRING *challenge; /* challenge sent in atlas >= PR2 */ } NETSCAPE_SPKAC; typedef struct Netscape_spki_st { NETSCAPE_SPKAC *spkac; /* signed public key and challenge */ X509_ALGOR *sig_algor; ASN1_BIT_STRING *signature; } NETSCAPE_SPKI; /* Netscape certificate sequence structure */ typedef struct Netscape_certificate_sequence { ASN1_OBJECT *type; STACK_OF(X509) *certs; } NETSCAPE_CERT_SEQUENCE; /*- Unused (and iv length is wrong) typedef struct CBCParameter_st { unsigned char iv[8]; } CBC_PARAM; */ /* Password based encryption structure */ typedef struct PBEPARAM_st { ASN1_OCTET_STRING *salt; ASN1_INTEGER *iter; } PBEPARAM; /* Password based encryption V2 structures */ typedef struct PBE2PARAM_st { X509_ALGOR *keyfunc; X509_ALGOR *encryption; } PBE2PARAM; typedef struct PBKDF2PARAM_st { /* Usually OCTET STRING but could be anything */ ASN1_TYPE *salt; ASN1_INTEGER *iter; ASN1_INTEGER *keylength; X509_ALGOR *prf; } PBKDF2PARAM; /* PKCS#8 private key info structure */ struct pkcs8_priv_key_info_st { /* Flag for various broken formats */ int broken; # define PKCS8_OK 0 # define PKCS8_NO_OCTET 1 # define PKCS8_EMBEDDED_PARAM 2 # define PKCS8_NS_DB 3 # define PKCS8_NEG_PRIVKEY 4 ASN1_INTEGER *version; X509_ALGOR *pkeyalg; /* Should be OCTET STRING but some are broken */ ASN1_TYPE *pkey; STACK_OF(X509_ATTRIBUTE) *attributes; }; #ifdef __cplusplus } #endif # include # include #ifdef __cplusplus extern "C" { #endif # define X509_EXT_PACK_UNKNOWN 1 # define X509_EXT_PACK_STRING 2 # define X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version) /* #define X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */ # define X509_get_notBefore(x) ((x)->cert_info->validity->notBefore) # define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) # define X509_extract_key(x) X509_get_pubkey(x)/*****/ # define X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version) # define X509_REQ_get_subject_name(x) ((x)->req_info->subject) # define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a) # define X509_name_cmp(a,b) X509_NAME_cmp((a),(b)) # define X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm)) # define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version) # define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate) # define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate) # define X509_CRL_get_issuer(x) ((x)->crl->issuer) # define X509_CRL_get_REVOKED(x) ((x)->crl->revoked) void X509_CRL_set_default_method(const X509_CRL_METHOD *meth); X509_CRL_METHOD *X509_CRL_METHOD_new(int (*crl_init) (X509_CRL *crl), int (*crl_free) (X509_CRL *crl), int (*crl_lookup) (X509_CRL *crl, X509_REVOKED **ret, ASN1_INTEGER *ser, X509_NAME *issuer), int (*crl_verify) (X509_CRL *crl, EVP_PKEY *pk)); void X509_CRL_METHOD_free(X509_CRL_METHOD *m); void X509_CRL_set_meth_data(X509_CRL *crl, void *dat); void *X509_CRL_get_meth_data(X509_CRL *crl); /* * This one is only used so that a binary form can output, as in * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */ # define X509_get_X509_PUBKEY(x) ((x)->cert_info->key) const char *X509_verify_cert_error_string(long n); # ifndef OPENSSL_NO_EVP int X509_verify(X509 *a, EVP_PKEY *r); int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r); int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r); int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r); NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str, int len); char *NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x); EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x); int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey); int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki); int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent); int X509_signature_print(BIO *bp, X509_ALGOR *alg, ASN1_STRING *sig); int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx); int X509_http_nbio(OCSP_REQ_CTX *rctx, X509 **pcert); int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx); int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx); int X509_CRL_http_nbio(OCSP_REQ_CTX *rctx, X509_CRL **pcrl); int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md); int X509_pubkey_digest(const X509 *data, const EVP_MD *type, unsigned char *md, unsigned int *len); int X509_digest(const X509 *data, const EVP_MD *type, unsigned char *md, unsigned int *len); int X509_CRL_digest(const X509_CRL *data, const EVP_MD *type, unsigned char *md, unsigned int *len); int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type, unsigned char *md, unsigned int *len); int X509_NAME_digest(const X509_NAME *data, const EVP_MD *type, unsigned char *md, unsigned int *len); # endif # ifndef OPENSSL_NO_FP_API X509 *d2i_X509_fp(FILE *fp, X509 **x509); int i2d_X509_fp(FILE *fp, X509 *x509); X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl); int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl); X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req); int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req); # ifndef OPENSSL_NO_RSA RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa); int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa); RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa); int i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa); RSA *d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa); int i2d_RSA_PUBKEY_fp(FILE *fp, RSA *rsa); # endif # ifndef OPENSSL_NO_DSA DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa); int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa); DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa); int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa); # endif # ifndef OPENSSL_NO_EC EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey); int i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey); EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey); int i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey); # endif X509_SIG *d2i_PKCS8_fp(FILE *fp, X509_SIG **p8); int i2d_PKCS8_fp(FILE *fp, X509_SIG *p8); PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, PKCS8_PRIV_KEY_INFO **p8inf); int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp, PKCS8_PRIV_KEY_INFO *p8inf); int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key); int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey); EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a); int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey); EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a); # endif # ifndef OPENSSL_NO_BIO X509 *d2i_X509_bio(BIO *bp, X509 **x509); int i2d_X509_bio(BIO *bp, X509 *x509); X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl); int i2d_X509_CRL_bio(BIO *bp, X509_CRL *crl); X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req); int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req); # ifndef OPENSSL_NO_RSA RSA *d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa); int i2d_RSAPrivateKey_bio(BIO *bp, RSA *rsa); RSA *d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa); int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa); RSA *d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa); int i2d_RSA_PUBKEY_bio(BIO *bp, RSA *rsa); # endif # ifndef OPENSSL_NO_DSA DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa); int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa); DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa); int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa); # endif # ifndef OPENSSL_NO_EC EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey); int i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey); EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey); int i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey); # endif X509_SIG *d2i_PKCS8_bio(BIO *bp, X509_SIG **p8); int i2d_PKCS8_bio(BIO *bp, X509_SIG *p8); PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, PKCS8_PRIV_KEY_INFO **p8inf); int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp, PKCS8_PRIV_KEY_INFO *p8inf); int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key); int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey); EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a); int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey); EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a); # endif X509 *X509_dup(X509 *x509); X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa); X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex); X509_CRL *X509_CRL_dup(X509_CRL *crl); X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev); X509_REQ *X509_REQ_dup(X509_REQ *req); X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn); int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *aobj, int ptype, void *pval); void X509_ALGOR_get0(ASN1_OBJECT **paobj, int *pptype, void **ppval, X509_ALGOR *algor); void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); X509_NAME *X509_NAME_dup(X509_NAME *xn); X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); int X509_cmp_time(const ASN1_TIME *s, time_t *t); int X509_cmp_current_time(const ASN1_TIME *s); ASN1_TIME *X509_time_adj(ASN1_TIME *s, long adj, time_t *t); ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s, int offset_day, long offset_sec, time_t *t); ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj); const char *X509_get_default_cert_area(void); const char *X509_get_default_cert_dir(void); const char *X509_get_default_cert_file(void); const char *X509_get_default_cert_dir_env(void); const char *X509_get_default_cert_file_env(void); const char *X509_get_default_private_dir(void); X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md); X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey); DECLARE_ASN1_FUNCTIONS(X509_ALGOR) DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS) DECLARE_ASN1_FUNCTIONS(X509_VAL) DECLARE_ASN1_FUNCTIONS(X509_PUBKEY) int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey); EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key); int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain); int i2d_PUBKEY(EVP_PKEY *a, unsigned char **pp); EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length); # ifndef OPENSSL_NO_RSA int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp); RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length); # endif # ifndef OPENSSL_NO_DSA int i2d_DSA_PUBKEY(DSA *a, unsigned char **pp); DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length); # endif # ifndef OPENSSL_NO_EC int i2d_EC_PUBKEY(EC_KEY *a, unsigned char **pp); EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length); # endif DECLARE_ASN1_FUNCTIONS(X509_SIG) DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO) DECLARE_ASN1_FUNCTIONS(X509_REQ) DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE) X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value); DECLARE_ASN1_FUNCTIONS(X509_EXTENSION) DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS) DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY) DECLARE_ASN1_FUNCTIONS(X509_NAME) int X509_NAME_set(X509_NAME **xn, X509_NAME *name); DECLARE_ASN1_FUNCTIONS(X509_CINF) DECLARE_ASN1_FUNCTIONS(X509) DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX) DECLARE_ASN1_FUNCTIONS(X509_CERT_PAIR) int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int X509_set_ex_data(X509 *r, int idx, void *arg); void *X509_get_ex_data(X509 *r, int idx); int i2d_X509_AUX(X509 *a, unsigned char **pp); X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length); int i2d_re_X509_tbs(X509 *x, unsigned char **pp); void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg, const X509 *x); int X509_get_signature_nid(const X509 *x); int X509_alias_set1(X509 *x, unsigned char *name, int len); int X509_keyid_set1(X509 *x, unsigned char *id, int len); unsigned char *X509_alias_get0(X509 *x, int *len); unsigned char *X509_keyid_get0(X509 *x, int *len); int (*X509_TRUST_set_default(int (*trust) (int, X509 *, int))) (int, X509 *, int); int X509_TRUST_set(int *t, int trust); int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj); int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj); void X509_trust_clear(X509 *x); void X509_reject_clear(X509 *x); DECLARE_ASN1_FUNCTIONS(X509_REVOKED) DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO) DECLARE_ASN1_FUNCTIONS(X509_CRL) int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev); int X509_CRL_get0_by_serial(X509_CRL *crl, X509_REVOKED **ret, ASN1_INTEGER *serial); int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x); X509_PKEY *X509_PKEY_new(void); void X509_PKEY_free(X509_PKEY *a); int i2d_X509_PKEY(X509_PKEY *a, unsigned char **pp); X509_PKEY *d2i_X509_PKEY(X509_PKEY **a, const unsigned char **pp, long length); DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI) DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC) DECLARE_ASN1_FUNCTIONS(NETSCAPE_CERT_SEQUENCE) # ifndef OPENSSL_NO_EVP X509_INFO *X509_INFO_new(void); void X509_INFO_free(X509_INFO *a); char *X509_NAME_oneline(X509_NAME *a, char *buf, int size); int ASN1_verify(i2d_of_void *i2d, X509_ALGOR *algor1, ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey); int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data, unsigned char *md, unsigned int *len); int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey, const EVP_MD *type); int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *data, unsigned char *md, unsigned int *len); int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *algor1, ASN1_BIT_STRING *signature, void *data, EVP_PKEY *pkey); int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *data, EVP_PKEY *pkey, const EVP_MD *type); int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx); # endif int X509_set_version(X509 *x, long version); int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial); ASN1_INTEGER *X509_get_serialNumber(X509 *x); int X509_set_issuer_name(X509 *x, X509_NAME *name); X509_NAME *X509_get_issuer_name(X509 *a); int X509_set_subject_name(X509 *x, X509_NAME *name); X509_NAME *X509_get_subject_name(X509 *a); int X509_set_notBefore(X509 *x, const ASN1_TIME *tm); int X509_set_notAfter(X509 *x, const ASN1_TIME *tm); int X509_set_pubkey(X509 *x, EVP_PKEY *pkey); EVP_PKEY *X509_get_pubkey(X509 *x); ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x); int X509_certificate_type(X509 *x, EVP_PKEY *pubkey /* optional */ ); int X509_REQ_set_version(X509_REQ *x, long version); int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name); int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey); EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req); int X509_REQ_extension_nid(int nid); int *X509_REQ_get_extension_nids(void); void X509_REQ_set_extension_nids(int *nids); STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req); int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts, int nid); int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts); int X509_REQ_get_attr_count(const X509_REQ *req); int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos); int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc); X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc); int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr); int X509_REQ_add1_attr_by_OBJ(X509_REQ *req, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid, int type, const unsigned char *bytes, int len); int X509_REQ_add1_attr_by_txt(X509_REQ *req, const char *attrname, int type, const unsigned char *bytes, int len); int X509_CRL_set_version(X509_CRL *x, long version); int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name); int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm); int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm); int X509_CRL_sort(X509_CRL *crl); int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial); int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm); X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer, EVP_PKEY *skey, const EVP_MD *md, unsigned int flags); int X509_REQ_check_private_key(X509_REQ *x509, EVP_PKEY *pkey); int X509_check_private_key(X509 *x509, EVP_PKEY *pkey); int X509_chain_check_suiteb(int *perror_depth, X509 *x, STACK_OF(X509) *chain, unsigned long flags); int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk, unsigned long flags); STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain); int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b); unsigned long X509_issuer_and_serial_hash(X509 *a); int X509_issuer_name_cmp(const X509 *a, const X509 *b); unsigned long X509_issuer_name_hash(X509 *a); int X509_subject_name_cmp(const X509 *a, const X509 *b); unsigned long X509_subject_name_hash(X509 *x); # ifndef OPENSSL_NO_MD5 unsigned long X509_issuer_name_hash_old(X509 *a); unsigned long X509_subject_name_hash_old(X509 *x); # endif int X509_cmp(const X509 *a, const X509 *b); int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b); unsigned long X509_NAME_hash(X509_NAME *x); unsigned long X509_NAME_hash_old(X509_NAME *x); int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b); int X509_CRL_match(const X509_CRL *a, const X509_CRL *b); # ifndef OPENSSL_NO_FP_API int X509_print_ex_fp(FILE *bp, X509 *x, unsigned long nmflag, unsigned long cflag); int X509_print_fp(FILE *bp, X509 *x); int X509_CRL_print_fp(FILE *bp, X509_CRL *x); int X509_REQ_print_fp(FILE *bp, X509_REQ *req); int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags); # endif # ifndef OPENSSL_NO_BIO int X509_NAME_print(BIO *bp, X509_NAME *name, int obase); int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags); int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflag, unsigned long cflag); int X509_print(BIO *bp, X509 *x); int X509_ocspid_print(BIO *bp, X509 *x); int X509_CERT_AUX_print(BIO *bp, X509_CERT_AUX *x, int indent); int X509_CRL_print(BIO *bp, X509_CRL *x); int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag, unsigned long cflag); int X509_REQ_print(BIO *bp, X509_REQ *req); # endif int X509_NAME_entry_count(X509_NAME *name); int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf, int len); int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf, int len); /* * NOTE: you should be passsing -1, not 0 as lastpos. The functions that use * lastpos, search after that position on. */ int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos); int X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int lastpos); X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc); X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); int X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne, int loc, int set); int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set); int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set); X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len); X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type, unsigned char *bytes, int len); int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set); X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj); int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len); ASN1_OBJECT *X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); ASN1_STRING *X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x); int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid, int lastpos); int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x, ASN1_OBJECT *obj, int lastpos); int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x, int crit, int lastpos); X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc); X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc); STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x, X509_EXTENSION *ex, int loc); int X509_get_ext_count(X509 *x); int X509_get_ext_by_NID(X509 *x, int nid, int lastpos); int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos); int X509_get_ext_by_critical(X509 *x, int crit, int lastpos); X509_EXTENSION *X509_get_ext(X509 *x, int loc); X509_EXTENSION *X509_delete_ext(X509 *x, int loc); int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc); void *X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx); int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit, unsigned long flags); int X509_CRL_get_ext_count(X509_CRL *x); int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos); int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos); int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos); X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc); X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc); int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc); void *X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx); int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit, unsigned long flags); int X509_REVOKED_get_ext_count(X509_REVOKED *x); int X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos); int X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x, ASN1_OBJECT *obj, int lastpos); int X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos); X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc); X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc); int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc); void *X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx); int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit, unsigned long flags); X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, int crit, ASN1_OCTET_STRING *data); X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data); int X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj); int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit); int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data); ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex); ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne); int X509_EXTENSION_get_critical(X509_EXTENSION *ex); int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x); int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, int lastpos); int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc); X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x, X509_ATTRIBUTE *attr); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x, int nid, int type, const unsigned char *bytes, int len); STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x, const char *attrname, int type, const unsigned char *bytes, int len); void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x, ASN1_OBJECT *obj, int lastpos, int type); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, int atrtype, const void *data, int len); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int atrtype, const void *data, int len); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr, const char *atrname, int type, const unsigned char *bytes, int len); int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj); int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len); void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx, int atrtype, void *data); int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr); ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr); ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx); int EVP_PKEY_get_attr_count(const EVP_PKEY *key); int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos); int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, ASN1_OBJECT *obj, int lastpos); X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc); X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc); int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr); int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key, int nid, int type, const unsigned char *bytes, int len); int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key, const char *attrname, int type, const unsigned char *bytes, int len); int X509_verify_cert(X509_STORE_CTX *ctx); /* lookup a cert from a X509 STACK */ X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk, X509_NAME *name, ASN1_INTEGER *serial); X509 *X509_find_by_subject(STACK_OF(X509) *sk, X509_NAME *name); DECLARE_ASN1_FUNCTIONS(PBEPARAM) DECLARE_ASN1_FUNCTIONS(PBE2PARAM) DECLARE_ASN1_FUNCTIONS(PBKDF2PARAM) int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter, const unsigned char *salt, int saltlen); X509_ALGOR *PKCS5_pbe_set(int alg, int iter, const unsigned char *salt, int saltlen); X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, unsigned char *salt, int saltlen); X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter, unsigned char *salt, int saltlen, unsigned char *aiv, int prf_nid); X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen, int prf_nid, int keylen); /* PKCS#8 utilities */ DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO) EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8); PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey); PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken); PKCS8_PRIV_KEY_INFO *PKCS8_set_broken(PKCS8_PRIV_KEY_INFO *p8, int broken); int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj, int version, int ptype, void *pval, unsigned char *penc, int penclen); int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg, const unsigned char **pk, int *ppklen, X509_ALGOR **pa, PKCS8_PRIV_KEY_INFO *p8); int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj, int ptype, void *pval, unsigned char *penc, int penclen); int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, const unsigned char **pk, int *ppklen, X509_ALGOR **pa, X509_PUBKEY *pub); int X509_check_trust(X509 *x, int id, int flags); int X509_TRUST_get_count(void); X509_TRUST *X509_TRUST_get0(int idx); int X509_TRUST_get_by_id(int id); int X509_TRUST_add(int id, int flags, int (*ck) (X509_TRUST *, X509 *, int), char *name, int arg1, void *arg2); void X509_TRUST_cleanup(void); int X509_TRUST_get_flags(X509_TRUST *xp); char *X509_TRUST_get0_name(X509_TRUST *xp); int X509_TRUST_get_trust(X509_TRUST *xp); /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_X509_strings(void); /* Error codes for the X509 functions. */ /* Function codes. */ # define X509_F_ADD_CERT_DIR 100 # define X509_F_BY_FILE_CTRL 101 # define X509_F_CHECK_NAME_CONSTRAINTS 106 # define X509_F_CHECK_POLICY 145 # define X509_F_DIR_CTRL 102 # define X509_F_GET_CERT_BY_SUBJECT 103 # define X509_F_NETSCAPE_SPKI_B64_DECODE 129 # define X509_F_NETSCAPE_SPKI_B64_ENCODE 130 # define X509_F_X509AT_ADD1_ATTR 135 # define X509_F_X509V3_ADD_EXT 104 # define X509_F_X509_ATTRIBUTE_CREATE_BY_NID 136 # define X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ 137 # define X509_F_X509_ATTRIBUTE_CREATE_BY_TXT 140 # define X509_F_X509_ATTRIBUTE_GET0_DATA 139 # define X509_F_X509_ATTRIBUTE_SET1_DATA 138 # define X509_F_X509_CHECK_PRIVATE_KEY 128 # define X509_F_X509_CRL_DIFF 105 # define X509_F_X509_CRL_PRINT_FP 147 # define X509_F_X509_EXTENSION_CREATE_BY_NID 108 # define X509_F_X509_EXTENSION_CREATE_BY_OBJ 109 # define X509_F_X509_GET_PUBKEY_PARAMETERS 110 # define X509_F_X509_LOAD_CERT_CRL_FILE 132 # define X509_F_X509_LOAD_CERT_FILE 111 # define X509_F_X509_LOAD_CRL_FILE 112 # define X509_F_X509_NAME_ADD_ENTRY 113 # define X509_F_X509_NAME_ENTRY_CREATE_BY_NID 114 # define X509_F_X509_NAME_ENTRY_CREATE_BY_TXT 131 # define X509_F_X509_NAME_ENTRY_SET_OBJECT 115 # define X509_F_X509_NAME_ONELINE 116 # define X509_F_X509_NAME_PRINT 117 # define X509_F_X509_PRINT_EX_FP 118 # define X509_F_X509_PUBKEY_GET 119 # define X509_F_X509_PUBKEY_SET 120 # define X509_F_X509_REQ_CHECK_PRIVATE_KEY 144 # define X509_F_X509_REQ_PRINT_EX 121 # define X509_F_X509_REQ_PRINT_FP 122 # define X509_F_X509_REQ_TO_X509 123 # define X509_F_X509_STORE_ADD_CERT 124 # define X509_F_X509_STORE_ADD_CRL 125 # define X509_F_X509_STORE_CTX_GET1_ISSUER 146 # define X509_F_X509_STORE_CTX_INIT 143 # define X509_F_X509_STORE_CTX_NEW 142 # define X509_F_X509_STORE_CTX_PURPOSE_INHERIT 134 # define X509_F_X509_TO_X509_REQ 126 # define X509_F_X509_TRUST_ADD 133 # define X509_F_X509_TRUST_SET 141 # define X509_F_X509_VERIFY_CERT 127 /* Reason codes. */ # define X509_R_AKID_MISMATCH 110 # define X509_R_BAD_X509_FILETYPE 100 # define X509_R_BASE64_DECODE_ERROR 118 # define X509_R_CANT_CHECK_DH_KEY 114 # define X509_R_CERT_ALREADY_IN_HASH_TABLE 101 # define X509_R_CRL_ALREADY_DELTA 127 # define X509_R_CRL_VERIFY_FAILURE 131 # define X509_R_ERR_ASN1_LIB 102 # define X509_R_IDP_MISMATCH 128 # define X509_R_INVALID_DIRECTORY 113 # define X509_R_INVALID_FIELD_NAME 119 # define X509_R_INVALID_TRUST 123 # define X509_R_ISSUER_MISMATCH 129 # define X509_R_KEY_TYPE_MISMATCH 115 # define X509_R_KEY_VALUES_MISMATCH 116 # define X509_R_LOADING_CERT_DIR 103 # define X509_R_LOADING_DEFAULTS 104 # define X509_R_METHOD_NOT_SUPPORTED 124 # define X509_R_NAME_TOO_LONG 134 # define X509_R_NEWER_CRL_NOT_NEWER 132 # define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY 105 # define X509_R_NO_CRL_NUMBER 130 # define X509_R_PUBLIC_KEY_DECODE_ERROR 125 # define X509_R_PUBLIC_KEY_ENCODE_ERROR 126 # define X509_R_SHOULD_RETRY 106 # define X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN 107 # define X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY 108 # define X509_R_UNKNOWN_KEY_TYPE 117 # define X509_R_UNKNOWN_NID 109 # define X509_R_UNKNOWN_PURPOSE_ID 121 # define X509_R_UNKNOWN_TRUST_ID 120 # define X509_R_UNSUPPORTED_ALGORITHM 111 # define X509_R_WRONG_LOOKUP_TYPE 112 # define X509_R_WRONG_TYPE 122 # ifdef __cplusplus } # endif #endif ================================================ FILE: third_party/include/openssl/x509_vfy.h ================================================ /* crypto/x509/x509_vfy.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ #ifndef HEADER_X509_H # include /* * openssl/x509.h ends up #include-ing this file at about the only * appropriate moment. */ #endif #ifndef HEADER_X509_VFY_H # define HEADER_X509_VFY_H # include # ifndef OPENSSL_NO_LHASH # include # endif # include # include # include #ifdef __cplusplus extern "C" { #endif # if 0 /* Outer object */ typedef struct x509_hash_dir_st { int num_dirs; char **dirs; int *dirs_type; int num_dirs_alloced; } X509_HASH_DIR_CTX; # endif typedef struct x509_file_st { int num_paths; /* number of paths to files or directories */ int num_alloced; char **paths; /* the list of paths or directories */ int *path_type; } X509_CERT_FILE_CTX; /*******************************/ /*- SSL_CTX -> X509_STORE -> X509_LOOKUP ->X509_LOOKUP_METHOD -> X509_LOOKUP ->X509_LOOKUP_METHOD SSL -> X509_STORE_CTX ->X509_STORE The X509_STORE holds the tables etc for verification stuff. A X509_STORE_CTX is used while validating a single certificate. The X509_STORE has X509_LOOKUPs for looking up certs. The X509_STORE then calls a function to actually verify the certificate chain. */ # define X509_LU_RETRY -1 # define X509_LU_FAIL 0 # define X509_LU_X509 1 # define X509_LU_CRL 2 # define X509_LU_PKEY 3 typedef struct x509_object_st { /* one of the above types */ int type; union { char *ptr; X509 *x509; X509_CRL *crl; EVP_PKEY *pkey; } data; } X509_OBJECT; typedef struct x509_lookup_st X509_LOOKUP; DECLARE_STACK_OF(X509_LOOKUP) DECLARE_STACK_OF(X509_OBJECT) /* This is a static that defines the function interface */ typedef struct x509_lookup_method_st { const char *name; int (*new_item) (X509_LOOKUP *ctx); void (*free) (X509_LOOKUP *ctx); int (*init) (X509_LOOKUP *ctx); int (*shutdown) (X509_LOOKUP *ctx); int (*ctrl) (X509_LOOKUP *ctx, int cmd, const char *argc, long argl, char **ret); int (*get_by_subject) (X509_LOOKUP *ctx, int type, X509_NAME *name, X509_OBJECT *ret); int (*get_by_issuer_serial) (X509_LOOKUP *ctx, int type, X509_NAME *name, ASN1_INTEGER *serial, X509_OBJECT *ret); int (*get_by_fingerprint) (X509_LOOKUP *ctx, int type, unsigned char *bytes, int len, X509_OBJECT *ret); int (*get_by_alias) (X509_LOOKUP *ctx, int type, char *str, int len, X509_OBJECT *ret); } X509_LOOKUP_METHOD; typedef struct X509_VERIFY_PARAM_ID_st X509_VERIFY_PARAM_ID; /* * This structure hold all parameters associated with a verify operation by * including an X509_VERIFY_PARAM structure in related structures the * parameters used can be customized */ typedef struct X509_VERIFY_PARAM_st { char *name; time_t check_time; /* Time to use */ unsigned long inh_flags; /* Inheritance flags */ unsigned long flags; /* Various verify flags */ int purpose; /* purpose to check untrusted certificates */ int trust; /* trust setting to check */ int depth; /* Verify depth */ STACK_OF(ASN1_OBJECT) *policies; /* Permissible policies */ X509_VERIFY_PARAM_ID *id; /* opaque ID data */ } X509_VERIFY_PARAM; DECLARE_STACK_OF(X509_VERIFY_PARAM) /* * This is used to hold everything. It is used for all certificate * validation. Once we have a certificate chain, the 'verify' function is * then called to actually check the cert chain. */ struct x509_store_st { /* The following is a cache of trusted certs */ int cache; /* if true, stash any hits */ STACK_OF(X509_OBJECT) *objs; /* Cache of all objects */ /* These are external lookup methods */ STACK_OF(X509_LOOKUP) *get_cert_methods; X509_VERIFY_PARAM *param; /* Callbacks for various operations */ /* called to verify a certificate */ int (*verify) (X509_STORE_CTX *ctx); /* error callback */ int (*verify_cb) (int ok, X509_STORE_CTX *ctx); /* get issuers cert from ctx */ int (*get_issuer) (X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* check issued */ int (*check_issued) (X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* Check revocation status of chain */ int (*check_revocation) (X509_STORE_CTX *ctx); /* retrieve CRL */ int (*get_crl) (X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* Check CRL validity */ int (*check_crl) (X509_STORE_CTX *ctx, X509_CRL *crl); /* Check certificate against CRL */ int (*cert_crl) (X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); STACK_OF(X509) *(*lookup_certs) (X509_STORE_CTX *ctx, X509_NAME *nm); STACK_OF(X509_CRL) *(*lookup_crls) (X509_STORE_CTX *ctx, X509_NAME *nm); int (*cleanup) (X509_STORE_CTX *ctx); CRYPTO_EX_DATA ex_data; int references; } /* X509_STORE */ ; int X509_STORE_set_depth(X509_STORE *store, int depth); # define X509_STORE_set_verify_cb_func(ctx,func) ((ctx)->verify_cb=(func)) # define X509_STORE_set_verify_func(ctx,func) ((ctx)->verify=(func)) /* This is the functions plus an instance of the local variables. */ struct x509_lookup_st { int init; /* have we been started */ int skip; /* don't use us. */ X509_LOOKUP_METHOD *method; /* the functions */ char *method_data; /* method data */ X509_STORE *store_ctx; /* who owns us */ } /* X509_LOOKUP */ ; /* * This is a used when verifying cert chains. Since the gathering of the * cert chain can take some time (and have to be 'retried', this needs to be * kept and passed around. */ struct x509_store_ctx_st { /* X509_STORE_CTX */ X509_STORE *ctx; /* used when looking up certs */ int current_method; /* The following are set by the caller */ /* The cert to check */ X509 *cert; /* chain of X509s - untrusted - passed in */ STACK_OF(X509) *untrusted; /* set of CRLs passed in */ STACK_OF(X509_CRL) *crls; X509_VERIFY_PARAM *param; /* Other info for use with get_issuer() */ void *other_ctx; /* Callbacks for various operations */ /* called to verify a certificate */ int (*verify) (X509_STORE_CTX *ctx); /* error callback */ int (*verify_cb) (int ok, X509_STORE_CTX *ctx); /* get issuers cert from ctx */ int (*get_issuer) (X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* check issued */ int (*check_issued) (X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* Check revocation status of chain */ int (*check_revocation) (X509_STORE_CTX *ctx); /* retrieve CRL */ int (*get_crl) (X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* Check CRL validity */ int (*check_crl) (X509_STORE_CTX *ctx, X509_CRL *crl); /* Check certificate against CRL */ int (*cert_crl) (X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); int (*check_policy) (X509_STORE_CTX *ctx); STACK_OF(X509) *(*lookup_certs) (X509_STORE_CTX *ctx, X509_NAME *nm); STACK_OF(X509_CRL) *(*lookup_crls) (X509_STORE_CTX *ctx, X509_NAME *nm); int (*cleanup) (X509_STORE_CTX *ctx); /* The following is built up */ /* if 0, rebuild chain */ int valid; /* index of last untrusted cert */ int last_untrusted; /* chain of X509s - built up and trusted */ STACK_OF(X509) *chain; /* Valid policy tree */ X509_POLICY_TREE *tree; /* Require explicit policy value */ int explicit_policy; /* When something goes wrong, this is why */ int error_depth; int error; X509 *current_cert; /* cert currently being tested as valid issuer */ X509 *current_issuer; /* current CRL */ X509_CRL *current_crl; /* score of current CRL */ int current_crl_score; /* Reason mask */ unsigned int current_reasons; /* For CRL path validation: parent context */ X509_STORE_CTX *parent; CRYPTO_EX_DATA ex_data; } /* X509_STORE_CTX */ ; void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth); # define X509_STORE_CTX_set_app_data(ctx,data) \ X509_STORE_CTX_set_ex_data(ctx,0,data) # define X509_STORE_CTX_get_app_data(ctx) \ X509_STORE_CTX_get_ex_data(ctx,0) # define X509_L_FILE_LOAD 1 # define X509_L_ADD_DIR 2 # define X509_LOOKUP_load_file(x,name,type) \ X509_LOOKUP_ctrl((x),X509_L_FILE_LOAD,(name),(long)(type),NULL) # define X509_LOOKUP_add_dir(x,name,type) \ X509_LOOKUP_ctrl((x),X509_L_ADD_DIR,(name),(long)(type),NULL) # define X509_V_OK 0 # define X509_V_ERR_UNSPECIFIED 1 # define X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT 2 # define X509_V_ERR_UNABLE_TO_GET_CRL 3 # define X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE 4 # define X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE 5 # define X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY 6 # define X509_V_ERR_CERT_SIGNATURE_FAILURE 7 # define X509_V_ERR_CRL_SIGNATURE_FAILURE 8 # define X509_V_ERR_CERT_NOT_YET_VALID 9 # define X509_V_ERR_CERT_HAS_EXPIRED 10 # define X509_V_ERR_CRL_NOT_YET_VALID 11 # define X509_V_ERR_CRL_HAS_EXPIRED 12 # define X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD 13 # define X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD 14 # define X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD 15 # define X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD 16 # define X509_V_ERR_OUT_OF_MEM 17 # define X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT 18 # define X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN 19 # define X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY 20 # define X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE 21 # define X509_V_ERR_CERT_CHAIN_TOO_LONG 22 # define X509_V_ERR_CERT_REVOKED 23 # define X509_V_ERR_INVALID_CA 24 # define X509_V_ERR_PATH_LENGTH_EXCEEDED 25 # define X509_V_ERR_INVALID_PURPOSE 26 # define X509_V_ERR_CERT_UNTRUSTED 27 # define X509_V_ERR_CERT_REJECTED 28 /* These are 'informational' when looking for issuer cert */ # define X509_V_ERR_SUBJECT_ISSUER_MISMATCH 29 # define X509_V_ERR_AKID_SKID_MISMATCH 30 # define X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH 31 # define X509_V_ERR_KEYUSAGE_NO_CERTSIGN 32 # define X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER 33 # define X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION 34 # define X509_V_ERR_KEYUSAGE_NO_CRL_SIGN 35 # define X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION 36 # define X509_V_ERR_INVALID_NON_CA 37 # define X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED 38 # define X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE 39 # define X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED 40 # define X509_V_ERR_INVALID_EXTENSION 41 # define X509_V_ERR_INVALID_POLICY_EXTENSION 42 # define X509_V_ERR_NO_EXPLICIT_POLICY 43 # define X509_V_ERR_DIFFERENT_CRL_SCOPE 44 # define X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE 45 # define X509_V_ERR_UNNESTED_RESOURCE 46 # define X509_V_ERR_PERMITTED_VIOLATION 47 # define X509_V_ERR_EXCLUDED_VIOLATION 48 # define X509_V_ERR_SUBTREE_MINMAX 49 # define X509_V_ERR_APPLICATION_VERIFICATION 50 # define X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE 51 # define X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX 52 # define X509_V_ERR_UNSUPPORTED_NAME_SYNTAX 53 # define X509_V_ERR_CRL_PATH_VALIDATION_ERROR 54 /* Suite B mode algorithm violation */ # define X509_V_ERR_SUITE_B_INVALID_VERSION 56 # define X509_V_ERR_SUITE_B_INVALID_ALGORITHM 57 # define X509_V_ERR_SUITE_B_INVALID_CURVE 58 # define X509_V_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHM 59 # define X509_V_ERR_SUITE_B_LOS_NOT_ALLOWED 60 # define X509_V_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256 61 /* Host, email and IP check errors */ # define X509_V_ERR_HOSTNAME_MISMATCH 62 # define X509_V_ERR_EMAIL_MISMATCH 63 # define X509_V_ERR_IP_ADDRESS_MISMATCH 64 /* Caller error */ # define X509_V_ERR_INVALID_CALL 65 /* Issuer lookup error */ # define X509_V_ERR_STORE_LOOKUP 66 # define X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION 67 /* Certificate verify flags */ /* Send issuer+subject checks to verify_cb */ # define X509_V_FLAG_CB_ISSUER_CHECK 0x1 /* Use check time instead of current time */ # define X509_V_FLAG_USE_CHECK_TIME 0x2 /* Lookup CRLs */ # define X509_V_FLAG_CRL_CHECK 0x4 /* Lookup CRLs for whole chain */ # define X509_V_FLAG_CRL_CHECK_ALL 0x8 /* Ignore unhandled critical extensions */ # define X509_V_FLAG_IGNORE_CRITICAL 0x10 /* Disable workarounds for broken certificates */ # define X509_V_FLAG_X509_STRICT 0x20 /* Enable proxy certificate validation */ # define X509_V_FLAG_ALLOW_PROXY_CERTS 0x40 /* Enable policy checking */ # define X509_V_FLAG_POLICY_CHECK 0x80 /* Policy variable require-explicit-policy */ # define X509_V_FLAG_EXPLICIT_POLICY 0x100 /* Policy variable inhibit-any-policy */ # define X509_V_FLAG_INHIBIT_ANY 0x200 /* Policy variable inhibit-policy-mapping */ # define X509_V_FLAG_INHIBIT_MAP 0x400 /* Notify callback that policy is OK */ # define X509_V_FLAG_NOTIFY_POLICY 0x800 /* Extended CRL features such as indirect CRLs, alternate CRL signing keys */ # define X509_V_FLAG_EXTENDED_CRL_SUPPORT 0x1000 /* Delta CRL support */ # define X509_V_FLAG_USE_DELTAS 0x2000 /* Check selfsigned CA signature */ # define X509_V_FLAG_CHECK_SS_SIGNATURE 0x4000 /* Use trusted store first */ # define X509_V_FLAG_TRUSTED_FIRST 0x8000 /* Suite B 128 bit only mode: not normally used */ # define X509_V_FLAG_SUITEB_128_LOS_ONLY 0x10000 /* Suite B 192 bit only mode */ # define X509_V_FLAG_SUITEB_192_LOS 0x20000 /* Suite B 128 bit mode allowing 192 bit algorithms */ # define X509_V_FLAG_SUITEB_128_LOS 0x30000 /* Allow partial chains if at least one certificate is in trusted store */ # define X509_V_FLAG_PARTIAL_CHAIN 0x80000 /* * If the initial chain is not trusted, do not attempt to build an alternative * chain. Alternate chain checking was introduced in 1.0.2b. Setting this flag * will force the behaviour to match that of previous versions. */ # define X509_V_FLAG_NO_ALT_CHAINS 0x100000 # define X509_VP_FLAG_DEFAULT 0x1 # define X509_VP_FLAG_OVERWRITE 0x2 # define X509_VP_FLAG_RESET_FLAGS 0x4 # define X509_VP_FLAG_LOCKED 0x8 # define X509_VP_FLAG_ONCE 0x10 /* Internal use: mask of policy related options */ # define X509_V_FLAG_POLICY_MASK (X509_V_FLAG_POLICY_CHECK \ | X509_V_FLAG_EXPLICIT_POLICY \ | X509_V_FLAG_INHIBIT_ANY \ | X509_V_FLAG_INHIBIT_MAP) int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, X509_NAME *name); X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h, int type, X509_NAME *name); X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h, X509_OBJECT *x); void X509_OBJECT_up_ref_count(X509_OBJECT *a); void X509_OBJECT_free_contents(X509_OBJECT *a); X509_STORE *X509_STORE_new(void); void X509_STORE_free(X509_STORE *v); STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *st, X509_NAME *nm); STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *st, X509_NAME *nm); int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags); int X509_STORE_set_purpose(X509_STORE *ctx, int purpose); int X509_STORE_set_trust(X509_STORE *ctx, int trust); int X509_STORE_set1_param(X509_STORE *ctx, X509_VERIFY_PARAM *pm); void X509_STORE_set_verify_cb(X509_STORE *ctx, int (*verify_cb) (int, X509_STORE_CTX *)); void X509_STORE_set_lookup_crls_cb(X509_STORE *ctx, STACK_OF(X509_CRL) *(*cb) (X509_STORE_CTX *ctx, X509_NAME *nm)); X509_STORE_CTX *X509_STORE_CTX_new(void); int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); void X509_STORE_CTX_free(X509_STORE_CTX *ctx); int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, STACK_OF(X509) *chain); void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk); void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx); X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx); X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m); X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void); X509_LOOKUP_METHOD *X509_LOOKUP_file(void); int X509_STORE_add_cert(X509_STORE *ctx, X509 *x); int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x); int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, X509_OBJECT *ret); int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, char **ret); # ifndef OPENSSL_NO_STDIO int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type); int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type); int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type); # endif X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method); void X509_LOOKUP_free(X509_LOOKUP *ctx); int X509_LOOKUP_init(X509_LOOKUP *ctx); int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name, X509_OBJECT *ret); int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name, ASN1_INTEGER *serial, X509_OBJECT *ret); int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type, unsigned char *bytes, int len, X509_OBJECT *ret); int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len, X509_OBJECT *ret); int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); # ifndef OPENSSL_NO_STDIO int X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *dir); int X509_STORE_set_default_paths(X509_STORE *ctx); # endif int X509_STORE_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data); void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx); int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx); void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int s); int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx); X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx); X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx); X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx); X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx); STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx); STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx); void X509_STORE_CTX_set_cert(X509_STORE_CTX *c, X509 *x); void X509_STORE_CTX_set_chain(X509_STORE_CTX *c, STACK_OF(X509) *sk); void X509_STORE_CTX_set0_crls(X509_STORE_CTX *c, STACK_OF(X509_CRL) *sk); int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose); int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust); int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, int purpose, int trust); void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags); void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags, time_t t); void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx, int (*verify_cb) (int, X509_STORE_CTX *)); X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx); int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx); X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx); void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param); int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name); /* X509_VERIFY_PARAM functions */ X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void); void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param); int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *to, const X509_VERIFY_PARAM *from); int X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM *to, const X509_VERIFY_PARAM *from); int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name); int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags); int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param, unsigned long flags); unsigned long X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM *param); int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose); int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust); void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param, int depth); void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param, time_t t); int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param, ASN1_OBJECT *policy); int X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param, STACK_OF(ASN1_OBJECT) *policies); int X509_VERIFY_PARAM_set1_host(X509_VERIFY_PARAM *param, const char *name, size_t namelen); int X509_VERIFY_PARAM_add1_host(X509_VERIFY_PARAM *param, const char *name, size_t namelen); void X509_VERIFY_PARAM_set_hostflags(X509_VERIFY_PARAM *param, unsigned int flags); char *X509_VERIFY_PARAM_get0_peername(X509_VERIFY_PARAM *); int X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param, const char *email, size_t emaillen); int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param, const unsigned char *ip, size_t iplen); int X509_VERIFY_PARAM_set1_ip_asc(X509_VERIFY_PARAM *param, const char *ipasc); int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param); const char *X509_VERIFY_PARAM_get0_name(const X509_VERIFY_PARAM *param); int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param); int X509_VERIFY_PARAM_get_count(void); const X509_VERIFY_PARAM *X509_VERIFY_PARAM_get0(int id); const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(const char *name); void X509_VERIFY_PARAM_table_cleanup(void); int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy, STACK_OF(X509) *certs, STACK_OF(ASN1_OBJECT) *policy_oids, unsigned int flags); void X509_policy_tree_free(X509_POLICY_TREE *tree); int X509_policy_tree_level_count(const X509_POLICY_TREE *tree); X509_POLICY_LEVEL *X509_policy_tree_get0_level(const X509_POLICY_TREE *tree, int i); STACK_OF(X509_POLICY_NODE) *X509_policy_tree_get0_policies(const X509_POLICY_TREE *tree); STACK_OF(X509_POLICY_NODE) *X509_policy_tree_get0_user_policies(const X509_POLICY_TREE *tree); int X509_policy_level_node_count(X509_POLICY_LEVEL *level); X509_POLICY_NODE *X509_policy_level_get0_node(X509_POLICY_LEVEL *level, int i); const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node); STACK_OF(POLICYQUALINFO) *X509_policy_node_get0_qualifiers(const X509_POLICY_NODE *node); const X509_POLICY_NODE *X509_policy_node_get0_parent(const X509_POLICY_NODE *node); #ifdef __cplusplus } #endif #endif ================================================ FILE: third_party/include/openssl/x509v3.h ================================================ /* x509v3.h */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project * 1999. */ /* ==================================================================== * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * licensing@OpenSSL.org. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * */ #ifndef HEADER_X509V3_H # define HEADER_X509V3_H # include # include # include #ifdef __cplusplus extern "C" { #endif # ifdef OPENSSL_SYS_WIN32 /* Under Win32 these are defined in wincrypt.h */ # undef X509_NAME # undef X509_CERT_PAIR # undef X509_EXTENSIONS # endif /* Forward reference */ struct v3_ext_method; struct v3_ext_ctx; /* Useful typedefs */ typedef void *(*X509V3_EXT_NEW)(void); typedef void (*X509V3_EXT_FREE) (void *); typedef void *(*X509V3_EXT_D2I)(void *, const unsigned char **, long); typedef int (*X509V3_EXT_I2D) (void *, unsigned char **); typedef STACK_OF(CONF_VALUE) * (*X509V3_EXT_I2V) (const struct v3_ext_method *method, void *ext, STACK_OF(CONF_VALUE) *extlist); typedef void *(*X509V3_EXT_V2I)(const struct v3_ext_method *method, struct v3_ext_ctx *ctx, STACK_OF(CONF_VALUE) *values); typedef char *(*X509V3_EXT_I2S)(const struct v3_ext_method *method, void *ext); typedef void *(*X509V3_EXT_S2I)(const struct v3_ext_method *method, struct v3_ext_ctx *ctx, const char *str); typedef int (*X509V3_EXT_I2R) (const struct v3_ext_method *method, void *ext, BIO *out, int indent); typedef void *(*X509V3_EXT_R2I)(const struct v3_ext_method *method, struct v3_ext_ctx *ctx, const char *str); /* V3 extension structure */ struct v3_ext_method { int ext_nid; int ext_flags; /* If this is set the following four fields are ignored */ ASN1_ITEM_EXP *it; /* Old style ASN1 calls */ X509V3_EXT_NEW ext_new; X509V3_EXT_FREE ext_free; X509V3_EXT_D2I d2i; X509V3_EXT_I2D i2d; /* The following pair is used for string extensions */ X509V3_EXT_I2S i2s; X509V3_EXT_S2I s2i; /* The following pair is used for multi-valued extensions */ X509V3_EXT_I2V i2v; X509V3_EXT_V2I v2i; /* The following are used for raw extensions */ X509V3_EXT_I2R i2r; X509V3_EXT_R2I r2i; void *usr_data; /* Any extension specific data */ }; typedef struct X509V3_CONF_METHOD_st { char *(*get_string) (void *db, char *section, char *value); STACK_OF(CONF_VALUE) *(*get_section) (void *db, char *section); void (*free_string) (void *db, char *string); void (*free_section) (void *db, STACK_OF(CONF_VALUE) *section); } X509V3_CONF_METHOD; /* Context specific info */ struct v3_ext_ctx { # define CTX_TEST 0x1 int flags; X509 *issuer_cert; X509 *subject_cert; X509_REQ *subject_req; X509_CRL *crl; X509V3_CONF_METHOD *db_meth; void *db; /* Maybe more here */ }; typedef struct v3_ext_method X509V3_EXT_METHOD; DECLARE_STACK_OF(X509V3_EXT_METHOD) /* ext_flags values */ # define X509V3_EXT_DYNAMIC 0x1 # define X509V3_EXT_CTX_DEP 0x2 # define X509V3_EXT_MULTILINE 0x4 typedef BIT_STRING_BITNAME ENUMERATED_NAMES; typedef struct BASIC_CONSTRAINTS_st { int ca; ASN1_INTEGER *pathlen; } BASIC_CONSTRAINTS; typedef struct PKEY_USAGE_PERIOD_st { ASN1_GENERALIZEDTIME *notBefore; ASN1_GENERALIZEDTIME *notAfter; } PKEY_USAGE_PERIOD; typedef struct otherName_st { ASN1_OBJECT *type_id; ASN1_TYPE *value; } OTHERNAME; typedef struct EDIPartyName_st { ASN1_STRING *nameAssigner; ASN1_STRING *partyName; } EDIPARTYNAME; typedef struct GENERAL_NAME_st { # define GEN_OTHERNAME 0 # define GEN_EMAIL 1 # define GEN_DNS 2 # define GEN_X400 3 # define GEN_DIRNAME 4 # define GEN_EDIPARTY 5 # define GEN_URI 6 # define GEN_IPADD 7 # define GEN_RID 8 int type; union { char *ptr; OTHERNAME *otherName; /* otherName */ ASN1_IA5STRING *rfc822Name; ASN1_IA5STRING *dNSName; ASN1_TYPE *x400Address; X509_NAME *directoryName; EDIPARTYNAME *ediPartyName; ASN1_IA5STRING *uniformResourceIdentifier; ASN1_OCTET_STRING *iPAddress; ASN1_OBJECT *registeredID; /* Old names */ ASN1_OCTET_STRING *ip; /* iPAddress */ X509_NAME *dirn; /* dirn */ ASN1_IA5STRING *ia5; /* rfc822Name, dNSName, * uniformResourceIdentifier */ ASN1_OBJECT *rid; /* registeredID */ ASN1_TYPE *other; /* x400Address */ } d; } GENERAL_NAME; typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES; typedef struct ACCESS_DESCRIPTION_st { ASN1_OBJECT *method; GENERAL_NAME *location; } ACCESS_DESCRIPTION; typedef STACK_OF(ACCESS_DESCRIPTION) AUTHORITY_INFO_ACCESS; typedef STACK_OF(ASN1_OBJECT) EXTENDED_KEY_USAGE; DECLARE_STACK_OF(GENERAL_NAME) DECLARE_ASN1_SET_OF(GENERAL_NAME) DECLARE_STACK_OF(ACCESS_DESCRIPTION) DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION) typedef struct DIST_POINT_NAME_st { int type; union { GENERAL_NAMES *fullname; STACK_OF(X509_NAME_ENTRY) *relativename; } name; /* If relativename then this contains the full distribution point name */ X509_NAME *dpname; } DIST_POINT_NAME; /* All existing reasons */ # define CRLDP_ALL_REASONS 0x807f # define CRL_REASON_NONE -1 # define CRL_REASON_UNSPECIFIED 0 # define CRL_REASON_KEY_COMPROMISE 1 # define CRL_REASON_CA_COMPROMISE 2 # define CRL_REASON_AFFILIATION_CHANGED 3 # define CRL_REASON_SUPERSEDED 4 # define CRL_REASON_CESSATION_OF_OPERATION 5 # define CRL_REASON_CERTIFICATE_HOLD 6 # define CRL_REASON_REMOVE_FROM_CRL 8 # define CRL_REASON_PRIVILEGE_WITHDRAWN 9 # define CRL_REASON_AA_COMPROMISE 10 struct DIST_POINT_st { DIST_POINT_NAME *distpoint; ASN1_BIT_STRING *reasons; GENERAL_NAMES *CRLissuer; int dp_reasons; }; typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS; DECLARE_STACK_OF(DIST_POINT) DECLARE_ASN1_SET_OF(DIST_POINT) struct AUTHORITY_KEYID_st { ASN1_OCTET_STRING *keyid; GENERAL_NAMES *issuer; ASN1_INTEGER *serial; }; /* Strong extranet structures */ typedef struct SXNET_ID_st { ASN1_INTEGER *zone; ASN1_OCTET_STRING *user; } SXNETID; DECLARE_STACK_OF(SXNETID) DECLARE_ASN1_SET_OF(SXNETID) typedef struct SXNET_st { ASN1_INTEGER *version; STACK_OF(SXNETID) *ids; } SXNET; typedef struct NOTICEREF_st { ASN1_STRING *organization; STACK_OF(ASN1_INTEGER) *noticenos; } NOTICEREF; typedef struct USERNOTICE_st { NOTICEREF *noticeref; ASN1_STRING *exptext; } USERNOTICE; typedef struct POLICYQUALINFO_st { ASN1_OBJECT *pqualid; union { ASN1_IA5STRING *cpsuri; USERNOTICE *usernotice; ASN1_TYPE *other; } d; } POLICYQUALINFO; DECLARE_STACK_OF(POLICYQUALINFO) DECLARE_ASN1_SET_OF(POLICYQUALINFO) typedef struct POLICYINFO_st { ASN1_OBJECT *policyid; STACK_OF(POLICYQUALINFO) *qualifiers; } POLICYINFO; typedef STACK_OF(POLICYINFO) CERTIFICATEPOLICIES; DECLARE_STACK_OF(POLICYINFO) DECLARE_ASN1_SET_OF(POLICYINFO) typedef struct POLICY_MAPPING_st { ASN1_OBJECT *issuerDomainPolicy; ASN1_OBJECT *subjectDomainPolicy; } POLICY_MAPPING; DECLARE_STACK_OF(POLICY_MAPPING) typedef STACK_OF(POLICY_MAPPING) POLICY_MAPPINGS; typedef struct GENERAL_SUBTREE_st { GENERAL_NAME *base; ASN1_INTEGER *minimum; ASN1_INTEGER *maximum; } GENERAL_SUBTREE; DECLARE_STACK_OF(GENERAL_SUBTREE) struct NAME_CONSTRAINTS_st { STACK_OF(GENERAL_SUBTREE) *permittedSubtrees; STACK_OF(GENERAL_SUBTREE) *excludedSubtrees; }; typedef struct POLICY_CONSTRAINTS_st { ASN1_INTEGER *requireExplicitPolicy; ASN1_INTEGER *inhibitPolicyMapping; } POLICY_CONSTRAINTS; /* Proxy certificate structures, see RFC 3820 */ typedef struct PROXY_POLICY_st { ASN1_OBJECT *policyLanguage; ASN1_OCTET_STRING *policy; } PROXY_POLICY; typedef struct PROXY_CERT_INFO_EXTENSION_st { ASN1_INTEGER *pcPathLengthConstraint; PROXY_POLICY *proxyPolicy; } PROXY_CERT_INFO_EXTENSION; DECLARE_ASN1_FUNCTIONS(PROXY_POLICY) DECLARE_ASN1_FUNCTIONS(PROXY_CERT_INFO_EXTENSION) struct ISSUING_DIST_POINT_st { DIST_POINT_NAME *distpoint; int onlyuser; int onlyCA; ASN1_BIT_STRING *onlysomereasons; int indirectCRL; int onlyattr; }; /* Values in idp_flags field */ /* IDP present */ # define IDP_PRESENT 0x1 /* IDP values inconsistent */ # define IDP_INVALID 0x2 /* onlyuser true */ # define IDP_ONLYUSER 0x4 /* onlyCA true */ # define IDP_ONLYCA 0x8 /* onlyattr true */ # define IDP_ONLYATTR 0x10 /* indirectCRL true */ # define IDP_INDIRECT 0x20 /* onlysomereasons present */ # define IDP_REASONS 0x40 # define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \ ",name:", val->name, ",value:", val->value); # define X509V3_set_ctx_test(ctx) \ X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) # define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL; # define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \ 0,0,0,0, \ 0,0, \ (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \ (X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \ NULL, NULL, \ table} # define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \ 0,0,0,0, \ (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \ (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \ 0,0,0,0, \ NULL} # define EXT_END { -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} /* X509_PURPOSE stuff */ # define EXFLAG_BCONS 0x1 # define EXFLAG_KUSAGE 0x2 # define EXFLAG_XKUSAGE 0x4 # define EXFLAG_NSCERT 0x8 # define EXFLAG_CA 0x10 /* Really self issued not necessarily self signed */ # define EXFLAG_SI 0x20 # define EXFLAG_V1 0x40 # define EXFLAG_INVALID 0x80 # define EXFLAG_SET 0x100 # define EXFLAG_CRITICAL 0x200 # define EXFLAG_PROXY 0x400 # define EXFLAG_INVALID_POLICY 0x800 # define EXFLAG_FRESHEST 0x1000 /* Self signed */ # define EXFLAG_SS 0x2000 # define KU_DIGITAL_SIGNATURE 0x0080 # define KU_NON_REPUDIATION 0x0040 # define KU_KEY_ENCIPHERMENT 0x0020 # define KU_DATA_ENCIPHERMENT 0x0010 # define KU_KEY_AGREEMENT 0x0008 # define KU_KEY_CERT_SIGN 0x0004 # define KU_CRL_SIGN 0x0002 # define KU_ENCIPHER_ONLY 0x0001 # define KU_DECIPHER_ONLY 0x8000 # define NS_SSL_CLIENT 0x80 # define NS_SSL_SERVER 0x40 # define NS_SMIME 0x20 # define NS_OBJSIGN 0x10 # define NS_SSL_CA 0x04 # define NS_SMIME_CA 0x02 # define NS_OBJSIGN_CA 0x01 # define NS_ANY_CA (NS_SSL_CA|NS_SMIME_CA|NS_OBJSIGN_CA) # define XKU_SSL_SERVER 0x1 # define XKU_SSL_CLIENT 0x2 # define XKU_SMIME 0x4 # define XKU_CODE_SIGN 0x8 # define XKU_SGC 0x10 # define XKU_OCSP_SIGN 0x20 # define XKU_TIMESTAMP 0x40 # define XKU_DVCS 0x80 # define XKU_ANYEKU 0x100 # define X509_PURPOSE_DYNAMIC 0x1 # define X509_PURPOSE_DYNAMIC_NAME 0x2 typedef struct x509_purpose_st { int purpose; int trust; /* Default trust ID */ int flags; int (*check_purpose) (const struct x509_purpose_st *, const X509 *, int); char *name; char *sname; void *usr_data; } X509_PURPOSE; # define X509_PURPOSE_SSL_CLIENT 1 # define X509_PURPOSE_SSL_SERVER 2 # define X509_PURPOSE_NS_SSL_SERVER 3 # define X509_PURPOSE_SMIME_SIGN 4 # define X509_PURPOSE_SMIME_ENCRYPT 5 # define X509_PURPOSE_CRL_SIGN 6 # define X509_PURPOSE_ANY 7 # define X509_PURPOSE_OCSP_HELPER 8 # define X509_PURPOSE_TIMESTAMP_SIGN 9 # define X509_PURPOSE_MIN 1 # define X509_PURPOSE_MAX 9 /* Flags for X509V3_EXT_print() */ # define X509V3_EXT_UNKNOWN_MASK (0xfL << 16) /* Return error for unknown extensions */ # define X509V3_EXT_DEFAULT 0 /* Print error for unknown extensions */ # define X509V3_EXT_ERROR_UNKNOWN (1L << 16) /* ASN1 parse unknown extensions */ # define X509V3_EXT_PARSE_UNKNOWN (2L << 16) /* BIO_dump unknown extensions */ # define X509V3_EXT_DUMP_UNKNOWN (3L << 16) /* Flags for X509V3_add1_i2d */ # define X509V3_ADD_OP_MASK 0xfL # define X509V3_ADD_DEFAULT 0L # define X509V3_ADD_APPEND 1L # define X509V3_ADD_REPLACE 2L # define X509V3_ADD_REPLACE_EXISTING 3L # define X509V3_ADD_KEEP_EXISTING 4L # define X509V3_ADD_DELETE 5L # define X509V3_ADD_SILENT 0x10 DECLARE_STACK_OF(X509_PURPOSE) DECLARE_ASN1_FUNCTIONS(BASIC_CONSTRAINTS) DECLARE_ASN1_FUNCTIONS(SXNET) DECLARE_ASN1_FUNCTIONS(SXNETID) int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen); int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, int userlen); int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user, int userlen); ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone); ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone); ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone); DECLARE_ASN1_FUNCTIONS(AUTHORITY_KEYID) DECLARE_ASN1_FUNCTIONS(PKEY_USAGE_PERIOD) DECLARE_ASN1_FUNCTIONS(GENERAL_NAME) GENERAL_NAME *GENERAL_NAME_dup(GENERAL_NAME *a); int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b); ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, ASN1_BIT_STRING *bits, STACK_OF(CONF_VALUE) *extlist); STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret); int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen); DECLARE_ASN1_FUNCTIONS(GENERAL_NAMES) STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method, GENERAL_NAMES *gen, STACK_OF(CONF_VALUE) *extlist); GENERAL_NAMES *v2i_GENERAL_NAMES(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); DECLARE_ASN1_FUNCTIONS(OTHERNAME) DECLARE_ASN1_FUNCTIONS(EDIPARTYNAME) int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b); void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value); void *GENERAL_NAME_get0_value(GENERAL_NAME *a, int *ptype); int GENERAL_NAME_set0_othername(GENERAL_NAME *gen, ASN1_OBJECT *oid, ASN1_TYPE *value); int GENERAL_NAME_get0_otherName(GENERAL_NAME *gen, ASN1_OBJECT **poid, ASN1_TYPE **pvalue); char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5); ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); DECLARE_ASN1_FUNCTIONS(EXTENDED_KEY_USAGE) int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION *a); DECLARE_ASN1_FUNCTIONS(CERTIFICATEPOLICIES) DECLARE_ASN1_FUNCTIONS(POLICYINFO) DECLARE_ASN1_FUNCTIONS(POLICYQUALINFO) DECLARE_ASN1_FUNCTIONS(USERNOTICE) DECLARE_ASN1_FUNCTIONS(NOTICEREF) DECLARE_ASN1_FUNCTIONS(CRL_DIST_POINTS) DECLARE_ASN1_FUNCTIONS(DIST_POINT) DECLARE_ASN1_FUNCTIONS(DIST_POINT_NAME) DECLARE_ASN1_FUNCTIONS(ISSUING_DIST_POINT) int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, X509_NAME *iname); int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc); DECLARE_ASN1_FUNCTIONS(ACCESS_DESCRIPTION) DECLARE_ASN1_FUNCTIONS(AUTHORITY_INFO_ACCESS) DECLARE_ASN1_ITEM(POLICY_MAPPING) DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_MAPPING) DECLARE_ASN1_ITEM(POLICY_MAPPINGS) DECLARE_ASN1_ITEM(GENERAL_SUBTREE) DECLARE_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE) DECLARE_ASN1_ITEM(NAME_CONSTRAINTS) DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS) DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_CONSTRAINTS) DECLARE_ASN1_ITEM(POLICY_CONSTRAINTS) GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out, const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, int gen_type, char *value, int is_nc); # ifdef HEADER_CONF_H GENERAL_NAME *v2i_GENERAL_NAME(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf); GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out, const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf, int is_nc); void X509V3_conf_free(CONF_VALUE *val); X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value); X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value); int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk); int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert); int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req); int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl); X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, int ext_nid, char *value); X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, char *name, char *value); int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, char *section, X509 *cert); int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, char *section, X509_REQ *req); int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl); int X509V3_add_value_bool_nf(char *name, int asn1_bool, STACK_OF(CONF_VALUE) **extlist); int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool); int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint); void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf); void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash); # endif char *X509V3_get_string(X509V3_CTX *ctx, char *name, char *section); STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, char *section); void X509V3_string_free(X509V3_CTX *ctx, char *str); void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section); void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject, X509_REQ *req, X509_CRL *crl, int flags); int X509V3_add_value(const char *name, const char *value, STACK_OF(CONF_VALUE) **extlist); int X509V3_add_value_uchar(const char *name, const unsigned char *value, STACK_OF(CONF_VALUE) **extlist); int X509V3_add_value_bool(const char *name, int asn1_bool, STACK_OF(CONF_VALUE) **extlist); int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint, STACK_OF(CONF_VALUE) **extlist); char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint); ASN1_INTEGER *s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value); char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); int X509V3_EXT_add(X509V3_EXT_METHOD *ext); int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist); int X509V3_EXT_add_alias(int nid_to, int nid_from); void X509V3_EXT_cleanup(void); const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext); const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid); int X509V3_add_standard_extensions(void); STACK_OF(CONF_VALUE) *X509V3_parse_list(const char *line); void *X509V3_EXT_d2i(X509_EXTENSION *ext); void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); int X509V3_EXT_free(int nid, void *ext_data); X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc); int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); char *hex_to_string(const unsigned char *buffer, long len); unsigned char *string_to_hex(const char *str, long *len); int name_cmp(const char *name, const char *cmp); void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml); int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent); int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent); int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent); int X509_check_ca(X509 *x); int X509_check_purpose(X509 *x, int id, int ca); int X509_supported_extension(X509_EXTENSION *ex); int X509_PURPOSE_set(int *p, int purpose); int X509_check_issued(X509 *issuer, X509 *subject); int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid); int X509_PURPOSE_get_count(void); X509_PURPOSE *X509_PURPOSE_get0(int idx); int X509_PURPOSE_get_by_sname(char *sname); int X509_PURPOSE_get_by_id(int id); int X509_PURPOSE_add(int id, int trust, int flags, int (*ck) (const X509_PURPOSE *, const X509 *, int), char *name, char *sname, void *arg); char *X509_PURPOSE_get0_name(X509_PURPOSE *xp); char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp); int X509_PURPOSE_get_trust(X509_PURPOSE *xp); void X509_PURPOSE_cleanup(void); int X509_PURPOSE_get_id(X509_PURPOSE *); STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x); STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x); void X509_email_free(STACK_OF(OPENSSL_STRING) *sk); STACK_OF(OPENSSL_STRING) *X509_get1_ocsp(X509 *x); /* Flags for X509_check_* functions */ /* * Always check subject name for host match even if subject alt names present */ # define X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT 0x1 /* Disable wildcard matching for dnsName fields and common name. */ # define X509_CHECK_FLAG_NO_WILDCARDS 0x2 /* Wildcards must not match a partial label. */ # define X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS 0x4 /* Allow (non-partial) wildcards to match multiple labels. */ # define X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS 0x8 /* Constraint verifier subdomain patterns to match a single labels. */ # define X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS 0x10 /* * Match reference identifiers starting with "." to any sub-domain. * This is a non-public flag, turned on implicitly when the subject * reference identity is a DNS name. */ # define _X509_CHECK_FLAG_DOT_SUBDOMAINS 0x8000 int X509_check_host(X509 *x, const char *chk, size_t chklen, unsigned int flags, char **peername); int X509_check_email(X509 *x, const char *chk, size_t chklen, unsigned int flags); int X509_check_ip(X509 *x, const unsigned char *chk, size_t chklen, unsigned int flags); int X509_check_ip_asc(X509 *x, const char *ipasc, unsigned int flags); ASN1_OCTET_STRING *a2i_IPADDRESS(const char *ipasc); ASN1_OCTET_STRING *a2i_IPADDRESS_NC(const char *ipasc); int a2i_ipadd(unsigned char *ipout, const char *ipasc); int X509V3_NAME_from_section(X509_NAME *nm, STACK_OF(CONF_VALUE) *dn_sk, unsigned long chtype); void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent); DECLARE_STACK_OF(X509_POLICY_NODE) # ifndef OPENSSL_NO_RFC3779 typedef struct ASRange_st { ASN1_INTEGER *min, *max; } ASRange; # define ASIdOrRange_id 0 # define ASIdOrRange_range 1 typedef struct ASIdOrRange_st { int type; union { ASN1_INTEGER *id; ASRange *range; } u; } ASIdOrRange; typedef STACK_OF(ASIdOrRange) ASIdOrRanges; DECLARE_STACK_OF(ASIdOrRange) # define ASIdentifierChoice_inherit 0 # define ASIdentifierChoice_asIdsOrRanges 1 typedef struct ASIdentifierChoice_st { int type; union { ASN1_NULL *inherit; ASIdOrRanges *asIdsOrRanges; } u; } ASIdentifierChoice; typedef struct ASIdentifiers_st { ASIdentifierChoice *asnum, *rdi; } ASIdentifiers; DECLARE_ASN1_FUNCTIONS(ASRange) DECLARE_ASN1_FUNCTIONS(ASIdOrRange) DECLARE_ASN1_FUNCTIONS(ASIdentifierChoice) DECLARE_ASN1_FUNCTIONS(ASIdentifiers) typedef struct IPAddressRange_st { ASN1_BIT_STRING *min, *max; } IPAddressRange; # define IPAddressOrRange_addressPrefix 0 # define IPAddressOrRange_addressRange 1 typedef struct IPAddressOrRange_st { int type; union { ASN1_BIT_STRING *addressPrefix; IPAddressRange *addressRange; } u; } IPAddressOrRange; typedef STACK_OF(IPAddressOrRange) IPAddressOrRanges; DECLARE_STACK_OF(IPAddressOrRange) # define IPAddressChoice_inherit 0 # define IPAddressChoice_addressesOrRanges 1 typedef struct IPAddressChoice_st { int type; union { ASN1_NULL *inherit; IPAddressOrRanges *addressesOrRanges; } u; } IPAddressChoice; typedef struct IPAddressFamily_st { ASN1_OCTET_STRING *addressFamily; IPAddressChoice *ipAddressChoice; } IPAddressFamily; typedef STACK_OF(IPAddressFamily) IPAddrBlocks; DECLARE_STACK_OF(IPAddressFamily) DECLARE_ASN1_FUNCTIONS(IPAddressRange) DECLARE_ASN1_FUNCTIONS(IPAddressOrRange) DECLARE_ASN1_FUNCTIONS(IPAddressChoice) DECLARE_ASN1_FUNCTIONS(IPAddressFamily) /* * API tag for elements of the ASIdentifer SEQUENCE. */ # define V3_ASID_ASNUM 0 # define V3_ASID_RDI 1 /* * AFI values, assigned by IANA. It'd be nice to make the AFI * handling code totally generic, but there are too many little things * that would need to be defined for other address families for it to * be worth the trouble. */ # define IANA_AFI_IPV4 1 # define IANA_AFI_IPV6 2 /* * Utilities to construct and extract values from RFC3779 extensions, * since some of the encodings (particularly for IP address prefixes * and ranges) are a bit tedious to work with directly. */ int v3_asid_add_inherit(ASIdentifiers *asid, int which); int v3_asid_add_id_or_range(ASIdentifiers *asid, int which, ASN1_INTEGER *min, ASN1_INTEGER *max); int v3_addr_add_inherit(IPAddrBlocks *addr, const unsigned afi, const unsigned *safi); int v3_addr_add_prefix(IPAddrBlocks *addr, const unsigned afi, const unsigned *safi, unsigned char *a, const int prefixlen); int v3_addr_add_range(IPAddrBlocks *addr, const unsigned afi, const unsigned *safi, unsigned char *min, unsigned char *max); unsigned v3_addr_get_afi(const IPAddressFamily *f); int v3_addr_get_range(IPAddressOrRange *aor, const unsigned afi, unsigned char *min, unsigned char *max, const int length); /* * Canonical forms. */ int v3_asid_is_canonical(ASIdentifiers *asid); int v3_addr_is_canonical(IPAddrBlocks *addr); int v3_asid_canonize(ASIdentifiers *asid); int v3_addr_canonize(IPAddrBlocks *addr); /* * Tests for inheritance and containment. */ int v3_asid_inherits(ASIdentifiers *asid); int v3_addr_inherits(IPAddrBlocks *addr); int v3_asid_subset(ASIdentifiers *a, ASIdentifiers *b); int v3_addr_subset(IPAddrBlocks *a, IPAddrBlocks *b); /* * Check whether RFC 3779 extensions nest properly in chains. */ int v3_asid_validate_path(X509_STORE_CTX *); int v3_addr_validate_path(X509_STORE_CTX *); int v3_asid_validate_resource_set(STACK_OF(X509) *chain, ASIdentifiers *ext, int allow_inheritance); int v3_addr_validate_resource_set(STACK_OF(X509) *chain, IPAddrBlocks *ext, int allow_inheritance); # endif /* OPENSSL_NO_RFC3779 */ /* BEGIN ERROR CODES */ /* * The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. */ void ERR_load_X509V3_strings(void); /* Error codes for the X509V3 functions. */ /* Function codes. */ # define X509V3_F_A2I_GENERAL_NAME 164 # define X509V3_F_ASIDENTIFIERCHOICE_CANONIZE 161 # define X509V3_F_ASIDENTIFIERCHOICE_IS_CANONICAL 162 # define X509V3_F_COPY_EMAIL 122 # define X509V3_F_COPY_ISSUER 123 # define X509V3_F_DO_DIRNAME 144 # define X509V3_F_DO_EXT_CONF 124 # define X509V3_F_DO_EXT_I2D 135 # define X509V3_F_DO_EXT_NCONF 151 # define X509V3_F_DO_I2V_NAME_CONSTRAINTS 148 # define X509V3_F_GNAMES_FROM_SECTNAME 156 # define X509V3_F_HEX_TO_STRING 111 # define X509V3_F_I2S_ASN1_ENUMERATED 121 # define X509V3_F_I2S_ASN1_IA5STRING 149 # define X509V3_F_I2S_ASN1_INTEGER 120 # define X509V3_F_I2V_AUTHORITY_INFO_ACCESS 138 # define X509V3_F_NOTICE_SECTION 132 # define X509V3_F_NREF_NOS 133 # define X509V3_F_POLICY_SECTION 131 # define X509V3_F_PROCESS_PCI_VALUE 150 # define X509V3_F_R2I_CERTPOL 130 # define X509V3_F_R2I_PCI 155 # define X509V3_F_S2I_ASN1_IA5STRING 100 # define X509V3_F_S2I_ASN1_INTEGER 108 # define X509V3_F_S2I_ASN1_OCTET_STRING 112 # define X509V3_F_S2I_ASN1_SKEY_ID 114 # define X509V3_F_S2I_SKEY_ID 115 # define X509V3_F_SET_DIST_POINT_NAME 158 # define X509V3_F_STRING_TO_HEX 113 # define X509V3_F_SXNET_ADD_ID_ASC 125 # define X509V3_F_SXNET_ADD_ID_INTEGER 126 # define X509V3_F_SXNET_ADD_ID_ULONG 127 # define X509V3_F_SXNET_GET_ID_ASC 128 # define X509V3_F_SXNET_GET_ID_ULONG 129 # define X509V3_F_V2I_ASIDENTIFIERS 163 # define X509V3_F_V2I_ASN1_BIT_STRING 101 # define X509V3_F_V2I_AUTHORITY_INFO_ACCESS 139 # define X509V3_F_V2I_AUTHORITY_KEYID 119 # define X509V3_F_V2I_BASIC_CONSTRAINTS 102 # define X509V3_F_V2I_CRLD 134 # define X509V3_F_V2I_EXTENDED_KEY_USAGE 103 # define X509V3_F_V2I_GENERAL_NAMES 118 # define X509V3_F_V2I_GENERAL_NAME_EX 117 # define X509V3_F_V2I_IDP 157 # define X509V3_F_V2I_IPADDRBLOCKS 159 # define X509V3_F_V2I_ISSUER_ALT 153 # define X509V3_F_V2I_NAME_CONSTRAINTS 147 # define X509V3_F_V2I_POLICY_CONSTRAINTS 146 # define X509V3_F_V2I_POLICY_MAPPINGS 145 # define X509V3_F_V2I_SUBJECT_ALT 154 # define X509V3_F_V3_ADDR_VALIDATE_PATH_INTERNAL 160 # define X509V3_F_V3_GENERIC_EXTENSION 116 # define X509V3_F_X509V3_ADD1_I2D 140 # define X509V3_F_X509V3_ADD_VALUE 105 # define X509V3_F_X509V3_EXT_ADD 104 # define X509V3_F_X509V3_EXT_ADD_ALIAS 106 # define X509V3_F_X509V3_EXT_CONF 107 # define X509V3_F_X509V3_EXT_FREE 165 # define X509V3_F_X509V3_EXT_I2D 136 # define X509V3_F_X509V3_EXT_NCONF 152 # define X509V3_F_X509V3_GET_SECTION 142 # define X509V3_F_X509V3_GET_STRING 143 # define X509V3_F_X509V3_GET_VALUE_BOOL 110 # define X509V3_F_X509V3_PARSE_LIST 109 # define X509V3_F_X509_PURPOSE_ADD 137 # define X509V3_F_X509_PURPOSE_SET 141 /* Reason codes. */ # define X509V3_R_BAD_IP_ADDRESS 118 # define X509V3_R_BAD_OBJECT 119 # define X509V3_R_BN_DEC2BN_ERROR 100 # define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101 # define X509V3_R_CANNOT_FIND_FREE_FUNCTION 168 # define X509V3_R_DIRNAME_ERROR 149 # define X509V3_R_DISTPOINT_ALREADY_SET 160 # define X509V3_R_DUPLICATE_ZONE_ID 133 # define X509V3_R_ERROR_CONVERTING_ZONE 131 # define X509V3_R_ERROR_CREATING_EXTENSION 144 # define X509V3_R_ERROR_IN_EXTENSION 128 # define X509V3_R_EXPECTED_A_SECTION_NAME 137 # define X509V3_R_EXTENSION_EXISTS 145 # define X509V3_R_EXTENSION_NAME_ERROR 115 # define X509V3_R_EXTENSION_NOT_FOUND 102 # define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103 # define X509V3_R_EXTENSION_VALUE_ERROR 116 # define X509V3_R_ILLEGAL_EMPTY_EXTENSION 151 # define X509V3_R_ILLEGAL_HEX_DIGIT 113 # define X509V3_R_INCORRECT_POLICY_SYNTAX_TAG 152 # define X509V3_R_INVALID_ASNUMBER 162 # define X509V3_R_INVALID_ASRANGE 163 # define X509V3_R_INVALID_BOOLEAN_STRING 104 # define X509V3_R_INVALID_EXTENSION_STRING 105 # define X509V3_R_INVALID_INHERITANCE 165 # define X509V3_R_INVALID_IPADDRESS 166 # define X509V3_R_INVALID_MULTIPLE_RDNS 161 # define X509V3_R_INVALID_NAME 106 # define X509V3_R_INVALID_NULL_ARGUMENT 107 # define X509V3_R_INVALID_NULL_NAME 108 # define X509V3_R_INVALID_NULL_VALUE 109 # define X509V3_R_INVALID_NUMBER 140 # define X509V3_R_INVALID_NUMBERS 141 # define X509V3_R_INVALID_OBJECT_IDENTIFIER 110 # define X509V3_R_INVALID_OPTION 138 # define X509V3_R_INVALID_POLICY_IDENTIFIER 134 # define X509V3_R_INVALID_PROXY_POLICY_SETTING 153 # define X509V3_R_INVALID_PURPOSE 146 # define X509V3_R_INVALID_SAFI 164 # define X509V3_R_INVALID_SECTION 135 # define X509V3_R_INVALID_SYNTAX 143 # define X509V3_R_ISSUER_DECODE_ERROR 126 # define X509V3_R_MISSING_VALUE 124 # define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142 # define X509V3_R_NO_CONFIG_DATABASE 136 # define X509V3_R_NO_ISSUER_CERTIFICATE 121 # define X509V3_R_NO_ISSUER_DETAILS 127 # define X509V3_R_NO_POLICY_IDENTIFIER 139 # define X509V3_R_NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED 154 # define X509V3_R_NO_PUBLIC_KEY 114 # define X509V3_R_NO_SUBJECT_DETAILS 125 # define X509V3_R_ODD_NUMBER_OF_DIGITS 112 # define X509V3_R_OPERATION_NOT_DEFINED 148 # define X509V3_R_OTHERNAME_ERROR 147 # define X509V3_R_POLICY_LANGUAGE_ALREADY_DEFINED 155 # define X509V3_R_POLICY_PATH_LENGTH 156 # define X509V3_R_POLICY_PATH_LENGTH_ALREADY_DEFINED 157 # define X509V3_R_POLICY_SYNTAX_NOT_CURRENTLY_SUPPORTED 158 # define X509V3_R_POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY 159 # define X509V3_R_SECTION_NOT_FOUND 150 # define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122 # define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123 # define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111 # define X509V3_R_UNKNOWN_EXTENSION 129 # define X509V3_R_UNKNOWN_EXTENSION_NAME 130 # define X509V3_R_UNKNOWN_OPTION 120 # define X509V3_R_UNSUPPORTED_OPTION 117 # define X509V3_R_UNSUPPORTED_TYPE 167 # define X509V3_R_USER_TOO_LONG 132 #ifdef __cplusplus } #endif #endif